@charset "UTF-8";
/* A Modern CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  line-height: 1;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul, ol {
  list-style-type: none;
}

em, strong {
  font-style: normal;
  font-weight: normal;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

input, button, textarea, select {
  font: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

p {
  font-weight: 500;
}

img {
  box-sizing: border-box;
}

body {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  background-color: #fff;
  margin: 0 auto;
}
body::before {
  content: "";
  position: fixed;
  background-image: url(../images/backgroud/main.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
body .logo-ticker {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  white-space: nowrap;
  animation: logo-scroll 18s linear infinite;
  z-index: -1;
}
body .logo-ticker span {
  font-size: 13rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  flex-shrink: 0;
}
@keyframes logo-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
body .wrapper-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
body .wrapper-flex .logo {
  flex: 1;
  position: sticky;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
}
body .wrapper-flex .logo img {
  max-width: 100%;
  height: auto;
  display: block;
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
}
body .wrapper-flex .nav-pc {
  flex: 1;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
body .wrapper-flex .nav-pc nav {
  position: sticky;
  top: 50%;
  transform: translateY(-50%) !important;
  transform: none;
  width: 100%;
  max-width: 100%;
  height: auto;
  background-color: transparent;
  padding: 0;
}
body .wrapper-flex .nav-pc nav .cta-area {
  padding: 0 10px;
}
body .wrapper-flex .nav-pc nav .cta-area .cta {
  box-shadow: -3px -2px 10px 0px white, 4px 4px 11px 0px rgba(0, 0, 0, 0.3), -3px -2px 10px 0px white;
  border-radius: 50px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  animation: bounce 0.6s ease infinite alternate;
}
body .wrapper-flex .nav-pc nav .cta-area .cta a {
  display: block;
  font-weight: 600;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 15px 62px;
  background: linear-gradient(to right, #FFC64B 0%, #FED640 50%, #F2E438 100%);
  border-radius: 50px;
  white-space: nowrap;
}
body .wrapper-flex .nav-pc nav .cta-area .cta a::after {
  content: "›";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  font-size: 2rem;
  padding-bottom: 35px;
}
body .wrapper-flex .nav-pc nav ul {
  padding-bottom: 20px;
  width: 100%;
  /* パディング分も含めて全体を使う */
}
body .wrapper-flex .nav-pc nav ul li {
  opacity: 1;
  transform: none;
  padding: 5px 0;
}
body .wrapper-flex .nav-pc nav ul li a {
  padding: 1rem 1.5rem;
  font-weight: 600;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
body .wrapper-flex .nav-pc nav ul li a::after {
  display: none;
}
body .wrapper-flex .nav-pc .cta-top {
  text-align: center;
  position: absolute;
  bottom: 10%;
  right: 50%;
  transform: translateX(50%);
}
body .wrapper-flex .wrapper-box {
  min-width: 0;
}
body .wrapper-flex .wrapper-box .wrapper-img {
  max-width: 430px;
  flex: 1;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  margin-top: 50px;
}

header {
  position: relative;
  z-index: 9999;
  background-color: #fff;
}

/* ハンバーガーボタン */
.btn {
  position: absolute;
  top: 5px;
  right: 15px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 101;
}
.btn span {
  display: block;
  position: absolute;
  left: 5px;
  width: 30px;
  height: 2px;
  background-color: #000;
  transition: 0.3s;
}
.btn span:nth-child(1) {
  top: 10px;
}
.btn span:nth-child(2) {
  top: 19px;
}
.btn span:nth-child(3) {
  top: 28px;
}
.btn {
  /* openクラスがついた時のボタンのスタイル（バツ印） */
}
.btn.open span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}
.btn.open span:nth-child(2) {
  opacity: 0;
}
.btn.open span:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}

