/* =================================
Reset
================================= */
@import url("https://fonts.googleapis.com/css2?family=Caramel&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* =================================
Base
================================= */
html {
  font-size: 62.5%;
}

body {
  font-family: "Zen Old Mincho", serif;
  color: #3F332F;
  font-size: 4vw;
  font-weight: 400;
  line-height: 1.666;
  text-align: left;
}
@media (min-width: 770px) {
  body {
    font-size: 1.8rem;
  }
}

body.no-scroll {
  overflow: hidden;
}

.l-back {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  background: url(../img/back_pc.png) no-repeat 0 0/cover;
}
.l-back::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: max(42.2916666667vw, 609px);
  height: max(59.1666666667vw, 852px);
  background: url(../img/img_back.png) no-repeat 0 0/contain;
}
.l-back .logo {
  position: absolute;
  top: 32px;
  left: 32px;
  width: 213px;
}
.l-back .pc-nav {
  position: absolute;
  top: 50%;
  right: 10.2083333333vw;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: min(14.5833333333vw, 210px);
  padding: min(2.2222222222vw, 32px) min(2.7777777778vw, 40px);
  background: rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: 16px 16px 0 #F1B496;
          box-shadow: 16px 16px 0 #F1B496;
}
.l-back .pc-nav .menu {
  position: absolute;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-family: "Caramel", cursive;
  color: #D09C2B;
  font-size: 13.3333333333vw;
  line-height: 1;
}
@media (min-width: 770px) {
  .l-back .pc-nav .menu {
    font-size: 5rem;
  }
}
.l-back .pc-nav .nav-link li a {
  display: block;
  padding: min(1.1111111111vw, 16px) 0;
  background: url(../img/arrow.svg) no-repeat right center/6px 12px;
  color: #3F332F;
  font-size: min(1.0416666667vw, 1.5rem);
  font-weight: 900;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-back .pc-nav .nav-link li a.is-current {
  color: #D09C2B;
}
@media (hover: hover) and (pointer: fine) {
  .l-back .pc-nav .nav-link li a:hover {
    letter-spacing: 0.15em;
  }
}
.l-back .fix-banner {
  position: absolute;
  bottom: 32px;
  right: 0;
  width: min(20.4166666667vw, 294px);
}
.l-back .fix-banner a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: min(5.5555555556vw, 80px);
  padding: 0 min(1.6666666667vw, 24px);
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(220, 172, 91)), to(rgb(182, 150, 97)));
  background: linear-gradient(180deg, rgb(220, 172, 91) 0%, rgb(182, 150, 97) 100%);
  border: 1px solid #fff;
  color: #fff;
  font-size: min(1.3888888889vw, 2rem);
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .l-back .fix-banner a:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(#FF859E), to(#FF8C68));
    background: linear-gradient(180deg, #FF859E 0%, #FF8C68 100%);
    letter-spacing: 0.15em;
  }
}
.l-back .fix-banner a::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  right: min(0.4861111111vw, 7px);
  width: min(9.5138888889vw, 137px);
  height: min(6.7361111111vw, 97px);
  background: url(../img/img_fixed_banner.png) no-repeat 0 0/contain;
}

