/* ==========================================================================
    1. CSS Variables & Reset
    ========================================================================== */
:root {
  --color-surface: #FFFFFF;
  --color-surface-bright: #FAFAFC;
  --color-surface-dark: #111111;
  --color-text-main: #222222;
  --color-text-sub: #555555;
  --color-brand: #FF8A4C;
  --color-brand-light: #FFB385;
  --color-brand-dark: #F5722E;
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.6) 100%);
  --font-main: 'Noto Sans JP', sans-serif;
  --font-en: 'Oswald', sans-serif;
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --header-height: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  color: var(--color-text-main);
  background-color: var(--color-surface);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

body.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

/* ==========================================================================
    2. Layout & Typography
    ========================================================================== */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 96px;
}

.section-padding {
  padding: 160px 0;
}

.relative {
  position: relative;
}

.z-10 {
  z-index: 10;
}

@media (max-width: 1279px) {
  .container {
    padding: 0 48px;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 24px;
  }

  .section-padding {
    padding: 80px 0;
  }
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-brand-dark) 0%, var(--color-brand) 100%);
  -webkit-background-clip: text;
  color: transparent;
}

.title-main {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.title-sub {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
}

.title-center {
  text-align: center;
}

@media (max-width: 1023px) {
  .title-main {
    font-size: 3rem;
  }

  .title-sub {
    font-size: 1.2rem;
  }
}

.section-header {
  margin-bottom: 64px;
}

.section-header.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--color-brand);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-label__divider {
  width: 48px;
  height: 4px;
  background: var(--color-brand);
}

.stripe-square {
  width: 12px;
  height: 24px;
  background: var(--color-brand);
  transform: skewX(-10deg);
}

.bg-text-watermark {
  position: absolute;
  font-family: var(--font-en);
  font-size: 18vw;
  font-weight: 900;
  line-height: 1;
  opacity: 0.6;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 138, 75, 0.25);
  transform: translateY(-10%);
}

.bg-shape-skew {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: #FFF;
  transform: skewX(-20deg);
  transform-origin: top;
  z-index: 0;
  pointer-events: none;
}

.stripe-accent-bg {
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  background: repeating-linear-gradient(45deg, transparent, transparent 4px, var(--color-brand) 4px, var(--color-brand) 8px);
  opacity: 0.05;
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 0;
}