/* ナビゲーション */
nav {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(100vw);
  width: 100%;
  max-width: 430px;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.95);
  transition: transform 0.3s;
  padding-top: 80px;
}
nav ul {
  list-style: none;
  padding: 0;
  text-align: center;
}
nav ul li {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  padding: 3px 0;
}
nav ul li a {
  font-weight: 600;
  font-size: 2rem;
  color: #000;
  line-height: 1.3;
  text-align: center;
  display: block;
  padding: 1.5rem 2rem;
  position: relative;
  transition: background-color 0.3s, color 0.3s;
}
nav ul li a:hover {
  background-color: #000;
}
nav ul li a:hover span {
  color: #fff;
}
nav ul li a::after {
  content: ">";
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}
nav.open {
  transform: translateX(-50%);
}
nav.open li:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}
nav.open li:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
nav.open li:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}
nav.open li:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}
nav.open li:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}
nav.open li:nth-child(6) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
nav.open li:nth-child(7) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.45s;
}
nav.open li:nth-child(8) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}
nav.open li:nth-child(9) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.55s;
}
nav.open li:nth-child(10) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.wrapper-fv {
  position: relative;
}
.wrapper-fv .cta-fv {
  position: absolute;
  bottom: 18%;
  right: 50%;
  border-radius: 50px;
  animation: cta-fv-bounce 0.6s ease infinite alternate;
}
.wrapper-fv .cta-fv a {
  display: block;
  font-weight: 600;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 15px 62px;
  background: linear-gradient(to right, #FFC64B 0%, #FED640 50%, #F2E438 100%);
  border-radius: 50px;
  white-space: nowrap;
}
.wrapper-fv .cta-fv a::after {
  content: "›";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  font-size: 2rem;
  padding-bottom: 35px;
}

@keyframes cta-fv-bounce {
  0% {
    transform: translateX(50%) translateY(0);
  }
  100% {
    transform: translateX(50%) translateY(-5px);
  }
}
.wrapper-campaign {
  background-color: #000;
  padding: 40px 20px;
}
.wrapper-campaign .campaign .campaign__label {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: #000;
  font-size: 1.6rem;
  position: relative;
  width: 250px;
  margin: 0 auto;
}
.wrapper-campaign .campaign .campaign__label::before, .wrapper-campaign .campaign .campaign__label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 70px;
  height: 1px;
  background: #000;
  transform: translateY(-50%);
}
.wrapper-campaign .campaign .campaign__label::before {
  left: 0;
}
.wrapper-campaign .campaign .campaign__label::after {
  right: 0;
}
.wrapper-campaign .campaign .campaign__label {
  color: #fff;
}
.wrapper-campaign .campaign .campaign__label::before, .wrapper-campaign .campaign .campaign__label::after {
  background: #fff;
}
.wrapper-campaign .campaign h2 {
  font-weight: 600;
  font-size: 2.4rem;
  color: #000;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.05em;
  padding: 10px 0 10px;
  border-bottom: 1px solid #000;
  width: 250px;
  margin: 0 auto;
  color: #fff;
  border-bottom: 1px solid #fff;
}
.wrapper-campaign .campaign .campaign__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
}
.wrapper-campaign .campaign .campaign__list .campaign__item {
  background-color: #fff;
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
.wrapper-campaign .campaign .campaign__list .campaign__item .campaign__item-title {
  font-weight: 600;
  font-size: 2.4rem;
  color: #000;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.05em;
}
.wrapper-campaign .campaign .campaign__list .campaign__item .campaign__price-row,
.wrapper-campaign .campaign .campaign__list .campaign__item .campaign__price-center {
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
.wrapper-campaign .campaign .campaign__list .campaign__item .campaign__price-row .campaign__price-original,
.wrapper-campaign .campaign .campaign__list .campaign__item .campaign__price-row .campaign__arrow,
.wrapper-campaign .campaign .campaign__list .campaign__item .campaign__price-center .campaign__price-original,
.wrapper-campaign .campaign .campaign__list .campaign__item .campaign__price-center .campaign__arrow {
  font-weight: 600;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  font-size: 2rem;
  font-weight: 500;
}
.wrapper-campaign .campaign .campaign__list .campaign__item .campaign__price-row .campaign__price-free,
.wrapper-campaign .campaign .campaign__list .campaign__item .campaign__price-center .campaign__price-free {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 8rem;
  color: #FFDD34;
}
.wrapper-campaign .campaign .campaign__list .campaign__item .campaign__price-row .campaign__price-free .yen,
.wrapper-campaign .campaign .campaign__list .campaign__item .campaign__price-center .campaign__price-free .yen {
  font-weight: 600;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #FFDD34;
  font-size: 2.4rem;
}
.wrapper-campaign .campaign .campaign__list .campaign__item .campaign__desc {
  font-weight: 600;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-align: justify;
}
.wrapper-campaign .campaign .campaign__cta {
  display: block;
  font-weight: 600;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 15px 62px;
  background: linear-gradient(to right, #FFC64B 0%, #FED640 50%, #F2E438 100%);
  border-radius: 50px;
  white-space: nowrap;
}
.wrapper-campaign .campaign .campaign__cta::after {
  content: "›";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  font-size: 2rem;
  padding-bottom: 35px;
}
.wrapper-campaign .campaign .campaign__cta {
  margin-top: 20px;
  animation: bounce 0.6s ease infinite alternate;
}

.ba {
  padding: 40px 20px;
  background: linear-gradient(to right, #EFF1F4, #E1E6EA);
  text-align: center;
}
.ba .campaign__label {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: #000;
  font-size: 1.6rem;
  position: relative;
  width: 250px;
  margin: 0 auto;
}
.ba .campaign__label::before, .ba .campaign__label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 70px;
  height: 1px;
  background: #000;
  transform: translateY(-50%);
}
.ba .campaign__label::before {
  left: 0;
}
.ba .campaign__label::after {
  right: 0;
}
.ba .campaign__label {
  display: block;
  text-align: center;
}
.ba .campaign__label::before, .ba .campaign__label::after {
  width: 60px;
}
.ba h2 {
  font-weight: 600;
  font-size: 2.4rem;
  color: #000;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.05em;
  padding: 10px 0 10px;
  border-bottom: 1px solid #000;
  width: 250px;
  margin: 0 auto;
}
.ba > dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
}
.ba > dl > div {
  background-color: #000;
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
}
.ba > dl > div dt {
  font-weight: 600;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #fff;
  font-size: 1.4rem;
}
.ba > dl > div dd {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: #FFDD34;
  margin-top: 5px;
}
.ba > dl > div dd .per {
  font-size: 1.4rem;
  font-weight: 600;
}
.ba .slider-ba {
  margin-top: 30px;
  overflow: visible;
  border-radius: 30px 0 30px 0;
  box-shadow: -3px -2px 10px 0px white, 4px 4px 11px 0px rgba(0, 0, 0, 0.3), -3px -2px 10px 0px white;
}
.ba .slider-ba .slick-dots li button::before {
  display: none !important;
}
.ba .slider-ba .slick-list {
  overflow: hidden;
  border-radius: 30px 0 30px 0;
}
.ba .slider-ba .slick-dots {
  bottom: -46px;
}
.ba .slider-ba .slick-dots li button {
  font-size: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #ccc;
  border: none;
  padding: 0;
  cursor: pointer;
}
.ba .slider-ba .slick-dots li.slick-active button {
  background-color: #000;
}
.ba .slider-ba .slick-slide {
  padding: 0;
}
.ba .ba-box {
  background-color: #fff;
  border-radius: 30px 0 30px 0;
  overflow: hidden;
}
.ba .ba-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ba .ba-img img {
  width: 100%;
  height: 232px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.ba .ba-img > img:first-child {
  position: relative;
}
.ba .ba-img > img:first-child::after,
.ba .ba-img > img:last-child::after {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
}
.ba .bottom-ba {
  padding: 16px;
  text-align: left;
}
.ba .bottom-ba > p:first-child {
  font-weight: 600;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-align: left;
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.ba .bottom-ba dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.ba .bottom-ba dl > div {
  background: linear-gradient(to right, #EFF1F4, #E1E6EA);
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
}
.ba .bottom-ba dl > div dt {
  font-size: 1.2rem;
  font-weight: 500;
  color: #888;
}
.ba .bottom-ba dl > div dd {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
}
.ba .bottom-ba dl > div dd span {
  font-size: 1.4rem;
}
.ba .bottom-ba > p:last-child {
  font-weight: 600;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-align: left;
  font-size: 1.4rem;
  border-left: 3px solid #FFDD34;
  padding-left: 10px;
  line-height: 1.6;
}

.voice {
  padding: 40px 20px;
  background-color: #fff;
}
.voice .campaign__label {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: #000;
  font-size: 1.6rem;
  position: relative;
  width: 250px;
  margin: 0 auto;
}
.voice .campaign__label::before, .voice .campaign__label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 70px;
  height: 1px;
  background: #000;
  transform: translateY(-50%);
}
.voice .campaign__label::before {
  left: 0;
}
.voice .campaign__label::after {
  right: 0;
}
.voice .campaign__label {
  width: 300px;
}
.voice .campaign__label::before, .voice .campaign__label::after {
  width: 110px;
}
.voice h2 {
  font-weight: 600;
  font-size: 2.4rem;
  color: #000;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.05em;
  padding: 10px 0 10px;
  border-bottom: 1px solid #000;
  width: 250px;
  margin: 0 auto;
  margin-bottom: 30px;
  width: 300px;
}
.voice .voice-slider .voice-slide {
  padding: 10px 0;
  transition: opacity 0.5s ease;
  position: relative;
}
.voice .voice-slider .voice-slide h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.6rem;
  padding: 5px 10px;
  text-transform: lowercase;
  background-color: #fff;
  color: #FFDD34;
  position: absolute;
  top: 3%;
  left: 20%;
  z-index: 99;
}
.voice .voice-slider .voice-slide > p {
  text-align: center;
}
.voice .voice-slider .voice-slide > p img {
  position: absolute;
  top: 0;
  left: 30%;
}
.voice .voice-slider .voice-slide .box {
  margin-top: 40px;
  padding: 100px 20px 20px 20px;
  border-radius: 10px;
  border: 1px solid #000;
}
.voice .voice-slider .voice-slide .box h4 {
  font-weight: 600;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-align: center;
  padding-bottom: 10px;
  color: #000;
}
.voice .voice-slider .voice-slide .box h4 .en {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.6rem;
  color: #000;
}
.voice .voice-slider .voice-slide .box p {
  font-weight: 600;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  line-height: 1.7;
  text-align: justify;
  border-bottom: none;
}

.wrapper-worries {
  background-color: #fff;
}
.wrapper-worries .worries {
  padding: 40px 20px;
  position: relative;
}
.wrapper-worries .worries .campaign__label {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.6rem;
}
.wrapper-worries .worries h2 {
  font-weight: 600;
  font-size: 2.4rem;
  color: #000;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.05em;
  padding: 20px 0;
  position: relative;
  display: block;
  margin: 0 auto;
}
.wrapper-worries .worries h2::before, .wrapper-worries .worries h2::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
}
.wrapper-worries .worries h2::before {
  top: 5px;
  left: 60px;
  border-top: 2px solid #000;
  border-left: 2px solid #000;
}
.wrapper-worries .worries h2::after {
  bottom: 5px;
  right: 60px;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
}
.wrapper-worries .worries ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-direction: column;
  align-items: normal;
  gap: 20px;
  margin-top: 20px;
  padding: 0 20px;
}
.wrapper-worries .worries ul li {
  font-weight: 600;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  background: linear-gradient(to right, #EFF1F4, #E1E6EA);
  box-shadow: -3px -2px 10px 0px white, 4px 4px 11px 0px rgba(0, 0, 0, 0.3), -3px -2px 10px 0px white;
  border-radius: 10px;
  line-height: 1.7;
  width: none;
  padding: 15px;
}
.wrapper-worries .worries ul li .underline {
  position: relative;
  display: inline-block;
}
.wrapper-worries .worries ul li .underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #FFD700;
}
.wrapper-worries .worries ul li .underline {
  line-height: 1.7;
}
.wrapper-worries .worries .bottom-content {
  padding: 0 20px;
}
.wrapper-worries .worries .bottom-content .bottom-worries {
  font-weight: 600;
  font-size: 2rem;
  color: #000;
  line-height: 1.3;
  text-align: center;
  padding: 20px 20px;
  margin-top: 20px;
  border: 2px solid #000;
  border-radius: 100px;
  line-height: 1.5;
}
.wrapper-worries .worries .bottom-content .bottom-worries .accolor {
  color: #FFDD34;
}
.wrapper-worries .worries .man {
  position: absolute;
  bottom: 0;
  right: 70%;
}
.wrapper-worries .worries .woman {
  position: absolute;
  bottom: 0;
  right: 17%;
}

.reason {
  background: linear-gradient(to right, #EFF1F4, #E1E6EA);
  padding: 30px 20px 40px;
}
.reason .campaign__label {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: #000;
  font-size: 1.6rem;
  position: relative;
  width: 250px;
  margin: 0 auto;
}
.reason .campaign__label::before, .reason .campaign__label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 70px;
  height: 1px;
  background: #000;
  transform: translateY(-50%);
}
.reason .campaign__label::before {
  left: 0;
}
.reason .campaign__label::after {
  right: 0;
}
.reason .campaign__label {
  width: 300px;
}
.reason .campaign__label::before, .reason .campaign__label::after {
  width: 110px;
}
.reason h2 {
  font-weight: 600;
  font-size: 2.4rem;
  color: #000;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.05em;
  padding: 10px 0 10px;
  border-bottom: 1px solid #000;
  width: 250px;
  margin: 0 auto;
  margin-bottom: 20px;
  width: 300px;
}
.reason .subtext {
  font-weight: 600;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-align: justify;
  margin-bottom: 20px;
  padding: 0 20px;
}
.reason .box-reason {
  box-shadow: -3px -2px 10px 0px white, 4px 4px 11px 0px rgba(0, 0, 0, 0.3), -3px -2px 10px 0px white;
  border-radius: 30px 0 30px 0;
  margin-bottom: 20px;
}
.reason .box-reason div img {
  display: block;
  border-radius: 30px 0 0 0;
  width: 100%;
}
.reason .box-reason .content-reason {
  padding: 20px;
}
.reason .box-reason .content-reason h3 {
  font-weight: 600;
  font-size: 2rem;
  color: #000;
  line-height: 1.3;
  text-align: center;
  border-bottom: 2px dotted #000;
  margin-bottom: 10px;
}
.reason .box-reason .content-reason p {
  font-weight: 600;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-align: justify;
  line-height: 1.5;
  font-weight: 500;
}
.reason .arrow {
  text-align: center;
}
.reason .bottom-img {
  position: relative;
  margin-top: 20px;
}
.reason .bottom-img .man {
  display: block;
  position: absolute;
  bottom: -22%;
  right: 1%;
}
.reason .bottom-img .text {
  transform: translate(1px, 0);
}

.point {
  padding: 40px 20px;
  background-color: #fff;
}
.point .campaign__label {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: #000;
  font-size: 1.6rem;
  position: relative;
  width: 250px;
  margin: 0 auto;
}
.point .campaign__label::before, .point .campaign__label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 70px;
  height: 1px;
  background: #000;
  transform: translateY(-50%);
}
.point .campaign__label::before {
  left: 0;
}
.point .campaign__label::after {
  right: 0;
}
.point .campaign__label {
  width: 300px;
}
.point .campaign__label::before, .point .campaign__label::after {
  width: 110px;
}
.point h2 {
  font-weight: 600;
  font-size: 2.4rem;
  color: #000;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.05em;
  padding: 10px 0 10px;
  border-bottom: 1px solid #000;
  width: 250px;
  margin: 0 auto;
  margin-bottom: 20px;
  width: 300px;
}
.point .subtext {
  font-weight: 600;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-align: justify;
  margin-bottom: 20px;
  font-weight: 500;
  padding: 0 20px;
}
.point .box-point .point-img,
.point .box-point-left .point-img {
  transform: translateX(-20px);
}
.point .box-point .hukidashi,
.point .box-point-left .hukidashi {
  font-weight: 600;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  padding: 7px 15px;
  background-color: #FFDD34;
  border-radius: 50px;
  text-align: left;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin-top: 20px;
}
.point .box-point .hukidashi::before,
.point .box-point-left .hukidashi::before {
  content: "";
  position: absolute;
  bottom: -19px;
  left: 24px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 7px 10px 7px;
  border-color: #FFDD34 transparent transparent transparent;
}
.point .box-point h3,
.point .box-point-left h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  margin-top: 10px;
  font-weight: 600;
  text-align: left;
}
.point .box-point .sub-text,
.point .box-point-left .sub-text {
  font-weight: 600;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-align: left;
  border-bottom: 2px dotted #000;
  width: -moz-fit-content;
  width: fit-content;
}
.point .box-point dl dt,
.point .box-point-left dl dt {
  font-weight: 600;
  font-size: 2rem;
  color: #000;
  line-height: 1.3;
  text-align: center;
  padding: 20px 0;
  text-align: left;
}
.point .box-point dl dd ul,
.point .box-point-left dl dd ul {
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.point .box-point dl dd ul li img,
.point .box-point-left dl dd ul li img {
  border-radius: 15px;
}
.point .box-point-left {
  text-align: right;
  padding: 20px 0;
}
.point .box-point-left .point-img-left {
  transform: translateX(20px);
}
.point .box-point-left .hukidashi,
.point .box-point-left h3,
.point .box-point-left .sub-text {
  text-align: right;
}
.point .box-point-left .hukidashi,
.point .box-point-left .sub-text {
  margin-left: auto;
}
.point .box-point-left dl dt {
  text-align: right;
}

.choose {
  background: linear-gradient(to right, #EFF1F4, #E1E6EA);
  padding: 30px 20px 0;
}
.choose .campaign__label {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: #000;
  font-size: 1.6rem;
  position: relative;
  width: 250px;
  margin: 0 auto;
}
.choose .campaign__label::before, .choose .campaign__label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 70px;
  height: 1px;
  background: #000;
  transform: translateY(-50%);
}
.choose .campaign__label::before {
  left: 0;
}
.choose .campaign__label::after {
  right: 0;
}
.choose .campaign__label {
  width: 300px;
}
.choose .campaign__label::before, .choose .campaign__label::after {
  width: 110px;
}
.choose h2 {
  font-weight: 600;
  font-size: 2.4rem;
  color: #000;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.05em;
  padding: 10px 0 10px;
  border-bottom: 1px solid #000;
  width: 250px;
  margin: 0 auto;
  margin-bottom: 20px;
  width: 300px;
}
.choose .choose-box .hukidashi {
  font-weight: 600;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  padding: 7px 15px;
  background-color: #FFDD34;
  border-radius: 50px;
  text-align: left;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin-top: 20px;
}
.choose .choose-box .hukidashi::before {
  content: "";
  position: absolute;
  bottom: -19px;
  left: 24px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 7px 10px 7px;
  border-color: #FFDD34 transparent transparent transparent;
}
.choose .choose-box .hukidashi {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.6rem;
  text-align: center;
  margin: 0 auto;
  text-transform: uppercase;
  font-weight: 700;
}
.choose .choose-box .hukidashi::before {
  left: 50%;
  transform: translateX(-50%);
}
.choose .choose-box h3 {
  font-weight: 600;
  font-size: 2rem;
  color: #000;
  line-height: 1.3;
  text-align: center;
  padding: 10px 0 20px;
}
.choose .choose-box div {
  padding-bottom: 20px;
}
.choose .choose-box dl {
  padding: 0 20px;
}
.choose .choose-box dl dt {
  font-weight: 600;
  font-size: 2.4rem;
  color: #000;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.05em;
  text-align: justify;
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  justify-content: flex-start;
  gap: 15px;
}
.choose .choose-box dl dt .num {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 2rem;
  flex-shrink: 0;
  width: 39px;
  height: 32px;
  border: 2px solid #111;
  border-radius: 10px 0 10px 0;
  display: grid;
  place-items: center;
}
.choose .choose-box dl dd {
  font-weight: 600;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-align: justify;
  font-weight: 500;
  padding-bottom: 30px;
  line-height: 1.5;
}

.plan {
  background-color: #000;
  padding: 40px 20px;
}
.plan .campaign__label {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: #000;
  font-size: 1.6rem;
  position: relative;
  width: 250px;
  margin: 0 auto;
}
.plan .campaign__label::before, .plan .campaign__label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 70px;
  height: 1px;
  background: #000;
  transform: translateY(-50%);
}
.plan .campaign__label::before {
  left: 0;
}
.plan .campaign__label::after {
  right: 0;
}
.plan .campaign__label {
  width: 300px;
  color: #fff;
  padding-top: 0;
}
.plan .campaign__label::before, .plan .campaign__label::after {
  width: 110px;
  background: #fff;
}
.plan h2 {
  font-weight: 600;
  font-size: 2.4rem;
  color: #000;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.05em;
  padding: 10px 0 10px;
  border-bottom: 1px solid #000;
  width: 250px;
  margin: 0 auto;
  margin-bottom: 20px;
  width: 300px;
  color: #fff;
  border-bottom: 1px solid #fff;
}
.plan .subtext {
  font-weight: 600;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-align: justify;
  margin-bottom: 20px;
  padding: 0 20px;
  color: #fff;
}
.plan .flex-plan {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-direction: column;
}
.plan .flex-plan .plan {
  padding: 30px 20px 0;
  background-color: #fff;
  border-radius: 10px 10px 0 0;
  position: relative;
}
.plan .flex-plan .plan .easygo {
  background-color: #FFDD34;
  font-weight: 600;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  padding: 5px 10px 6px 14px;
  clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 11% 100%);
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 69%;
  border-radius: 2px;
}
.plan .flex-plan .plan .hukidashi {
  font-weight: 600;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  padding: 7px 15px;
  background-color: #FFDD34;
  border-radius: 50px;
  text-align: left;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin-top: 20px;
}
.plan .flex-plan .plan .hukidashi::before {
  content: "";
  position: absolute;
  bottom: -19px;
  left: 24px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 7px 10px 7px;
  border-color: #FFDD34 transparent transparent transparent;
}
.plan .flex-plan .plan .hukidashi {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  margin: 0 auto;
  background-color: #000;
  text-transform: uppercase;
  font-weight: 700;
}
.plan .flex-plan .plan .hukidashi::before {
  border-color: #000 transparent transparent transparent;
  left: 50%;
  transform: translateX(-50%);
}
.plan .flex-plan .plan h3 {
  font-weight: 600;
  font-size: 2rem;
  color: #000;
  line-height: 1.3;
  text-align: center;
  padding: 10px 0;
}
.plan .flex-plan .plan .price-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  gap: 0;
  justify-content: center;
  font-weight: 600;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  padding: 5px;
}
.plan .flex-plan .plan .price-content .price {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 5rem;
}
.plan .flex-plan .plan small {
  font-weight: 600;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-align: center;
  display: block;
}
.plan .flex-plan .plan p {
  font-weight: 600;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-align: justify;
  padding: 10px 0;
}
.plan .flex-plan .plan ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 30px;
}
.plan p {
  font-weight: 600;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-align: justify;
  padding-top: 20px;
  font-weight: 400;
  color: #fff;
}