.l-wrap {
  position: relative;
  z-index: 10;
  max-width: 460px;
  margin: 30px auto;
  background: url(../img/back_sp.png) repeat 0 0/cover;
  border-radius: 24px;
  -webkit-box-shadow: 16px 16px 0 #F1B496;
          box-shadow: 16px 16px 0 #F1B496;
  overflow: hidden;
}
@media (max-width: 769px) {
  .l-wrap {
    max-width: none;
    margin: 0 auto;
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.l-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  padding: 10px;
}
@media (max-width: 769px) {
  .l-header {
    position: fixed;
  }
}
.l-header .logo {
  max-width: 134px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-header.is-active .logo {
  opacity: 0;
}
.l-header .btn-head {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}
@media (max-width: 769px) {
  .l-header .btn-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.l-header .btn-head .btn-account {
  display: none;
}
.l-header .btn-head .btn-cta a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  width: 0;
  height: 44px;
  background: url(../img/arrow.svg) no-repeat right 8px center/6px 12px;
  border: 0 solid #D09C2B;
  color: #D09C2B;
  font-size: 4vw;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-header .btn-head .btn-cta.is-active a {
  border-width: 1px;
  width: 207px;
}
.l-header .btn-head .btn-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 55px;
  height: 44px;
  background: #D09C2B;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .l-header .btn-head .btn-menu:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(#FF859E), to(#FF8C68));
    background: linear-gradient(180deg, #FF859E 0%, #FF8C68 100%);
  }
}
.l-header .btn-head .btn-menu span {
  display: block;
  position: relative;
  width: 22px;
  height: 11px;
  text-indent: -9999px;
}
.l-header .btn-head .btn-menu span::before, .l-header .btn-head .btn-menu span::after {
  display: block;
  content: "";
  position: absolute;
  right: 0;
  height: 2px;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-header .btn-head .btn-menu span::before {
  top: 0;
  width: 100%;
}
.l-header .btn-head .btn-menu span::after {
  bottom: 0;
  width: 16px;
}
.l-header .btn-head .btn-menu.is-active span {
  width: 18px;
  height: 18px;
}
.l-header .btn-head .btn-menu.is-active span::before {
  top: 50%;
  right: auto;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  width: 22px;
}
.l-header .btn-head .btn-menu.is-active span::after {
  top: 50%;
  right: auto;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  bottom: auto;
  width: 22px;
}

.g-nav {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 90;
  width: 100%;
  height: 100vh;
  background: url(../img/bg_menu.png) no-repeat 0 0/cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.g-nav.is-active {
  right: 0;
}
.g-nav .nav-link {
  width: calc(100% - 80px);
  height: 100vh;
  margin-left: auto;
  padding: 86px 24px 20px;
  background: rgba(255, 255, 255, 0.95);
}
.g-nav .nav-link li a {
  display: block;
  padding: 11px 0;
  background: url(../img/arrow.svg) no-repeat right center/6px 12px;
  color: #3F332F;
  font-size: 4vw;
  font-weight: 900;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .g-nav .nav-link li a:hover {
    letter-spacing: 0.15em;
  }
}

.l-footer {
  margin-top: 80px;
  padding: 32px 0;
  background: #F1B496;
}
.l-footer .footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  font-size: 3.2vw;
  font-weight: 700;
}
@media (min-width: 770px) {
  .l-footer .footer-nav {
    font-size: 1.5rem;
  }
}
.l-footer .footer-nav li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #3F332F;
  text-decoration: none;
}
.l-footer .footer-nav li a::after {
  display: block;
  content: "";
  width: 5px;
  height: 10px;
  margin-left: 4px;
  background: #fff;
  -webkit-mask: url(../img/arrow.svg) no-repeat right center/5px 10px;
          mask: url(../img/arrow.svg) no-repeat right center/5px 10px;
}
.l-footer .copyright {
  margin-top: 8px;
  font-size: 2.6666666667vw;
  text-align: center;
}
@media (min-width: 770px) {
  .l-footer .copyright {
    font-size: 1.2rem;
  }
}

.l-main .l-lower-contents {
  padding: 64px 16px 0;
}

.mod-btn-top-back {
  margin-top: 40px;
}
.mod-btn-top-back a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 60px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(220, 172, 91)), to(rgb(182, 150, 97)));
  background: linear-gradient(180deg, rgb(220, 172, 91) 0%, rgb(182, 150, 97) 100%);
  border: 1px solid #fff;
  color: #fff;
  font-size: 5.3333333333vw;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 770px) {
  .mod-btn-top-back a {
    font-size: 2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .mod-btn-top-back a:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(#FF859E), to(#FF8C68));
    background: linear-gradient(180deg, #FF859E 0%, #FF8C68 100%);
    letter-spacing: 0.15em;
  }
}

.mv .main-catch {
  padding: 10px 0 0;
}
.mv .main-catch h2 {
  color: #956413;
  font-size: 4.2666666667vw;
  font-weight: 900;
  text-align: center;
}
@media (min-width: 770px) {
  .mv .main-catch h2 {
    font-size: 2rem;
  }
}
.mv .main-catch h2 strong {
  -webkit-text-stroke: 1px #956413;
  color: transparent;
}
.mv .main-catch h2 strong i {
  font-size: 8.8vw;
}
@media (min-width: 770px) {
  .mv .main-catch h2 strong i {
    font-size: 4rem;
  }
}
.mv .main-catch h2 span {
  margin-left: 0.3em;
}
.mv .main-catch ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
  padding: 0 16px;
}
.mv .main-catch ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 44px;
  width: 20%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(220, 172, 91, 0.9)), to(rgba(182, 150, 97, 0.9)));
  background: linear-gradient(180deg, rgba(220, 172, 91, 0.9) 0%, rgba(182, 150, 97, 0.9) 100%);
  color: #fff;
  font-size: 3.4666666667vw;
  font-weight: 600;
  text-align: center;
}
@media (min-width: 770px) {
  .mv .main-catch ul li {
    font-size: 1.6rem;
  }
}
.mv .main-catch .image {
  margin-top: 24px;
}
.mv + .sec-cta {
  margin-top: 40px;
}