/* ==========================================================================
    3. Header & Navigation
    ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  height: 70px;
}

.header__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo img {
  height: 32px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__nav-list {
  display: flex;
  gap: 24px;
  align-items: center;
}

.header__nav-list a {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text-main);
  transition: color 0.3s;
}

.header__nav-list a:hover {
  color: var(--color-brand);
}

.header__cta {
  background: background: var(--color-brand);
  background: linear-gradient(135deg, var(--color-brand-dark) 0%, var(--color-brand-light) 100%);
  color: #FFF;
  padding: 12px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 138, 76, 0.2);
}

.header__cta:hover {
  background-color: var(--color-brand-dark);
  color: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 138, 76, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  z-index: 1001;
  position: relative;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text-main);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-menu.is-active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}

.mobile-menu__list a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-main);
}

.mobile-menu__cta {
  display: inline-block;
  margin-top: 24px;
  background-color: var(--color-brand);
  color: #FFF !important;
  padding: 16px 48px;
  border-radius: 999px;
  font-size: 1.1rem !important;
}

@media (max-width: 1023px) {
  .header__nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header.is-scrolled {
    height: 48px;
  }
}

@media (max-width: 767px) {
  .mobile-menu__list a {
    font-size: 1.2rem;
    width: 100%;
  }

  .mobile-menu__cta {
    padding: 12px 24px;
    font-size: 1rem;
  }
}

.fv-image-section {
  position: relative;
  background: #f7f7f7;
  overflow: hidden;
  margin: 0 auto;
  padding: 120px 0 100px;
}

.fv-image-section>picture {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.fv-image-section>picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.fv-image-overlay {
  position: relative;
  z-index: 5;
  color: #101010;
}

.fv-image-campaign-tag {
  display: inline-block;
  border: 2px solid #f28a3c;
  background: rgba(255, 255, 255, 0.88);
  color: #db812f;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 16px;
  padding: 10px 18px;
  margin-bottom: 15px;
}

.fv-image-copy-main {
  font-size: 66px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
  color: #111;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.4);
}

.fv-image-copy-sub {
  font-size: 85px;
  line-height: 1.05;
  font-weight: 700;
  color: #F5722E;
  letter-spacing: 0.01em;
  margin-bottom: clamp(20px, 3vw, 34px);
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.35);
}

.fv-image-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  width: fit-content;
}

.fv-image-benefit-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  text-align: center;
}
.fv-image-benefit-content {
  padding: 24px 32px 40px;
}

.fv-image-benefit-head {
  background: #F5722E;
  color: #fff;
  font-weight: 700;
  font-size: clamp(13px, 1vw, 16px);
  letter-spacing: 0.24em;
  margin: 0 -16px 12px;
  padding: 5px 8px;
}
.fv-image-benefit-head strong {
  font-size: 24px;
  position: relative;
  top: 2px;
  font-weight: 700;
}

.fv-image-benefit-label {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1;
  letter-spacing: 0.15em;
}

.fv-image-benefit-mid {
  font-size: 28px;
  font-weight: 700;
  color: #d41422;
  letter-spacing: 0.05em;
}

.fv-image-benefit-free {
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  color: #d41422;
  margin: 0;
  letter-spacing: 0.05em;
}

.fv-image-secret-card {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(246, 219, 72, 0.8);
  border-radius: 12px;
  padding: 32px 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.09);
}

.fv-image-secret-icon {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  display: block;
}

.fv-image-secret-text {
  margin: 0;
  color: #1d1d1d;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: 0.02em;
  flex: 1 1 auto;
}

.fv-image-secret-text strong {
  font-size: 32px;
  line-height: 1.1;
  font-weight: 900;
}

.fv-image-secret-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #000;
  font-weight: 700;
  font-size: 24px;
  padding: 5px 8px;
  min-width: 134px;
  flex: 0 0 auto;
  border-radius: 8px;
  line-height: 1.5;
}

.sp-only {
  display: none;
}

.floating-visit-cta {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 77px;
  min-height: 0;
  padding: 0;
  background: transparent;
  z-index: 1200;
  display: block;
  box-shadow: none;
}

.floating-visit-cta__image,
.floating-visit-cta__image img {
  display: block;
  width: 100%;
  height: auto;
}

.floating-visit-cta:hover {
  opacity: 0.92;
}

    @media (max-width: 905px) and (min-width: 768px) {
      .fv-image-copy-main {
        font-size: 52px;
        white-space: nowrap;
      }

      .fv-image-copy-sub {
        font-size: 64px;
        margin-bottom: 20px;
        white-space: nowrap;
      }

      .fv-image-campaign-tag {
        font-size: 13px;
        padding: 8px 14px;
      }

      .fv-image-benefits {
        gap: 16px;
      }

      .fv-image-benefit-label {
        font-size: 16px;
        white-space: nowrap;
      }

      .fv-image-benefit-mid {
        font-size: 24px;
        white-space: nowrap;
      }

      .fv-image-benefit-free {
        font-size: 58px;
        white-space: nowrap;
      }

      .fv-image-secret-text {
        font-size: 17px;
      }

      .fv-image-secret-text strong {
        font-size: 23px;
      }

      .fv-image-secret-button {
        font-size: 18px;
      }
    }

@media (max-width: 767px) {
  .fv-image-section {
    width: 100%;
    margin: 0;
    padding: 100px 0 60px;
  }

  .fv-image-section>picture img {
    object-position: top;
  }

  .fv-image-overlay {
    width: auto;
  }

  .fv-image-campaign-tag {
    font-size: 11px;
    padding: 7px 12px;
    margin-bottom: 12px;
    border-width: 1.5px;
  }

  .fv-image-copy-main {
    font-size: 26px;
    margin-bottom: 2px;
  }

  .fv-image-copy-sub {
    font-size: 36px;
    margin-bottom: 14px;
  }

  .fv-image-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    width: 100%;
  }

  .fv-image-benefit-card {
    padding: 0 10px 10px;
  }

  .fv-image-benefit-head {
    margin: 0 -10px 8px;
    font-size: 11px;
    padding: 5px 8px;
    line-height: 1;
  }
  .fv-image-benefit-head {
    font-size: 14px;
  }
  .fv-image-benefit-head strong {
    font-size: 20px;
  }
  .fv-image-benefit-content {
    padding: 5px 10px 14px;
  }

  .fv-image-benefit-label {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .fv-image-benefit-mid {
    font-size: 20px;
  }

  .fv-image-benefit-free {
    font-size: 48px;
  }

  .fv-image-secret-card {
    grid-column: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 16px 10px;
  }

  .fv-image-secret-icon {
    width: 34px;
    height: 34px;
  }

  .fv-image-secret-text {
    font-size: 10px;
    line-height: 1.35;
  }

  .fv-image-secret-text strong {
    font-size: 13px;
    display: block;
    margin-top: 2px;
    line-height: 1.3;
  }

  .fv-image-secret-button {
    font-size: 10px;
    padding: 7px 8px;
    border-width: 1.5px;
    display: block;
    border-radius: 0;
    margin-top: 2px;
  }

  .pc-only {
    display: none;
  }
  .sp-only {
    display: inline;
  }

  .floating-visit-cta {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
  }
}

/* ==========================================================================
    4. Components (Buttons, Glass, Cursor)
    ========================================================================== */
.btn-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 48px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 2px solid var(--color-brand);
  color: var(--color-brand-dark);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  transform: skewX(-10deg);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(255, 138, 76, 0.15);
  transition: all 0.4s var(--ease-out-expo);
}

.btn-cta span {
  transform: skewX(10deg);
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-brand);
  transform: translateX(-101%);
  transition: transform 0.5s var(--ease-out-expo);
  z-index: 1;
}