.locations {
  padding: 40px 20px;
  background-color: #fff;
}
.locations .campaign__label {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: #000;
  font-size: 1.6rem;
  position: relative;
  width: 250px;
  margin: 0 auto;
}
.locations .campaign__label::before, .locations .campaign__label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 70px;
  height: 1px;
  background: #000;
  transform: translateY(-50%);
}
.locations .campaign__label::before {
  left: 0;
}
.locations .campaign__label::after {
  right: 0;
}
.locations .campaign__label {
  width: 300px;
}
.locations .campaign__label::before, .locations .campaign__label::after {
  width: 87px;
}
.locations h2 {
  font-weight: 600;
  font-size: 2.4rem;
  color: #000;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.05em;
  padding: 10px 0 10px;
  border-bottom: 1px solid #000;
  width: 250px;
  margin: 0 auto;
  margin-bottom: 20px;
  width: 300px;
}
.locations .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.locations .table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.locations .table-wrap::-webkit-scrollbar {
  display: none;
}
.locations .table-wrap {
  scrollbar-width: none;
}
.locations .locations-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  table-layout: fixed;
}
.locations .locations-table thead tr {
  background: #111;
  color: #fff;
}
.locations .locations-table th {
  padding: 14px 8px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  border-right: 1px solid #333;
}
.locations .locations-table th:first-child {
  text-align: left;
  padding-left: 16px;
  width: 130px;
  border-right: 1px solid #444;
}
.locations .locations-table th:last-child {
  border-right: none;
}
.locations .locations-table tbody tr {
  border-bottom: 1px solid #e0e0e0;
}
.locations .locations-table tbody tr:nth-child(odd) {
  background: #fff;
}
.locations .locations-table tbody tr:nth-child(even) {
  background: #f5f5f5;
}
.locations .locations-table td {
  padding: 18px 8px;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  border-right: 1px solid #e0e0e0;
}
.locations .locations-table td:first-child {
  text-align: left;
  padding-left: 16px;
  font-size: 14px;
  border-right: 1px solid #e0e0e0;
}
.locations .locations-table td:first-child strong {
  font-weight: 700;
  color: #111;
}
.locations .locations-table td:last-child {
  border-right: none;
}
.locations .locations-table .badge-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 3px;
}
.locations .locations-table .badge-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #e8e8e8;
  color: #aaa;
  font-size: 14px;
  border-radius: 3px;
}
.locations .table-scroll-hint {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  margin-top: 12px;
  font-size: 12px;
  color: #999;
}
.locations .table-scroll-hint svg {
  width: 16px;
  height: 16px;
  stroke: #999;
  fill: none;
  flex-shrink: 0;
}

