@charset "UTF-8";

/* =============================================
   CSS Variables
   ============================================= */
:root {
  /* Color - Base */
  --white: #fff;
  --off-white: #fffefc;
  --cream-1: #fffef5;
  --cream-2: #fffef3;
  --cream-3: #fffcf5;
  --cream-4: #fffce4;
  --beige-1: #f1eed6;
  --beige-2: #ebe8ca;
  --sand: #e6dfd6;

  /* Color - Text */
  --base-color: #554e4d;
  --text-dark: #333;
  --text-mid: #474747;
  --text-light: #927f7c;

  /* Color - Accent */
  --primary: #958364;
  --primary-2: #948263;
  --green-1: #70988f;
  --green-2: #3c786a;
  --green-3: #5e8c82;
  --mint-1: #bcd7c8;
  --mint-2: #a1c9b4;
  --mint-3: #cbe5d8;
  --red: #e46b6b;

  /* Color - Gray */
  --gray: #d9d9d9;
  --gray-mid: #bab9b7;

  /* Color - Overlay */
  --overlay-yellow: rgba(245, 251, 119, 0.63);
  --overlay-pale-yellow: rgba(255, 255, 156, 0.8);
  --overlay-brown: rgba(85, 78, 77, 0.7);
  --overlay-white: rgba(255, 255, 255, 0.6);

  /* Font Family */
  --base-font-family: 'Zen Kaku Gothic Antique', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  --en-font-family: 'Quicksand', 'Helvetica Neue', Arial, sans-serif;
  --mincho-font-family: 'Zen Old Mincho', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  /* Layout */

  --content-width: 600px;
  --base-font-size: 1.4rem;
}

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

@media (min-width: 600px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: var(--base-font-family);
  font-size: var(--base-font-size);
  font-weight: 400;
  color: var(--base-color);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-radius: 0;
}

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

@media (any-hover: hover) {
  a {
    transition: opacity 0.3s ease;
  }
  a:hover {
    opacity: 0.7;
  }
}

/* =============================================
   Layout (PC: 背景 + 中央37.5remコンテンツ)
   ============================================= */
.wrapper {
  position: relative;
  min-height: 100vh;
}

@media (min-width: 768px) {
  .wrapper {
    background-image: url('../img/pc-bg.webp');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
  }

  /* PC背景の上に重ねる装飾（pcback_deco.png：白いウェーブ） */
  .wrapper::before {
    content: '';
    position: fixed;
    top: 40vh;
    left: 0;
    width: 100%;
    height: 60vh;
    background-image: url(../img/pcback_deco.webp);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
    pointer-events: none;
  }
}

.main {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* =============================================
   Loader
   ============================================= */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 50%, var(--cream-1) 0%, var(--beige-1) 100%);
  transition:
    opacity 0.7s ease,
    visibility 0.7s ease;
}

.is-loaded .loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  animation: loader-fade-in 0.8s ease both;
}