.btn-cta:hover {
  color: #FFF;
  transform: skewX(-10deg) scale(1.02);
  box-shadow: 0 15px 35px rgba(255, 138, 76, 0.3);
  border-color: transparent;
}

.btn-cta:hover::before {
  transform: translateX(0);
}

.btn-cta svg {
  transition: transform 0.3s ease;
}

.btn-cta:hover svg {
  transform: translateX(8px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: #FFF;
  border: 2px solid #E0E0E0;
  color: var(--color-text-main);
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
}

.glass-panel {
  background: var(--gradient-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border-radius: 40px;
}

/* Custom Cursor */
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 138, 76, 0.7);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--color-brand);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: background-color 0.2s ease;
}

body.cursor-hover .cursor-ring {
  width: 70px;
  height: 70px;
  background-color: rgba(255, 138, 76, 0.15);
  border-color: transparent;
  mix-blend-mode: multiply;
}

body.cursor-hover .cursor-dot {
  display: none;
}

/* CTAやフッターなど、暗い/同系色背景に乗った時のカーソル色変更 */
body.on-dark-bg .cursor-ring {
  border-color: rgba(255, 255, 255, 0.8);
}

body.on-dark-bg .cursor-dot {
  background-color: #FFFFFF;
}

body.on-dark-bg.cursor-hover .cursor-ring {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: transparent;
  mix-blend-mode: normal;
}

*,
*::before,
*::after {
  cursor: none !important;
}

/* Performance-first mode for upper sections on low-power devices */
body.perf-lite,
body.perf-lite * {
  cursor: auto !important;
}

body.perf-lite .cursor-ring,
body.perf-lite .cursor-dot {
  display: none !important;
}

body.perf-lite .header.is-scrolled,
body.perf-lite .mobile-menu,
body.perf-lite .btn-cta,
body.perf-lite .glass-panel,
body.perf-lite .card-small-1::after,
body.perf-lite .card-small-2::after,
body.perf-lite .card-small-3::after,
body.perf-lite .benefit-card {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.perf-lite .fv-bg-img {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

body.perf-lite .solution-glow,
body.perf-lite .benefit-card::before {
  display: none;
}

body.perf-lite .bento-card img,
body.perf-lite .benefit-card,
body.perf-lite .btn-cta,
body.perf-lite .header__cta {
  transition: none !important;
}

body.perf-lite .bento-card:hover img,
body.perf-lite .benefit-card:hover,
body.perf-lite .solution-sub-card:hover {
  transform: none !important;
}

.reveal-fade {
  opacity: 0;
  visibility: hidden;
}

/* Swiper Navigation Shared Styles */
.slider-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  position: relative;
  z-index: 10;
}

.swiper-nav-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 8px;
}

.swiper-nav-btn {
  position: relative;
  width: 56px;
  height: 56px;
  background-color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  color: var(--color-text-main);
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  border: 1px solid #E0E0E0;
}

.swiper-nav-btn svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}

.swiper-nav-btn:hover {
  background-color: var(--color-brand);
  color: #FFF;
  border-color: transparent;
  box-shadow: 0 15px 35px rgba(255, 138, 76, 0.3);
  transform: translateY(-3px);
}

.swiper-nav-btn.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.swiper-nav-btn.swiper-button-disabled:hover {
  transform: none;
  background-color: #FFF;
  color: var(--color-text-main);
  border-color: #E0E0E0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.swiper-btn-prev:hover:not(.swiper-button-disabled) svg {
  transform: translateX(-4px);
}

.swiper-btn-next:hover:not(.swiper-button-disabled) svg {
  transform: translateX(4px);
}

.swiper-button-next,
.swiper-button-prev {
  display: none;
}

.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #CCC;
  opacity: 1;
  transition: all 0.4s var(--ease-out-expo);
}

.swiper-pagination-bullet-active {
  background: var(--color-brand) !important;
  width: 40px;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .slider-header-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .swiper-nav-buttons {
    align-self: flex-end;
    margin-bottom: 0;
  }
}

/* ==========================================================================
    5. Sections
    ========================================================================== */

/* --- 1. FV Section (RESTORED) --- */
.fv-section {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.fv-bg-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F9F9F9;
  z-index: 0;
}

.fv-bg-skew {
  display: flex;
  gap: 16px;
  width: 100%;
  height: 100%;
  transform: none;
  opacity: 0.8;
}