.faq-info {
  background: linear-gradient(to right, #EFF1F4, #E1E6EA);
  padding: 40px 20px;
  text-align: center;
}
.faq-info .campaign__label {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: #000;
  font-size: 1.6rem;
  position: relative;
  width: 250px;
  margin: 0 auto;
}
.faq-info .campaign__label::before, .faq-info .campaign__label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 70px;
  height: 1px;
  background: #000;
  transform: translateY(-50%);
}
.faq-info .campaign__label::before {
  left: 0;
}
.faq-info .campaign__label::after {
  right: 0;
}
.faq-info .campaign__label {
  display: block;
  margin-bottom: 8px;
}
.faq-info h2 {
  font-weight: 600;
  font-size: 2.4rem;
  color: #000;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.05em;
  padding: 10px 0 10px;
  border-bottom: 1px solid #000;
  width: 250px;
  margin: 0 auto;
}

.faq {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.details {
  background: #fff;
  border-radius: 12px;
  box-shadow: -3px -2px 10px 0px white, 4px 4px 11px 0px rgba(0, 0, 0, 0.3), -3px -2px 10px 0px white;
  overflow: hidden;
  text-align: left;
}

.details-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  gap: 12px;
}
.details-summary::-webkit-details-marker {
  display: none;
}
.details-summary::marker {
  display: none;
}
.details-summary span {
  font-weight: 600;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-align: left;
}
.details-summary::after {
  content: "+";
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: #000;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.details[open] > .details-summary::after {
  content: "−";
}

