body {
  font-family: "Noto Sans JP", serif;
  font-size: 16px;
  line-height: 1.7;
  color: #313131;
  background: #fff;
}

.heading {
  padding: 14px 0;
  text-align: center;
}
@media (min-width: 768px) {
  .heading {
    padding: 50px 0 60px;
  }
}

.heading__title {
  font-family: "Cormorant", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 2.52px;
}
@media (min-width: 768px) {
  .heading__title {
    font-size: 40px;
    letter-spacing: 3.6px;
  }
}

.bg {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -10;
}

.top__btn {
  position: fixed;
  bottom: 13px;
  right: 6px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 100;
}
.top__btn.visible {
  opacity: 1;
  visibility: visible;
}

.top__btnGroup {
  position: relative;
}

.top__btn-img {
  -webkit-animation: 7s linear infinite rotation;
          animation: 7s linear infinite rotation;
}
.top__btn-img img {
  width: 50px;
}
@media (min-width: 768px) {
  .top__btn-img img {
    width: 100px;
  }
}

.top__btn-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #4e4e4e;
  font-family: "Cormorant", serif;
  font-size: 10px;
  line-height: normal;
  letter-spacing: 1.44px;
  -webkit-transition: color 0.1s;
  transition: color 0.1s;
}
@media (min-width: 768px) {
  .top__btn-text {
    font-size: 20px;
  }
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
.header {
  padding: 20px 0;
}
@media (min-width: 768px) {
  .header {
    padding: 23px 0;
  }
}

.header__inner {
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .header__inner {
    max-width: 1314px;
    margin: 0 auto;
  }
}

.header__close {
  border: none;
  background: transparent;
}
@media (min-width: 768px) {
  .header__close {
    display: none;
  }
}
.header__close img {
  width: 15px;
}

.nav {
  display: none;
}
@media (min-width: 768px) {
  .nav {
    display: block;
  }
}

.header__logo img {
  width: 60px;
}
@media (min-width: 768px) {
  .header__logo img {
    width: 159px;
  }
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}

.nav__item {
  font-family: "Cormorant", serif;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.44px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.nav__item:hover {
  opacity: 0.4;
}

.drawer-icon {
  position: relative;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: #ED959D;
  z-index: 51;
  cursor: pointer;
}
.drawer-icon.is-checked .drawer-icon__ber:nth-of-type(1) {
  top: 16px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__ber:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__ber:nth-of-type(3) {
  top: 6px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (min-width: 768px) {
  .drawer-icon {
    display: none;
  }
}

.drawer-icon__ber {
  position: absolute;
  top: 11px;
  left: 9px;
  width: 15px;
  height: 1px;
  background: #fff;
  -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, -webkit-transform 0.3s ease;
}
.drawer-icon__ber:nth-of-type(2) {
  margin-top: 5px;
}
.drawer-icon__ber:nth-of-type(3) {
  margin-top: 10px;
}

.drawer-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(237, 149, 157, 0.77);
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 50;
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content__header {
  padding: 23px 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.drawer-content__header-logo img {
  width: 60px;
}

.drawer-content__close {
  margin-right: 9px;
}
.drawer-content__close img {
  width: 15px;
}

.drawer-content__nav {
  margin-top: 50px;
}

.drawer-content__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}

.drawer-content__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}
.drawer-content__item::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: #313131;
}

.drawer-content__link {
  font-family: "Cormorant", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.44px;
}

.contact {
  padding: 100px 0;
  border-radius: 40px 40px 0px 0px;
  background: #ED959D;
}

.contact__inner {
  padding: 0 25px;
}
@media (min-width: 768px) {
  .contact__inner {
    max-width: 677px;
    margin: 0 auto;
  }
}

.contact__btn {
  padding: 24px 25px 25px clamp(50px, 21.8666666667vw, 82px);
  margin: 0 auto;
  position: relative;
  display: block;
  width: clamp(270px, 86.6666666667vw, 320px);
  border: none;
  border-radius: 75px;
  background: #fff;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.contact__btn:hover h2,
.contact__btn:hover p {
  opacity: 0.4;
}
@media (min-width: 768px) {
  .contact__btn {
    padding: 15px 25px 29px 194px;
    width: 627px;
  }
}
.contact__btn::after {
  content: "";
  position: absolute;
  background: url(../images/arrow-pink.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 21px;
  height: 25px;
  top: 50%;
  -webkit-transform: translateY(-20%);
          transform: translateY(-20%);
  right: 46px;
}
@media (min-width: 768px) {
  .contact__btn::after {
    width: 30px;
    height: 36px;
    -webkit-transform: translateY(-30%);
            transform: translateY(-30%);
    right: 82px;
  }
}

.contact__btn-title {
  color: #313131;
  font-family: "Cormorant", serif;
  font-size: clamp(30px, 9.6vw, 36px);
  font-weight: 500;
  line-height: normal;
  letter-spacing: 3.24px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (min-width: 768px) {
  .contact__btn-title {
    font-size: 64px;
    letter-spacing: 5.76px;
  }
}

.contact__btn-text {
  color: #313131;
  font-family: "Noto Sans JP", serif;
  margin-top: 9px;
  margin-left: 10px;
  font-size: 10px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.9px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (min-width: 768px) {
  .contact__btn-text {
    margin-left: 23px;
    font-size: 16px;
    letter-spacing: 1.44px;
  }
}

.footer {
  padding-top: 46px;
  background: #ED959D;
}
@media (min-width: 768px) {
  .footer {
    padding-top: 0;
  }
}

.footer__inner {
  padding: 0 22px;
}
@media (min-width: 768px) {
  .footer__inner {
    max-width: 1244px;
    margin: 0 auto;
  }
}

.footer__img {
  display: none;
  padding-bottom: 45px;
}
@media (min-width: 768px) {
  .footer__img {
    padding-bottom: 86px;
  }
}
.footer__img img {
  width: 100%;
}

.footer__nav {
  display: none;
}
@media (min-width: 768px) {
  .footer__nav {
    padding: 40px 20px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 768px) {
  .footer__logo img {
    width: 159px;
  }
}

.copy {
  text-align: center;
  padding: 6px 0 7px;
}
@media (min-width: 768px) {
  .copy {
    padding: 18px 0 17px;
  }
}
.copy small {
  font-family: "Cormorant", serif;
  font-size: 12px;
  font-weight: 300;
  line-height: normal;
}