.fv-bg-img {
  width: 25%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  border-radius: 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.bg-img-1 {
  background-image: url('../../adult/assets/img/fv01-960.webp');
  background-image: image-set(url('../../adult/assets/img/fv01-960.webp') 1x,
      url('../../adult/assets/img/fv01-1920.webp') 2x);
  transform: translateY(0);
  background-position: center center;
}

.bg-img-2 {
  background-image: url('../../adult/assets/img/fv02-960.webp');
  background-image: image-set(url('../../adult/assets/img/fv02-960.webp') 1x,
      url('../../adult/assets/img/fv02-1920.webp') 2x);
  transform: translateY(0);
  background-position: center center;
}

.bg-img-3 {
  background-image: url('../../adult/assets/img/pixta_99040373-960.webp');
  background-image: image-set(url('../../adult/assets/img/pixta_99040373-960.webp') 1x,
      url('../../adult/assets/img/pixta_99040373-1920.webp') 2x);
  transform: translateY(0%);
  background-position: center center;
}

.bg-img-4 {
  background-image: url('../../adult/assets/img/pixta_133202633-960.webp');
  background-image: image-set(url('../../adult/assets/img/pixta_133202633-960.webp') 1x,
      url('../../adult/assets/img/pixta_133202633-1920.webp') 2x);
  transform: translateY(0%);
  background-position: 30%;
}

/*
  Previous straight setup (for quick rollback):
  .fv-bg-img { background-position: center top; }
  .bg-img-1 { transform: translateY(0); background-position: center 10%; }
  .bg-img-2 { transform: translateY(0); background-position: center 8%; }
  .bg-img-3 { transform: translateY(8%); background-position-x: -520px; }
  .bg-img-4 { transform: translateY(10%); background-position-x: -500px; }
*/
/*
  Previous diagonal setup (for quick rollback):
  .fv-bg-skew { width: 120%; height: 150%; transform: rotate(-12deg) scale(1.1); }
  .fv-bg-img { border-radius: 24px; }
  .bg-img-1, .bg-img-2 { transform: translateY(10%); position: relative; overflow: hidden; background-image: none; }
  .bg-img-1::before, .bg-img-2::before {
    content: ""; position: absolute; inset: -12%; background-size: cover; background-position: top;
    transform: rotate(12deg) scale(1.15); transform-origin: center;
  }
*/

.fv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.fv-grid {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 48px;
  align-items: center;
}

.fv-content {
  max-width: 800px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--color-brand);
  border-left: 8px solid var(--color-brand);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  transform: skewX(-10deg);
  box-shadow: 0 4px 15px rgba(255, 138, 76, 0.2);
}

.badge>span {
  transform: skewX(10deg);
  display: flex;
  align-items: center;
  gap: 8px;
}

.fv-lead {
  font-size: 1.25rem;
  color: var(--color-text-sub);
  border-left: 3px solid var(--color-brand);
  padding-left: 24px;
  font-weight: 500;
  margin-bottom: 40px;
  transform: skewX(-5deg);
}

.fv-lead span {
  display: block;
  transform: skewX(5deg);
}

.fv-stripe-accent {
  position: absolute;
  left: -10px;
  top: 50%;
  height: 72px;
  width: 10px;
  transform: translateY(-50%) skewX(-10deg);
  opacity: 0.5;
  background: repeating-linear-gradient(45deg, transparent, transparent 4px, var(--color-brand) 4px, var(--color-brand) 8px);
  border-radius: 2px;
}

@media (max-width: 1023px) {
  .fv-grid {
    grid-template-columns: 1fr;
  }

  .fv-bg-skew {
    opacity: 0.5;
  }
}

@media (max-width: 768px) {

  .bg-img-1,
  .bg-img-3 {
    display: none;
  }

  .fv-bg-img {
    width: 50%;
  }

  .bg-img-4 {
    background-position-x: 33%;
  }

  .badge {
    padding: 5px 15px;
    font-size: .8rem
  }

  .title-main {
    font-size: 1.8rem;
  }

  .fv-lead {
    font-size: 1rem;
  }

  .btn-cta {
    font-size: 1rem;
  }
}

/* --- 2. 悩み (Concerns) --- */
.section-concerns {
  background-color: var(--color-surface);
  position: relative;
  overflow: hidden;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  grid-auto-rows: 250px;
}

.bento-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #FFF;
}

.bento-card::after {
  transition: opacity 0.4s ease;
}

.bento-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.bento-card:hover img {
  transform: scale(1.1);
}

.bento-content {
  position: relative;
  z-index: 10;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: opacity 0.4s ease;
}

.bento-card:hover .bento-content {
  opacity: 0;
}

.bento-card:hover::after {
  opacity: 0;
}

.bento-divider {
  width: 48px;
  height: 4px;
  background: var(--color-brand);
  margin-bottom: 24px;
}

.bento-text-large {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.bento-text-medium {
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.4;
}

.bento-text-small {
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.4;
}

.card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.card-large::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.card-large .bento-content {
  justify-content: flex-end;
  color: #FFF;
}

.card-small-1 {
  grid-column: span 2;
  grid-row: span 1;
}

.card-small-1::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  transition: background 0.3s, opacity 0.4s ease;
}

.bento-card:hover.card-small-1::after {
  opacity: 0;
}

.bento-content--bottom {
  justify-content: flex-end;
}

.card-small-2 {
  grid-column: span 1;
  grid-row: span 1;
  background: var(--color-brand);
}

.card-small-2::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 138, 76, 0.8);
  backdrop-filter: blur(4px);
  transition: background 0.3s, opacity 0.4s ease;
}

.bento-card:hover.card-small-2::after {
  opacity: 0;
}

.card-small-2 .bento-content,
.card-small-3 .bento-content {
  justify-content: flex-end;
  color: #FFF;
}