.loader__logo {
  width: 12rem;
  height: auto;
  opacity: 0;
  transform: translateY(0.6rem);
  animation: loader-logo-in 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.loader__bar {
  position: relative;
  width: 14rem;
  height: 0.1rem;
  background-color: rgba(149, 131, 100, 0.2);
  overflow: hidden;
}

.loader__bar span {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: loader-bar-slide 1.4s ease-in-out infinite;
}

body.is-loaded .main,
body.is-loaded .pc-side {
  animation: loader-content-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes loader-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes loader-logo-in {
  0% {
    opacity: 0;
    transform: translateY(0.6rem) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes loader-bar-slide {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes loader-content-in {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .loader__inner,
  .loader__logo,
  .loader__bar span,
  body.is-loaded .main,
  body.is-loaded .pc-side {
    animation: none;
  }
  .loader__logo {
    opacity: 1;
    transform: none;
  }
}

/* =============================================
   Floating CTA (SPで画面下追従)
   ============================================= */
.floating-cta {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  width: min(90%, 32rem);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.floating-cta.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.floating-cta__catch {
  display: block;
  width: 80%;
  height: auto;
  margin: 0 auto 0.4rem;
}

.floating-cta__btn {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .floating-cta {
    display: none;
  }
}

/* =============================================
   PC Side (左：ロゴ＋ナビ／右：体験予約タイトル＋CTA)
   PC（>=128rem）でのみ表示。SP/タブレットでは非表示。
   ============================================= */
.pc-side {
  display: none;
}

@media (min-width: 1280px) and (min-height: 800px) {
  .pc-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    position: fixed;
    top: 0;
    width: calc((100vw - var(--content-width)) / 2);
    height: 100vh;
    z-index: 5;
    pointer-events: none;
  }
  .pc-side > * {
    pointer-events: auto;
  }

  .pc-side--left {
    left: 0;
    padding-right: 3%;
    padding-bottom: 12vh;
  }
  .pc-side--right {
    right: 0;
    padding-bottom: 11.2vh;
    padding-left: 2%;
  }

  .pc-side__logo {
    display: block;
    width: 13rem;
  }
  .pc-side__logo img {
    display: block;
    width: 100%;
    height: auto;
  }

  .pc-side__nav {
    margin-top: 12.5vh;
  }
  .pc-side__nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .pc-side__nav li + li {
    margin-top: 2%;
  }
  .pc-side__nav a {
    position: relative;
    display: inline-block;
    font-family: var(--base-font-family);
    font-size: 90%;
    font-weight: 500;
    color: var(--base-color);
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
  }

  .pc-side__nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 100%;
    height: 0.1rem;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
  }

  @media (any-hover: hover) {
    .pc-side__nav a:hover {
      color: var(--primary);
      opacity: 1;
    }
    .pc-side__nav a:hover::after {
      transform: scaleX(1);
    }
  }

  .pc-side__group {
  }

  .pc-side__title {
    display: block;
    width: 14.6rem;
    height: auto;
    margin: 0 auto 3.5rem;
  }

  .pc-side__cta {
    display: block;
    width: 350px;
    margin: 0 auto;
  }

  .pc-side__cta-catch {
    display: block;
    width: 80%;
    height: auto;
    margin: 0 auto 22px;
  }

  .pc-side__cta-btn {
    display: block;
    width: 100%;
    height: auto;
  }
}

/* =============================================
   Header
   ============================================= */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3.05rem;
  background-color: var(--overlay-brown);
  z-index: 10;
  display: flex;
  align-items: center;
}

.header__logo {
  margin-left: 0.75rem;
  width: 9.4rem;
}

.header__logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.header__supervised {
  position: absolute;
  top: 1.1rem;
  right: 1rem;
  width: 10.45rem;
  height: 10.45rem;
}

.header__supervised img {
  display: block;
  width: 100%;
  height: auto;
}

/* =============================================
   Hero
   ============================================= */
.hero {
  position: relative;
  width: 100%;
  padding: 3.05rem 0 3.8rem;
  background-image: url('../img/hero-bg.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero__video-frame {
  width: 91%;
  height: 31rem;
  margin-left: auto;
  margin-right: 0;
  background-color: var(--white);
  border-radius: 0 0 0 5rem;
  overflow: hidden;
}

.hero__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero__vertical {
  position: absolute;
  top: 4.2rem;
  left: 0.85rem;
  width: 5rem;
  height: auto;
  z-index: 2;
}

.hero__catch {
  position: relative;
  z-index: 3;
  margin: -3.6rem 0 0;
  font-family: var(--base-font-family);
  font-weight: 700;
  font-size: 2.75rem;
  line-height: 1.3;
  color: var(--base-color);
  text-align: center;
  text-shadow:
    0 0 0.6rem rgba(255, 255, 255, 0.95),
    0 0 1.2rem rgba(255, 255, 255, 0.85),
    0 0 1.8rem rgba(255, 255, 255, 0.7),
    0.1rem 0 rgba(255, 255, 255, 0.9),
    -0.1rem 0 rgba(255, 255, 255, 0.9),
    0 0.1rem rgba(255, 255, 255, 0.9),
    0 -0.1rem rgba(255, 255, 255, 0.9);
}

.hero__catch-line {
  display: inline;
}

.hero__catch-line--marker {
  background: linear-gradient(transparent 70%, var(--overlay-yellow) 70%);
  padding: 0 0.4rem;
}

.hero__subhead {
  display: block;
  width: 21.3rem;
  height: auto;
  margin: 1.8rem auto 0;
}

.hero__thumbs {
  display: flex;
  gap: 0;
  justify-content: space-between;
  width: 35.25rem;
  max-width: calc(100% - 2.3rem);
  margin: 1.4rem auto 0;
}

.hero__thumbs li {
  width: 11.7rem;
}

.hero__thumbs img {
  display: block;
  width: 100%;
  height: auto;
}

.hero__cta img {
  display: block;
  width: 100%;
  height: auto;
}

.hero__cta-group {
  display: block;
  width: 34rem;
  max-width: calc(100% - 2.8rem);
  margin: 1.4rem auto 0;
}

.hero__cta-catch {
  display: block;
  width: 25rem;
  max-width: 90%;
  margin: 0 auto 0.8rem;
}

.hero__cta-btn {
  display: block;
  width: 100%;
  height: auto;
}

/* ===== Hero CTA section（白背景） ===== */
.hero-cta-section {
  background-color: var(--white);
  padding: 3.6rem 1.4rem 3.6rem;
  text-align: center;
}

/* =============================================
   共通：CTAボタン
   ============================================= */
.btn-cta {
  display: block;
  width: 30rem;
  margin: 0 auto;
  padding: 1.6rem 0;
  background-color: var(--red);
  color: var(--white);
  font-family: var(--base-font-family);
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  border-radius: 999.9rem;
  box-shadow: 0 0.3rem 0 rgba(85, 78, 77, 0.15);
  letter-spacing: 0.05em;
}

.btn-cta::before {
  content: '▶ ';
  font-size: 1.2rem;
  margin-right: 0.6rem;
}

/* セクション共通スクロールマージン（ヘッダーは追従しないため0） */
section[id] {
  scroll-margin-top: 0;
}

/* =============================================
   Trial（体験キャンペーン）
   ============================================= */
.trial {
  position: relative;
  padding: 2.8rem 1rem 3.6rem;
  background-image: url('../img/trial-bg.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  text-align: center;
}

.trial__pre {
  display: block;
  width: 92%;
  margin: 0 auto 0.2rem;
  padding: 0.2rem 3.2rem 2.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green-2);
  background-image: url('../img/trial-ribbon.webp');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  text-shadow: 2px 2px 0 var(--white);
}

.trial__heading {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2.8rem;
  line-height: 1.3;
  text-shadow: 2px 2px 0 var(--white);
}

/* 体験キャンペーン下のラップ */
.trial__wrap {
  background-image: url('../img/campaign-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2.2rem;
  padding: 4.2rem 1.4rem 4.6rem;
  box-shadow: 0 0.2rem 0.8rem rgba(85, 78, 77, 0.05);
}

.trial__price {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
  padding-bottom: 2.2rem;
}

.trial__price::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0.1rem;
  background-color: var(--primary);
}

.trial__price::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 0.7rem;
  background-image:
    radial-gradient(circle, var(--primary) 0 0.3rem, transparent 0.35rem),
    radial-gradient(circle, var(--primary) 0 0.3rem, transparent 0.35rem);
  background-position:
    left center,
    right center;
  background-size:
    0.7rem 0.7rem,
    0.7rem 0.7rem;
  background-repeat: no-repeat;
}

.trial__price-label {
  font-size: 1.5rem;
  font-weight: 700;
  border: 0.1rem solid var(--base-color);
  padding: 0.3rem 0.8rem 0;
  border-radius: 0;
  line-height: 1.4;
  text-align: center;
}

.trial__price-label > span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.55rem;
  white-space: nowrap;
}

.trial__price-strike {
  position: relative;
  top: -3px;
  font-size: 2.25rem;
}

.trial__price-strike::after {
  content: '';
  position: absolute;
  left: -0.2rem;
  top: 50%;
  width: calc(100% + 0.4rem);
  height: 0.15rem;
  background-color: var(--primary);
  transform: rotate(12deg);
  transform-origin: center;
}

.trial__price-strike small {
  font-size: 0.8em;
}

.trial__price-num {
  margin-top: -0.8em;
  color: var(--red);
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: flex-end;
}

.trial__price-num strong {
  position: relative;
  font-size: 7.5rem;
  font-weight: 700;
  line-height: 0.8;
  margin-left: 1.6rem;
}

.trial__price-comma {
  font-size: 0.4em;
  line-height: 0;
}

.trial__price-num strong::before {
  content: '';
  position: absolute;
  top: 59%;
  left: -2.2rem;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.2rem 0 1.2rem 1.5rem;
  border-color: transparent transparent transparent var(--base-color);
}

.trial__price-yen {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.trial__price-yen small {
  font-size: 0.75rem;
  color: var(--base-color);
  font-weight: 700;
  margin-bottom: 0.2rem;
  white-space: nowrap;
}

.trial__price-yen-mark {
  font-size: 2.25rem;
  color: var(--base-color);
  font-weight: 700;
}

.trial__lead {
  font-size: 1.5rem;
  font-weight: 500;
}

.trial__bonus {
  display: block;
  color: var(--green-2);
  font-weight: 900;
  font-size: 2.75rem;
  margin-top: 0.2em;
  margin-bottom: 4.7rem;
  text-shadow: 2px 2px 0 var(--white);
  line-height: 1;
}

.trial__gift {
  width: 90%;
  position: relative;
  padding: 4.2rem 3.6rem 3.2rem;
  margin: 0 auto 1.8rem;
  border-radius: 0.8rem;
  background-color: var(--cream-4);
}

.trial__gift-label {
  position: absolute;
  left: -2.3rem;
  top: -1.2rem;
  width: 6.4rem;
  font-size: 1.5rem;
  background-color: var(--primary);
  color: var(--white);
  padding: 0.6rem;
  border-radius: 50rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  line-height: 1.2;
  text-align: center;
  font-weight: 700;
  z-index: 3;
}

.trial__gift-label::after {
  content: '';
  position: absolute;
  right: 0.2rem;
  bottom: 0.7rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.2rem 0.5rem 0 0.5rem;
  border-color: var(--primary) transparent transparent transparent;
  transform: rotate(-61deg);
  transform-origin: top center;
}

.trial__gift-label-pre {
  display: block;
  line-height: 1.2;
}

.trial__gift-title {
  position: absolute;
  top: -1.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  font-family: var(--base-font-family);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--white);
  background-color: var(--base-color);
  padding: 0rem 1.1rem;
  white-space: nowrap;
  z-index: 2;
}

.trial__gift-item {
  position: absolute;
  right: -3.2rem;
  bottom: 2.4rem;
  width: 10.6rem;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.trial__gift-text {
  font-size: 2.35rem;
  font-weight: 700;
  color: var(--base-color);
  line-height: 1.65;
  text-align: left;
  text-indent: -0.4em;
}

.trial__gift-text-marker {
  background: linear-gradient(transparent 60%, var(--overlay-yellow) 60%);
  padding: 0 0.4rem;
}

.trial__note {
  font-size: 1.3rem;
  line-height: 1.7;
  text-align: center;
}

.trial__note-pre {
  font-weight: 700;
  margin-bottom: 0.4rem;
  font-size: 2.25rem;
}

.trial__note-main {
  display: inline-block;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.4;
  text-shadow: 2px 2px 0 var(--white);
}

.trial__note-main strong {
  color: var(--red);
  font-size: 2.75rem;
  font-weight: 900;
  font-family: var(--en-font-family);
}

/* ===== Trial CTA セクション（白背景） ===== */
.trial-cta {
  background-color: var(--white);
  padding: 2.8rem 1.4rem 5.8rem;
  text-align: center;
}

.trial-cta--sm {
  padding: 3rem 1.4rem 5.4rem;
}

.trial-cta--sm .trial-cta__catch {
  margin-bottom: 1.9rem;
}

.trial-cta__caution {
  margin: 0 auto 2rem;
}

.trial-cta__caution img {
  display: inline-block;
  max-width: 27rem;
  height: auto;
}

.trial-cta__group {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.trial-cta__catch {
  display: block;
  width: 26rem;
  max-width: 90%;
  margin: 0 auto 1.2rem;
}

.trial-cta__btn {
  display: block;
  width: 100%;
  height: auto;
}

/* =============================================
   Access（アクセス）
   ============================================= */
.access {
  position: relative;
  padding: 2.4rem 1.6rem 7rem;
  background-color: var(--off-white);
  background-image: url('../img/access-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}

.access__head {
  margin-bottom: 1.7rem;
}

.access__logo {
  display: block;
  width: 10.4rem;
  margin: 0 auto 1.4rem;
}

.access__sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--en-font-family);
  font-weight: 300;
  font-size: 1.25rem;
  color: var(--base-color);
}

.access__sub span {
  display: block;
  width: 3.2rem;
  height: 0.1rem;
  background-color: var(--base-color);
}

.access__photo {
  display: block;
  width: 100%;
  max-width: 34.3rem;
  margin: 0 auto 3.5rem;
}

.access__info {
  width: 100%;
  max-width: 33.1rem;
  margin: 0 auto 3.8rem;
  border-top: none;
  border-bottom: none;
  background-color: transparent;
}

.access__info > div {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0.8rem;
  height: 4.7rem;
}

.access__info > div + div {
  margin-top: 0.8rem;
}

/* dd 側のみに線（左右に小さい●） */
.access__info dd {
  position: relative;
}

.access__info dd::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0.1rem;
  background-color: var(--base-color);
}

.access__info dd::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.3rem;
  height: 0.7rem;
  background-color: transparent;
  background-image:
    radial-gradient(circle, var(--base-color) 0 0.1rem, transparent 0.15rem),
    radial-gradient(circle, var(--base-color) 0 0.1rem, transparent 0.15rem);
  background-position:
    left center,
    right center;
  background-size:
    0.3rem 0.3rem,
    0.3rem 0.3rem;
  background-repeat: no-repeat;
}

/* 中間の項目間：線を項目同士の余白の中央に配置（余白 0.8rem の中央 = -0.4rem） */
.access__info > div:not(:last-child) dd::after {
  bottom: -0.45rem;
}

.access__info > div:not(:last-child) dd::before {
  bottom: -0.75rem;
}

/* 最初の dd には上線も付与 */
.access__info > div:first-child dd {
  padding-top: 1.4rem;
}

.access__info > div:first-child::before {
  content: '';
  position: absolute;
  left: 7.9rem;
  right: 0;
  top: 0;
  height: 0.1rem;
  background-color: var(--base-color);
}

.access__info > div:first-child::after {
  content: '';
  position: absolute;
  left: 7.9rem;
  right: 0;
  top: -0.3rem;
  height: 0.7rem;
  background-color: transparent;
  background-image:
    radial-gradient(circle, var(--base-color) 0 0.1rem, transparent 0.15rem),
    radial-gradient(circle, var(--base-color) 0 0.1rem, transparent 0.15rem);
  background-position:
    left center,
    right center;
  background-size:
    0.3rem 0.3rem,
    0.3rem 0.3rem;
  background-repeat: no-repeat;
}

.access__info dt {
  width: 7.1rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--green-1);
  color: var(--white);
  font-weight: 500;
  font-size: 1.85rem;
}

.access__info dd {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 1.2rem 0.4rem;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 1.75rem;
  color: var(--text-dark);
  line-height: 1.2;
  text-align: left;
}

.access__info > div:nth-child(1) dd {
  font-size: 1.35rem;
}

.access__info > div:nth-child(2) dd {
  font-family: var(--en-font-family);
  font-size: 2rem;
}

.access__catch {
  margin: 2.4rem 0 2.3rem;
  line-height: 0;
  text-align: center;
}

.access__catch img {
  display: inline-block;
  width: 24rem;
  max-width: 80%;
  height: auto;
}

.access__map {
  width: calc(100% + 2rem);
  margin: 0 -1rem;
  aspect-ratio: 727 / 416;
  overflow: hidden;
}

.access__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.access__map img {
  display: block;
  width: 100%;
}

/* =============================================
   Recommend（こんな方におすすめ）
   ============================================= */
.recommend {
  position: relative;
  padding: 4.6rem 1.5rem 12.5rem;
  background-color: var(--beige-1);
  background-image: url('../img/recommend-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
}

.recommend__deco {
  position: absolute;
  height: auto;
  z-index: 0;
  pointer-events: none;
}

.recommend__deco--01 {
  left: 0;
  top: -3.1rem;
  width: 6.8rem;
}
.recommend__deco--02 {
  right: 0;
  top: 5.7rem;
  width: 6.8rem;
}

.recommend__check {
  font-family: var(--en-font-family);
  font-weight: 300;
  font-size: 3rem;
  color: var(--base-color);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.recommend__heading {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3.3rem;
}

.recommend__card {
  width: 100%;
  padding: 3.5rem 1.8rem;
  background: url(../img/recommend-card-bg.webp) no-repeat top center/cover;
  box-shadow: 0 0.2rem 0.6rem rgba(85, 78, 77, 0.05);
  position: relative;
  z-index: 1;
}

.recommend__list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.recommend__list li {
  position: relative;
  padding: 1.7rem 0 1.7rem 0.4rem;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.15;
  border-bottom: 0.1rem solid var(--primary);
  text-align: left;
}

.recommend__list li:first-child {
  padding-top: 0.6rem;
}

.recommend__list li:last-child {
  padding-bottom: 0.6rem;
  border-bottom: none;
}

.recommend__list li:not(:last-child)::after,
.recommend__list li:not(:last-child)::before {
  content: '';
  position: absolute;
  bottom: -0.16rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background-color: var(--primary);
}

.recommend__list li:not(:last-child)::after {
  left: -0.2rem;
}
.recommend__list li:not(:last-child)::before {
  right: -0.2rem;
}

.recommend__photo {
  position: absolute;
  right: 0rem;
  bottom: 0.5rem;
  width: 13rem;
  height: auto;
  z-index: 2;
}

/* =============================================
   Instructor（監修者・インストラクター）
   ============================================= */
.instructor {
  position: relative;
  padding: 4.4rem 0 9.6rem;
  background-image: url('../img/instuctor-bg.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.instructor__hero {
  position: relative;
  background-image: url('../img/instructor-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: -4.7rem;
  padding: 4.3rem 1.6rem 8.2rem;
}

.instructor__lead {
  font-family: var(--base-font-family);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.43;
  color: var(--white);
  text-align: center;
}

.profile {
  width: 100%;
  max-width: calc(100% - 3rem);
  margin: 0 auto 2rem;
  padding: 1.9rem 1.6rem 4.3rem;
  border: 0.5rem solid var(--beige-2);
  border-radius: 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.profile::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/instrutor-card-bg.webp) no-repeat top center/cover;
  z-index: -1;
}

.profile--instructor {
  padding-bottom: 2rem;
}

.profile__role {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 3.2rem;
}

.profile__head {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
  padding-left: 1rem;
}
.profile--instructor .profile__name {
  margin-bottom: 3.5rem;
}

.profile__photo {
  display: block;
  width: 14rem;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.profile__name {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 6.8rem;
  padding: 1rem 0;
  border-top: 0.1rem solid var(--primary);
  border-bottom: 0.1rem solid var(--primary);
}

.profile__name::before,
.profile__name::after {
  content: '';
  position: absolute;
  left: -0.2rem;
  right: -0.2rem;
  height: 0.3rem;
  background-image:
    radial-gradient(circle, var(--primary) 0 0.1rem, transparent 0.2rem),
    radial-gradient(circle, var(--primary) 0 0.1rem, transparent 0.2rem);
  background-position:
    left center,
    right center;
  background-size: 0.3rem 0.3rem;
  background-repeat: no-repeat;
}

.profile__name::before {
  top: -0.25rem;
}
.profile__name::after {
  bottom: -0.25rem;
}

.profile__name-jp {
  font-weight: 500;
  font-size: 2.25rem;
}

.profile__name-en {
  font-family: var(--en-font-family);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--base-color);
  letter-spacing: 0.08em;
}

.profile--instructor .profile__name-en {
  font-size: 2.2rem;
}

.profile__block {
  position: relative;
  margin-bottom: 1.3rem;
  padding-top: 1.4rem;
}

.profile__block:last-child {
  margin-bottom: 0;
}

.profile__block-label {
  position: absolute;
  top: 0;
  left: 1.1rem;
  display: inline-block;
  width: 7.15rem;
  padding: 0.8rem 1rem 0.8rem 0.2rem;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
  background-image: url('../img/tag-ribon.webp');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 2;
}

.profile__detail {
  background-color: var(--beige-1);
  border-radius: 0.5rem;
  padding: 3.2rem 1.6rem 2.2rem;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--text-dark);
  text-align: left;
}

/* =============================================
   Feature（3つのこだわり）
   ============================================= */
.feature {
  position: relative;
  margin-top: -1.5rem;
  padding: 5.5rem 1.6rem 7.3rem;
  background-image: url('../img/feature-bg.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden;
}

.feature__intro {
  text-align: center;
}

.feature__points {
  margin-top: 8.2rem;
}

.feature__heading {
  margin-bottom: 1.8rem;
  text-align: center;
  line-height: 1.3;
  color: var(--base-color);
}

.feature__heading-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1rem;
}

.feature__heading-en {
  font-family: var(--en-font-family);
  font-weight: 300;
  font-size: 3.5rem;
}

.feature__heading-ja-no {
  font-family: var(--base-font-family);
  font-weight: 700;
  font-size: 2rem;
}

.feature__heading-ja {
  font-weight: 700;
  font-size: 2rem;
  display: block;
  margin-top: 0.4rem;
}

.feature__heading-ja strong {
  font-weight: 700;
  font-size: 3.5rem;
}

.point {
  position: relative;
  text-align: center;
}

.point:not(:first-child) {
  margin-top: 8rem;
}

.point__num {
  position: absolute;
  top: -1.5rem;
  display: flex;
  align-items: flex-start;
  z-index: 2;
  line-height: 1;
}

.feature__points .point:nth-child(odd) .point__num {
  left: -0.8rem;
}

.feature__points .point:nth-child(even) .point__num {
  right: 1.4rem;
}

.point__num-label {
  margin-right: -1rem;
  font-family: var(--mincho-font-family);
  font-weight: 400;
  font-size: 2rem;
  color: var(--green-1);
  margin-top: 4rem;
  transform: rotate(-90deg);
}

.point__num-digits {
  font-family: var(--mincho-font-family);
  font-weight: 400;
  font-size: 8.5rem;
  letter-spacing: -0.1em;
  color: var(--green-1);
  text-shadow: 0.2rem 0.2rem 0.5rem rgba(255, 255, 255, 1);
  line-height: 0.85;
}

.point__photo {
  display: block;
  width: 84%;
  height: 19.05rem;
  object-fit: cover;
  margin: 0 -1.6rem 0 auto;
  position: relative;
  z-index: 1;
}

.feature__points .point:nth-child(even) .point__photo {
  margin: 0 auto 0 -1.6rem;
}

.point__title {
  font-family: var(--base-font-family);
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--white);
  margin: -1.5rem 1.2rem 1.4rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.point__title > span {
  display: inline-block;
  background-color: #958364;
  color: var(--white);
  padding: 0.2rem 1.6rem 0.3rem;
  margin: 0.3rem 0;
  line-height: 1.2;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.point__title > span span {
  letter-spacing: -0.8em;
}

.point__sub {
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--primary);
  line-height: 1.5;
  margin: 0 1.2rem;
  text-align: center;
}

.point__lead {
  margin-bottom: 0.8rem;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4;
  text-align: center;
}

.feature__points .point:nth-child(1) .point__lead {
  font-size: 2.25rem;
}

.point__text {
  font-family: var(--base-font-family);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.51;
  color: var(--text-dark);
  text-align: left;
  margin: 1.2rem 1.6rem 0;
}

/* =============================================
   Plan
   ============================================= */
.plan {
  position: relative;
  padding: 5.8rem 2rem 18.5rem;
  background-color: var(--sand);
  text-align: center;
}

.plan::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 750/60;
  background: url(../img/feature-bg-bottom.webp) no-repeat top center/contain;
  z-index: 10;
}

.plan__heading {
  font-family: var(--en-font-family);
  font-weight: 300;
  font-size: 4rem;
  color: var(--base-color);
  line-height: 1;
  margin-bottom: 2.4rem;
}

.plan__sub {
  font-family: var(--base-font-family);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--primary);
  line-height: 1.5;
  margin-bottom: 2.8rem;
  letter-spacing: 0.04em;
}

.plan__intro {
  font-family: var(--base-font-family);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--text-dark);
  margin-bottom: 5rem;
  padding: 0 0.4rem;
}