.details-content {
  padding: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.details-content > div:first-child {
  margin-bottom: 16px;
}
.details-content > div:first-child img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
.details-content iframe {
  display: block;
  width: 100%;
  max-width: 350px;
  height: 250px;
  border-radius: 8px;
  margin-top: 16px;
  border: 0;
}
.details-content p {
  font-weight: 600;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-align: justify;
  line-height: 1.5;
}

.store-dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 16px;
  margin: 0;
}
.store-dl dt {
  font-weight: 600;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-align: left;
  font-size: 1.4rem;
  color: rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  padding-top: 2px;
}
.store-dl dd {
  font-weight: 600;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-align: left;
  font-size: 1.4rem;
  margin: 0;
}
.store-dl dd a {
  color: #000;
  text-decoration: none;
}
.store-dl dd a:hover {
  text-decoration: underline;
}
.store-dl dd strong {
  font-weight: 700;
}

.faq-content {
  background: #fff !important;
}

footer {
  text-align: center;
  padding: 20px 0;
  background-color: #fff;
}

.contact {
  padding: 40px 20px;
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-direction: column;
  gap: 10px;
}
.contact .en {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.6rem;
  color: #fff;
}
.contact h2 {
  font-weight: 600;
  font-size: 2.4rem;
  color: #000;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.05em;
  color: #fff;
}
.contact .cta {
  border-radius: 50px;
}
.contact .cta a {
  display: block;
  font-weight: 600;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 15px 62px;
  background: linear-gradient(to right, #FFC64B 0%, #FED640 50%, #F2E438 100%);
  border-radius: 50px;
  white-space: nowrap;
}
.contact .cta a::after {
  content: "›";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  font-size: 2rem;
  padding-bottom: 35px;
}
.contact .cta a {
  animation: bounce 0.6s ease infinite alternate;
}
.contact p {
  font-weight: 600;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #fff;
  font-size: 1.1rem;
  padding: 10px 0;
  line-height: 1.7;
}

.form {
  background-color: #fff;
  padding: 40px 0;
}
.form .campaign__label {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: #000;
  font-size: 1.6rem;
  position: relative;
  width: 250px;
  margin: 0 auto;
}
.form .campaign__label::before, .form .campaign__label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 70px;
  height: 1px;
  background: #000;
  transform: translateY(-50%);
}
.form .campaign__label::before {
  left: 0;
}
.form .campaign__label::after {
  right: 0;
}
.form .campaign__label {
  width: 300px;
}
.form .campaign__label::before, .form .campaign__label::after {
  width: 110px;
}
.form h2 {
  font-weight: 600;
  font-size: 2.4rem;
  color: #000;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.05em;
  padding: 10px 0 10px;
  border-bottom: 1px solid #000;
  width: 250px;
  margin: 0 auto;
  margin-bottom: 20px;
  width: 300px;
}
.form iframe {
  display: block;
  background-color: #fff;
}