.card-small-3 {
  grid-column: span 1;
  grid-row: span 1;
  background: var(--color-surface-dark);
}

.card-small-3::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.8);
  backdrop-filter: blur(4px);
  transition: background 0.3s, opacity 0.4s ease;
}

.bento-card:hover.card-small-3::after {
  opacity: 0;
}

@media (max-width: 1023px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-large {
    grid-column: span 2;
  }

  .card-small-1 {
    grid-column: span 1;
  }

  .card-small-2 {
    grid-column: span 2;
  }

  .card-small-3 {
    grid-column: span 1;
  }
}

@media (max-width: 767px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(200px, auto);
  }

  .card-large,
  .card-small-1,
  .card-small-2,
  .card-small-3 {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* --- 3. 解決 (Solution) --- */
.section-solution {
  position: relative;
  overflow: hidden;
}

.parallax-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.parallax-img {
  position: absolute;
  top: -25%;
  left: 0;
  width: 100%;
  height: 150%;
  object-fit: cover;
  will-change: transform;
}

.parallax-img--blue {
  filter: none;
}

.solution-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 32px;
}

.solution-main-panel {
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.solution-lead {
  color: var(--color-text-sub);
  font-weight: 500;
  margin-bottom: 40px;
}

.solution-sub-grid {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 32px;
}

.solution-sub-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.solution-sub-card:hover {
  transform: translateY(-5px);
}

.solution-sub-bgtext {
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-en);
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-brand);
  opacity: 0.1;
}

.solution-glow {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: rgba(255, 138, 76, 0.2);
  filter: blur(60px);
  border-radius: 50%;
}

.section-label--wide {
  margin-bottom: 24px;
}

.solution-sub-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 10;
}

.solution-sub-desc {
  color: var(--color-text-sub);
  font-weight: 500;
  position: relative;
  z-index: 10;
}

@media (max-width: 1023px) {
  .solution-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .solution-main-panel {
    padding: 32px 24px;
  }

  .bento-text-large {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
  }

  .bento-text-medium {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
  }

  .bento-text-small {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
  }

  .solution-sub-title {
    font-size: 1.2rem;
  }
}

/* --- 4. 選ばれる理由 (Benefits) --- */
.section-benefits {
  background: var(--color-surface-bright);
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid #FFF;
  backdrop-filter: blur(12px);
  border-radius: 32px;
  padding: 40px;
  position: relative;
  transition: box-shadow 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--color-brand);
  filter: blur(40px);
  opacity: 0.15;
  border-radius: 50%;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.benefit-card:hover::before {
  opacity: 0.3;
}

.benefit-num {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-brand-light);
  line-height: 1;
  margin-bottom: 24px;
}

.benefit-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.benefit-desc {
  color: var(--color-text-sub);
  font-weight: 500;
}

@media (max-width: 1023px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .benefit-title {
    font-size: 1.2rem;
  }

  .benefit-desc {
    font-size: 0.9rem;
  }
}

/* --- 5. CTA 1 & 9. CTA 2 (Parallax & Orange Filter) --- */
.section-cta {
  position: relative;
  padding: 120px 0;
  text-align: center;
  color: #FFF;
  overflow: hidden;
}

.section-cta .parallax-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.section-cta .parallax-img {
  position: absolute;
  top: -25%;
  left: 0;
  width: 100%;
  height: 150%;
  object-fit: cover;
  will-change: transform;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 114, 46, 0.85) 0%, rgba(255, 138, 76, 0.95) 100%);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.3;
  letter-spacing: 0.05em;
}

.cta-desc {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 40px;
  opacity: 0.9;
}

.btn-cta-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 64px;
  background: #FFF;
  color: var(--color-brand-dark);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  border-radius: 60px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: all 0.4s var(--ease-out-expo);
}

.btn-cta-large:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  color: var(--color-brand-dark);
}

.btn-cta-large svg {
  transition: transform 0.3s;
}

.btn-cta-large:hover svg {
  transform: translateX(8px);
}

@media (max-width: 767px) {
  .section-cta {
    padding: 80px 0;
  }

  .cta-title {
    font-size: 1.6rem;
  }

  .btn-cta-large {
    padding: 20px 40px;
    font-size: 1.1rem;
  }
}

/* --- 6. 設備 (Facilities - Swiper) --- */
.section-facilities {
  background: var(--color-surface-bright);
  position: relative;
  overflow: hidden;
}

.fac-swiper-wrap {
  position: relative;
}

.fac-swiper {
  padding-bottom: 64px;
  overflow: visible;
}

.fac-slide {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  background: #FFF;
  display: flex;
  flex-direction: column;
  height: auto;
  transition: transform 0.3s;
}

.fac-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.fac-img {
  width: 100%;
  position: relative;
}

.fac-img::after {
  content: '';
  display: block;
  padding-bottom: 65%;
}

.fac-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.fac-slide:hover .fac-img img {
  transform: scale(1.05);
}