.plan-card {
  background-color: var(--white);
  margin-bottom: 2.6rem;
  text-align: center;
  overflow: hidden;
  box-shadow: 0.4rem 0.4rem 1rem rgba(0, 0, 0, 0.1);
  border-radius: 1.2rem;
}

.plan-card__head {
  position: relative;
  padding: 1.4rem 1rem 0.8rem;
  color: var(--white);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.plan-card--personal .plan-card__head {
  background-image: url('../img/plan-item01-headbg.webp');
}

.plan-card--semi .plan-card__head {
  background-image: url('../img/plan-item02-headbg.webp');
}

.plan-card__title {
  font-weight: 700;
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 0.4rem;
  line-height: 1;
}

.plan-card__label-en {
  font-family: var(--en-font-family);
  font-weight: 300;
  font-size: 1.65rem;
  color: var(--white);
}

.plan-card__catch {
  font-family: var(--base-font-family);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--text-light);
  line-height: 1.6;
  padding: 1.1rem;
}

.plan-card__photo {
  display: block;
  width: calc(100% - 5rem);
  margin: 0 auto;
}

.plan-card__text {
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.45;
  text-align: left;
  padding: 2.3rem 2rem 3.3rem;
}

/* 入会後は outro */
.plan__outro {
  position: relative;
  margin-top: 2.8rem;
  padding: 0;
  text-align: left;
}