.sec-cta .read {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 16px;
  color: #956413;
  font-size: 4.8vw;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.15em;
}
@media (min-width: 770px) {
  .sec-cta .read {
    font-size: 2.2rem;
  }
}
.sec-cta .read::before, .sec-cta .read::after {
  display: inline-block;
  content: "";
  width: 22px;
  height: 24px;
  background: url(../img/icon_em.svg) no-repeat 0 0/contain;
}
.sec-cta .read::before {
  margin-right: 8px;
}
.sec-cta .read::after {
  margin-left: 8px;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.sec-cta .btn-cta {
  margin-top: 8px;
  padding: 0 15px;
}
.sec-cta .btn-cta a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 60px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(220, 172, 91)), to(rgb(182, 150, 97)));
  background: linear-gradient(180deg, rgb(220, 172, 91) 0%, rgb(182, 150, 97) 100%);
  border: 1px solid #fff;
  color: #fff;
  font-size: 5.3333333333vw;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 770px) {
  .sec-cta .btn-cta a {
    font-size: 2.4rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .sec-cta .btn-cta a:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(#FF859E), to(#FF8C68));
    background: linear-gradient(180deg, #FF859E 0%, #FF8C68 100%);
    letter-spacing: 0.15em;
  }
}

.sec-point {
  padding: 80px 0;
}
.sec-point h2 {
  width: calc(100% - 50px);
  height: 40.6153846154vw;
  margin: 0 auto 8px;
  background: url(../img/title_point.svg) no-repeat 0 0/contain;
  text-indent: -9999px;
}
@media (min-width: 770px) {
  .sec-point h2 {
    width: 100%;
    max-width: 398px;
    height: 162px;
  }
}
.sec-point .point-lists {
  padding: 0 15px;
  font-weight: 900;
}
.sec-point .point-lists li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sec-point .point-lists li + li {
  margin-top: 8px;
}
.sec-point .point-lists .num {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 18.1333333333vw;
  height: 7.4666666667vw;
  padding: 1px 6px;
  background: url(../img/bg_point_num.svg) no-repeat 0 0/contain;
  color: #956413;
  font-size: 2.6666666667vw;
}
@media (min-width: 770px) {
  .sec-point .point-lists .num {
    width: 83px;
    height: 34px;
    font-size: 1.2rem;
  }
}
.sec-point .point-lists .num strong {
  font-size: 4.2666666667vw;
}
@media (min-width: 770px) {
  .sec-point .point-lists .num strong {
    font-size: 2rem;
  }
}
.sec-point .point-lists .text {
  margin-left: 4px;
}
.sec-point .point-lists .text i {
  display: inline-block;
  position: relative;
}
.sec-point .point-lists .text i::before {
  display: block;
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 3px;
  height: 3px;
  background: #FF8967;
  border-radius: 50%;
}
.sec-point .image {
  margin-top: 24px;
  padding: 0 0 0 48px;
}
.sec-point .point-summary {
  padding: 0 15px;
}
.sec-point .point-summary > li {
  margin-top: 56px;
}
.sec-point .point-summary .num {
  position: relative;
  margin-bottom: 10px;
  color: #956413;
}
.sec-point .point-summary .num::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: calc(100% - 27.2vw);
  height: 3px;
  border-top: 1px solid #D09C2B;
  border-bottom: 1px solid #D09C2B;
}
@media (min-width: 770px) {
  .sec-point .point-summary .num::after {
    width: calc(100% - 125px);
  }
}
.sec-point .point-summary .num .bg {
  display: block;
  width: 27.2vw;
  height: 11.2vw;
  padding: 0 9px;
  background: url(../img/bg_point_list_num.svg) no-repeat 0 0/contain;
}
@media (min-width: 770px) {
  .sec-point .point-summary .num .bg {
    width: 125px;
    height: 51px;
  }
}
.sec-point .point-summary .num .bg span {
  font-size: 4vw;
}
@media (min-width: 770px) {
  .sec-point .point-summary .num .bg span {
    font-size: 1.8rem;
  }
}
.sec-point .point-summary .num .bg strong {
  font-size: 6.4vw;
}
@media (min-width: 770px) {
  .sec-point .point-summary .num .bg strong {
    font-size: 2.9rem;
  }
}
.sec-point .point-summary h3 {
  font-size: 5.3333333333vw;
  font-weight: 900;
}
@media (min-width: 770px) {
  .sec-point .point-summary h3 {
    font-size: 2.4rem;
  }
}
.sec-point .point-summary h3 .marker {
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, rgba(255, 255, 255, 0.6)));
  background: linear-gradient(transparent 60%, rgba(255, 255, 255, 0.6) 60%);
}
.sec-point .point-summary .read {
  margin-top: 24px;
  font-size: 4vw;
  font-weight: 900;
}
@media (min-width: 770px) {
  .sec-point .point-summary .read {
    font-size: 1.8rem;
  }
}
.sec-point .point-summary .read strong {
  color: #D09C2B;
}
.sec-point .point-summary .point01 .point-image {
  margin-top: 24px;
}
.sec-point .point-summary .point01 .summary-list {
  margin-top: 24px;
}
.sec-point .point-summary .point01 .summary-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sec-point .point-summary .point01 .summary-list li + li {
  margin-top: 4px;
}
.sec-point .point-summary .point01 .summary-list .icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 10.6666666667vw;
}
@media (min-width: 770px) {
  .sec-point .point-summary .point01 .summary-list .icon {
    width: 49px;
  }
}
.sec-point .point-summary .point01 .summary-list .text {
  margin-left: 8px;
  font-size: 4vw;
  font-weight: 900;
}
@media (min-width: 770px) {
  .sec-point .point-summary .point01 .summary-list .text {
    font-size: 1.8rem;
  }
}
.sec-point .point-summary .point01 .summary-list .text strong {
  color: #D09C2B;
}
.sec-point .point-summary .point02 .point-image {
  margin: 24px -15px 0 0;
  padding-left: 32px;
}
.sec-point .point-summary .point02 .summary-list {
  margin-top: 56px;
}
.sec-point .point-summary .point02 .summary-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sec-point .point-summary .point02 .summary-list li + li {
  margin-top: 24px;
}
.sec-point .point-summary .point02 .summary-list li .thumb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 26.6666666667vw;
}
@media (min-width: 770px) {
  .sec-point .point-summary .point02 .summary-list li .thumb {
    width: 122px;
  }
}
.sec-point .point-summary .point02 .summary-list li dl {
  margin-left: 8px;
}
.sec-point .point-summary .point02 .summary-list li dl dt {
  padding: 0 0 5px;
  border-bottom: 1px solid #D09C2B;
  font-size: 4vw;
  font-weight: 900;
}
@media (min-width: 770px) {
  .sec-point .point-summary .point02 .summary-list li dl dt {
    font-size: 1.8rem;
  }
}
.sec-point .point-summary .point02 .summary-list li dl dd {
  margin-top: 8px;
  font-size: 3.2vw;
}
@media (min-width: 770px) {
  .sec-point .point-summary .point02 .summary-list li dl dd {
    font-size: 1.5rem;
  }
}
.sec-point .point-summary .point03 .point-image {
  margin: 24px -15px 0;
}
.sec-point .point-summary .point04 .point-image {
  margin: 24px -15px 0 0;
  padding-left: 32px;
}
.sec-point .catch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 72px;
  margin: 16px 15px 0;
  background: url(../img/bg_point_catch.svg) no-repeat bottom 8.5px right 4.2666666667vw, rgba(255, 255, 255, 0.6);
  font-size: 4vw;
  font-weight: 900;
  text-align: center;
}
@media (min-width: 770px) {
  .sec-point .catch {
    font-size: 1.8rem;
  }
}

