@charset "UTF-8";
/*======================================
    animation
======================================*/
.fadeIn {
  display: block;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}
.fadeIn.anime {
  transform: translateY(0);
  opacity: 1;
}

@keyframes zoomIn {
  0% {
    scale: 0;
  }
  70% {
    scale: 1.1;
  }
  100% {
    scale: 1;
  }
}
.zoomIn {
  opacity: 0;
  scale: 0;
}
.zoomIn.anime {
  opacity: 1;
  animation: forwards zoomIn 0.75s ease-in-out;
}

@keyframes zoomFadeIn {
  0% {
    scale: 0;
  }
  100% {
    scale: 1;
  }
}
.zoomFadeIn {
  opacity: 0;
  scale: 0;
}
.zoomFadeIn.anime {
  opacity: 0.36;
  animation: forwards zoomFadeIn 0.75s ease-in-out;
  animation-delay: 1s;
}

@keyframes illustIn {
  0% {
    transform: perspective(100px) translateZ(-10px);
    opacity: 0;
  }
  100% {
    transform: perspective(100px) translateZ(0);
    opacity: 1;
  }
}
.illustIn {
  opacity: 0;
}
.illustIn.anime {
  animation: forwards illustIn 0.5s ease-in-out;
}

.anime.-delay300 {
  animation-delay: 3s;
}
.anime.-delay75 {
  animation-delay: 0.75s;
}
.anime.-delay5 {
  animation-delay: 0.5s;
}
.anime.-delay100 {
  animation-delay: 1s;
}