.plan__outro-title {
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--base-color);
  text-align: center;
  margin-bottom: 2.2rem;
}

.plan__outro-text {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 0.9rem;
  line-height: 1.5;
}

.plan__outro-text--plain {
  background: transparent;
  color: var(--base-color);
  padding: 0;
}

.plan__outro-callout {
  position: relative;
  padding: 1rem 0 6.5rem;
  color: var(--white);
  z-index: 1;
}

.plan__outro-callout::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + 4rem);
  height: 100%;
  margin: 0 -2rem;
  background: url(../img/plan-bottom-leaves.webp) no-repeat top center/cover;
  z-index: -1;
}

.plan__outro-text--accent {
  color: var(--white);
  margin-bottom: 2.4rem;
}

.plan__outro-text--accent:last-of-type {
  margin-bottom: 0;
}

.plan__outro-deco {
  position: absolute;
  right: 0rem;
  top: 75%;
  width: 30rem;
  height: auto;
  pointer-events: none;
}

/* =============================================
   Price
   ============================================= */
.price {
  position: relative;
  padding: 2rem 1.2rem 3.6rem;
  background-image: url('../img/price-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}

.price__heading {
  font-family: var(--en-font-family);
  font-weight: 300;
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1;
}

.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0.4rem;
  margin-bottom: 1rem;
}

.price-table th,
.price-table td {
  padding: 0;
  text-align: center;
  vertical-align: middle;
}

.price-table thead th {
  color: var(--white);
  padding: 1.4rem 0.4rem 1.1rem;
  border-radius: 2.2rem 2.2rem 0 0;
  line-height: 1.2;
}

.price-table thead th:nth-of-type(2) {
  background-color: #554e4d;
}

.price-table thead th:nth-of-type(3) {
  background-color: #927f7c;
}

.price-table__corner {
  background-color: transparent !important;
  width: 14%;
}

.price-table__col-jp {
  display: block;
  font-weight: 700;
  font-size: 1.5rem;
}

.price-table__col-en {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--en-font-family);
  font-weight: 500;
  font-size: 1.56rem;
  white-space: nowrap;
}