.fac-info {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fac-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.fac-desc {
  font-size: 0.95rem;
  color: var(--color-text-sub);
  line-height: 1.6;
}

@media (max-width: 767px) {
  .fac-title {
    font-size: 1.2rem;
  }

  .fac-info {
    padding: 24px;
  }

  .fac-desc {
    font-size: 0.9rem;
  }
}

/* --- 7. プログラム (Lesson Programs - Swiper) --- */
.section-programs {
  position: relative;
  overflow: hidden;
}

.prog-swiper-wrap {
  position: relative;
}

.prog-swiper {
  padding-bottom: 64px;
  overflow: visible;
}

.prog-card {
  width: 100%;
  height: 450px;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.prog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.prog-card:hover img {
  transform: scale(1.1);
}

.prog-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: #FFF;
}

.prog-tag {
  align-self: flex-start;
  background: var(--color-brand);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.prog-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.prog-text {
  font-size: 0.85rem;
  opacity: 0.9;
}

@media (max-width: 767px) {
  .prog-title {
    font-size: 1.2rem;
  }

  .prog-text {
    font-size: 0.9rem;
  }
}

/* --- 8. 料金 (Pricing) --- */
.section-pricing {
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.pricing-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .pricing-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pricing-card {
  background: #FFF;
  border: 2px solid #F0F0F0;
  border-radius: 24px;
  padding: 40px 40px 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--color-brand-light);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.pricing-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: var(--color-brand);
}

.pricing-store {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--color-surface-bright);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-sub);
  margin-bottom: 24px;
  border: 1px solid #E0E0E0;
}

.pricing-store-icon {
  width: 18px;
  height: 18px;
  stroke: var(--color-brand-dark);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.pricing-plan {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.pricing-lead {
  position: relative;
  top: 16px;
  display: inline-block;
  color: #FFF;
  background: var(--color-brand-dark);
  font-weight: 700;
  line-height: 1;
  padding: 8px 14px;
  border-radius: 999px;
  margin: 0 0 -10px 12px;
  position: relative;
  z-index: 2;
}

.pricing-price {
  margin-bottom: 16px;
  background: #FAFAFA;
  border-radius: 12px;
  padding: 40px 18px 16px;
}

.pricing-member {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-brand-dark);
  margin-bottom: 6px;
}

.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pricing-price-prefix {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--color-text-sub);
}

.pricing-price-main {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-brand-dark);
  line-height: 1;
  letter-spacing: 0.01em;
}

.pricing-price-main small {
  font-size: 0.58em;
  font-weight: 700;
  margin-left: 1px;
}

.pricing-tax {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-sub);
  white-space: nowrap;
}

.pricing-facility-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-sub);
  margin-bottom: 6px;
}

.pricing-facility {
  display: block;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-brand-dark);
  line-height: 1.6;
  margin-bottom: 12px;
}

.pricing-highlight {
  display: block;
  background: var(--color-surface-bright);
  color: var(--color-brand-dark);
  border-radius: 10px;
  font-weight: 800;
  padding: 10px 12px;
  line-height: 1.6;
  margin-top: 8px;
}

.pricing-desc {
  color: var(--color-text-sub);
  font-weight: 500;
  line-height: 1.8;
}

.pricing-caution {
  font-size: 0.88rem;
  line-height: 1.7;
  padding-top: 14px;
  margin-top: 10px;
}

.pricing-notes {
  margin: 0 auto 32px;
  max-width: 980px;
  padding: 20px 22px;
}

.pricing-notes p {
  color: var(--color-text-sub);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 6px;
}

.pricing-notes p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .pricing-card {
    padding: 32px 24px 28px;
  }

  .pricing-plan {
    font-size: 1.2rem;
  }

  .pricing-store {
    font-size: 0.82rem;
  }

  .pricing-member {
    font-size: 1.05rem;
  }

  .pricing-price-main {
    font-size: 1.5rem;
  }

  .pricing-facility {
    font-size: 0.84rem;
  }

  .pricing-notes {
    padding: 16px 14px;
  }

  .pricing-highlight {
    font-size: 0.9rem;
  }

  .pricing-lead {
    font-size: 0.9rem;
  }
}

.pricing-note {
  text-align: center;
  color: var(--color-text-sub);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.stripe-accent-left {
  left: 10%;
}

.stripe-accent-right {
  right: 5%;
}

.bg-text-watermark--pricing {
  top: 20%;
  left: 0;
}

.pricing-cta {
  text-align: center;
}

/* --- 10. 利用の流れ (Flow) --- */
.section-flow {
  background: var(--color-surface-bright);
  position: relative;
  overflow: hidden;
}

.flow-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

@media (min-width: 768px) {
  .flow-container {
    flex-direction: row;
    align-items: stretch;
  }
}

.flow-step {
  flex: 1;
  background: #FFF;
  border-radius: 24px;
  padding: 48px 32px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  border: 1px solid #E0E0E0;
}

.flow-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--color-brand);
  color: #FFF;
  border-radius: 50%;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 1.5rem;
  margin: 0 auto 24px;
}

.flow-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.flow-step-desc {
  font-size: 0.9rem;
  color: var(--color-text-sub);
  font-weight: 500;
}

