@charset "UTF-8";

*:where(:not(iframe, canvas, img, video, svg, svg *, symbol *)) {
  all: unset;
  display: revert
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

a, button {
  cursor: revert
}

b {
  font-weight: 600
}

ol, ul, menu {
  list-style: none;
  padding: 0;
  margin: 0
}

img {
  max-width: 100%
}

table {
  border-collapse: collapse
}

textarea {
  white-space: revert
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
  appearance: revert
}

::-webkit-input-placeholder {
  color: unset
}

::-moz-placeholder {
  color: unset
}

:-ms-input-placeholder {
  color: unset
}

::-ms-input-placeholder {
  color: unset
}

::placeholder {
  color: unset
}

:where([hidden]) {
  display: none
}

:where([contenteditable]) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  line-break: after-white-space
}

:where([draggable=true]) {
  -webkit-user-drag: element
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bolder;
  margin: 0
}

:root {
  --clr-pink: #f4acb7;
  --clr-mauve: #d9969d;
  --clr-prune: #7f6169;
  --clr-navy: #3f4a5a;
  --clr-base: #fafafa;
  --clr-brown: #7a6e5a;
  --clr-newborn-milky: #fffdf9;
  --clr-studio-stone: #d0ccc6;
  --clr-studio-greige: #c6c0b8;
  --clr-line-sand: #e8dfc9;
  --clr-highlight: #ede5d3;
  --clr-pink-frost: #ffccdd;
  --clr-blush-snow: #ffeef3;
  --clr-sakura-pink: #ff98ba;
  --clr-blue: #00a8e8;
  --clr-location-sky: #d9e4ec;
  --clr-pet-mint: #dde8e2;
  --clr-wedding-rose: #f0dddd;
  --clr-light-cyan: #90e0ef;
  --clr-pale-aqua: #caf0f8;
  --clr-sky-mist: #effbfd;
  --clr-green: #05b579;
  --clr-green-light: #dbf5ec;
  --clr-ylw: #fff578;
  --clr-gray: #6e6e6e;
  --clr-gray-light: #f4f4f4;
  --clr-gray-mid: #e9e9e9;
  --clr-gray-dark: #bcbcbc;
  --clr-white: #fff;
  --clr-black: #212121;
  --clr-success: #a3ca60;
  --clr-info: #0650cb;
  --clr-warning: #eaba5d;
  --clr-error: #dd3e34;
  --clr-wh: #fff;
  --clr-text: #2c2c2c;
  --clr-border: #e9e9e9;
  --clr-border2: #ecebe8;
  --fs-xsm: .625em;
  --fs-sm: .75em;
  --fs-md: .875em;
  --fs-def: 1em;
  --fs-strong: 1.125em;
  --fs-title-sub: 1.25em;
  --fs-title: 1.5em;
  --fs-title-l: 4em;
  --ff-base: Zen Kaku Gothic New, sans-serif;
  --ff-roboto: Roboto, sans-serif;
  --ff-moda: Bodoni Moda, serif;
  --ff-jua: Jua, sans-serif;
  --fw-regular: 400;
  --fw-mid: 500;
  --fw-bold: 700;
  --content-sp: 100%;
  --content-md: 49.4%;
  --content-pc: 75%;
  --s-xxs: 8px;
  --s-xs: 16px;
  --s-sm: 24px;
  --s-md: 32px;
  --s-def: 40px;
  --s-lg: 64px;
  --s-xl: 80px;
  --s-xxl: 160px;
  --sp-sm: 5.3%;
  --sp-md: 10.6%;
  --sp-lg: 21.2%;
  --sp-side: 24.2%;
  --tr-def: .3s ease-in-out
}

html {
  font-family: var(--ff-default);
  font-size: var(--fs-def);
  overflow-x: hidden
}

body {
  font-family: var(--ff-base);
  background-color: var(--clr-newborn-milky);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

a {
  text-decoration: none;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-all
}

img {
  height: auto;
  -o-object-fit: contain;
  object-fit: contain
}

.inner {
  padding: 0 5.5%
}

.pc {
  display: block
}

@media (max-width: 1200px) {
  .pc {
    display: none
  }
}

.sp {
  display: none
}

@media (max-width: 1200px) {
  .sp {
    display: block
  }
}

@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0)
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2)
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}