.price-table tbody th {
  background-color: var(--gray);
  color: var(--base-color);
  font-family: var(--base-font-family);
  font-weight: 700;
  font-size: 1.25rem;
  width: 14%;
  padding: 1.4rem 0;
}

.price-table tbody td {
  width: calc(86% / 2);
  background-color: var(--beige-1);
  color: var(--text-dark);
  font-family: var(--en-font-family);
  font-weight: 500;
  font-size: 1.8rem;
  padding: 0.85rem 0.2rem;
  line-height: 1.3;
  text-align: center;
}

.price-table tbody td small {
  font-family: var(--base-font-family);
  font-size: 1rem;
  margin-left: 0.1rem;
}

.price-table__base {
  display: block;
  font-family: var(--en-font-family);
  font-weight: 500;
  font-size: 1.75rem;
  color: var(--text-dark);
  line-height: 1.2;
}

.price-table__discount {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  margin-top: 0.4rem;
  font-size: 1.6rem;
  line-height: 1.1;
  white-space: nowrap;
}

/* 体験会バナー */
.trial-banner {
  background-color: var(--white);
  padding: 3.6rem 1.6rem;
  text-align: center;
}

.trial-banner__img {
  display: inline-block;
  width: 32rem;
  max-width: 100%;
  height: auto;
}