.sec-color {
  padding: 80px 0 0;
}
.sec-color h2 {
  position: relative;
  margin: 0 15px;
  color: #956413;
  font-size: 8.5333333333vw;
  font-weight: 900;
  text-align: center;
}
@media (min-width: 770px) {
  .sec-color h2 {
    font-size: 3.9rem;
  }
}
.sec-color h2::before, .sec-color h2::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  border-top: 1px solid #D09C2B;
  border-bottom: 1px solid #D09C2B;
}
.sec-color h2::before {
  top: 0;
}
.sec-color h2::after {
  bottom: 0;
}
.sec-color h3 {
  margin: 16px 0 0;
  font-size: 5.3333333333vw;
  font-weight: 900;
  text-align: center;
}
@media (min-width: 770px) {
  .sec-color h3 {
    font-size: 2.4rem;
  }
}
.sec-color .image {
  margin-top: 24px;
}

.sec-makeup {
  padding: 80px 0;
}
.sec-makeup h2 {
  position: relative;
  margin: 0 15px;
  color: #956413;
  font-size: 8.5333333333vw;
  font-weight: 900;
  text-align: center;
}
@media (min-width: 770px) {
  .sec-makeup h2 {
    font-size: 3.9rem;
  }
}
.sec-makeup h2::before, .sec-makeup h2::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  border-top: 1px solid #D09C2B;
  border-bottom: 1px solid #D09C2B;
}
.sec-makeup h2::before {
  top: 0;
}
.sec-makeup h2::after {
  bottom: 0;
}
.sec-makeup h3 {
  margin: 16px 0 0;
  font-size: 5.3333333333vw;
  font-weight: 900;
  text-align: center;
}
@media (min-width: 770px) {
  .sec-makeup h3 {
    font-size: 2.4rem;
  }
}
.sec-makeup .read {
  margin-top: 16px;
  padding: 0 15px;
  font-size: 4vw;
  font-weight: 900;
}
@media (min-width: 770px) {
  .sec-makeup .read {
    font-size: 1.8rem;
  }
}
.sec-makeup .image {
  margin-top: 16px;
}