.fixed-cta {
  position: fixed;
  bottom: 10px;
  right: 50%;
  transform: translateX(50%);
}
.fixed-cta a {
  display: block;
  font-weight: 600;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 15px 62px;
  background: linear-gradient(to right, #FFC64B 0%, #FED640 50%, #F2E438 100%);
  border-radius: 50px;
  white-space: nowrap;
}
.fixed-cta a::after {
  content: "›";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  font-size: 2rem;
  padding-bottom: 35px;
}
.fixed-cta a {
  animation: bounce 0.6s ease infinite alternate;
}

.thanks::before {
  background-image: none;
}

.thanks-page {
  background-image: none;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 40px 20px;
}

.content-contact {
  max-width: 600px;
  width: 100%;
}
.content-contact__heading {
  text-align: center;
  padding-bottom: 40px;
}
.content-contact__heading .content-contact__en {
  font-family: "Poppins", sans-serif;
  font-size: 6rem;
  font-weight: 700;
  font-style: italic;
  color: rgba(0, 0, 0, 0.15);
  line-height: 1;
  margin-bottom: -8px;
}
.content-contact__heading h2 {
  font-weight: 600;
  font-size: 2.4rem;
  color: #000;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.05em;
  font-size: 2.8rem;
  position: relative;
}
.content-contact__body {
  background-color: #f5f5f5;
  padding: 40px 30px;
  border-radius: 4px;
}
.content-contact__body h3 {
  font-weight: 600;
  font-size: 2.4rem;
  color: #000;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.05em;
  color: #FFDD34;
  font-size: 2rem;
  margin-bottom: 24px;
  text-align: center;
}
.content-contact__body p {
  font-weight: 600;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: left;
  line-height: 1.8;
  margin-bottom: 16px;
}
.content-contact__body p:last-of-type {
  margin-bottom: 0;
}
.content-contact__staff {
  text-align: center !important;
  color: #888;
  font-size: 1.3rem !important;
}
.content-contact__btn {
  display: block;
  font-weight: 600;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  text-align: center;
  padding: 16px;
  margin-top: 32px;
  border: 2px solid #000;
  border-radius: 4px;
  color: #000;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.content-contact__btn:hover {
  background-color: #000;
  color: #fff;
}

@media (max-width: 768px) {
  body .wrapper-flex .nav-pc,
  body .wrapper-flex .logo {
    display: none;
  }
  body .wrapper-flex .wrapper-box {
    background-image: none;
  }
  body .wrapper-flex .wrapper-box .wrapper-img {
    border-radius: 0;
    margin-top: 0;
  }
  body .wrapper-flex .wrapper-box .wrapper-img header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 430px;
    width: 100%;
    z-index: 100;
  }
  body main {
    margin-top: 50px;
  }
}/*# sourceMappingURL=style.css.map */