.price-table__strike {
  display: inline-block;
  font-family: var(--en-font-family);
  font-size: 1.1rem;
  color: var(--text-light);
  text-decoration: line-through;
  font-weight: 500;
  line-height: 1.2;
}

.price-table__arrow {
  font-family: var(--en-font-family);
  font-size: 1.5rem;
  color: var(--text-dark);
  font-weight: 500;
}

.price-table__current {
  color: var(--red);
  font-family: var(--en-font-family);
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 1.1;
}

.price-table__current small {
  font-family: var(--base-font-family);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-left: 0.1rem;
}

.price-table__caption {
  font-family: var(--base-font-family);
  font-size: 0.8rem;
  color: var(--text-dark);
  margin-bottom: -0.8rem;
}

.price__note {
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 1rem;
  color: var(--white);
  text-align: left;
  line-height: 1.6;
  padding: 0 0.6rem;
}

/* =============================================
   Flow（体験会の流れ）
   ============================================= */
.flow {
  position: relative;
  padding: 2.8rem 1.3rem 7.3rem;
  background-image: url('../img/flow-bg.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  text-align: center;
}

.flow__heading {
  font-family: var(--en-font-family);
  font-weight: 300;
  font-size: 4rem;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.flow__sub {
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 5.4rem;
}

.flow-steps {
  margin-bottom: 4.2rem;
  padding: 0 1.3rem;
}

.flow-step {
  position: relative;
  background-color: var(--cream-3);
  border-radius: 1rem;
  padding: 1.9rem 1.1rem 1.8rem;
  text-align: left;
  box-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.1);
}

.flow-step:not(:first-child) {
  margin-top: 5.3rem;
}

.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: -4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.25rem;
  height: 2.8rem;
  background-image: radial-gradient(circle at center, var(--primary) 0 0.125rem, transparent 0.125rem);
  background-size: 0.25rem 0.6rem;
  background-repeat: repeat-y;
  background-position: center top;
}