.sec-tips {
  padding: 80px 0;
}
.sec-tips .tips-bg {
  padding: 56px 15px;
  background: rgba(255, 255, 255, 0.6);
}
.sec-tips h2 {
  font-size: 4.8vw;
  font-weight: 900;
  text-align: center;
}
@media (min-width: 770px) {
  .sec-tips h2 {
    font-size: 2.2rem;
  }
}
.sec-tips h2 .marker {
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #FFE5D8));
  background: linear-gradient(transparent 60%, #FFE5D8 60%);
}
.sec-tips h3 {
  margin-top: 32px;
  padding: 0 0 4px;
  border-bottom: 1px solid #D09C2B;
  color: #956413;
  font-size: 5.3333333333vw;
  font-weight: 900;
}
@media (min-width: 770px) {
  .sec-tips h3 {
    font-size: 2.4rem;
  }
}
.sec-tips .read {
  margin-top: 16px;
  font-size: 4vw;
  font-weight: 900;
}
@media (min-width: 770px) {
  .sec-tips .read {
    font-size: 1.8rem;
  }
}
.sec-tips .check {
  margin-top: 16px;
  font-size: 4vw;
  font-weight: 900;
}
@media (min-width: 770px) {
  .sec-tips .check {
    font-size: 1.8rem;
  }
}
.sec-tips .check li {
  padding-left: 8.5333333333vw;
  background: url(../img/icon_check.svg) no-repeat top left/6.4vw;
}
@media (min-width: 770px) {
  .sec-tips .check li {
    padding-left: 39px;
    background-size: 29px;
  }
}
.sec-tips .check li + li {
  margin-top: 8px;
}
.sec-tips .image {
  margin: 32px -15px 0 0;
  padding-left: 32px;
}
.sec-tips .step {
  margin-top: 16px;
}
.sec-tips .step li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sec-tips .step li + li {
  margin-top: 16px;
}
.sec-tips .step .thumb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 26.6666666667vw;
}
@media (min-width: 770px) {
  .sec-tips .step .thumb {
    width: 122px;
  }
}
.sec-tips .step dl {
  width: calc(100% - 108px);
  margin-left: auto;
}
@media (min-width: 770px) {
  .sec-tips .step dl {
    width: calc(100% - 132px);
  }
}
.sec-tips .step dl dt {
  border-top: 1px solid #D09C2B;
  border-bottom: 1px solid #D09C2B;
  color: #D09C2B;
  font-size: 2.6666666667vw;
  font-weight: 900;
  text-align: center;
}
@media (min-width: 770px) {
  .sec-tips .step dl dt {
    font-size: 1.2rem;
  }
}
.sec-tips .step dl dd {
  margin-top: 4px;
  font-size: 3.2vw;
}
@media (min-width: 770px) {
  .sec-tips .step dl dd {
    font-size: 1.5rem;
  }
}

.sec-faq {
  padding: 80px 15px 0;
}
.sec-faq h2 {
  margin-bottom: 16px;
  color: #956413;
  font-size: 5.3333333333vw;
  font-weight: 900;
  text-align: center;
}
@media (min-width: 770px) {
  .sec-faq h2 {
    font-size: 2.4rem;
  }
}
.sec-faq .faq-item {
  background: rgba(255, 255, 255, 0.6);
}
.sec-faq .faq-item + .faq-item {
  margin-top: 8px;
}
.sec-faq .faq-item dt {
  position: relative;
  padding: 8px 27px 8px 8px;
  color: #956413;
  font-size: 4vw;
  font-weight: 900;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 770px) {
  .sec-faq .faq-item dt {
    font-size: 1.8rem;
  }
}
.sec-faq .faq-item dt .icon {
  display: block;
  position: absolute;
  top: 50%;
  right: 8px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 11px;
  height: 11px;
}
.sec-faq .faq-item dt .icon::before, .sec-faq .faq-item dt .icon::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  background: #D09C2B;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.sec-faq .faq-item dt .icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.sec-faq .faq-item dt .icon::after {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.sec-faq .faq-item dt.is-active .icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(0);
          transform: translate(-50%, -50%) rotate(0);
}
@media (hover: hover) and (pointer: fine) {
  .sec-faq .faq-item dt:hover {
    background: #D09C2B;
    color: #fff;
  }
  .sec-faq .faq-item dt:hover .icon::before, .sec-faq .faq-item dt:hover .icon::after {
    background: #fff;
  }
}
.sec-faq .faq-item dd {
  display: none;
  padding: 0 8px 8px;
  font-size: 3.2vw;
}
@media (min-width: 770px) {
  .sec-faq .faq-item dd {
    font-size: 1.5rem;
  }
}

