@charset "UTF-8";
:root {
  --viewport-width: min(100vw, 2000px);
  --b: calc(var(--viewport-width) / 160);
}

html {
  background: #acbab8;
}

main {
  position: relative;
  overflow-x: hidden;
  z-index: 0;
}

section {
  position: relative;
  z-index: 0;
}

* {
  color: #fff;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: max(1.4rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}

a > *,
button > * {
  pointer-events: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

a,
button {
  display: block;
}

span {
  display: inline-block;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

span.attention {
  font-size: max(1.6rem, 14px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}

span.attention > * {
  display: block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
span.attention > * > * {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.noLink {
  opacity: 0.7;
  pointer-events: none;
}

.spacer {
  position: relative;
  width: 100%;
  height: max(1rem, 10px);
  z-index: 0;
}
.spacer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  clip-path: inset(0 100% 0 0);
  -webkit-transition: clip-path 2.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: clip-path 2.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  z-index: 10;
}
.spacer.loaded::before, .spacer.active::before {
  clip-path: inset(0);
}

.sectionTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-column-gap: max(1.5rem, 15px);
     -moz-column-gap: max(1.5rem, 15px);
          column-gap: max(1.5rem, 15px);
}
.sectionTitle p {
  font-family: YakuHanJP, "Alex Brush", cursive;
  font-size: max(4rem, 24px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
.sectionTitle h2 {
  font-size: max(2.5rem, 20px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.075em;
}

.contentBg {
  position: relative;
  background: #acbab8;
  z-index: 0;
}
.contentBg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(172, 186, 184, 0.7);
  mix-blend-mode: multiply;
  z-index: -1;
}

.horizontalLine {
  position: relative;
  z-index: 0;
}
.horizontalLine::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  -webkit-transition: clip-path 2.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: clip-path 2.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  z-index: 10;
}
.horizontalLine.bottomToRight::before {
  bottom: 0;
  clip-path: inset(0 100% 0 0);
}
.horizontalLine.topToRight::before {
  top: 0;
  clip-path: inset(0 100% 0 0);
}
.horizontalLine.bottomToLeft::before {
  bottom: 0;
  clip-path: inset(0 0 0 100%);
}
.horizontalLine.topToLeft::before {
  top: 0;
  clip-path: inset(0 0 0 100%);
}
.horizontalLine.loaded::before, .horizontalLine.active::before {
  clip-path: inset(0);
}

.verticalLine {
  position: relative;
  z-index: 0;
}
.verticalLine::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  background: #fff;
  -webkit-transition: clip-path 2.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: clip-path 2.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  z-index: 10;
}
.verticalLine.leftToBottom::before {
  left: 0;
  clip-path: inset(0 0 100% 0);
}
.verticalLine.rightToBottom::before {
  right: 0;
  clip-path: inset(0 0 100% 0);
}
.verticalLine.leftToTop::before {
  left: 0;
  clip-path: inset(100% 0 0 0);
}
.verticalLine.rightToTop::before {
  right: 0;
  clip-path: inset(100% 0 0 0);
}
.verticalLine.loaded::before, .verticalLine.active::before {
  clip-path: inset(0);
}

.header {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  min-height: max(7rem, 65px);
  padding-left: max(1%, 20px);
  background: #acbab8;
  z-index: 999999;
}
.header__logo {
  width: max(14rem, 125px);
}
.header__logo:hover {
  opacity: 0.7;
}
.header__cta {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: max(1rem, 10px);
     -moz-column-gap: max(1rem, 10px);
          column-gap: max(1rem, 10px);
  padding: 0 max(5rem, 30px);
  background: #acbab8;
  z-index: 0;
}
.header__cta::before {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.header__cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(172, 186, 184, 0.7);
  mix-blend-mode: multiply;
  -webkit-transition: background 0.4s ease-out;
  transition: background 0.4s ease-out;
  z-index: -1;
}
.header__cta__text {
  color: #fff;
  font-size: max(1.6rem, 14px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
}
.header__cta__arrow {
  width: max(1.5rem, 14px);
  height: auto;
  -webkit-transition: -webkit-transform 0.4s ease-out;
  transition: -webkit-transform 0.4s ease-out;
  transition: transform 0.4s ease-out;
  transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
}
@media screen and (max-width: 550px) {
  .header__cta__arrow {
    display: none;
  }
}
.header__cta:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.header__cta:hover::after {
  background: #acbab8;
}
.header__cta:hover .header__cta__arrow {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.footer {
  background: #000;
}
.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px 50px;
  padding-top: max(4rem, 40px);
  padding-bottom: max(8rem, 30px);
}
@media screen and (max-width: 1000px) {
  .footer__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer .footer__logo {
  width: min(100%, max(31.5rem, 300px));
}
.footer .footer__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: right;
      -ms-flex-align: right;
          align-items: right;
  row-gap: max(1rem, 10px);
}
@media screen and (max-width: 1000px) {
  .footer .footer__tel {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer .footer__tel strong {
  color: #fff;
  font-family: YakuHanJP, "Marcellus", sans-serif;
  font-size: max(6.2rem, 35px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
}
.footer .footer__tel p {
  text-align: right;
  color: #fff;
  font-family: YakuHanJP, "Shippori Mincho", serif;
  font-size: max(1.6rem, 13px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}
.footer .footer__tel p span {
  text-align: left;
  font-family: YakuHanJP, "Marcellus", sans-serif;
  font-size: 1.1em;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.footer__copy {
  text-align: center;
  padding-bottom: max(2.5rem, 20px);
}
.footer__copy span {
  color: #fff;
  font-family: YakuHanJP, "Marcellus", sans-serif;
  font-size: max(1.4rem, 12px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.fixedBanner {
  position: fixed;
  display: block;
  right: 0;
  bottom: 5%;
  max-width: max(40rem, 400px);
  border: 1px solid #fff;
  border-right: none;
  border-radius: 6px 0 0 6px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s ease-out;
  transition: -webkit-transform 0.4s ease-out;
  transition: transform 0.4s ease-out;
  transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
  z-index: 9999;
}
@media screen and (max-width: 550px) {
  .fixedBanner {
    bottom: 0;
    width: 100%;
    max-width: 100%;
    border: 1px solid #fff;
    border-radius: 6px 6px 0 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
.fixedBanner.is-visible:not(.closed) {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
@media screen and (max-width: 550px) {
  .fixedBanner.is-visible:not(.closed) {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
.fixedBanner.closed .fixedBanner__circle {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease-out, visibility 0s linear 0.4s;
  transition: opacity 0.4s ease-out, visibility 0s linear 0.4s;
}
@media screen and (min-width: 550px) {
  .fixedBanner.closed {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  .fixedBanner.closed .fixedBanner__toggle__arrow {
    -webkit-transform: rotate(135deg) translate(-25%, -25%) !important;
            transform: rotate(135deg) translate(-25%, -25%) !important;
  }
}
.fixedBanner__toggle {
  position: absolute;
  display: grid;
  place-items: center;
  right: 100%;
  top: 23%;
  background: #fff;
  width: max(3rem, 25px);
  padding: max(2rem, 20px) 0;
}
@media screen and (max-width: 550px) {
  .fixedBanner__toggle {
    display: none;
  }
}
.fixedBanner__toggle__arrow {
  border-right: 1.5px solid #4f5c5a;
  border-bottom: 1.5px solid #4f5c5a;
  width: max(1.2rem, 12px);
  height: auto;
  aspect-ratio: 1/1;
  -webkit-transform: rotate(-45deg) translate(-25%, -25%);
          transform: rotate(-45deg) translate(-25%, -25%);
  -webkit-transition: -webkit-transform 0.4s ease-out;
  transition: -webkit-transform 0.4s ease-out;
  transition: transform 0.4s ease-out;
  transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
}
.fixedBanner__content {
  -webkit-box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
}
.fixedBanner__header {
  text-align: center;
  padding: max(1rem, 0px) 5%;
  border-top-left-radius: 6px;
  border-bottom: 1px solid #fff;
  background: #4f5c5a;
}
@media screen and (max-width: 550px) {
  .fixedBanner__header {
    border-radius: 6px 6px 0 0;
  }
}
.fixedBanner__header span {
  color: #fff;
  font-size: max(1.6rem, 14px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}
.fixedBanner__body {
  padding: max(2rem, 10px) 7.5% max(2rem, 5px);
  background: rgba(255, 255, 255, 0.4);
  border-bottom-left-radius: 6px;
  backdrop-filter: brightness(1.45) blur(30px);
  will-change: backdrop-filter;
}
@media screen and (max-width: 550px) {
  .fixedBanner__body {
    border-radius: 0;
    padding: max(2rem, 10px) 4% max(2rem, 5px);
  }
}
.fixedBanner__body__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}
.fixedBanner__body__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
.fixedBanner__body__text .supplement {
  color: #4f5c5a;
  padding: max(0.75rem, 7.5px) 0;
  margin-bottom: max(1rem, 10px);
  border-top: 1px dotted #4f5c5a;
  border-bottom: 1px dotted #4f5c5a;
  font-size: max(1.6rem, 16px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 550px) {
  .fixedBanner__body__text .supplement {
    font-size: 3.4vw;
    margin-bottom: 0;
  }
}
.fixedBanner__body__text strong {
  display: inline-block;
  width: max(32rem, 320px);
  height: auto;
  text-align: center;
}
@media screen and (max-width: 550px) {
  .fixedBanner__body__text strong {
    width: 100%;
  }
}
.fixedBanner__body__text strong img {
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
.fixedBanner__body__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;
  -webkit-column-gap: max(1rem, 10px);
     -moz-column-gap: max(1rem, 10px);
          column-gap: max(1rem, 10px);
  padding: max(1rem, 10px);
  margin-top: max(1rem, 10px);
  background: rgba(172, 186, 184, 0.6);
  border-radius: 999px;
}
@media screen and (max-width: 550px) {
  .fixedBanner__body__btn {
    display: none;
  }
}
.fixedBanner__body__btn__text {
  color: #4f5c5a;
  font-size: max(1.4rem, 14px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}
.fixedBanner__circle {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  height: auto;
  aspect-ratio: 1/1;
  background: #fff;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.4s ease-out, visibility 0s linear 0s;
  transition: opacity 0.4s ease-out, visibility 0s linear 0s;
}
.fixedBanner__circle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#5c716e), to(rgba(172, 186, 184, 0.5)));
  background: linear-gradient(to bottom, #5c716e, rgba(172, 186, 184, 0.5));
  z-index: -1;
}
.fixedBanner__circle.pc {
  display: grid;
}
@media screen and (max-width: 550px) {
  .fixedBanner__circle.pc {
    display: none;
  }
}
.fixedBanner__circle.sp {
  display: none;
}
@media screen and (max-width: 550px) {
  .fixedBanner__circle.sp {
    display: grid;
  }
}
@media screen and (min-width: 550px) {
  .fixedBanner__circle {
    position: absolute;
    top: 0;
    left: 0;
    width: max(7rem, 65px);
    -webkit-transform: translate(-30%, -50%);
            transform: translate(-30%, -50%);
  }
}
@media screen and (max-width: 550px) {
  .fixedBanner__circle {
    width: 18vw;
  }
}
.fixedBanner__circle p {
  text-align: center;
  line-height: 1.5;
}
.fixedBanner__circle p b {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-column-gap: max(0.2em, 2px);
     -moz-column-gap: max(0.2em, 2px);
          column-gap: max(0.2em, 2px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (min-width: 550px) {
  .fixedBanner__circle p b {
    font-size: max(1.6rem, 16px);
  }
}
@media screen and (max-width: 550px) {
  .fixedBanner__circle p b {
    font-size: 5vw;
  }
}
.fixedBanner__circle p b span {
  color: inherit;
  font-family: inherit;
  font-size: 0.6em;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.fixedBanner__circle p > span {
  display: block;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}
@media screen and (min-width: 550px) {
  .fixedBanner__circle p > span {
    font-size: max(1.3rem, 13px);
  }
}
@media screen and (max-width: 550px) {
  .fixedBanner__circle p > span {
    font-size: 3vw;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 100svh;
}
.hero__bg {
  width: 100%;
  height: calc(100% - 10px);
}
.hero__bg img {
  width: 100%;
  height: 100%;
}
.hero__wrapper {
  position: absolute;
  inset: 0;
  z-index: 10;
}
.hero__title {
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 5%;
  z-index: 10;
}
.hero__title h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: max(1vw, 10px);
  font-size: max(4.625vw, 36px);
  line-height: 1.2;
}
.hero__title h1 .jp {
  font-weight: 400;
  letter-spacing: 0.1em;
}
.hero__title h1 .en {
  font-family: YakuHanJP, "Outfit", sans-serif;
  font-size: 1.176em;
  font-weight: 200;
  letter-spacing: 0.05em;
}
.hero__title p {
  width: max(13%, 130px);
}

.preface__header {
  padding: max(4rem, 15px) 5%;
}
.preface__wrapper {
  display: grid;
  grid-template-columns: max(90rem, 500px) 1fr;
}
@media screen and (max-width: 1000px) {
  .preface__wrapper {
    grid-template-columns: 1fr;
  }
}
.preface__images {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 9/7;
}
@media screen and (max-width: 1000px) {
  .preface__images {
    display: none;
  }
}
.preface__images .imageBox {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  will-change: transform, opacity;
}
.preface__images .imageBox > img {
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-filter: blur(5px);
          filter: blur(5px);
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 1.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.8s ease-out, -webkit-transform 1.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.8s ease-out, transform 1.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.8s ease-out, transform 1.4s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 1.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.preface__images .imageBox__inner {
  position: absolute;
  overflow: hidden;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  clip-path: inset(100% 0 0 0);
  -webkit-transition: clip-path 1s cubic-bezier(0.77, 0, 0.175, 1);
  transition: clip-path 1s cubic-bezier(0.77, 0, 0.175, 1);
}
.preface__images .imageBox__inner img {
  width: 100%;
  height: 100%;
}
.preface__images .imageBox.is-active {
  z-index: 2;
  pointer-events: auto;
}
.preface__images .imageBox.is-active > img {
  opacity: 0.47;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.preface__images .imageBox.is-active .imageBox__inner {
  clip-path: inset(0 0 0 0);
}
.preface__content {
  display: grid;
  align-self: stretch;
  grid-template-rows: repeat(3, 1fr);
}
@media screen and (max-width: 1000px) {
  .preface__content {
    display: block;
  }
}
.preface__content__item {
  position: relative;
  background: #acbab8;
  z-index: 0;
}
.preface__content__item::after {
  content: "";
  position: absolute;
  inset: 0;
  width: max(7rem, 70px);
  background: rgba(79, 92, 90, 0.7);
  mix-blend-mode: multiply;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.4s ease-out;
  transition: -webkit-transform 0.4s ease-out;
  transition: transform 0.4s ease-out;
  transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
  z-index: -1;
}
@media screen and (max-width: 1000px) {
  .preface__content__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.preface__content__item__image {
  display: none;
}
@media screen and (max-width: 1000px) {
  .preface__content__item__image {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 9/7;
    overflow: hidden;
  }
  .preface__content__item__image > img {
    width: 100%;
    height: 100%;
    opacity: 0.47;
    -webkit-filter: blur(5px);
            filter: blur(5px);
  }
  .preface__content__item__image__inner {
    position: absolute;
    overflow: hidden;
    inset: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  .preface__content__item__image__inner img {
    width: 100%;
    height: 100%;
  }
}
.preface__content__item__detail {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: max(7rem, 70px) 1fr;
}
.preface__content__item__number {
  text-align: center;
  padding: max(3rem, 25px) max(1rem, 10px);
  font-family: YakuHanJP, "Outfit", sans-serif;
  font-size: max(2rem, 16px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.05em;
}
.preface__content__item__exp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: max(3rem, 15px);
  min-height: 100px;
}
.preface__content__item__exp hgroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-column-gap: max(1.7rem, 10px);
     -moz-column-gap: max(1.7rem, 10px);
          column-gap: max(1.7rem, 10px);
}
@media screen and (max-width: 768px) {
  .preface__content__item__exp hgroup {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.preface__content__item__exp hgroup h3 {
  font-size: max(2.5rem, 18px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.075em;
}
.preface__content__item__exp hgroup p {
  font-size: max(1.8rem, 14px);
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1000px) {
  .preface__content__item:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

.voice__wrapper {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 1fr auto;
}
@media screen and (max-width: 1000px) {
  .voice__wrapper {
    display: block;
  }
}
.voice__header {
  display: grid;
  place-items: center;
  grid-column: 1/2;
  grid-row: 1/2;
  padding: max(5rem, 30px);
}
.voice__header .sectionTitle {
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.voice__content {
  position: relative;
  overflow: hidden;
  grid-row: 1/3;
  grid-column: 2/3;
  background: #acbab8;
  z-index: 0;
}
.voice__content__bg {
  position: absolute;
  mix-blend-mode: multiply;
  inset: 0;
  z-index: -1;
}
.voice__content__bg img {
  width: 100%;
  height: 100%;
  opacity: 0.54;
}
.voice__content__slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max(44rem, 350px);
  grid-template-rows: 1fr auto;
  -webkit-column-gap: max(3.5rem, 20px);
     -moz-column-gap: max(3.5rem, 20px);
          column-gap: max(3.5rem, 20px);
  padding: max(8rem, 50px);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: -webkit-grab;
  cursor: grab;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
}
.voice__content__slider.is-dragging {
  cursor: -webkit-grabbing;
  cursor: grabbing;
  scroll-behavior: auto;
}
.voice__content__slider.is-dragging * {
  pointer-events: none;
}
.voice__content__slider::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 768px) {
  .voice__content__slider {
    padding-left: 10%;
    padding-right: 10%;
    grid-auto-columns: 90%;
  }
}
@media screen and (max-width: 550px) {
  .voice__content__slider {
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 0;
  }
}
.voice__content__slider__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  position: relative;
  max-width: max(44rem, 400px);
  border: 1px solid #fff;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .voice__content__slider__item {
    width: 100%;
    max-width: 100%;
  }
}
.voice__content__slider__item::before {
  content: "";
  position: absolute;
  background: #4f5c5a;
  top: 0;
  right: 0;
  width: 10%;
  height: auto;
  aspect-ratio: 1/1;
  clip-path: polygon(0 0, 100% 100%, 100% 0);
}
.voice__content__slider__item__body {
  padding: max(5rem, 30px) 5%;
}
.voice__content__slider__item__body h3 {
  color: #4f5c5a;
  font-size: max(2rem, 18px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.075em;
  margin-bottom: max(2rem, 15px);
}
@media screen and (max-width: 550px) {
  .voice__content__slider__item__body h3 {
    line-height: 1.5;
    margin-bottom: 10px;
  }
}
.voice__content__slider__item__body p {
  color: #4f5c5a;
}
@media screen and (max-width: 550px) {
  .voice__content__slider__item__body p {
    line-height: 1.75;
  }
}
.voice__content__slider__item__footer {
  position: relative;
  text-align: right;
  padding: max(1.5rem, 15px) 5%;
}
.voice__content__slider__item__footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-image: linear-gradient(to right, #000 4px, transparent 3px);
  background-size: 7px 1px;
  background-repeat: repeat-x;
}
.voice__content__slider__item__footer span {
  color: #4f5c5a;
  font-size: max(1.4rem, 14px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.voice__nav {
  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;
  grid-row: 2/3;
  grid-column: 1/2;
  gap: max(8rem, 30px);
  padding: max(4rem, 20px);
}
@media screen and (max-width: 550px) {
  .voice__nav.pc {
    display: none;
  }
}
.voice__nav.sp {
  display: none;
}
@media screen and (max-width: 550px) {
  .voice__nav.sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: max(5rem, 30px) 5%;
  }
}
.voice__nav__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: max(1rem, 10px);
     -moz-column-gap: max(1rem, 10px);
          column-gap: max(1rem, 10px);
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.voice__nav__btn:hover {
  opacity: 0.7;
}
.voice__nav__btn.is-disabled, .voice__nav__btn:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}
.voice__nav__btn__text {
  color: #fff;
  font-family: YakuHanJP, "Outfit", sans-serif;
  font-size: max(1.6rem, 16px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.1em;
}
.voice__nav__btn__arrow {
  display: grid;
  place-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: max(7.5rem, 65px);
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid #fff;
}
.voice__nav__btn__arrow svg {
  width: 20%;
  height: auto;
}

.features {
  overflow: hidden;
}
.features__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #4f5c5a;
}
.features__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(172, 186, 184, 0.7);
  mix-blend-mode: multiply;
}
.features__wrapper {
  padding-top: max(11.5rem, 70px);
  padding-bottom: max(11.5rem, 70px);
}
.features__content {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: 1fr max(44.5rem, 300px);
  gap: 50px max(4.5rem, 20px);
  padding: max(5rem, 30px) 5%;
  margin-top: max(2.5rem, 20px);
  background: #fff;
}
@media screen and (max-width: 1300px) {
  .features__content {
    grid-template-columns: 1fr;
  }
}
.features__content__detail__faq:not(:first-of-type) {
  position: relative;
  margin-top: max(2.5rem, 15px);
  padding-top: max(2.5rem, 15px);
}
.features__content__detail__faq:not(:first-of-type)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-image: linear-gradient(to right, #000 4px, transparent 3px);
  background-size: 7px 1px;
  background-repeat: repeat-x;
}
.features__content__detail__faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  margin-bottom: max(1rem, 10px);
}
@media screen and (max-width: 768px) {
  .features__content__detail__faq__question {
    width: 100%;
    text-align: left;
  }
}
.features__content__detail__faq__question__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  color: #4f5c5a;
  font-size: max(2rem, 18px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.075em;
  padding-left: 1.5em;
}
@media screen and (max-width: 550px) {
  .features__content__detail__faq__question__text {
    padding-left: 0;
    font-size: 16px;
  }
}
.features__content__detail__faq__question__text::before {
  content: "Q.";
  position: absolute;
  left: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
@media screen and (max-width: 550px) {
  .features__content__detail__faq__question__text::before {
    position: relative;
  }
}
.features__content__detail__faq__question__icon {
  display: none;
}
@media screen and (max-width: 768px) {
  .features__content__detail__faq__question__icon {
    position: relative;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: stretch;
        align-self: stretch;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: max(6rem, 30px);
    padding: max(0.75rem, 5px);
    border-radius: 999px;
    border: 1px solid #acbab8;
    background: #acbab8;
  }
  .js-accordion.is-open .features__content__detail__faq__question__icon {
    background: #fff;
  }
}
@media screen and (max-width: 768px) {
  .features__content__detail__faq__question__icon__line {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 45%;
    height: 1px;
    background: #fff;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -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;
  }
  .features__content__detail__faq__question__icon__line:last-of-type {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
            transform: translate(-50%, -50%) rotate(90deg);
  }
  .js-accordion.is-open .features__content__detail__faq__question__icon__line:last-of-type {
    background: #acbab8;
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
}
@media screen and (max-width: 768px) {
  .features__content__detail__faq__answer {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    -webkit-transition: grid-template-rows 0.35s ease;
    transition: grid-template-rows 0.35s ease;
    transition: grid-template-rows 0.35s ease, -ms-grid-rows 0.35s ease;
  }
  .features__content__detail__faq__answer > * {
    min-height: 0;
  }
  .js-accordion.is-open .features__content__detail__faq__answer {
    grid-template-rows: 1fr;
  }
}
.features__content__detail__faq__answer p {
  position: relative;
  color: #4f5c5a;
  font-size: max(1.4rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.075em;
  padding-left: 1.5em;
}
@media screen and (max-width: 550px) {
  .features__content__detail__faq__answer p {
    padding-left: 0;
  }
}
.features__content__detail__faq__answer p::before {
  content: "A.";
  position: absolute;
  left: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
@media screen and (max-width: 550px) {
  .features__content__detail__faq__answer p::before {
    position: relative;
  }
}

.life {
  background: #acbab8;
}
.life .spacer.sp {
  display: none;
}
@media screen and (max-width: 1000px) {
  .life .spacer.sp {
    display: block;
  }
}
.life__wrapper {
  display: grid;
}
.life__wrapper--first {
  grid-template-columns: 1fr 55%;
}
@media screen and (max-width: 1000px) {
  .life__wrapper--first {
    grid-template-columns: 1fr;
  }
}
.life__wrapper--first .life__image {
  margin-right: 10px;
  padding: max(5rem, 30px) 10%;
}
@media screen and (max-width: 1000px) {
  .life__wrapper--first .life__image {
    margin-right: 0;
  }
}
@media screen and (max-width: 550px) {
  .life__wrapper--first .life__image {
    padding: max(5rem, 30px) 5%;
  }
}
.life__wrapper--second {
  grid-template-columns: 55% 1fr;
}
@media screen and (max-width: 1000px) {
  .life__wrapper--second {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.life__wrapper--second .life__image {
  margin-left: 10px;
  padding: max(2rem, 20px) 10%;
}
@media screen and (max-width: 1000px) {
  .life__wrapper--second .life__image {
    margin-left: 0;
  }
}
@media screen and (max-width: 550px) {
  .life__wrapper--second .life__image {
    padding: max(2rem, 20px) 5%;
  }
}
.life__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1000px) {
  .life__content::before {
    display: none;
  }
}
.life__content__title {
  padding: max(4rem, 30px) 5%;
}
.life__content__title h2 {
  font-size: max(2.5rem, 20px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.life__content__text {
  position: relative;
  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;
  height: 100%;
  padding: max(4rem, 30px) 5%;
  background: #acbab8;
  overflow: hidden;
  z-index: 0;
}
@media screen and (max-width: 1000px) {
  .life__content__text::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    clip-path: inset(0 100% 0 0);
    -webkit-transition: clip-path 2.4s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: clip-path 2.4s cubic-bezier(0.075, 0.82, 0.165, 1);
    z-index: 10;
  }
}
.life__content__text.active::before {
  clip-path: inset(0);
}
.life__content__text__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  mix-blend-mode: multiply;
  opacity: 0.54;
}
.life__content__text__bg img {
  width: 100%;
  height: 100%;
}
.life__content__text p {
  font-size: max(1.6rem, 14px);
  font-weight: 400;
  line-height: 2.5;
  letter-spacing: 0.05em;
}
.life__image {
  display: grid;
  place-items: center;
}
@media screen and (max-width: 1000px) {
  .life__image::before {
    display: none;
  }
}
.life__image .imageBox {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1000px) {
  .life__image .imageBox {
    max-width: 500px;
  }
}

.point__wrapper {
  position: relative;
  padding-top: max(15rem, 100px);
  padding-bottom: max(12.5rem, 70px);
  overflow: hidden;
  z-index: 0;
}
.point__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  z-index: -1;
}
.point__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(#5c716e), to(rgba(172, 186, 184, 0.5)));
  background: linear-gradient(to right, #5c716e, rgba(172, 186, 184, 0.5));
  mix-blend-mode: multiply;
}
.point__bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 80%;
  background: -webkit-gradient(linear, left bottom, left top, from(#acbab8), to(rgba(172, 186, 184, 0)));
  background: linear-gradient(to top, #acbab8, rgba(172, 186, 184, 0));
}
.point__header__number {
  font-family: YakuHanJP, "Alex Brush", cursive;
  font-size: max(4rem, 24px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: max(2rem, 15px);
}
.point__header hgroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-column-gap: max(2rem, 15px);
     -moz-column-gap: max(2rem, 15px);
          column-gap: max(2rem, 15px);
}
.point__header hgroup h2 {
  font-size: max(3.5rem, 32px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.point__header hgroup p {
  font-size: max(1.6rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
.point__body {
  margin-top: max(12rem, 60px);
}
.point__body__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: max(2.5rem, 20px) 5%;
  background: #4f5c5a;
  cursor: pointer;
}
.point__body__title strong {
  font-size: max(2rem, 16px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.075em;
}
.point__body__title__toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: max(1rem, 10px);
     -moz-column-gap: max(1rem, 10px);
          column-gap: max(1rem, 10px);
}
.point__body__title__toggle__text {
  font-family: YakuHanJP, "Outfit", sans-serif;
  font-size: max(1.6rem, 15px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.1em;
}
.point__body__title__toggle__icon {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: max(2rem, 20px);
  height: max(2rem, 20px);
}
.point__body__title__toggle__icon__line {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -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;
}
.point__body__title__toggle__icon__line:last-of-type {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.js-point-accordion.is-open .point__body__title__toggle__icon__line:last-of-type {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}
.point__body__content {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  background: #fff;
  -webkit-transition: grid-template-rows 0.35s ease;
  transition: grid-template-rows 0.35s ease;
  transition: grid-template-rows 0.35s ease, -ms-grid-rows 0.35s ease;
}
.js-point-accordion.is-open .point__body__content {
  grid-template-rows: 1fr;
}
.point__body__content__wrap {
  min-height: 0;
  overflow: hidden;
}
.point__body__content__inner {
  padding: 0 7.5%;
  -webkit-transition: padding 0.35s ease;
  transition: padding 0.35s ease;
}
.point__body__content__inner:not(:first-of-type) {
  padding-top: 0;
}
.point__body__content__inner--primary {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: max(7rem, 20px) max(1.5rem, 15px);
  grid-template-columns: 1fr max(58.5rem, 300px);
}
@media screen and (max-width: 1300px) {
  .point__body__content__inner--primary {
    grid-template-columns: 1fr;
  }
}
.point__body__content__inner--primary .point__body__content__image {
  width: 100%;
  height: auto;
  aspect-ratio: 117/64;
}
.point__body__content__inner--secondary {
  display: grid;
  gap: max(7rem, 40px);
}
.point__body__content__inner--secondary .point__body__content__image {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  gap: max(7rem, 30px) max(3rem, 20px);
}
@media screen and (max-width: 1000px) {
  .point__body__content__inner--secondary .point__body__content__image {
    grid-template-columns: 1fr;
  }
}
.point__body__content__inner--tertiary .point__body__content__image {
  margin-top: max(3rem, 30px);
}
.point__body__content__inner--tertiary .point__body__content__image .imageBox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  gap: max(7rem, 30px) max(3rem, 20px);
}
@media screen and (max-width: 1000px) {
  .point__body__content__inner--tertiary .point__body__content__image .imageBox {
    grid-template-columns: 1fr;
  }
}
.js-point-accordion.is-open .point__body__content__inner {
  padding: max(6.5rem, 30px) 7.5%;
}
.js-point-accordion.is-open .point__body__content__inner:not(:first-of-type) {
  padding-top: 0;
}
.point__body__content h3 {
  position: relative;
  color: #4f5c5a;
  font-size: max(2rem, 16px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.075em;
  padding-left: 1.5em;
  margin-bottom: max(2.5rem, 20px);
}
.point__body__content h3::before {
  content: "◼︎";
  position: absolute;
  left: 0;
  color: #acbab8;
  font-size: 1em;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  -webkit-transform: scale(1.8) translateY(-2%);
          transform: scale(1.8) translateY(-2%);
}
.point__body__content__text p {
  color: #4f5c5a;
}
.point__body__content__text span.attention {
  color: #4f5c5a;
  margin-top: max(2.5rem, 20px);
  font-size: max(1.2rem, 12px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0;
}

.cta {
  background: #4f5c5a;
  mix-blend-mode: multiply;
}
.cta__wrapper {
  padding-top: max(8rem, 50px);
  padding-bottom: max(8rem, 50px);
}
.cta h2 {
  text-align: center;
  font-size: max(3.5rem, 20px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.cta h2 b {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.cta h2 b span {
  --emphasis-dot-top: -0.3em;
  --emphasis-dot-size: 0.75em;
  --emphasis-dot-spacing: 0.89em;
  position: relative;
  display: inline-block;
}
.cta h2 b span::before {
  content: "・・・・";
  position: absolute;
  top: var(--emphasis-dot-top);
  left: 50%;
  color: inherit;
  font-size: var(--emphasis-dot-size);
  line-height: 1;
  letter-spacing: var(--emphasis-dot-spacing);
  white-space: nowrap;
  -webkit-transform: translateX(-43%);
          transform: translateX(-43%);
  pointer-events: none;
}
.cta__btn {
  position: relative;
  margin-top: max(3.85rem, 30px);
  -webkit-transition: -webkit-transform 0.4s ease-out;
  transition: -webkit-transform 0.4s ease-out;
  transition: transform 0.4s ease-out;
  transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
}
.cta__btn__circle {
  display: none;
}
@media screen and (min-width: 768px) {
  .cta__btn__circle {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    background: #acbab8;
    border-radius: 50%;
    border: max(0.3rem, 3px) solid #fff;
    top: 50%;
    left: 0;
    width: auto;
    height: auto;
    padding: max(2.5rem, 15px);
    aspect-ratio: 1/1;
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transition: -webkit-transform 0.4s ease-out;
    transition: -webkit-transform 0.4s ease-out;
    transition: transform 0.4s ease-out;
    transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
    z-index: 0;
  }
  .cta__btn__circle::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #acbab8;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transition: -webkit-transform 0.4s ease-out 0.2s;
    transition: -webkit-transform 0.4s ease-out 0.2s;
    transition: transform 0.4s ease-out 0.2s;
    transition: transform 0.4s ease-out 0.2s, -webkit-transform 0.4s ease-out 0.2s;
  }
  .cta__btn__circle p {
    font-size: max(2.2rem, 16px);
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0;
  }
  .cta__btn__circle p b {
    color: inherit;
    font-family: YakuHanJP, "Outfit", sans-serif;
    font-size: 2em;
    font-weight: inherit;
    line-height: 1;
    letter-spacing: 0;
  }
  .cta__btn__circle p b small {
    color: inherit;
    font-family: inherit;
    font-size: 0.5em;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
  }
  .cta__btn__circle p > span {
    letter-spacing: -0.15em;
  }
}
.cta__btn__content {
  border-radius: max(0.6rem, 5px);
  border: max(0.2rem, 2px) solid #fff;
  background: #fff;
  -webkit-transition: -webkit-box-shadow 0.4s ease-out;
  transition: -webkit-box-shadow 0.4s ease-out;
  transition: box-shadow 0.4s ease-out;
  transition: box-shadow 0.4s ease-out, -webkit-box-shadow 0.4s ease-out;
  overflow: hidden;
}
.cta__btn__content__header {
  text-align: center;
  padding: max(0.5rem, 5px) 5%;
  background: #4f5c5a;
}
@media screen and (max-width: 768px) {
  .cta__btn__content__header {
    text-align: left;
    padding: max(2rem, 15px) 5%;
  }
}
.cta__btn__content__header h3 {
  font-size: max(3.2rem, 22px);
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
}
.cta__btn__content__body {
  text-align: center;
  padding: max(1.5rem, 10px) 2.5% max(3rem, 20px) max(10%, 90px);
}
@media screen and (max-width: 768px) {
  .cta__btn__content__body {
    padding: max(4rem, 25px) 5%;
  }
}
.cta__btn__content__body .supplement {
  position: relative;
  display: block;
  margin-bottom: max(2rem, 15px);
  color: #4f5c5a;
  font-size: max(2.2rem, 14px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .cta__btn__content__body .supplement {
    padding: max(1rem, 10px) 0;
  }
}
.cta__btn__content__body .supplement::before, .cta__btn__content__body .supplement::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background-image: linear-gradient(to right, #000 4px, transparent 3px);
  background-size: 7px 1px;
  background-repeat: repeat-x;
}
.cta__btn__content__body .supplement::before {
  top: 0;
}
.cta__btn__content__body .supplement::after {
  bottom: 0;
}
.cta__btn__content__body .period {
  display: none;
}
@media screen and (max-width: 768px) {
  .cta__btn__content__body .period {
    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: 100%;
    margin-top: max(2rem, 20px);
    padding: max(1.5rem, 15px) 5%;
    background: #acbab8;
    border-radius: max(0.6rem, 5px);
    border-radius: 2px solid #fff;
  }
  .cta__btn__content__body .period dt {
    position: relative;
    font-size: max(1.6rem, 16px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0;
    padding-right: max(1.5rem, 15px);
    margin-right: max(1rem, 10px);
  }
  .cta__btn__content__body .period dt::before {
    content: "";
    position: absolute;
    top: 10%;
    bottom: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-image: linear-gradient(to bottom, #fff 3px, transparent 2px);
    background-size: 1px 5px;
    background-repeat: repeat-y;
  }
  .cta__btn__content__body .period dd {
    font-size: max(1.7rem, 17px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.15em;
  }
  .cta__btn__content__body .period dd b {
    font-family: YakuHanJP, "Outfit", sans-serif;
    font-size: 1.5em;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
  }
  .cta__btn__content__body .period dd b small {
    color: inherit;
    font-family: inherit;
    font-size: 0.75em;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
  }
}
@media screen and (min-width: 768px) {
  .cta__btn.active .cta__btn__circle {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  .cta__btn.active .cta__btn__circle::before {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
.cta__btn:hover {
  -webkit-transform: translateY(-5%);
          transform: translateY(-5%);
}
.cta__btn:hover .cta__btn__content {
  -webkit-box-shadow: 5px 5px 3px rgba(0, 0, 0, 0.15);
          box-shadow: 5px 5px 3px rgba(0, 0, 0, 0.15);
}

.shop__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-column-gap: max(2rem, 15px);
     -moz-column-gap: max(2rem, 15px);
          column-gap: max(2rem, 15px);
  padding: max(4.5rem, 20px) 5%;
}
.shop__header__sub {
  font-family: YakuHanJP, "Alex Brush", cursive;
  font-size: max(4rem, 24px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
.shop__header__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: max(2rem, 15px);
}
.shop__header__main h2 {
  font-size: max(2.5rem, 20px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}
.shop__header__main p {
  font-size: max(1.6rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0;
}
@media screen and (max-width: 1000px) {
  .shop__header__main p {
    display: none;
  }
}
.shop__body {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
}
@media screen and (max-width: 1000px) {
  .shop__body {
    grid-template-columns: 1fr;
  }
}
.shop__body__map {
  position: relative;
  padding: max(4.5rem, 30px) max(14.5rem, 50px) max(7rem, 30px) max(5rem, 20px);
  background: #acbab8;
  z-index: 0;
}
@media screen and (max-width: 1000px) {
  .shop__body__map {
    padding: max(4rem, 30px) 10% max(7rem, 30px);
  }
  .shop__body__map::before {
    display: none;
  }
}
@media screen and (max-width: 550px) {
  .shop__body__map {
    padding: max(4rem, 30px) 5% max(7rem, 30px);
  }
}
.shop__body__map .imageBox {
  width: max(47.1875vw, 400px);
  height: auto;
  aspect-ratio: 151/112;
}
@media screen and (max-width: 1000px) {
  .shop__body__map .imageBox {
    width: 100%;
  }
}
.shop__body__map .imageBox img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.shop__body__map__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.54;
  mix-blend-mode: multiply;
}
.shop__body__map__bg img {
  width: 100%;
  height: 100%;
}
.shop__body__list {
  position: relative;
  display: grid;
  grid-template-rows: repeat(6, 1fr);
  row-gap: 1px;
  background-color: #acbab8;
  -webkit-transition: background-color 0.6s ease 2.4s;
  transition: background-color 0.6s ease 2.4s;
  z-index: 0;
}
.shop__body__list.active {
  background-color: #fff;
}
@media screen and (max-width: 1000px) {
  .shop__body__list::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    clip-path: inset(0 100% 0 0);
    -webkit-transition: clip-path 2.4s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: clip-path 2.4s cubic-bezier(0.075, 0.82, 0.165, 1);
    z-index: 10;
  }
  .shop__body__list.active::before {
    clip-path: inset(0);
  }
}
.shop__body__list__btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: max(3rem, 20px) 5%;
  background: #acbab8;
  z-index: 0;
}
.shop__body__list__btn.horizontalLine.bottomToRight::before {
  bottom: -1px;
}
.shop__body__list__btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #acbab8;
  mix-blend-mode: multiply;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.4s ease-out;
  transition: -webkit-transform 0.4s ease-out;
  transition: transform 0.4s ease-out;
  transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
  z-index: -1;
}
.shop__body__list__btn__text {
  color: #fff;
  font-size: max(2rem, 18px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.075em;
}
.shop__body__list__btn:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.shopPopup {
  position: fixed;
  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;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.5s ease, visibility 0s linear 0.5s;
  transition: opacity 0.5s ease, visibility 0s linear 0.5s;
}
@media screen and (max-width: 360px) {
  .shopPopup {
    z-index: 999999;
  }
}
.shopPopup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transition: opacity 0.5s ease, visibility 0s linear 0s;
  transition: opacity 0.5s ease, visibility 0s linear 0s;
}
.shopPopup__outer {
  position: absolute;
  background: rgba(79, 92, 90, 0.85);
  backdrop-filter: blur(6px);
  inset: 0;
  z-index: 0;
  border: 0;
  padding: 0;
  cursor: pointer;
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: transform 0.7s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: transform 0.7s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.7s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.shopPopup.is-open .shopPopup__outer {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.shopPopup__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: calc(100svh - max(7rem, 65px));
  margin-top: max(7rem, 65px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  -webkit-transform: translateY(40px) scale(0.96);
          transform: translateY(40px) scale(0.96);
  -webkit-transition: opacity 0.5s ease 0.1s, -webkit-transform 0.7s cubic-bezier(0.075, 0.82, 0.165, 1) 0.1s;
  transition: opacity 0.5s ease 0.1s, -webkit-transform 0.7s cubic-bezier(0.075, 0.82, 0.165, 1) 0.1s;
  transition: transform 0.7s cubic-bezier(0.075, 0.82, 0.165, 1) 0.1s, opacity 0.5s ease 0.1s;
  transition: transform 0.7s cubic-bezier(0.075, 0.82, 0.165, 1) 0.1s, opacity 0.5s ease 0.1s, -webkit-transform 0.7s cubic-bezier(0.075, 0.82, 0.165, 1) 0.1s;
  pointer-events: none;
  z-index: 10;
  opacity: 0;
}
@media screen and (max-width: 360px) {
  .shopPopup__inner {
    height: 100svh;
    margin-top: 0;
  }
}
.shopPopup.is-open .shopPopup__inner {
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
  opacity: 1;
}
.shopPopup.is-open .shopPopup__inner::before, .shopPopup.is-open .shopPopup__inner::after {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.shopPopup__header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: max(2rem, 15px);
     -moz-column-gap: max(2rem, 15px);
          column-gap: max(2rem, 15px);
  row-gap: max(0.5rem, 5px);
  padding: 0 max(8rem, 50px) max(2.5rem, 18px);
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: opacity 0.5s ease 0.3s, -webkit-transform 0.6s cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
  transition: opacity 0.5s ease 0.3s, -webkit-transform 0.6s cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
  transition: opacity 0.5s ease 0.3s, transform 0.6s cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
  transition: opacity 0.5s ease 0.3s, transform 0.6s cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s, -webkit-transform 0.6s cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
}
@media screen and (max-width: 768px) {
  .shopPopup__header {
    padding: 0 max(5rem, 30px) max(2rem, 15px);
  }
}
@media screen and (max-width: 550px) {
  .shopPopup__header {
    padding: 0 max(2rem, 15px) 5%;
  }
}
.shopPopup__header::after {
  content: "";
  position: absolute;
  left: max(8rem, 50px);
  right: max(8rem, 50px);
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  clip-path: inset(0 100% 0 0);
  -webkit-transition: clip-path 0.8s cubic-bezier(0.075, 0.82, 0.165, 1) 0.6s;
  transition: clip-path 0.8s cubic-bezier(0.075, 0.82, 0.165, 1) 0.6s;
}
@media screen and (max-width: 768px) {
  .shopPopup__header::after {
    left: max(5rem, 30px);
    right: max(5rem, 30px);
  }
}
@media screen and (max-width: 550px) {
  .shopPopup__header::after {
    left: max(2rem, 15px);
    right: max(2rem, 15px);
  }
}
.shopPopup__header__sub {
  font-family: YakuHanJP, "Alex Brush", cursive;
  font-size: max(3rem, 22px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
.shopPopup__header__title {
  font-size: max(2.2rem, 18px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.shopPopup.is-open .shopPopup__header {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.shopPopup.is-open .shopPopup__header::after {
  clip-path: inset(0);
}
.shopPopup__close {
  width: max(4.5rem, 30px);
  height: max(4.5rem, 30px);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  z-index: 5;
  opacity: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: opacity 0.4s ease 0.4s, border-color 0.3s ease, background 0.3s ease, -webkit-transform 0.6s cubic-bezier(0.075, 0.82, 0.165, 1) 0.4s;
  transition: opacity 0.4s ease 0.4s, border-color 0.3s ease, background 0.3s ease, -webkit-transform 0.6s cubic-bezier(0.075, 0.82, 0.165, 1) 0.4s;
  transition: opacity 0.4s ease 0.4s, transform 0.6s cubic-bezier(0.075, 0.82, 0.165, 1) 0.4s, border-color 0.3s ease, background 0.3s ease;
  transition: opacity 0.4s ease 0.4s, transform 0.6s cubic-bezier(0.075, 0.82, 0.165, 1) 0.4s, border-color 0.3s ease, background 0.3s ease, -webkit-transform 0.6s cubic-bezier(0.075, 0.82, 0.165, 1) 0.4s;
}
.shopPopup__close__line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45%;
  height: 1px;
  background: #fff;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.shopPopup__close__line:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.shopPopup__close__line:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.shopPopup__close:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}
.shopPopup.is-open .shopPopup__close {
  opacity: 1;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.shopPopup__slider {
  position: relative;
  overflow: hidden;
  z-index: 10;
}
.shopPopup__slider__list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max(41.5rem, 400px);
  grid-template-rows: auto auto 1fr auto;
  -webkit-column-gap: max(3.5rem, 20px);
     -moz-column-gap: max(3.5rem, 20px);
          column-gap: max(3.5rem, 20px);
  padding: max(3rem, 20px) max(8rem, 50px);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: -webkit-grab;
  cursor: grab;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  scroll-behavior: smooth;
  pointer-events: auto;
}
@media screen and (max-width: 768px) {
  .shopPopup__slider__list {
    padding: max(3rem, 20px) max(5rem, 30px);
    grid-auto-columns: 80%;
  }
}
@media screen and (max-width: 550px) {
  .shopPopup__slider__list {
    padding: max(2.5rem, 15px) 5%;
    grid-auto-columns: 95%;
  }
}
.shopPopup__slider__list.is-dragging {
  cursor: -webkit-grabbing;
  cursor: grabbing;
  scroll-behavior: auto;
}
.shopPopup__slider__list.is-dragging * {
  pointer-events: none;
}
.shopPopup__slider__list::-webkit-scrollbar {
  display: none;
}
.shopPopup__slider__list__item {
  display: none;
  grid-template-rows: subgrid;
  grid-row: span 4;
  background: #fff;
  border: 1px solid #fff;
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.7s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease, -webkit-transform 0.7s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.7s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.shopPopup__slider__list__item__imageBox {
  width: auto;
  height: auto;
  margin: max(3.5rem, 25px);
  margin-bottom: max(1rem, 5px);
  aspect-ratio: 35/24;
  background: #acbab8;
  overflow: hidden;
}
@media screen and (max-width: 550px) {
  .shopPopup__slider__list__item__imageBox {
    margin: 13px;
    margin-bottom: 5px;
    aspect-ratio: 2/1.2;
  }
}
.shopPopup__slider__list__item__imageBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.shopPopup__slider__list__item__title {
  position: relative;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: max(1.5rem, 15px) 1fr;
  -webkit-column-gap: max(1rem, 5px);
     -moz-column-gap: max(1rem, 5px);
          column-gap: max(1rem, 5px);
  margin: 0 max(3.5rem, 25px) max(1rem, 10px);
  padding-bottom: max(0.5rem, 5px);
}
@media screen and (max-width: 550px) {
  .shopPopup__slider__list__item__title {
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
    margin: 0 13px 5px;
  }
}
.shopPopup__slider__list__item__title::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-image: linear-gradient(to right, #000 4px, transparent 3px);
  background-size: 7px 1px;
  background-repeat: repeat-x;
}
.shopPopup__slider__list__item__title__icon {
  width: max(1.5rem, 12px);
  -webkit-transform: translateY(-5%);
          transform: translateY(-5%);
}
.shopPopup__slider__list__item__title__text {
  color: #4f5c5a;
  font-size: max(2rem, 16px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 550px) {
  .shopPopup__slider__list__item__title__text {
    font-size: 14px;
  }
}
.shopPopup__slider__list__item__meta {
  margin: 0 max(3.5rem, 25px) max(3.5rem, 25px);
}
@media screen and (max-width: 550px) {
  .shopPopup__slider__list__item__meta {
    margin: 0 13px 5%;
  }
}
.shopPopup__slider__list__item__meta > address, .shopPopup__slider__list__item__meta > span {
  color: #4f5c5a;
  display: block;
  font-size: max(1.4rem, 12px);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.05em;
  font-style: normal;
}
@media screen and (max-width: 550px) {
  .shopPopup__slider__list__item__meta address > span {
    display: inline;
  }
}
.shopPopup__slider__list__item__btn {
  text-align: center;
  background: #4f5c5a;
  padding: max(1.5rem, 15px) max(3.5rem, 25px);
  font-size: max(2rem, 18px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.075em;
  -webkit-transition: opacity 0.4s ease-out;
  transition: opacity 0.4s ease-out;
  color: #fff;
  pointer-events: auto;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.shopPopup__slider__list__item__btn:hover {
  opacity: 0.6;
}
.shopPopup[data-active-region=toyota] .shopPopup__slider__list__item[data-region=toyota] {
  display: grid;
}
.shopPopup[data-active-region=nisshin] .shopPopup__slider__list__item[data-region=nisshin] {
  display: grid;
}
.shopPopup[data-active-region=miyoshi] .shopPopup__slider__list__item[data-region=miyoshi] {
  display: grid;
}
.shopPopup[data-active-region=okazaki] .shopPopup__slider__list__item[data-region=okazaki] {
  display: grid;
}
.shopPopup[data-active-region=tahara] .shopPopup__slider__list__item[data-region=tahara] {
  display: grid;
}
.shopPopup[data-active-region=kasugai] .shopPopup__slider__list__item[data-region=kasugai] {
  display: grid;
}
.shopPopup.is-visible .shopPopup__slider__list__item {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.shopPopup.is-visible .shopPopup__slider__list__item:nth-child(1) {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}
.shopPopup.is-visible .shopPopup__slider__list__item:nth-child(2) {
  -webkit-transition-delay: 0.53s;
          transition-delay: 0.53s;
}
.shopPopup.is-visible .shopPopup__slider__list__item:nth-child(3) {
  -webkit-transition-delay: 0.61s;
          transition-delay: 0.61s;
}
.shopPopup.is-visible .shopPopup__slider__list__item:nth-child(4) {
  -webkit-transition-delay: 0.69s;
          transition-delay: 0.69s;
}
.shopPopup.is-visible .shopPopup__slider__list__item:nth-child(5) {
  -webkit-transition-delay: 0.77s;
          transition-delay: 0.77s;
}
.shopPopup.is-visible .shopPopup__slider__list__item:nth-child(6) {
  -webkit-transition-delay: 0.85s;
          transition-delay: 0.85s;
}
.shopPopup.is-visible .shopPopup__slider__list__item:nth-child(7) {
  -webkit-transition-delay: 0.93s;
          transition-delay: 0.93s;
}
.shopPopup.is-visible .shopPopup__slider__list__item:nth-child(8) {
  -webkit-transition-delay: 1.01s;
          transition-delay: 1.01s;
}
.shopPopup.is-visible .shopPopup__slider__list__item:nth-child(9) {
  -webkit-transition-delay: 1.09s;
          transition-delay: 1.09s;
}
.shopPopup.is-visible .shopPopup__slider__list__item:nth-child(10) {
  -webkit-transition-delay: 1.17s;
          transition-delay: 1.17s;
}
.shopPopup__nav {
  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: max(8rem, 30px);
  padding: max(2rem, 15px) max(4rem, 20px) 0;
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: opacity 0.5s ease 0.7s, -webkit-transform 0.5s ease 0.7s;
  transition: opacity 0.5s ease 0.7s, -webkit-transform 0.5s ease 0.7s;
  transition: opacity 0.5s ease 0.7s, transform 0.5s ease 0.7s;
  transition: opacity 0.5s ease 0.7s, transform 0.5s ease 0.7s, -webkit-transform 0.5s ease 0.7s;
}
@media screen and (max-width: 550px) {
  .shopPopup__nav {
    width: 60%;
    padding: 15px 0 0 0;
    margin: 0 auto;
  }
}
.shopPopup__nav.is-hidden {
  display: none;
}
.shopPopup__nav__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: max(1rem, 10px);
     -moz-column-gap: max(1rem, 10px);
          column-gap: max(1rem, 10px);
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  pointer-events: auto;
}
.shopPopup__nav__btn:hover {
  opacity: 0.7;
}
.shopPopup__nav__btn.is-disabled, .shopPopup__nav__btn:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}
.shopPopup__nav__btn__text {
  color: #fff;
  font-family: YakuHanJP, "Outfit", sans-serif;
  font-size: max(1.6rem, 14px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.1em;
}
.shopPopup__nav__btn__arrow {
  width: max(1.6rem, 14px);
  height: auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.shopPopup__nav__btn__arrow svg {
  width: 100%;
  height: auto;
}
.shopPopup.is-open .shopPopup__nav {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

body.is-popup-open {
  overflow: hidden;
}

.appeal {
  position: relative;
  z-index: 0;
}
.appeal__wrapper {
  padding-top: max(13.5rem, 70px);
  padding-bottom: max(10rem, 50px);
}
.appeal__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.appeal__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#3c3c3d), color-stop(50%, rgba(119, 119, 121, 0.47)), color-stop(80%, #3c3c3d));
  background: linear-gradient(to bottom, #3c3c3d 0%, rgba(119, 119, 121, 0.47) 50%, #3c3c3d 80%);
  z-index: 10;
}
.appeal__bg img {
  width: 100%;
  height: 100%;
}
.appeal__header {
  margin-bottom: max(4.5rem, 30px);
}
.appeal__header h2 {
  color: #fff;
  font-family: YakuHanJP, "Shippori Mincho", serif;
  font-size: max(3.4rem, 20px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.15em;
  margin-bottom: max(1rem, 10px);
}
.appeal__header p {
  color: #fff;
  font-family: YakuHanJP, "Shippori Mincho", serif;
  font-size: max(2.2rem, 13px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.15em;
}
.appeal__body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: max(1.5rem, 12px) max(1.5rem, 8px);
}
@media screen and (max-width: 1000px) {
  .appeal__body {
    grid-template-columns: repeat(2, 1fr);
  }
}
.appeal__body__item {
  padding: max(4rem, 20px) max(3rem, 15px);
  border-radius: 0 max(1rem, 10px) 0 max(1rem, 10px);
  background: #fff;
}
.appeal__body__item--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: max(1rem, 10px);
  background: #000;
}
@media screen and (max-width: 768px) {
  .appeal__body__item--link {
    grid-column: 1/3;
    padding: max(4rem, 20px) 5%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.appeal__body__item--link span {
  color: #fff;
  font-family: YakuHanJP, "Shippori Mincho", serif;
  font-size: max(2rem, 14px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  -webkit-transition: text-shadow 0.4s ease-out, -webkit-transform 0.4s ease-out;
  transition: text-shadow 0.4s ease-out, -webkit-transform 0.4s ease-out;
  transition: text-shadow 0.4s ease-out, transform 0.4s ease-out;
  transition: text-shadow 0.4s ease-out, transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
}
.appeal__body__item--link span img {
  -webkit-transition: -webkit-filter 0.4s ease-out;
  transition: -webkit-filter 0.4s ease-out;
  transition: filter 0.4s ease-out;
  transition: filter 0.4s ease-out, -webkit-filter 0.4s ease-out;
  will-change: filter;
}
.appeal__body__item--link:hover span {
  -webkit-transform: translate(-2.5px);
          transform: translate(-2.5px);
  text-shadow: 10px 10px 8px rgba(255, 255, 255, 0.7);
}
.appeal__body__item--link:hover span img {
  -webkit-filter: drop-shadow(10px 10px 3px rgba(255, 255, 255, 0.6));
          filter: drop-shadow(10px 10px 3px rgba(255, 255, 255, 0.6));
}
.appeal__body__item hgroup {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-column-gap: max(1rem, 10px);
     -moz-column-gap: max(1rem, 10px);
          column-gap: max(1rem, 10px);
  padding-bottom: max(1.5rem, 15px);
  margin-bottom: max(1rem, 10px);
}
.appeal__body__item hgroup::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: max(1.4rem, 14px);
  height: max(0.1rem, 1px);
  background: #acbab8;
  opacity: 0.2;
}
.appeal__body__item hgroup h3 {
  color: #4f5c5a;
  font-family: YakuHanJP, "Shippori Mincho", serif;
  font-size: max(2.4rem, 18px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}
.appeal__body__item hgroup p {
  color: #4f5c5a;
  font-family: YakuHanJP, "Marcellus", sans-serif;
  font-size: max(1.4rem, 12px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  opacity: 0.3;
}
.appeal__body__item p {
  color: #4f5c5a;
}
.appeal span.attention {
  margin-top: max(4rem, 30px);
  color: #fff;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: max(1.2rem, 10px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0;
}/*# sourceMappingURL=style.css.map */