/* ----------------------------------------------
common
------------------------------------------------- */
body {
  color: #000;
  font-size: 15px;
  line-height: 1.4;
  font-family: 'M PLUS Rounded 1c', system-ui, sans-serif;
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

a {
  color: #ed858c;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.t-left {
  text-align: left;
}

.bold {
  font-weight: bold;
}

strong {
  font-weight: bold;
}

.red {
  color: #f00;
}

.opacity a {
  transition: all 0.5s ease-out;
}

.opacity a:hover {
  opacity: 0.6;
}

/* ----------------------------------------------
header
------------------------------------------------- */
#header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 260px;
  min-height: 100vh;
  padding-top: 48px;
  padding-bottom: 10px;
  background: #80cce3;
}

#header.absolute {
  position: absolute;
}

#header.fixed {
  top: auto;
  bottom: 0;
}

#header .logo {
  margin-bottom: 50px;
  padding: 0 10px;
  text-align: center;
  transition: all 0.5s ease-out;
}

#header .logo:hover {
  opacity: 0.6;
}

#header .text {
  margin-bottom: 30px;
  padding: 0 34px;
  font-size: 13px;
  line-height: 1.84615;
}

#header .btn {
  width: 193px;
  margin: 0 auto;
}

#header .btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 61px;
  border-radius: 31px;
  background: #ed858c;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.5s ease-out;
}

#header .btn a:hover {
  opacity: 0.6;
}

@media (max-width: 999px) {
  #header {
    position: relative;
    width: 100%;
    min-height: 0;
    height: 60px;
    padding-top: 2px;
  }
  #header .logo img {
    width: auto;
    height: 56px;
  }
  #header .text,
  #header .btn {
    display: none;
  }
}

#gnav {
  width: 193px;
  margin: 0 auto 40px;
}

#gnav ul {
  border-top: 1px solid #9fd9ea;
}

#gnav li {
  border-bottom: 1px solid #9fd9ea;
}

#gnav a {
  display: block;
  padding: 17px 10px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.5s ease-out;
}

#gnav a:hover {
  opacity: 0.6;
}

#gnav a small {
  display: block;
  color: #39859c;
  font-size: 9px;
}

@media (max-width: 767px) {
  #gnav {
    width: 100%;
    margin-bottom: 0;
  }
}

/* ----------------------------------------------
main-container
------------------------------------------------- */
#main-container {
  position: relative;
  width: calc(100% - 260px);
  margin: 0 0 0 auto;
}

#main-container h1 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  color: #ccc;
  font-size: 10px;
}

@media (max-width: 999px) {
  #main-container {
    width: 100%;
  }
}

@media (max-width: 767px) {
  #main-container h1 {
    display: none;
  }
}

/* ----------------------------------------------
footer
------------------------------------------------- */
#pagetop {
  position: absolute;
  top: -23px;
  right: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  text-align: right;
}

#pagetop a {
  transition: all 0.5s ease-out;
}

#pagetop a:hover {
  opacity: 0.6;
}

#footer {
  position: relative;
  padding: 40px 10px 20px;
  background: #bdb1a9;
  color: #fff;
}

#footer .inner {
  width: 100%;
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
}

#footer .contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  #footer .contents {
    flex-direction: column;
  }
}

#footer .left {
  width: 230px;
}

#footer .logo a {
  transition: all 0.5s ease-out;
}

#footer .logo a:hover {
  opacity: 0.6;
}

#footer .right {
  flex: 1;
}

#footer .text {
  margin-bottom: 15px;
  font-size: 13px;
  line-height: 1.38462;
}

@media (max-width: 767px) {
  #footer .logo {
    margin-bottom: 20px;
  }
}

#fnav ul {
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: bold;
}

#fnav li:not(:last-child)::after {
  content: '|';
  margin: 0 1em;
}

#fnav a {
  color: #ffffff;
}

@media (max-width: 767px) {
  #fnav {
    display: none;
  }
}

#copyright {
  font-size: 12px;
  letter-spacing: 0.025em;
  text-align: right;
}
/*# sourceMappingURL=style.css.map */