@media (min-width: 768px) {
  .flow-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -16px;
    width: 16px;
    height: 16px;
    border-top: 4px solid var(--color-brand-light);
    border-right: 4px solid var(--color-brand-light);
    transform: translateY(-50%) rotate(45deg);
    z-index: 10;
  }

  .flow-step-title {
    font-size: 1.2rem;
  }
}

/* --- 11. FAQ Section --- */
.section-faq {
  position: relative;
  overflow: hidden;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  overflow: hidden;
  border: 2px solid #F0F0F0;
  border-radius: 16px;
  background: #FFF;
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: var(--color-brand-light);
}

.faq-q {
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background 0.3s;
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  background: var(--color-surface-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--color-brand);
  transition: transform 0.3s ease;
}

.faq-icon::before {
  width: 12px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 12px;
}

.faq-item.is-open .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-a {
  padding: 0 32px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo), padding 0.4s var(--ease-out-expo);
  background: #FFF;
  color: var(--color-text-sub);
  font-weight: 500;
}

.faq-item.is-open .faq-a {
  padding: 0 32px 32px 32px;
  max-height: 300px;
}

/* --- 12. 店舗 (Location) --- */
.section-location {
  background-color: var(--color-surface-bright);
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.tab-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
  position: relative;
  z-index: 10;
}

.tab-btn {
  padding: 12px 32px;
  border: 2px solid #E0E0E0;
  border-radius: 40px;
  background: #FFF;
  color: var(--color-text-sub);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
}

.tab-btn.active {
  background: var(--color-text-main);
  border-color: var(--color-text-main);
  color: #FFF;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 10;
}

.store-card {
  background: #FFF;
  border: 1px solid #F0F0F0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s ease;
  position: relative;
}

.store-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.store-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--color-brand);
  z-index: 20;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s var(--ease-out-expo);
}

.store-card:hover .store-card-accent {
  transform: scaleY(1);
}

.store-img-wrap {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: #EEE;
}

.store-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s var(--ease-out-expo);
}

.store-card:hover .store-img-wrap img {
  transform: scale(1.1);
}

.store-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

.store-badge {
  position: absolute;
  bottom: 20px;
  left: 24px;
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-en);
  letter-spacing: 0.1em;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border-radius: 4px;
  padding: 4px 12px;
}

.store-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 8px;
}

.store-name {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0;
}

.store-desc {
  color: var(--color-text-sub);
  flex-grow: 1;
  font-weight: 500;
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.store-access {
  color: var(--color-text-sub);
  font-weight: 600;
  font-size: 0.85rem;
}

.store-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.store-actions {
  margin-top: 4px;
}

.store-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--color-surface-bright);
  color: var(--color-text-sub);
  border: 1px solid #E6E6E6;
}

.store-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.store-map {
  margin: auto 0 12px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #eee;
  aspect-ratio: 3 / 2;
}

.store-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.btn-store {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  border-radius: 8px;
  display: inline-block;
}

.btn-store-primary {
  border-color: #E0E0E0;
  color: var(--color-text-main);
}

.btn-store-primary:hover {
  border-color: var(--color-text-main);
}

.btn-store-brand {
  background: var(--color-brand-light);
  color: var(--color-text-main);
}

.btn-store-brand:hover {
  background: var(--color-brand);
  color: #FFF;
}

@media (max-width: 1023px) {
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .location-grid {
    grid-template-columns: 1fr;
  }

  .tab-btn {
    padding: 8px 24px;
    font-size: 0.8rem;
  }
}

/* --- 13. Footer --- */
.global-footer {
  background: var(--color-brand);
  color: #FFF;
  padding: 60px 0 24px;
  position: relative;
  z-index: 10;
}

.global-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 32px;
}

.global-footer__logo img {
  height: 40px;
  width: auto;
}

.global-footer__links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.global-footer__links a {
  font-size: 0.9rem;
  font-weight: 700;
  color: #FFF;
  transition: opacity 0.3s;
  letter-spacing: 0.05em;
}

.global-footer__links a:hover {
  opacity: 0.7;
}

.global-footer__copy {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.8;
  font-family: var(--font-en);
  letter-spacing: 0.05em;
}

.section-visit-form {
  background: var(--color-surface-bright);
  position: relative;
  overflow: hidden;
}

.adult-thanks-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.adult-thanks-main {
  flex: 1 0 auto;
  display: flex;
  align-items: stretch;
  background: var(--color-surface-bright);
}