@keyframes scale {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0)
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2)
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}

.footer {
  border-top: 1px solid var(--clr-text);
  margin: 40px auto 0;
  padding: 40px 0 0
}

.footer__content {
  padding: 0 20px 40px
}

.footer__title {
  font-size: var(--fs-title);
  font-family: var(--ff-roboto);
  font-weight: 700;
  text-align: center
}

.footer__desc {
  text-align: center;
  padding: 10px 0 40px
}

.footer__nav {
  border-top: 1px dashed var(--clr-text);
  border-bottom: 1px dashed var(--clr-text);
  padding: 24px 0
}

.footer__nav__item:last-child {
  grid-column: 1/-1
}

.footer .copyright {
  color: var(--clr-wh);
  font-size: var(--fs-sm);
  font-family: var(--ff-roboto);
  font-weight: 700;
  text-align: center;
  display: block;
  background-color: var(--clr-navy);
  padding: 4px 0
}

.header {
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translate(-50%);
  width: 100%;
  max-width: 480px;
  padding: 0 20px;
  z-index: 50
}

@media (min-width: 1201px) {
  .header {
    max-width: 100%
  }
}

.header__logo {
  position: relative;
  width: 140px;
  padding: 16px 0;
  z-index: 100
}

.header__logo img {
  vertical-align: bottom
}

.header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0
}

.nav {
  width: 100%;
  display: block
}

.nav__wrapper {
  display: none
}

@media (min-width: 1201px) {
  .nav__wrapper {
    display: block
  }
}

.nav__wrapper.js-open {
  position: fixed;
  width: 100%;
  max-width: 480px;
  height: 100vh;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translate(-50%);
  display: block;
  z-index: 40
}

@media (min-width: 1201px) {
  .nav__wrapper.js-open {
    height: 100%
  }
}

.nav__icon {
  width: 33px;
  height: 17px
}

.nav__icon__wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all .4s;
  transition: all .4s;
  margin: 0 0 0 auto;
  z-index: 100;
  cursor: pointer
}

@media (min-width: 1201px) {
  .nav__icon__wrapper {
    display: none
  }
}

.nav__icon span {
  width: 30px;
  height: 2.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--clr-navy);
  border-radius: 10px;
  -webkit-transition: .4s all;
  transition: .4s all
}

.nav__icon span:nth-child(1) {
  margin: 0 auto
}

.nav__icon span:nth-child(2) {
  width: 24px;
  margin: 6px auto 6px 0
}

.nav__icon span:nth-child(3) {
  margin: 0 auto
}

.nav__icon span path {
  fill: var(--clr-pink)
}

.nav__icon.js-open span:nth-child(1) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin: 12px auto 0
}

.nav__icon.js-open span:nth-child(2) {
  display: none
}

.nav__icon.js-open span:nth-child(3) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: -2px auto 8px
}

.nav__content, .nav .nav, .nav .nav__item, .nav .nav__link {
  width: 100%;
  height: auto
}

.nav__content {
  position: absolute;
  width: 100vw;
  max-width: 480px;
  min-height: 100vh;
  top: 0;
  left: 0;
  background-color: #fffdf9f2;
  z-index: -1;
  opacity: 0;
  -webkit-transition: opacity .5s ease, visibility .5s ease;
  transition: opacity .5s ease, visibility .5s ease
}

@media (min-width: 1201px) {
  .nav__content {
    width: 100%;
    max-width: 375px;
    min-height: auto;
    top: 200px;
    left: auto;
    right: 100px;
    border-radius: 10px;
    background-color: #ffffffe6;
    z-index: 90;
    opacity: 1;
    padding: 40px 24px
  }
}

@media screen and (max-width: 1480px) {
  .nav__content {
    right: 40px
  }
}

@media screen and (max-width: 1380px) {
  .nav__content {
    max-width: 300px
  }
}

@media screen and (max-width: 1200px) {
  .nav__content {
    max-width: 480px
  }
}

@media screen and (max-height: 810px) and (min-width: 1200px) {
  .nav__content {
    top: 50%
  }
}