.flow-step__num {
  position: absolute;
  top: -2.4rem;
  left: 0;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 0;
  color: var(--green-1);
  line-height: 1;
  z-index: 2;
}

.flow-step__num-img {
  display: block;
  width: 9.5rem;
  height: auto;
}

.flow-step__step {
  font-family: var(--en-font-family);
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}

.flow-step__digits {
  font-family: var(--en-font-family);
  font-weight: 500;
  font-size: 2.2rem;
  letter-spacing: -0.02em;
}

.flow-step__body {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.flow-step__photo {
  display: block;
  width: 12.1rem;
  aspect-ratio: 236/260;
  object-fit: cover;
  border: 0.2rem solid var(--cream-1);
}

.flow-step__text-wrap {
  flex: 1;
  min-width: 0;
}

.flow-step__title {
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.flow-step__sub {
  margin-top: -1.1em;
  margin-bottom: 0.2em;
  font-weight: 500;
  font-size: 1.3rem;
  color: #000;
}

.flow-step__text {
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.5;
}

.flow__mochimono {
  display: block;
  width: 100%;
  max-width: 35rem;
  margin: 0 auto;
}

/* =============================================
   FAQ
   ============================================= */
.faq {
  position: relative;
  padding: 2.5rem 1.5rem 7.9rem;
  background-color: var(--green-1);
  background-image: url('../img/faq-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}

.faq__heading {
  font-family: var(--en-font-family);
  font-weight: 300;
  font-size: 4rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.faq__sub {
  font-weight: 700;
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 2.2rem;
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-item {
  background-color: var(--cream-1);
  border-radius: 1rem;
  padding: 0.6rem 1.2rem 0.6rem;
  margin-bottom: 1rem;
  text-align: left;
  box-shadow: 0.4rem 0.2rem 0.2rem rgba(0, 0, 0, 0.05);
}

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: calc(2em * 1.2);
  padding: 0 0 0 3rem;
}

.faq-item__qmark {
  position: absolute;
  top: 40%;
  left: 0;
  transform: translate(0, -50%);
  font-family: var(--en-font-family);
  font-weight: 500;
  font-size: 2.5rem;
  color: var(--primary);
  line-height: 1;
}

.faq-item__qtext {
  flex: 1;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  text-align: left;
}

.faq-item__plus {
  flex-shrink: 0;
  position: relative;
  width: 1.8rem;
  height: 1.8rem;
  color: var(--primary);
  line-height: 1;
}

.faq-item__plus::before,
.faq-item__plus::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: var(--primary);
  transform: translate(-50%, -50%);
}

.faq-item__plus::before {
  width: 1.4rem;
  height: 0.2rem;
}

.faq-item__plus::after {
  width: 0.2rem;
  height: 1.4rem;
  transition: transform 0.2s ease;
}

.faq-item--open .faq-item__plus::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  margin-top: 0;
  font-family: var(--base-font-family);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--text-mid);
  line-height: 1.4;
  transition:
    grid-template-rows 0.3s ease,
    margin-top 0.3s ease;
}

.faq-item__a > p {
  min-height: 0;
  margin: 0;
  padding: 0 0.5rem;
  border-top: 0.1rem solid var(--primary);
  border-top-width: 0;
  overflow: hidden;
  transition:
    padding 0.3s ease,
    border-top-width 0s linear 0.3s;
}

.faq-item--open .faq-item__a {
  grid-template-rows: 1fr;
  margin-top: 0.8rem;
}

.faq-item--open .faq-item__a > p {
  padding: 1.4rem 0.5rem 1.1rem;
  border-top-width: 0.1rem;
  transition:
    padding 0.3s ease,
    border-top-width 0s linear 0s;
}

/* =============================================
   Legal page (会社概要 / プライバシーポリシー)
   ============================================= */
.legal-page .header {
  position: relative;
  background-color: var(--overlay-brown);
}

.legal {
  padding: 2rem 1.6rem 8rem;
  background-color: var(--cream-3);
  color: var(--base-color);
}

.legal__heading {
  font-weight: 700;
  font-size: 3rem;
  color: inherit;
  margin-bottom: 2.3rem;
}

.legal__table {
  display: flex;
  flex-direction: column;
}

.legal__row {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 0.4rem;
}

.legal__row dt,
.legal__row dd {
  padding: 1rem 1.8rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  display: flex;
  align-items: center;
}

.legal__row dt {
  padding-inline: 0;
  background-color: var(--gray);
  color: var(--base-color);
  font-weight: 700;
  text-align: center;
  justify-content: center;
}

.legal__row dd {
  background-color: var(--beige-1);
  color: inherit;
}

.legal__row + .legal__row {
  margin-top: 0.4rem;
}

.legal__lead {
  font-size: 1.25rem;
  line-height: 2.5rem;
  color: inherit;
  margin-bottom: 3rem;
}

.legal__section-title {
  font-weight: 500;
  font-size: 2rem;
  color: inherit;
  margin: 3rem 0 1rem;
  line-height: 2.5rem;
}

.legal__text {
  font-size: 1.25rem;
  line-height: 2.5rem;
  color: inherit;
}

/* =============================================
   Footer
   ============================================= */
.footer {
  position: relative;
  padding: 0 1.6rem;
  background-image: url('../img/footer-bg.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  text-align: center;
  color: var(--base-color);
}

.footer__img {
  display: block;
  max-width: 34.3rem;
  height: auto;
  transform: translateY(-3.4rem);
  margin: 0 auto 1.6rem;
}

.footer__nav ul {
  list-style: none;
  padding: 1.6rem 1.6rem;
  margin: 0 auto 1.8rem;
  display: block;
  width: 100%;
  text-align: left;
  border-top: 0.1rem solid var(--primary);
  border-bottom: 0.1rem solid var(--primary);
}

.footer__nav li {
  font-weight: 500;
  font-size: 1.15rem;
  text-align: left;
}
.footer__nav li:not(:first-child) {
  margin-top: 0.2rem;
}

.footer__bottom {
  margin: 5.5rem -1.6rem 0;
  padding: 0.8rem;
  background-color: var(--text-mid);
  color: var(--white);
  text-align: center;
}

.footer__legal {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  font-size: 1rem;
  font-weight: 300;
  color: var(--white);
}

.footer__legal li {
  position: relative;
}

.footer__legal li + li::before {
  content: '/';
  display: inline-block;
  color: var(--white);
}

.footer__legal a {
  color: var(--white);
}

.footer__copy {
  font-family: var(--en-font-family);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--white);
}