.adult-thanks-main .section-visit-form {
  width: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

.bg-text-watermark--visit {
  top: auto;
  bottom: -2%;
  right: -4%;
  left: auto;
  transform: none;
  text-align: right;
  pointer-events: none;
  z-index: 0;
}

.visit-form-wrap {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  max-width: 760px;
  margin: 0 auto;
}

.visit-form-lead {
  text-align: center;
  color: var(--color-text-sub);
  margin-bottom: 24px;
  font-weight: 500;
}

.visit-form-wrap .form-table,
.visit-form-wrap .visit-form-table {
  width: 100%;
  border-top: 1px solid #ededed;
  margin: 0;
}

.visit-form-wrap .form-table dt,
.visit-form-wrap .visit-form-table dt {
  width: 100%;
  padding: 16px 0 8px;
  font-weight: 700;
  color: var(--color-text-main);
}

.visit-form-wrap .form-table dd,
.visit-form-wrap .visit-form-table dd {
  width: 100%;
  margin: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid #ededed;
}

.visit-form-wrap input[type="text"],
.visit-form-wrap input[type="email"],
.visit-form-wrap input[type="tel"],
.visit-form-wrap input[type="date"],
.visit-form-wrap select,
.visit-form-wrap textarea {
  width: 100%;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 16px;
  background: #fff;
  color: var(--color-text-main);
}

.visit-form-wrap textarea {
  min-height: 140px;
  resize: vertical;
}

.visit-form-wrap .arrow {
  display: block;
  position: relative;
}

.visit-form-wrap .visit-time-select {
  margin-top: 12px;
}

.visit-form-wrap .arrow::after {
  display: none;
}

.visit-form-wrap .arrow .wpcf7-form-control-wrap {
  display: block;
  position: relative;
}

.visit-form-wrap .arrow .wpcf7-form-control-wrap::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 23px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #999;
  border-bottom: 2px solid #999;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

.visit-form-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 42px;
}

.visit-form-wrap .wpcf7-list-item {
  margin: 0 20px 12px 0;
  display: inline-block;
}

.visit-form-wrap .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.visit-form-wrap .check-mark .wpcf7-list-item,
.visit-form-wrap .visit-check-mark .wpcf7-list-item {
  display: block;
  margin: 0;
}

.visit-form-wrap .check-mark .wpcf7-list-item label,
.visit-form-wrap .visit-check-mark .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.7;
  cursor: pointer;
}

.visit-form-wrap .check-mark input[type="checkbox"],
.visit-form-wrap .visit-check-mark input[type="checkbox"] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--color-brand-dark);
}

.visit-form-wrap .check-mark .wpcf7-list-item-label,
.visit-form-wrap .visit-check-mark .wpcf7-list-item-label {
  display: inline;
  color: var(--color-text-main);
  font-weight: 500;
}

.visit-form-wrap .check-mark p,
.visit-form-wrap .visit-check-mark p {
  margin: 0 0 12px;
}

.visit-form-wrap .u-blue {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.visit-form-wrap .required,
.visit-form-wrap .visit-required {
  display: inline-block;
  margin-left: 8px;
  font-size: 12px;
  color: #fff;
  background: #e04a4a;
  border-radius: 999px;
  padding: 2px 8px;
  vertical-align: middle;
}

.visit-form-wrap .any,
.visit-form-wrap .visit-any {
  display: inline-block;
  margin-left: 8px;
  font-size: 12px;
  color: #666;
  background: #eee;
  border-radius: 999px;
  padding: 2px 8px;
  vertical-align: middle;
}

.visit-form-wrap .wpcf7-submit,
.visit-form-wrap button[type="submit"],
.visit-form-submit__button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-brand-dark) 0%, var(--color-brand-light) 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 14px 36px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 138, 76, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.visit-form-wrap .wpcf7-submit:hover,
.visit-form-wrap button[type="submit"]:hover,
.visit-form-submit__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 138, 76, 0.35);
}

.visit-form-submit,
.visit-form-wrap .u-text-center {
  text-align: center;
  margin-top: 40px;
}

.visit-form-submit__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 60px;
  margin: 0 auto;
}

.visit-form-wrap .wpcf7-response-output {
  margin: 16px 0 0 !important;
  border-radius: 10px;
  padding: 12px 14px !important;
}

@media (max-width: 767px) {
  .global-footer {
    padding: 48px 0 24px;
  }

  .global-footer__inner {
    flex-direction: column;
    gap: 40px;
    padding-bottom: 40px;
  }

  .global-footer__links {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .visit-form-wrap {
    padding: 28px 20px;
  }

  .visit-form-wrap .wpcf7-list-item {
    margin-right: 12px;
  }

  .visit-form-submit,
  .visit-form-wrap .u-text-center {
    margin-top: 28px;
  }

  .bg-text-watermark--visit {
    bottom: -1%;
    right: -8%;
  }

  .adult-thanks-main .section-visit-form {
    padding: 88px 0 56px;
  }
}


.fac-swiper .swiper-wrapper,
.prog-swiper .swiper-wrapper {
  align-items: stretch;
}

.fac-swiper .swiper-slide.fac-slide {
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 100%;
}

.fac-swiper .fac-info {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.prog-swiper .swiper-slide.prog-card {
  height: 450px !important;
}

@media (max-width: 1023px) {
  .prog-swiper .swiper-slide.prog-card {
    height: 400px !important;
  }
}

@media (max-width: 767px) {
  .prog-swiper .swiper-slide.prog-card {
    height: 360px !important;
  }
}

.grecaptcha-badge {
  visibility: hidden!important;
  opacity: 0!important;
}