.nav__content.js-open {
  height: 100%;
  z-index: 90;
  opacity: 1;
  -webkit-animation: fade-in .5s forwards;
  animation: fade-in .5s forwards;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  padding: 120px 40px 0
}

.nav__item--child {
  padding-left: 22px
}

.nav__item--child .nav__link {
  padding: 14px 0
}

.nav__link {
  font-size: var(--fs-title-sub);
  font-weight: 700;
  letter-spacing: .6px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  -webkit-transition: var(--tr-def);
  transition: var(--tr-def)
}

@media (min-width: 1201px) {
  .nav__link:hover {
    opacity: .7
  }
}

.nav__btn {
  margin: 48px auto 0
}

.nav__btn .btn {
  width: 90%;
  padding: 8px;
  -webkit-box-shadow: none;
  box-shadow: none
}

@-webkit-keyframes bar01 {
  0% {
    -webkit-transform: translateY(16px) rotate(45deg);
    transform: translateY(16px) rotate(45deg)
  }

  50% {
    -webkit-transform: translateY(16px) rotate(0);
    transform: translateY(16px) rotate(0)
  }

  to {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0)
  }
}

@keyframes bar01 {
  0% {
    -webkit-transform: translateY(16px) rotate(45deg);
    transform: translateY(16px) rotate(45deg)
  }

  50% {
    -webkit-transform: translateY(16px) rotate(0);
    transform: translateY(16px) rotate(0)
  }

  to {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0)
  }
}

@-webkit-keyframes bar02 {
  0% {
    -webkit-transform: translateY(-16px) rotate(-45deg);
    transform: translateY(-16px) rotate(-45deg)
  }

  50% {
    -webkit-transform: translateY(-16px) rotate(0);
    transform: translateY(-16px) rotate(0)
  }

  to {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0)
  }
}

@keyframes bar02 {
  0% {
    -webkit-transform: translateY(-16px) rotate(-45deg);
    transform: translateY(-16px) rotate(-45deg)
  }

  50% {
    -webkit-transform: translateY(-16px) rotate(0);
    transform: translateY(-16px) rotate(0)
  }

  to {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0)
  }
}

@-webkit-keyframes active-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0)
  }

  50% {
    -webkit-transform: translateY(16px) rotate(0);
    transform: translateY(16px) rotate(0)
  }

  to {
    -webkit-transform: translateY(6px) rotate(30deg);
    transform: translateY(6px) rotate(30deg)
  }
}

@keyframes active-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0)
  }

  50% {
    -webkit-transform: translateY(16px) rotate(0);
    transform: translateY(16px) rotate(0)
  }

  to {
    -webkit-transform: translateY(6px) rotate(30deg);
    transform: translateY(6px) rotate(30deg)
  }
}

@-webkit-keyframes active-bar02 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0)
  }

  50% {
    -webkit-transform: translateY(-16px) rotate(0);
    transform: translateY(-16px) rotate(0)
  }

  to {
    -webkit-transform: translateY(-10px) rotate(-30deg);
    transform: translateY(-10px) rotate(-30deg)
  }
}

@keyframes active-bar02 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0)
  }

  50% {
    -webkit-transform: translateY(-16px) rotate(0);
    transform: translateY(-16px) rotate(0)
  }

  to {
    -webkit-transform: translateY(-10px) rotate(-30deg);
    transform: translateY(-10px) rotate(-30deg)
  }
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes fade-in {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.layout {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

@media (min-width: 481px) {
  .layout {
    background: var(--bg-layout) no-repeat;
    background-color: var(--clr-blush-snow);
    background-size: cover
  }
}

.layout__inner {
  width: 100%;
  max-width: 480px;
  background-color: var(--clr-newborn-milky);
  margin: 0 auto;
  overflow: hidden
}

@media (min-width: 481px) {
  .layout__inner {
    border-left: 1px solid var(--clr-text);
    border-right: 1px solid var(--clr-text);
    margin: 0 auto
  }
}

.layout__header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100
}

.layout__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh
}

.layout__footer {
  margin-top: auto
}

.section {
  margin: 0 auto 80px
}

.section__inner {
  padding: 0 20px
}