.sns-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  margin: 40px 0;
}
.sns-link li {
  width: 13.3333333333vw;
}
@media (min-width: 770px) {
  .sns-link li {
    width: 61px;
  }
}
.sns-link li a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .sns-link li a:hover {
    opacity: 0.5;
  }
}

/* lower */
.l-lower-contents .lower-title {
  padding: 32px 0;
  color: #956413;
  font-size: 6.4vw;
  font-weight: 900;
  text-align: center;
}
@media (min-width: 770px) {
  .l-lower-contents .lower-title {
    font-size: 2.4rem;
  }
}
.l-lower-contents .sec-contract .item + .item {
  margin-top: 16px;
}
.l-lower-contents .sec-contract .item dt {
  padding: 0 0 8px;
  border-bottom: 1px solid #D09C2B;
  color: #956413;
  font-size: 4vw;
  font-weight: 900;
}
@media (min-width: 770px) {
  .l-lower-contents .sec-contract .item dt {
    font-size: 1.5rem;
  }
}
.l-lower-contents .sec-contract .item dd {
  margin-top: 4px;
  font-size: 3.2vw;
}
@media (min-width: 770px) {
  .l-lower-contents .sec-contract .item dd {
    font-size: 1.2rem;
  }
}
.l-lower-contents .sec-policy .policy-title {
  margin-bottom: 4px;
  padding: 0 0 8px;
  border-bottom: 1px solid #D09C2B;
  color: #956413;
  font-size: 4vw;
  font-weight: 900;
}
@media (min-width: 770px) {
  .l-lower-contents .sec-policy .policy-title {
    font-size: 1.5rem;
  }
}
.l-lower-contents .sec-policy .policy-text {
  font-size: 3.2vw;
}
@media (min-width: 770px) {
  .l-lower-contents .sec-policy .policy-text {
    font-size: 1.2rem;
  }
}
.l-lower-contents .sec-policy .policy-text strong {
  font-weight: 900;
}
.l-lower-contents .sec-policy .policy-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 4px;
  font-size: 3.2vw;
  text-align: right;
}
@media (min-width: 770px) {
  .l-lower-contents .sec-policy .policy-info {
    font-size: 1.2rem;
  }
}
.l-lower-contents .sec-policy .policy-info p + p {
  margin-left: 1em;
}
.l-lower-contents .sec-product .product-image .product-slider-thumbnail .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  width: auto !important;
  -webkit-transform: unset !important;
          transform: unset !important;
}
.l-lower-contents .sec-product .product-image .product-slider-thumbnail .slick-track::before, .l-lower-contents .sec-product .product-image .product-slider-thumbnail .slick-track::after {
  display: none;
}
.l-lower-contents .sec-product .product-image .product-slider-thumbnail .thumbnail-img {
  width: calc(20% - 6.4px) !important;
}
.l-lower-contents .sec-product .product-info {
  margin-top: 32px;
}
.l-lower-contents .sec-product .product-info .product-despriction h2 {
  font-size: 4vw;
  font-weight: 900;
  text-align: center;
}
@media (min-width: 770px) {
  .l-lower-contents .sec-product .product-info .product-despriction h2 {
    font-size: 1.5rem;
  }
}
.l-lower-contents .sec-product .product-info .product-despriction p {
  margin-top: 4px;
  font-size: 3.2vw;
}
@media (min-width: 770px) {
  .l-lower-contents .sec-product .product-info .product-despriction p {
    font-size: 1.2rem;
  }
}
.l-lower-contents .sec-product .product-info .product-select {
  margin-top: 16px;
}
.l-lower-contents .sec-product .product-info .product-select .product-option .makeshop-option-label {
  margin: 0 0 4px;
  font-size: 4vw;
  font-weight: 900;
}
@media (min-width: 770px) {
  .l-lower-contents .sec-product .product-info .product-select .product-option .makeshop-option-label {
    font-size: 1.5rem;
  }
}
.l-lower-contents .sec-product .product-info .product-select .product-option select {
  width: 100%;
  min-height: 40px;
  padding: 6px 40px 6px 8px;
  background: url(../img/arrow_select.svg) no-repeat right 8px center/24px 24px, #fff;
  border: none;
  border-radius: 0;
  font-family: "Zen Old Mincho", serif;
  color: #956413;
  font-size: 4vw;
  font-weight: 900;
}
@media (min-width: 770px) {
  .l-lower-contents .sec-product .product-info .product-select .product-option select {
    font-size: 1.5rem;
  }
}
.l-lower-contents .sec-product .product-info .product-select .product-quantity {
  margin-top: 16px;
}
.l-lower-contents .sec-product .product-info .product-select .product-quantity .quantity-label {
  display: block;
  margin: 0 0 4px;
  font-size: 4vw;
  font-weight: 900;
}
@media (min-width: 770px) {
  .l-lower-contents .sec-product .product-info .product-select .product-quantity .quantity-label {
    font-size: 1.5rem;
  }
}
.l-lower-contents .sec-product .product-info .product-select .product-quantity input {
  width: 100%;
  min-height: 40px;
  padding: 6px 8px;
  background: #fff;
  border: none;
  border-radius: 0;
  font-family: "Zen Old Mincho", serif;
  font-size: 4vw;
  font-weight: 900;
}
@media (min-width: 770px) {
  .l-lower-contents .sec-product .product-info .product-select .product-quantity input {
    font-size: 1.5rem;
  }
}
.l-lower-contents .sec-product .product-info .product-btn-wrap {
  margin-top: 32px;
}
.l-lower-contents .sec-product .product-info .product-btn-wrap .cart-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 60px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(220, 172, 91)), to(rgb(182, 150, 97)));
  background: linear-gradient(180deg, rgb(220, 172, 91) 0%, rgb(182, 150, 97) 100%);
  border: 1px solid #fff;
  color: #fff;
  font-size: 5.3333333333vw;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 770px) {
  .l-lower-contents .sec-product .product-info .product-btn-wrap .cart-btn {
    font-size: 2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-lower-contents .sec-product .product-info .product-btn-wrap .cart-btn:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(#FF859E), to(#FF8C68));
    background: linear-gradient(180deg, #FF859E 0%, #FF8C68 100%);
    letter-spacing: 0.15em;
  }
}
.l-lower-contents .sec-cart .cart-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}
.l-lower-contents .sec-cart .cart-head .cart-head-title {
  padding: 4px;
  border-top: 1px solid #D09C2B;
  border-bottom: 1px solid #D09C2B;
  font-size: 3.2vw;
  text-align: center;
}
@media (min-width: 770px) {
  .l-lower-contents .sec-cart .cart-head .cart-head-title {
    font-size: 1.2rem;
  }
}
.l-lower-contents .sec-cart .cart-head .cart-head-title.info {
  width: 51%;
}
.l-lower-contents .sec-cart .cart-head .cart-head-title.quantity {
  width: 24.5%;
}
.l-lower-contents .sec-cart .cart-head .cart-head-title.price {
  width: 22.2%;
}
.l-lower-contents .sec-cart .cart-lists .cart-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  padding: 8px 0;
  border-bottom: 1px solid #D09C2B;
}
.l-lower-contents .sec-cart .cart-lists .cart-info {
  width: 51%;
}
.l-lower-contents .sec-cart .cart-lists .cart-info .name {
  font-size: 3.2vw;
}
@media (min-width: 770px) {
  .l-lower-contents .sec-cart .cart-lists .cart-info .name {
    font-size: 1.2rem;
  }
}
.l-lower-contents .sec-cart .cart-lists .cart-info .option .option-item {
  font-size: 3.2vw;
}
@media (min-width: 770px) {
  .l-lower-contents .sec-cart .cart-lists .cart-info .option .option-item {
    font-size: 1.2rem;
  }
}
.l-lower-contents .sec-cart .cart-lists .cart-quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 24.5%;
}
.l-lower-contents .sec-cart .cart-lists .cart-quantity input {
  width: 40px;
  min-height: 24px;
  padding: 2px 4px;
  background: #fff;
  border: none;
  border-radius: 0;
  font-family: "Zen Old Mincho", serif;
  font-size: 3.2vw;
}
@media (min-width: 770px) {
  .l-lower-contents .sec-cart .cart-lists .cart-quantity input {
    font-size: 1.2rem;
  }
}
.l-lower-contents .sec-cart .cart-lists .cart-quantity .btn-cart-quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc(100% - 44px);
  min-height: 24px;
  margin-left: auto;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(220, 172, 91)), to(rgb(182, 150, 97)));
  background: linear-gradient(180deg, rgb(220, 172, 91) 0%, rgb(182, 150, 97) 100%);
  border: 1px solid #fff;
  color: #fff;
  font-size: 3.2vw;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 770px) {
  .l-lower-contents .sec-cart .cart-lists .cart-quantity .btn-cart-quantity {
    font-size: 1.2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-lower-contents .sec-cart .cart-lists .cart-quantity .btn-cart-quantity:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(#FF859E), to(#FF8C68));
    background: linear-gradient(180deg, #FF859E 0%, #FF8C68 100%);
    letter-spacing: 0.15em;
  }
}
.l-lower-contents .sec-cart .cart-lists .cart-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 22.2%;
}
.l-lower-contents .sec-cart .cart-lists .cart-price .cart-item-price {
  margin-left: auto;
  font-size: 3.2vw;
  font-weight: 700;
}
@media (min-width: 770px) {
  .l-lower-contents .sec-cart .cart-lists .cart-price .cart-item-price {
    font-size: 1.2rem;
  }
}
.l-lower-contents .sec-cart .cart-lists .cart-delete {
  margin-left: 4px;
  font-size: 3.2vw;
  font-weight: 700;
}
@media (min-width: 770px) {
  .l-lower-contents .sec-cart .cart-lists .cart-delete {
    font-size: 1.2rem;
  }
}
.l-lower-contents .sec-cart .cart-price-total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 8px;
}
.l-lower-contents .sec-cart .cart-price-total .label {
  margin-right: 16px;
  font-size: 3.2vw;
}
@media (min-width: 770px) {
  .l-lower-contents .sec-cart .cart-price-total .label {
    font-size: 1.2rem;
  }
}
.l-lower-contents .sec-cart .cart-price-total .total {
  white-space: nowrap;
  font-size: 5.3333333333vw;
  font-weight: 900;
}
@media (min-width: 770px) {
  .l-lower-contents .sec-cart .cart-price-total .total {
    font-size: 2rem;
  }
}
.l-lower-contents .sec-cart .cart-price-total .total small {
  margin-left: 8px;
  font-size: 3.2vw;
  font-weight: 400;
}
@media (min-width: 770px) {
  .l-lower-contents .sec-cart .cart-price-total .total small {
    font-size: 1.2rem;
  }
}
.l-lower-contents .sec-cart .checkout-btn-wrap {
  margin-top: 40px;
}
.l-lower-contents .sec-cart .checkout-btn-wrap .btn-checkout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 60px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(220, 172, 91)), to(rgb(182, 150, 97)));
  background: linear-gradient(180deg, rgb(220, 172, 91) 0%, rgb(182, 150, 97) 100%);
  border: 1px solid #fff;
  color: #fff;
  font-size: 5.3333333333vw;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 770px) {
  .l-lower-contents .sec-cart .checkout-btn-wrap .btn-checkout {
    font-size: 2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-lower-contents .sec-cart .checkout-btn-wrap .btn-checkout:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(#FF859E), to(#FF8C68));
    background: linear-gradient(180deg, #FF859E 0%, #FF8C68 100%);
    letter-spacing: 0.15em;
  }
}
.l-lower-contents .sec-cart .checkout-btn-wrap .cart-continue {
  margin: 16px 0 0;
  text-align: center;
}
.l-lower-contents .sec-cart .checkout-btn-wrap .cart-continue a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #956413;
  font-size: 4vw;
  font-weight: 900;
}
@media (min-width: 770px) {
  .l-lower-contents .sec-cart .checkout-btn-wrap .cart-continue a {
    font-size: 1.5rem;
  }
}
.l-lower-contents .sec-cart .checkout-btn-wrap .cart-continue a::after {
  display: inline-block;
  content: "";
  width: 6px;
  height: 12px;
  margin-left: 8px;
  background: url(../img/arrow.svg) no-repeat 0 0/contain;
}

.makeshop-modal.remodal-overlay {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.makeshop-modal-window {
  max-width: 300px;
}
.makeshop-modal-window .error-text {
  font-size: 4vw;
  font-weight: 900;
}
@media (min-width: 770px) {
  .makeshop-modal-window .error-text {
    font-size: 1.5rem;
  }
}
.makeshop-modal-window .remodal-confirm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 44px;
  margin: 16px auto 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(220, 172, 91)), to(rgb(182, 150, 97)));
  background: linear-gradient(180deg, rgb(220, 172, 91) 0%, rgb(182, 150, 97) 100%);
  border: 1px solid #fff;
  color: #fff;
  font-size: 5.3333333333vw;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 770px) {
  .makeshop-modal-window .remodal-confirm {
    font-size: 2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .makeshop-modal-window .remodal-confirm:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(#FF859E), to(#FF8C68));
    background: linear-gradient(180deg, #FF859E 0%, #FF8C68 100%);
  }
}