@keyframes fuwafuwa1 {
  0% {
    transform: translate(0, 0) rotate(-3deg);
  }
  50% {
    transform: translate(0, -3px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(3deg);
  }
}
@keyframes fuwafuwa2 {
  0% {
    transform: translate(0, 0) rotate(3deg);
  }
  50% {
    transform: translate(0, 3px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(-3deg);
  }
}
.fuwafuwa1.anime {
  animation: fuwafuwa1 3s ease infinite alternate;
}

.fuwafuwa2.anime {
  animation: fuwafuwa2 3s ease infinite alternate;
}

@keyframes swing {
  0% {
    transform: translate(0, 0) rotate(0.25deg);
  }
  100% {
    transform: translate(0, 1px) rotate(0deg);
  }
}
@keyframes swingReverse {
  0% {
    transform: translate(0, 1px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(0.25deg);
  }
}
.swing.anime {
  animation: swing 1.5s ease-in-out infinite alternate;
}

.swingR.anime {
  animation: swingReverse 1.5s ease-in-out infinite alternate;
}

/*======================================
    font
======================================*/
/*======================================
    color
======================================*/
/*======================================
    common
======================================*/
html {
  font-size: 10px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", HiraginoSans-W3, sans-serif;
  color: #000;
}

body {
  background-color: #fff;
}

img {
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
.is-nowrap {
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  br.is-pc {
    display: none;
  }
}

br.is-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  br.is-sp {
    display: block;
  }
}

/*======================================
    layout
======================================*/
.container {
  overflow: hidden;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .container {
    font-size: min(4.2666666667vw, 1.6rem);
  }
}

.inner {
  width: 90%;
  max-width: 67.5em;
  margin-left: auto;
  margin-right: auto;
}

/*======================================
    section
======================================*/
.section-inner__sm {
  max-width: 47em;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .section-inner__sm {
    max-width: 18.4375em;
    width: 100%;
  }
}

.section-text {
  letter-spacing: 0.095em;
  line-height: 2;
  font-feature-settings: "palt";
  margin-top: 1.75em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .section-text {
    font-size: 0.9375em;
    margin-top: 1em;
    text-align: justify;
  }
}

.section-title__circle--text {
  margin: 2.5em auto;
}
@media screen and (max-width: 767px) {
  .section-title__circle--text {
    margin: 1.25em auto;
  }
}

.section-img__devil-angel {
  max-width: 35.375em;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .section-img__devil-angel {
    max-width: 40em;
  }
}

/*======================================
    tab
======================================*/
.tab-content,
.map-content {
  display: none;
}
.tab-content.show,
.map-content.show {
  display: block;
}

.footer {
  background-color: #00b2d5;
  padding-top: 6.25em;
  padding: 6.25em 0.625em 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 2em;
  }
}

.footer__text {
  text-align: center;
  font-size: 1.3125em;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .footer__text {
    font-size: 1.3125em;
    line-height: 1.380952381;
  }
}

.footer__button {
  margin: 1.5em auto 0;
  font-size: 1.1875em;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #FF0000;
  height: 2.63em;
  width: 100%;
  max-width: 15em;
  border-radius: 3em;
  position: relative;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .footer__button {
    margin-top: 1em;
  }
}
.footer__button:hover {
  opacity: 0.7;
}
.footer__button:hover::before {
  transform: translate(0.25em, -50%);
}
.footer__button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.58em;
  transform: translateY(-50%);
  width: 0.42em;
  height: 0.79em;
  background: url(../img/button_arrow_white.svg) no-repeat center/contain;
  transition: transform 0.3s ease;
}

.footer__illust {
  max-width: 20.625em;
  height: 12.5em;
  margin: 2.5em auto 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer__illust {
    margin-top: 1.75em;
    max-width: 15.875em;
    height: 10.625em;
  }
}

@keyframes yurayura {
  0%, 100% {
    transform: rotate(3deg);
  }
  50% {
    transform: rotate(-3deg);
  }
}
@keyframes yurayura-reverse {
  0%, 100% {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(3deg);
  }
}
.footer__char1 {
  width: 11.375em;
  position: absolute;
  top: 10%;
  left: 0;
  z-index: 2;
  translate: 0% -3%;
  transform-origin: center bottom;
  animation: yurayura 4s ease infinite;
}
@media screen and (max-width: 767px) {
  .footer__char1 {
    width: 9.625em;
  }
}

.footer__char2 {
  width: 12.75em;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  transform-origin: center bottom;
  animation: yurayura-reverse 4s ease infinite;
}
@media screen and (max-width: 767px) {
  .footer__char2 {
    width: 10.75em;
  }
}

.footer_illust_text {
  font-size: 0.5em;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.375;
  position: absolute;
  bottom: 3em;
  left: 0;
  transform: translateX(-100%);
}
@media screen and (max-width: 767px) {
  .footer_illust_text {
    transform: translateX(-80%);
    bottom: 2em;
  }
}

.copy {
  font-size: 0.875em;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .copy {
    text-align: right;
    position: absolute;
    bottom: 1.8em;
    right: 2.14em;
  }
}
@media screen and (max-width: 767px) {
  .copy {
    text-align: center;
    margin-top: 1.5em;
  }
}
.copy small {
  font-size: 1em;
}

.footer_ghost1 {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2.25em;
  translate: -800% -40%;
}
@media screen and (max-width: 767px) {
  .footer_ghost1 {
    width: 1.75em;
    translate: -430% -26%;
  }
}

.footer_ghost2 {
  position: absolute;
  top: 50%;
  right: 50%;
  width: 2.8125em;
  translate: 580% -248%;
}
@media screen and (max-width: 767px) {
  .footer_ghost2 {
    width: 2em;
    translate: 500% -450%;
  }
}

.footer_spider {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6.375em;
  translate: -200% 5%;
}
@media screen and (max-width: 767px) {
  .footer_spider {
    width: 5.375em;
    translate: -203% 14%;
  }
}

.wave-base {
  position: relative;
}

.wave-wrap {
  display: flex;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.wave-top-wrap {
  left: 0;
  top: 0;
}

.wave-bottom-wrap {
  right: 0;
  bottom: 0;
}

.waves {
  display: flex;
}

.wave {
  width: 1920px;
}
@media screen and (max-width: 767px) {
  .wave {
    width: 375px;
  }
}
.wave img {
  width: calc(100% + 8px);
}

/*======================================
    start
======================================*/
.start {
  background-color: #00b2d5;
  padding-bottom: 9.25em;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .start {
    padding-bottom: 6em;
  }
}

.fv {
  background-color: #00b2d5;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.fv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: #00b2d5;
  z-index: -1;
}

.fv__illusts {
  position: absolute;
}
.fv__illusts.-illusts1 {
  width: 108.8125em;
  top: 50%;
  left: 50%;
  translate: -50.75% -51.5%;
}
@media screen and (max-width: 767px) {
  .fv__illusts.-illusts1 {
    width: 28.25em;
    translate: -50.75% -52.75%;
  }
}
.fv__illusts.-illusts2 {
  width: 114.375em;
  top: 50%;
  right: 50%;
  translate: 51.5% -54.2%;
}
.fv__illusts.-illusts2 > .illustIn.anime {
  animation-delay: 0.75s;
}
@media screen and (max-width: 767px) {
  .fv__illusts.-illusts2 {
    width: 22.875em;
    translate: 56.5% -52.5%;
  }
}
.fv__illusts.-illusts3 {
  width: 106.8125em;
  translate: 52% -49.3%;
  top: 50%;
  right: 50%;
}
.fv__illusts.-illusts3 > .illustIn.anime {
  animation-delay: 1.5s;
}
@media screen and (max-width: 767px) {
  .fv__illusts.-illusts3 {
    width: 26.75em;
    translate: 48.5% -48.3%;
  }
}

.fv__icon {
  position: absolute;
  z-index: -1;
  opacity: 0.18;
  width: 63.8125em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  mix-blend-mode: screen;
}
@media screen and (max-width: 767px) {
  .fv__icon {
    width: 31.5625em;
    transform: translate(-47%, -51%);
  }
}
.fv__icon > .zoomFadeIn.anime {
  animation-duration: 4s;
  animation-delay: 0.5s;
  opacity: 0.36;
}

.fv__hanabi1 {
  position: absolute;
  z-index: -1;
  width: 4em;
  bottom: 0;
  left: 50%;
  transform: translate(-683%, -95%);
}
.fv__hanabi1 > .zoomIn.anime {
  animation-delay: 2.5s;
}
@media screen and (max-width: 767px) {
  .fv__hanabi1 {
    width: 8.5333333333vw;
    transform: translate(-405%, -126%);
  }
}

.fv__hanabi2 {
  position: absolute;
  z-index: -1;
  width: 4.875em;
  top: 0;
  left: 50%;
  transform: translate(-430%, 80%);
}
@media screen and (max-width: 767px) {
  .fv__hanabi2 {
    width: 10.6666666667vw;
    transform: translate(-100%, 232%);
  }
}

.fv__bubble-xs {
  position: absolute;
  z-index: -1;
  width: min(21.7708333333vw, 418px);
  top: 0;
  right: 0;
  transform: translate(13%, 26%);
}
.fv__bubble-xs > .zoomIn.anime {
  animation-delay: 2s;
}
@media screen and (max-width: 767px) {
  .fv__bubble-xs {
    transform: translate(5%, -3%);
    width: 44vw;
  }
}

.fv__texts {
  padding-top: 18vw;
  transform: translateX(5%);
}
@media screen and (max-width: 767px) {
  .fv__texts {
    padding-top: 0;
    transform: translateX(0);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.fv__anime {
  position: relative;
  width: 3.625em;
  aspect-ratio: 58/88;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .fv__anime {
    transform: translate(75%, -35%) scale(2.966);
  }
}
@media screen and (max-width: 767px) {
  .fv__anime {
    transform: translate(75%, -10%) scale(2.17);
  }
}

.fv__anime--door-base {
  width: 3.625em;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.fv__anime--char1__wrap {
  position: relative;
  width: 58px;
  aspect-ratio: 58/88;
}

.fv__anime--door {
  width: 1.5625em;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  transform: translateY(7.6%);
}

@keyframes char1 {
  0% {
    transform: translate(10%, 0) scale(0.5);
    opacity: 0;
  }
  10% {
    transform: translate(8%, -10%) scale(0.77);
    opacity: 1;
  }
  40% {
    transform: translate(8%, -10%) scale(0.77);
    opacity: 1;
  }
  60% {
    transform: translate(8%, -10%) scale(0.77);
    opacity: 1;
  }
  70% {
    transform: translate(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(0) scale(1);
    opacity: 1;
  }
}
@keyframes char1_hand {
  0% {
    transform: translate(-8%, -25%);
    opacity: 0;
  }
  10% {
    transform: translate(-8%, -25%);
    opacity: 1;
  }
  40% {
    transform: translate(-8%, -25%);
    opacity: 1;
  }
  60% {
    transform: translate(-8%, -25%);
    opacity: 1;
  }
  70% {
    transform: translate(0);
    opacity: 1;
  }
  100% {
    transform: translate(0);
    opacity: 1;
  }
}
@keyframes char2 {
  0% {
    opacity: 0;
    transform: translate(10%, -20%) scale(0.3) rotate(-10deg);
  }
  40% {
    opacity: 0;
    transform: translate(10%, -20%) scale(0.3) rotate(-10deg);
  }
  50% {
    opacity: 1;
    transform: translate(10%, -20%) scale(0.5) rotate(-10deg);
  }
  60% {
    opacity: 1;
    transform: translate(10%, -20%) scale(0.5) rotate(-10deg);
  }
  70% {
    transform: translate(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(0) scale(1);
    opacity: 1;
  }
}
.fv__anime--char1 {
  width: 3.875em;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  translate: -10% 8.75%;
}

.fv__anime--char1__hand {
  position: absolute;
  width: 3.875em;
  bottom: 0;
  right: 0;
  z-index: 4;
}
.fv__anime--char1__hand.anime span {
  animation: char1_hand 3s ease-out forwards;
}
.fv__anime--char1__hand span {
  width: 1.1875em;
  display: block;
  translate: 100% -50%;
}

.fv__anime--char1,
.fv__anime--char1__hand {
  transform-origin: bottom right;
  transition: all 0.3s ease;
  opacity: 0;
}
.fv__anime--char1.anime,
.fv__anime--char1__hand.anime {
  animation: char1 3s ease-out forwards;
}

.fv__anime--char2 {
  width: 90px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  translate: -32% -9%;
  transform-origin: bottom right;
  opacity: 0;
}
.fv__anime--char2.anime {
  animation: char2 3s ease-out forwards;
}

.fv__lead {
  width: min(14.375vw, 276px);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .fv__lead {
    margin-top: 60%;
  }
}
@media screen and (max-width: 767px) {
  .fv__lead {
    width: 11.125em;
    position: absolute;
    bottom: 11%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.fv__lead .fadeIn.anime.-delay300 {
  transition: transform 0.3s ease 2.5s, opacity 0.3s ease 2.5s;
}

.fv__contents {
  text-align: center;
  margin-top: 4.75em;
  position: relative;
  z-index: 1;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .fv__contents {
    margin-top: 3.5em;
  }
}

.start__illusts {
  position: absolute;
  left: 50%;
  z-index: 2;
}
.start__illusts.-illusts1 {
  width: 105.3125em;
  top: -1.6%;
  translate: -47% 0;
}
@media screen and (max-width: 767px) {
  .start__illusts.-illusts1 {
    width: 21.5em;
    translate: -50% 0;
    top: -4.3%;
  }
}
.start__illusts.-illusts2 {
  width: 99.8125em;
  top: -4.1%;
  translate: -56% 0;
}
@media screen and (max-width: 767px) {
  .start__illusts.-illusts2 {
    width: 25em;
    translate: -50.5% 0;
    top: -4.2%;
  }
}
.start__illusts.-illusts3 {
  width: 95.0625em;
  top: 36.75%;
  translate: -46% 0;
}
@media screen and (max-width: 767px) {
  .start__illusts.-illusts3 {
    top: 23.3%;
    translate: -53% 0;
    width: 17.25em;
  }
}
.start__illusts.-illusts4 {
  width: 72.0625em;
  top: 33.75%;
  translate: -18.5% 0;
}
@media screen and (max-width: 767px) {
  .start__illusts.-illusts4 {
    top: 22.7%;
    translate: -46.5% 0;
    width: 25.9375em;
  }
}
.start__illusts.-illusts5 {
  width: 89.25em;
  top: 56.5%;
  translate: -57% 0;
}
@media screen and (max-width: 767px) {
  .start__illusts.-illusts5 {
    width: 29.25em;
    top: 39.2%;
    translate: -50% 0;
  }
}
.start__illusts.-illusts6 {
  width: 107.825em;
  top: 61.75%;
  translate: -49.5% 0;
}
@media screen and (max-width: 767px) {
  .start__illusts.-illusts6 {
    width: 27.5em;
    top: 44.5%;
    translate: -47.5% 0;
  }
}

.start__illust--bubbles {
  position: absolute;
  top: 13.5%;
  left: 50%;
  width: 7.1875em;
  translate: 336% 0;
}
@media screen and (max-width: 767px) {
  .start__illust--bubbles {
    width: 2em;
    top: 44.7%;
    translate: 88% 0;
  }
}

.start__illust--bubbles-sm {
  position: absolute;
  top: 52.75%;
  left: 50%;
  width: 7.375em;
  translate: -506% 0;
}
@media screen and (max-width: 767px) {
  .start__illust--bubbles-sm {
    top: 83%;
    width: 1.8125em;
    translate: -408% 0;
  }
}

.start__illust--bubble-left {
  position: absolute;
  top: 19%;
  left: 50%;
  width: 5.3125em;
  translate: -420% 0;
}
@media screen and (max-width: 767px) {
  .start__illust--bubble-left {
    width: 1.4375em;
    top: 27.5%;
    translate: -137% 0;
  }
}

.start__illust--bubble-right {
  position: absolute;
  top: 26%;
  left: 50%;
  width: 31.125em;
  translate: 121% 0;
}
@media screen and (max-width: 767px) {
  .start__illust--bubble-right {
    top: 17.5%;
    translate: 88% 0;
    width: 7.5em;
  }
}

.start__illust--bubble-left-sm {
  position: absolute;
  top: 10.5%;
  left: 50%;
  width: 23.75em;
  translate: -249% 0;
}
@media screen and (max-width: 767px) {
  .start__illust--bubble-left-sm {
    width: 5.75em;
    top: 12.3%;
    translate: -237% 0;
  }
}

.start__illust--splash {
  position: absolute;
  top: 95%;
  left: 50%;
  width: 17.875em;
  translate: 132% 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .start__illust--splash {
    width: 7.75em;
    translate: 21% 0;
    top: 102.5%;
  }
}

.fv__contents--text {
  font-size: 1.125em;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.145em;
  line-height: 2.2222222222;
}
@media screen and (max-width: 767px) {
  .fv__contents--text {
    font-size: 0.875em;
    line-height: 2.2857142857;
  }
}

.fv__contents--note {
  font-size: 0.875em;
  font-weight: 700;
  letter-spacing: 0.145em;
  font-feature-settings: "palt";
  line-height: 2.2857142857;
  margin-top: 3em;
}
@media screen and (max-width: 767px) {
  .fv__contents--note {
    font-size: 0.625em;
    line-height: 3.5555555556;
    margin-top: -0.5em;
  }
}

.fv__contents--tag {
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-feature-settings: "palt";
  line-height: 1.75;
  margin-top: 3.25em;
}
@media screen and (max-width: 767px) {
  .fv__contents--tag {
    margin-top: 2em;
    font-size: 1.4375em;
  }
}

.char_walking_wrap {
  position: relative;
  margin-top: 1.5em;
}
@media screen and (max-width: 767px) {
  .char_walking_wrap {
    margin-top: 2em;
  }
}

.char_walking {
  display: flex;
  align-items: flex-end;
  gap: 0.625em;
  width: fit-content;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(0);
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .char_walking {
    gap: 0;
  }
}

@keyframes sway {
  0%, 100% {
    transform: translateY(0) rotate(5deg);
  }
  50% {
    transform: translateY(-4px) rotate(-10deg);
  }
}
.char_walking_char1,
.char_walking_char2 {
  width: 7em;
  animation: sway 0.6s ease-in-out infinite;
  animation-play-state: paused;
}
@media screen and (max-width: 767px) {
  .char_walking_char1,
  .char_walking_char2 {
    width: 4em;
  }
}

.char_flip {
  transition: transform 0.2s ease;
}

.fv__contents--start {
  font-size: 3.7em;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.14em;
  line-height: 1.6551724138;
  width: fit-content;
  margin: 3.7em auto 0;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .fv__contents--start {
    font-size: 1.5625em;
    margin-top: 5.4em;
  }
}

.fv__contents--date {
  text-align: center;
  font-feature-settings: "palt";
  font-size: 1.875em;
  letter-spacing: 0.125em;
  font-weight: 700;
  margin-top: 1.25em;
}
@media screen and (max-width: 767px) {
  .fv__contents--date {
    font-size: 1.125em;
    margin: 1.3em -2em 0;
  }
}

/*======================================
    million
======================================*/
.million {
  background-color: #f3f3f3;
  padding-top: 8.375em;
  padding-bottom: 4.375em;
  position: relative;
  z-index: 1;
}
.million .section-text {
  color: #787878;
}
@media screen and (max-width: 767px) {
  .million {
    padding-top: 4.25em;
  }
}

.million__title--lead {
  text-align: center;
  margin-bottom: 2.25em;
}
@media screen and (max-width: 767px) {
  .million__title--lead {
    text-align: left;
    margin-bottom: 1.5em;
  }
}
.million__title--lead span {
  font-size: 1.375em;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.14em;
  line-height: 1.7272727273;
  display: inline-block;
  background-color: #f8f803;
  padding: 0 0.4em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .million__title--lead span {
    font-size: 0.75em;
    line-height: 1.6666666667;
    padding: 0 0.5em;
  }
}
.million__title--lead span::before {
  content: "";
  position: absolute;
  left: 2em;
  top: 100%;
  width: 0.82em;
  aspect-ratio: 17/20;
  background: url(../img/fukidashi_million.svg) no-repeat center/contain;
  z-index: -1;
}
.million__title {
  max-width: 23.9375em;
}

.million__img--wrap {
  position: relative;
  z-index: 1;
  margin-top: 3.25em;
  padding-top: 10.125em;
}
@media screen and (max-width: 767px) {
  .million__img--wrap {
    padding-top: 2.75em;
    margin-top: 2em;
  }
}

.million__img--illust {
  width: 100%;
  max-width: 19em;
  margin-left: auto;
  margin-right: auto;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  transform: translateY(50%);
  transition: transform 0.5s ease;
}
.million__img--illust.anime {
  transform: translateY(0);
}
@media screen and (max-width: 767px) {
  .million__img--illust {
    max-width: 7.5625em;
    translate: -50% -10%;
  }
}

.million__img--flag {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-183%, -31%);
  width: 7em;
}
@media screen and (min-width: 768px) {
  .million__img--flag {
    display: none;
  }
}

.million__img--char {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 7.5em;
  z-index: 2;
  transform: translate(0, 50%);
}
@media screen and (max-width: 767px) {
  .million__img--char {
    width: 4em;
    transform: translate(-50%, 60%);
  }
}

.million__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.875em;
  margin-top: 2.5em;
}
@media screen and (max-width: 767px) {
  .million__text {
    margin-top: 2.2em;
    row-gap: 1em;
    margin-bottom: 1.5em;
  }
}
.million__text span.lg {
  width: 100%;
  display: block;
  max-width: 27.875em;
}
@media screen and (max-width: 767px) {
  .million__text span.lg {
    max-width: 18.125em;
  }
}
.million__text span.sm {
  width: 100%;
  display: block;
  max-width: 27.625em;
}
@media screen and (max-width: 767px) {
  .million__text span.sm {
    max-width: 18.125em;
  }
}

.million__comment--wrap {
  max-width: 23.25em;
  width: 100%;
  margin: 5em auto 0;
  display: grid;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .million__comment--wrap {
    margin-top: 5.5em;
    max-width: 14.125em;
  }
}

.million__comment--wave1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 18.125em;
  translate: 52% 19%;
}
@media screen and (max-width: 767px) {
  .million__comment--wave1 {
    width: 10.5em;
  }
}

.million__comment--wave2 {
  position: absolute;
  bottom: 0;
  left: 0;
  translate: -63% 45%;
  width: 6.25em;
}
@media screen and (max-width: 767px) {
  .million__comment--wave2 {
    width: 3.875em;
  }
}

.million__comment--circle {
  grid-column: 1/2;
  grid-row: 1/2;
  aspect-ratio: 1/1;
  width: 21.25em;
  border-radius: 50%;
  background-color: #f7bc00;
  transform: translate(2%, -10%);
}
@media screen and (max-width: 767px) {
  .million__comment--circle {
    width: 13.5em;
  }
}

.million__comment {
  width: 100%;
  max-width: 14.125em;
  margin: 0 auto;
  grid-column: 1/2;
  grid-row: 1/2;
  translate: 0.25em 0;
  transform: translate(-2%, -18%);
}
@media screen and (max-width: 767px) {
  .million__comment {
    max-width: 8.875em;
  }
}

.million__comment--flag {
  position: absolute;
  top: 0;
  right: 0;
  width: 11.375em;
  translate: 95% -60%;
}
@media screen and (max-width: 767px) {
  .million__comment--flag {
    width: 6.875em;
    translate: 86% -60%;
  }
}

.jumbo-mini__head {
  width: 9.75em;
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 50%;
  translate: -50% 24%;
  transform: translateY(50%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.3s ease;
}
.jumbo-mini__head.anime {
  transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .jumbo-mini__head {
    width: 6.125em;
    translate: -50% 10%;
  }
}

/*======================================
    jumbo mini
======================================*/
.jumbo-mini {
  background-color: #f8f803;
  color: #000;
  padding: 7.5em 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .jumbo-mini {
    padding: 2.25em 0 6.5em;
  }
  .jumbo-mini .wave-top {
    translate: 0 -60%;
  }
}

.jumbo-mini__title--wrap {
  position: relative;
}

.jumbo-mini__title--illust {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12.125em;
  translate: 76% 21%;
}
@media screen and (max-width: 767px) {
  .jumbo-mini__title--illust {
    width: 8.8125em;
    translate: 65% 25%;
  }
}

.jumbo-mini__title {
  margin-top: 2.75em;
}
@media screen and (max-width: 767px) {
  .jumbo-mini__title {
    margin-top: 1.5em;
  }
}
.jumbo-mini__title span.sm {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 26.0625em;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .jumbo-mini__title span.sm {
    max-width: 18.375em;
  }
}
.jumbo-mini__title span.lg {
  display: block;
  width: 100%;
  max-width: 28.125em;
  margin: 1.5em auto 0;
}
@media screen and (max-width: 767px) {
  .jumbo-mini__title span.lg {
    max-width: 12.5em;
    margin-left: 0.5em;
    margin-top: 1.5em;
  }
}

.jumbo-mini__text {
  margin-top: 2.75em;
}
@media screen and (max-width: 767px) {
  .jumbo-mini__text {
    margin-top: 1.75em;
  }
}

.jumbo-mini__lists {
  margin-top: 3.5em;
}
@media screen and (max-width: 767px) {
  .jumbo-mini__lists {
    margin-top: 2em;
  }
}

.jumbo-mini__list {
  position: relative;
  z-index: 1;
}
.jumbo-mini__list:nth-child(2) {
  margin-top: 5.5em;
}
@media screen and (max-width: 767px) {
  .jumbo-mini__list:nth-child(2) {
    margin-top: 3.5em;
  }
}
.jumbo-mini__list:nth-child(3) {
  margin-top: 7em;
}
@media screen and (max-width: 767px) {
  .jumbo-mini__list:nth-child(3) {
    margin-top: 3.75em;
  }
}

.jumbo-mini__list--head {
  position: relative;
  z-index: 1;
}

.jumbo-mini__list--lead {
  width: 100%;
  margin: 2.2em auto 0;
  max-width: 12.625em;
}
@media screen and (max-width: 767px) {
  .jumbo-mini__list--lead {
    max-width: 8em;
    margin-left: 0;
    margin-top: 1em;
  }
}
.jumbo-mini__list--lead.-list2 {
  max-width: 12.375em;
}
@media screen and (max-width: 767px) {
  .jumbo-mini__list--lead.-list2 {
    max-width: 9.0625em;
  }
}
.jumbo-mini__list--lead.-list3 {
  max-width: 18.75em;
}
@media screen and (max-width: 767px) {
  .jumbo-mini__list--lead.-list3 {
    max-width: 12.6875em;
    margin-top: 2.5em;
    margin-bottom: 0.5em;
  }
}

.jumbo-mini__list--title {
  text-align: center;
  font-size: 2em;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.14em;
  line-height: 1.625;
  margin-top: 0.5em;
}
@media screen and (max-width: 767px) {
  .jumbo-mini__list--title {
    font-size: 1.25em;
    line-height: 1.65;
    text-align: left;
  }
}

.jumbo-mini__list1--bubble {
  position: absolute;
  bottom: 0;
  left: 0;
  translate: -15% -45%;
  width: 12.375em;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .jumbo-mini__list1--bubble {
    width: 5.75em;
    translate: 168% -168%;
  }
}

.jumbo-mini__list--illust {
  position: absolute;
  z-index: -1;
}
.jumbo-mini__list--illust.-list1 {
  top: 0;
  right: 0;
  width: 11.625em;
  translate: 8% -43%;
}
@media screen and (max-width: 767px) {
  .jumbo-mini__list--illust.-list1 {
    width: 6.75em;
    translate: 46% -65%;
  }
}
.jumbo-mini__list--illust.-list2 {
  width: 10.5em;
  top: 0;
  left: 0;
  translate: 1% -45%;
}
@media screen and (max-width: 767px) {
  .jumbo-mini__list--illust.-list2 {
    width: 5.375em;
    translate: -58% -66%;
  }
}
.jumbo-mini__list--illust.-list3 {
  width: 13.75em;
  top: 0;
  right: 0;
  translate: 41% -11%;
}
@media screen and (max-width: 767px) {
  .jumbo-mini__list--illust.-list3 {
    width: 8em;
    translate: 37% -22%;
  }
}

.jumbo-mini__list--bubble.-list2 {
  position: absolute;
  z-index: 2;
  width: 13.375em;
  bottom: 0;
  right: 0;
  translate: -3% -35%;
}
@media screen and (max-width: 767px) {
  .jumbo-mini__list--bubble.-list2 {
    width: 5.625em;
    translate: 47% -90%;
  }
}
.jumbo-mini__list--bubble.-list3 {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 13.625em;
  translate: -10% -12%;
}
@media screen and (max-width: 767px) {
  .jumbo-mini__list--bubble.-list3 {
    translate: -45% -100%;
    width: 5.875em;
    margin-top: 2em;
  }
}

.jumbo-mini__list--text {
  margin-top: 2em;
}
@media screen and (max-width: 767px) {
  .jumbo-mini__list--text {
    margin-top: 0.6em;
  }
}

.jumbo-mini__list--table {
  max-width: 37em;
  translate: 2% 0;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .jumbo-mini__list--table {
    width: 19.6875em;
    translate: 0 0;
    position: relative;
    z-index: 2;
  }
}

/*======================================
    details
======================================*/
.details {
  padding: 8em 0 7.2em;
}
@media screen and (max-width: 767px) {
  .details {
    padding: 4.75em 0 5.2em;
  }
}

.details__title {
  text-align: center;
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.5416666667;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .details__title {
    font-size: 1.25em;
    line-height: 1.7;
  }
}

.details__texts {
  width: fit-content;
  margin: 1.25em auto 0;
}
@media screen and (max-width: 767px) {
  .details__texts {
    width: 100%;
    max-width: 18.75em;
  }
}

.details__text--dl {
  display: flex;
}
.details__text--dl dt, .details__text--dl dd {
  letter-spacing: 0.14em;
  line-height: 1.875;
  font-feature-settings: "palt";
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .details__text--dl dt, .details__text--dl dd {
    font-size: 0.9375em;
    line-height: 2;
  }
}

.details__table--wrap {
  max-width: 35.5em;
  margin: 2.5em auto 0;
}
@media screen and (min-width: 768px) {
  .details__table--wrap.mt {
    margin-top: 3em;
  }
}
@media screen and (max-width: 767px) {
  .details__table--wrap {
    max-width: 18.75em;
    margin-top: 2.75em;
  }
}

.details__table--title {
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-feature-settings: "palt";
  line-height: 1.75em;
}

.details__table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5em;
}
.details__table th, .details__table td {
  vertical-align: middle;
  font-size: 1.25em;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  text-align: center;
  height: 3.4em;
  border: 2px solid #000;
}
@media screen and (max-width: 767px) {
  .details__table th, .details__table td {
    font-size: 0.875em;
    height: 2.5em;
  }
}
.details__table th {
  color: #616FDE;
  background-color: #787878;
  color: #f8f803;
}
.details__table th:nth-child(1) {
  width: 7em;
}
@media screen and (max-width: 767px) {
  .details__table th:nth-child(1) {
    width: 6.714em;
  }
}
.details__table td {
  background-color: #f8f8c6;
}
@media screen and (min-width: 768px) {
  .details__table td span.lg {
    font-size: 1.2em;
  }
}

.details__table--note {
  text-align: center;
  font-size: 0.8125em;
}

/*======================================
    shop
======================================*/
.shop {
  background-color: #f8f8c6;
  padding: 8em 0 10em;
}
@media screen and (max-width: 767px) {
  .shop {
    padding: 3.5em 0 3.25em;
  }
  .shop .wave-top {
    translate: 0 -60%;
  }
}

.shop__title {
  text-align: center;
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.5416666667;
  font-feature-settings: "palt";
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .shop__title {
    font-size: 1.25em;
  }
}
.shop__title span.head {
  display: inline-block;
  font-size: 0.67em;
  font-feature-settings: "palt";
  letter-spacing: 0.14em;
  margin-bottom: 0.5em;
  position: relative;
  padding: 0 1.25em;
}
@media screen and (max-width: 767px) {
  .shop__title span.head {
    font-size: 0.75em;
    margin-bottom: 1em;
  }
}
.shop__title span.head::before, .shop__title span.head::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.75em;
  height: 1.375em;
  transform: translateY(-50%);
}
.shop__title span.head::before {
  background: url(../img/shop_title_left.svg) no-repeat center/contain;
  left: 0;
}
.shop__title span.head::after {
  background: url(../img/shop_title_right.svg) no-repeat center/contain;
  right: 0;
}

.shop__map {
  margin-top: 2.5em;
}
@media screen and (max-width: 767px) {
  .shop__map {
    max-width: 18.75em;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.2em;
  }
}
.shop__map .map-content {
  position: relative;
}
.shop__map .map-content::before {
  content: "";
  display: block;
  padding-top: 42.2222222222%;
}
@media screen and (max-width: 767px) {
  .shop__map .map-content::before {
    padding-top: 84%;
  }
}
.shop__map .map-content .map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.shop__head {
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.14em;
  font-feature-settings: "palt";
  margin-top: 2.75em;
}
@media screen and (max-width: 767px) {
  .shop__head {
    font-size: 1.0625em;
    margin-top: 1.65em;
  }
}

.shop-tab__button {
  font-size: 1.1875em;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-feature-settings: "palt";
  display: flex;
  align-items: center;
  width: 9.37em;
  height: 2.84em;
  border-radius: 3em;
  border: 1px solid #000;
  background: #fff url(../img/button_arrow.svg) no-repeat center right 1.16em/0.84em 0.42em;
  padding-left: 1.16em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 2.2em auto 0;
  color: #000;
}
.shop-tab__button:hover {
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .shop-tab__button {
    font-size: 0.9375em;
  }
}

.shop__lists--wrap {
  max-width: 52.5em;
  margin: 3.25em auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 5em;
}
@media screen and (max-width: 767px) {
  .shop__lists--wrap {
    margin-top: 2.65em;
    max-width: 18.75em;
    grid-template-columns: 1fr;
  }
}

.shop__lists {
  display: block;
}
@media screen and (max-width: 767px) {
  .shop__lists:first-child .shop__list:last-child {
    border-bottom: 1px solid #000;
  }
  .shop__lists:nth-child(n+2) .shop__list:first-child {
    border-top: none;
  }
}

.shop__list {
  border-bottom: 1px solid #000;
}
.shop__list:first-child {
  border-top: 2px solid #000;
}
.shop__list:last-child {
  border-bottom: 2px solid #000;
}

.shop__list--link {
  display: block;
  padding: 1em 0;
  transition: opacity 0.3s ease;
  position: relative;
}
@media screen and (max-width: 767px) {
  .shop__list--link {
    padding: 0.75em 0;
  }
}
.shop__list--link::before {
  content: "";
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  width: 0.5em;
  height: 1em;
  background: url(../img/link_arrow.svg) no-repeat center/contain;
  transition: transform 0.3s ease;
}
.shop__list--link:hover {
  opacity: 0.7;
}
.shop__list--link:hover::before {
  transform: translate(0.25em, -50%);
}

.shop__list--name {
  font-size: 1.1875em;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
  line-height: 1.5789473684;
  padding-left: 1em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .shop__list--name {
    font-size: 0.9375em;
  }
}
.shop__list--name::before {
  content: "●";
  position: absolute;
  top: 0;
  left: 0;
}

.shop__list--address {
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-top: 0.25em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .shop__list--address {
    font-size: 0.8125em;
  }
}

/*======================================
    purchase
======================================*/
.purchase {
  background-color: #F2F2F2;
  padding: 6.25em 0;
}
@media screen and (max-width: 767px) {
  .purchase {
    padding: 4.25em 0 2.5em;
  }
}

.purchase__lead {
  position: relative;
  font-size: 1.0625em;
  text-align: center;
  font-feature-settings: "palt";
  letter-spacing: 0.03em;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.1em;
}
.purchase__lead::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 18.5em;
  height: 4.12em;
  background: url(../img/purchase_fukidashi.svg) no-repeat center/contain;
}

.purchase__title {
  text-align: center;
  font-weight: 700;
  font-size: 1.8125em;
  letter-spacing: 0.03em;
  font-feature-settings: "palt";
  margin-top: 1.2em;
}
@media screen and (max-width: 767px) {
  .purchase__title {
    line-height: 1.4482758621;
    margin-top: 0.8em;
  }
}

.purchase__steps {
  margin-top: 4.5em;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2em;
}
@media screen and (max-width: 767px) {
  .purchase__steps {
    grid-template-columns: 1fr;
    max-width: 25em;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3.75em;
    row-gap: 4.0625em;
  }
}

.purchase__step {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 1.6875em;
  padding-top: 0.5em;
}
@media screen and (min-width: 768px) {
  .purchase__step {
    height: 12.625em;
  }
  .purchase__step:nth-child(n+2)::before {
    content: "";
    position: absolute;
    left: -1em;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1.125em;
    height: 2em;
    background-color: #000;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
  }
}
@media screen and (max-width: 767px) {
  .purchase__step {
    padding: 3em 0 2em;
  }
  .purchase__step:not(:last-child)::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 1.75em;
    height: 1.375em;
    background-color: #000;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
  }
}

.purchase__step--number {
  text-align: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .purchase__step--number {
    transform: translate(-53%, -58%);
  }
}
.purchase__step--number img {
  width: auto;
  height: 2.625em;
}

.purchase__step--text {
  font-size: 1.125em;
  font-feature-settings: "palt";
  font-weight: 700;
  line-height: 1.5555555556;
  text-align: center;
}
.purchase__step--text span.underline {
  line-height: 1.8333333333;
  display: inline;
  padding-bottom: 0.3em;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) calc(100% - 0.17em), #FFC800 calc(100% - 0.17em), #FFC800 100%);
}

/*======================================
    member
======================================*/
.member {
  padding: 3.75em 0;
}
@media screen and (max-width: 767px) {
  .member {
    padding: 1.75em 0;
  }
}

.member__title {
  font-size: 1.8125em;
  font-weight: 700;
  text-align: center;
  font-feature-settings: "palt";
  letter-spacing: 0.03em;
  line-height: 1.4482758621;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 1.3em 0 1.38em;
}
@media screen and (max-width: 767px) {
  .member__title {
    font-size: 1.25em;
    line-height: 1.5;
    padding: 0;
  }
}
.member__title::before, .member__title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.69em;
  height: 2.17em;
  background: url(../img/member_title.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .member__title::before, .member__title::after {
    display: none;
  }
}
.member__title::before {
  left: 0;
  transform: translateY(-50%);
}
.member__title::after {
  right: 0;
  transform: translateY(-50%) scale(-1, 1);
}
.member__title span.member__title--illust {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 5.55em;
  translate: 104% 8%;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .member__title span.member__title--illust {
    width: 5.65em;
    translate: 72% 88%;
  }
}

.member__lists--wrap {
  margin-top: 2.75em;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1.875em;
  max-width: 52.875em;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .member__lists--wrap {
    margin-top: 1.8em;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .member__lists:nth-child(n+2) .member__list:first-child {
    border-top: none;
  }
}

.member__list {
  font-size: 1.1875em;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-feature-settings: "palt";
  line-height: 1.75;
  display: grid;
  grid-template-columns: 1.68em auto;
  column-gap: 0.54em;
  height: 3.68em;
  align-items: center;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .member__list {
    font-size: 1em;
  }
}
.member__list:first-child {
  border-top: 1px solid #000;
}

.member__list--number {
  display: flex;
  align-items: center;
}

.purchase__button--wrap {
  margin-top: 4.8em;
}
@media screen and (max-width: 767px) {
  .purchase__button--wrap {
    margin-top: 2.9em;
  }
}

.purchase__button {
  font-size: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 3.75em;
  width: 100%;
  max-width: 22.29em;
  color: #fff;
  background-color: #FF0000;
  border-radius: 3em;
  margin-left: auto;
  margin-right: auto;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.11em;
  line-height: 1.5416666667;
  box-shadow: 0 0.25em 0 #960000;
  position: relative;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .purchase__button {
    max-width: 12.3em;
  }
}
.purchase__button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25em;
  transform: translateY(-50%);
  width: 0.33em;
  height: 0.625em;
  background: url(../img/button_arrow_white.svg) no-repeat center/contain;
  transition: transform 0.3s ease;
}
.purchase__button:hover {
  opacity: 0.7;
  box-shadow: 0 0 0 #960000;
  transform: translateY(0.25em);
}
.purchase__button:hover::before {
  transform: translate(0.25em, -50%);
}
.purchase__button span.sm {
  display: block;
  font-size: 0.58em;
  letter-spacing: 0.06em;
}

/*======================================
    sns
======================================*/
.sns {
  padding: 2.75em 0 7.25em;
}
@media screen and (max-width: 767px) {
  .sns {
    padding-bottom: 3.75em;
  }
}

@media screen and (max-width: 767px) {
  .sns__title span.head {
    letter-spacing: 0.03em;
    margin-bottom: 0.25em;
  }
}
.sns__title span.md {
  font-size: 0.92em;
}

.sns__lists--wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 56.25em;
  column-gap: 2.375em;
  margin: 2.5em auto 0;
}
@media screen and (max-width: 767px) {
  .sns__lists--wrap {
    grid-template-columns: 1fr;
    max-width: 25em;
    margin-top: 1.75em;
  }
}

.sns__list {
  padding-left: 4.53em;
  display: grid;
  grid-template-columns: 2em auto;
  column-gap: 1.26em;
  align-items: center;
  height: 4em;
  position: relative;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .sns__list {
    font-size: 0.9375em;
  }
}
.sns__list:hover {
  opacity: 0.7;
}
.sns__list:hover::before {
  transform: translate(0.25em, -50%);
}
.sns__list::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.1em;
  width: 0.42em;
  height: 0.84em;
  background: url(../img/link_arrow.svg) no-repeat center/contain;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.sns__list span.sns__list--icon {
  display: flex;
  align-items: center;
}

/*# sourceMappingURL=style.css.map */
