@charset "UTF-8";

/* ==========================================================================
   LIFE TENNIS - home.css（TOPページ専用）
   構成参考サイト（近江母の郷）のセクション構成に合わせた組み立て
   ========================================================================== */

/* --------------------------------------------------------------------------
   ヒーロー（全画面写真スライダー ＋ 縦書きキャッチ）
   -------------------------------------------------------------------------- */
.mv {
  position: relative;
  height: min(100vh, 940px);
  min-height: 560px;
  overflow: hidden;
  isolation: isolate;
}

.mv__slider { position: absolute; inset: 0; z-index: -2; }

.mv__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}
.mv__slide.is-active { opacity: 1; }
.mv__slide picture, .mv__slide img { display: block; width: 100%; height: 100%; }
.mv__slide img { object-fit: cover; object-position: 50% 62%; }
/* 表示中のスライドだけゆっくり寄る */
.mv__slide.is-active img { animation: mv-zoom 9s var(--ease) forwards; }
@keyframes mv-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}

/* 写真の上にごく薄くブランドカラーを重ねて、白文字を読みやすくする */
.mv::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 55% 40%, rgba(18, 70, 55, .34) 0%, rgba(18, 70, 55, 0) 70%),
    linear-gradient(180deg, rgba(18, 70, 55, .22) 0%, rgba(18, 70, 55, 0) 40%);
}

/* 縦書きのキャッチコピー */
.mv__copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  color: #fff;
  text-align: center;
}

.mv__ring {
  display: block;
  width: 96px; height: 96px;
  opacity: 0;
  animation: mv-in 1s var(--ease) .3s forwards;
}
.mv__ring svg { width: 100%; height: 100%; animation: mv-spin 22s linear infinite; }
.mv__ring text {
  font-family: var(--ff-en);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .22em;
  fill: #fff;
}
@keyframes mv-spin { to { transform: rotate(360deg); } }

.mv__catch {
  writing-mode: vertical-rl;
  display: block;
  font-family: var(--ff-round);
  font-weight: 900;
  font-size: clamp(24px, 3.1vw, 40px);
  line-height: 1;
  letter-spacing: .16em;
  color: #fff;
  text-shadow: 0 2px 20px rgba(16, 60, 46, .5);
}
/* 縦書きではブロックが右から左へ積まれるので、1行＝1つの span にする */
.mv__catch span {
  display: block;
  opacity: 0;
  animation: mv-in 1.1s var(--ease) forwards;
}
.mv__catch span + span { margin-block-start: .5em; }
/* 縦書きは右の行が先頭なので、右から順に出す */
.mv__catch span:nth-child(1) { animation-delay: .45s; }
.mv__catch span:nth-child(2) { animation-delay: .62s; }
.mv__catch span:nth-child(3) { animation-delay: .79s; }

.mv__wave {
  display: block;
  width: 120px;
  color: rgba(255, 255, 255, .9);
  opacity: 0;
  animation: mv-in 1s var(--ease) .85s forwards;
}
.mv__wave svg { width: 100%; height: auto; }

@keyframes mv-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

/* スライドの切り替えドット */
.mv__dots {
  position: absolute;
  left: 50%; bottom: 46px;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 2;
}
.mv__dots button {
  width: 9px; height: 9px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .55);
  transition: background-color .3s var(--ease), transform .3s var(--ease);
}
.mv__dots button[aria-selected="true"] { background: #fff; transform: scale(1.35); }

/* --------------------------------------------------------------------------
   固定左パネル（ロゴ ＋ 3つの事業 ＋ 体験レッスン）
   -------------------------------------------------------------------------- */
.panel {
  position: fixed;
  left: 40px; top: 26px;
  z-index: 100;
  width: 228px;
  padding: 24px 18px 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 16px 40px rgba(20, 70, 55, .16);
  transition: opacity .5s var(--ease), visibility .5s var(--ease), transform .5s var(--ease);
}
.panel.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
}

/* ロゴ配置エリア：左パネル */
.panel__logo { display: block; }
.panel__logo img { width: 148px; height: auto; margin-inline: auto; }

.panel__nav { margin-top: 20px; display: grid; gap: 4px; }
.panel__nav a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8px 6px;
  border-radius: 14px;
  transition: background-color .25s var(--ease);
}
.panel__nav a:hover { background: var(--sky-mist); }

.panel__icon {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  flex: none;
  border-radius: 50%;
  color: #fff;
}
.panel__icon svg { width: 20px; height: 20px; }
.panel__icon--sky { background: var(--sky); }
.panel__icon--lime { background: var(--lime); }
.panel__icon--sun { background: var(--sun); color: var(--green); }

.panel__label {
  display: flex;
  flex-direction: column;
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: 12.5px;
  line-height: 1.35;
  letter-spacing: -.01em;
  white-space: nowrap;
  color: var(--green);
}
.panel__label small {
  font-family: var(--ff-en);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--ink-mute);
}

.panel__banner {
  display: block;
  position: relative;
  margin-top: 16px;
  padding: 14px 12px;
  border-radius: 16px;
  border: 1.5px solid var(--line);
  text-align: center;
  overflow: hidden;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.panel__banner:hover { border-color: var(--lime); transform: translateY(-2px); }
.panel__banner-body { position: relative; display: block; }
.panel__banner-body strong {
  display: block;
  font-family: var(--ff-round);
  font-weight: 900;
  font-size: 15px;
  color: var(--green);
}
.panel__banner-body span {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  color: var(--ink-soft);
}

.panel__more {
  display: block;
  margin-top: 12px;
  text-align: center;
  font-size: 11.5px;
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.panel__more:hover { color: var(--sky-deep); }

/* --------------------------------------------------------------------------
   セクション見出し（大きな薄い英字 ＋ 和文を重ねる）
   -------------------------------------------------------------------------- */
.sec-ttl {
  position: relative;
  margin-bottom: 44px;
  text-align: center;
}
.sec-ttl__en {
  display: block;
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: clamp(46px, 8vw, 92px);
  line-height: 1;
  letter-spacing: .02em;
  color: var(--pale-ttl);
  white-space: nowrap;
}
.sec-ttl__ja {
  margin-top: -.42em;
  position: relative;
  font-size: clamp(20px, 2.6vw, 27px);
  font-weight: 900;
  color: var(--green);
}
/* 和文の左右に置く「〳 〵」風の飾り */
.sec-ttl__ja::before,
.sec-ttl__ja::after {
  content: "";
  display: inline-block;
  width: 12px; height: 20px;
  margin: 0 14px;
  vertical-align: -3px;
  background: currentColor;
  opacity: .35;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 20'%3E%3Cpath d='M9 1 3 10l6 9' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 20'%3E%3Cpath d='M9 1 3 10l6 9' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.sec-ttl__ja::after { transform: scaleX(-1); }

.sec-ttl__wave {
  display: block;
  width: 60px;
  margin: 10px auto 0;
  color: var(--lime);
}
.sec-ttl__wave svg { width: 100%; height: auto; }

/* カテゴリ見出し（丸アイコン＋英字＋和文） */
.cat-ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 26px;
}
.cat-ttl__icon {
  display: grid;
  place-items: center;
  width: 62px; height: 62px;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 10px 24px rgba(20, 70, 55, .18);
}
.cat-ttl__icon svg { width: 30px; height: 30px; }
.cat-ttl__icon--sky { background: var(--sky); }
.cat-ttl__icon--lime { background: var(--lime); }
.cat-ttl__icon--sun { background: var(--sun); color: var(--green); }

.cat-ttl__stack { display: block; margin-top: 10px; text-align: center; }
.cat-ttl__en {
  display: block;
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1;
  color: var(--pale-ttl);
  white-space: nowrap;
}
.cat-ttl__ja {
  margin-top: -.44em;
  position: relative;
  font-size: clamp(20px, 2.6vw, 27px);
  font-weight: 900;
}

.cat { padding-block: clamp(70px, 9vw, 118px); overflow: hidden; }
.cat__lead {
  max-width: 46em;
  margin: 0 auto 44px;
  text-align: center;
  font-size: 15.5px;
  line-height: 2.1;
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   「一覧を見る」風のピルリンク
   -------------------------------------------------------------------------- */
.more-wrap { margin-top: 40px; text-align: center; }
.more-wrap--left { text-align: left; }

.more {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-width: 216px;
  padding: 15px 18px 15px 30px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--white);
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: 15px;
  color: var(--green);
  transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
}
.more::after {
  content: "";
  width: 22px; height: 22px;
  flex: none;
  border-radius: 50%;
  background: var(--lime) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23fff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 3 5 5-5 5'/%3E%3C/svg%3E") center / 11px no-repeat;
  transition: transform .28s var(--ease);
}
.more:hover { transform: translateY(-3px); border-color: var(--lime); box-shadow: var(--shadow); }
.more:hover::after { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   SNS
   -------------------------------------------------------------------------- */
.sns { padding-block: clamp(56px, 7vw, 90px); }
.sns__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}
.sns__grid li {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-sm);
}
.sns__grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.sns__grid li:hover img { transform: scale(1.07); }

/* --------------------------------------------------------------------------
   ABOUT（左右にオフセットした写真＋中央のコピー）
   -------------------------------------------------------------------------- */
.about {
  position: relative;
  padding-block: clamp(90px, 11vw, 150px);
  overflow: hidden;
}
.about__photo {
  position: absolute;
  width: min(230px, 17vw);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about__photo img { width: 100%; height: auto; display: block; }
.about__photo--left { left: max(3vw, 24px); top: 12%; }
.about__photo--right { right: max(3vw, 24px); bottom: 12%; }

.about__inner { position: relative; text-align: center; }
.about__catch {
  margin-top: 6px;
  font-family: var(--ff-round);
  font-weight: 900;
  font-size: clamp(22px, 3.4vw, 36px);
  line-height: 1.7;
  color: var(--green);
}
.about__text {
  margin-top: 26px;
  font-size: 15.5px;
  line-height: 2.15;
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   カルーセル（プライベートレッスン）
   -------------------------------------------------------------------------- */
.carousel { position: relative; }
.carousel__viewport { overflow: hidden; }
.carousel__track {
  display: flex;
  gap: 30px;
  transition: transform .55s var(--ease);
}
.pcard { flex: 0 0 calc((100% - 60px) / 3); }
.pcard__media {
  display: block;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--sky-pale);
  box-shadow: var(--shadow-sm);
}
.pcard__media img { width: 100%; height: 100%; object-fit: cover; }
.pcard__ttl {
  margin-top: 18px;
  text-align: center;
  font-size: 18px;
  font-weight: 900;
}
.pcard__text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.95;
  color: var(--ink-soft);
}

.carousel__arrow {
  position: absolute;
  top: 34%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
  box-shadow: var(--shadow);
  transition: transform .25s var(--ease), color .25s var(--ease);
}
.carousel__arrow:hover { transform: scale(1.08); color: var(--sky-deep); }
.carousel__arrow svg { width: 16px; height: 16px; }
.carousel__arrow--prev { left: -22px; }
.carousel__arrow--next { right: -22px; }
.carousel__arrow[disabled] { opacity: .35; pointer-events: none; }

/* --------------------------------------------------------------------------
   体験レッスン（全幅の写真ストリップ）
   -------------------------------------------------------------------------- */
.trial { padding-block: clamp(70px, 9vw, 110px) clamp(56px, 7vw, 90px); overflow: hidden; }
.trial__lead {
  max-width: 44em;
  margin: 0 auto;
  text-align: center;
  font-size: 15.5px;
  line-height: 2.1;
  color: var(--ink-soft);
}
.strip {
  margin-top: 44px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  gap: 4px;
}
.strip li { overflow: hidden; aspect-ratio: 3 / 4; }
.strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.strip li:hover img { transform: scale(1.06); }

/* --------------------------------------------------------------------------
   イベントレッスン（写真が画面端までブリードする大ブロック）
   -------------------------------------------------------------------------- */
.bleed {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  margin-top: clamp(40px, 6vw, 70px);
}
.bleed--reverse { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); }

.bleed__text {
  position: relative;
  padding-inline: 24px;
  max-width: 520px;
  margin-left: auto;
  text-align: center;
}
.bleed--reverse .bleed__text { margin: 0 auto 0 0; }

.bleed__mark {
  display: block;
  width: 96px; height: 96px;
  margin: 0 auto 6px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.bleed__mark img { width: 100%; height: 100%; object-fit: cover; }

.bleed__en {
  display: block;
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: clamp(44px, 6vw, 74px);
  line-height: 1;
  color: var(--pale-ttl);
}
/* 和文見出しは大きな薄い英字に重ねる（セクション見出しと同じ型） */
.bleed__ttl {
  margin-top: -.42em;
  position: relative;
  font-size: clamp(21px, 2.8vw, 28px);
  font-weight: 900;
  color: var(--green);
}
.bleed__lead {
  margin-top: 18px;
  font-size: 15px;
  line-height: 2.05;
  color: var(--ink-soft);
}
.bleed__text .more-wrap { margin-top: 26px; text-align: center; }

.bleed__media { border-radius: 24px 0 0 24px; overflow: hidden; box-shadow: var(--shadow); }
.bleed--reverse .bleed__media { border-radius: 0 24px 24px 0; }
.bleed__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.trio {
  margin-top: clamp(34px, 5vw, 56px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.trio li { border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow-sm); }
.trio img { width: 100%; height: 100%; object-fit: cover; }

/* --------------------------------------------------------------------------
   出張トレーニング（左に4件リスト＋右に大きな写真）
   -------------------------------------------------------------------------- */
.zone {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}
.zone__list { border-top: 1px solid var(--line); }
.zone__list li { border-bottom: 1px solid var(--line); }
.zone__list a {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 34px;
  gap: 20px;
  align-items: center;
  padding: 18px 4px;
}
.zone__media {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--sky-pale);
}
.zone__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.zone__list a:hover .zone__media img { transform: scale(1.07); }

.zone__body { display: block; }
.zone__ttl {
  display: block;
  font-family: var(--ff-round);
  font-weight: 900;
  font-size: 18px;
  color: var(--green);
}
.zone__text {
  display: block;
  margin-top: 7px;
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--ink-soft);
}
.zone__arrow {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--lime);
  color: #fff;
  transition: transform .25s var(--ease);
}
.zone__arrow svg { width: 13px; height: 13px; }
.zone__list a:hover .zone__arrow { transform: translateX(3px); }

/* 右の大きな写真は角丸を強めた超楕円風にする */
.zone__photo {
  border-radius: 46% 46% 46% 46% / 22% 22% 22% 22%;
  overflow: hidden;
  aspect-ratio: 4 / 4.2;
  box-shadow: var(--shadow);
}
/* 元写真は上半分が壁なので、下寄りに切って人物を大きく見せる */
.zone__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 78%; }

/* --------------------------------------------------------------------------
   はじめ方（写真＋円形ラベル）
   -------------------------------------------------------------------------- */
.guide { padding-block: clamp(70px, 9vw, 110px); }
.guide__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}
.guide__list a {
  position: relative;
  display: block;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16 / 12;
  box-shadow: var(--shadow);
}
.guide__list img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
/* 切り取り位置は写真ごとに違う。1枚目は人物が下寄り、2枚目は中央やや上に写っている */
.guide__list li:nth-child(1) img { object-position: 50% 72%; }
.guide__list li:nth-child(2) img { object-position: 50% 40%; }
.guide__list a:hover img { transform: scale(1.05); }

/* バッジは写真の中央に置くと必ず被写体に重なるので、下端に寄せて人物を隠さない */
.guide__badge {
  position: absolute;
  left: 50%; bottom: 16px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  width: clamp(160px, 19vw, 198px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 30px rgba(20, 70, 55, .18);
  text-align: center;
  transition: transform .35s var(--ease);
}
.guide__list a:hover .guide__badge { transform: translateX(-50%) scale(1.04); }
.guide__badge-lead {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.guide__badge-dots { display: flex; gap: 5px; }
.guide__badge-dots i { width: 5px; height: 5px; border-radius: 50%; background: var(--sky); }
.guide__badge-dots i:nth-child(2) { background: var(--coral); }
.guide__badge-dots i:nth-child(3) { background: var(--lime); }
.guide__badge strong {
  font-family: var(--ff-round);
  font-weight: 900;
  font-size: clamp(17px, 2.1vw, 21px);
  line-height: 1.45;
  color: var(--green);
}
.guide__badge-arrow { font-size: 17px; color: var(--green); line-height: 1; }

/* --------------------------------------------------------------------------
   ACCESS
   -------------------------------------------------------------------------- */
.access { padding-block: clamp(70px, 9vw, 110px); text-align: center; }
.access__name {
  font-family: var(--ff-round);
  font-weight: 900;
  font-size: 22px;
  color: var(--green);
}
.access__addr {
  margin-top: 12px;
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}
.access__note {
  margin-top: 18px;
  font-size: 14px;
  line-height: 2;
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   料金・メニュー
   -------------------------------------------------------------------------- */
.menu { padding-block: clamp(70px, 9vw, 110px); }
.menu__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.menu__list a { display: block; text-align: center; }
.menu__media {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--sky-pale);
  box-shadow: var(--shadow-sm);
}
.menu__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.menu__list a:hover .menu__media img { transform: scale(1.06); }
.menu__ttl {
  display: block;
  margin-top: 14px;
  font-family: var(--ff-round);
  font-weight: 900;
  font-size: 16px;
  color: var(--green);
}
.menu__price {
  display: block;
  margin-top: 6px;
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink-soft);
}
.menu__price strong {
  font-family: var(--ff-en);
  font-size: 24px;
  color: var(--sky-deep);
  margin-right: 2px;
}

/* 下部の帯バナー */
.banner {
  position: relative;
  display: block;
  margin: clamp(40px, 6vw, 64px) auto 0;
  max-width: 620px;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 620 / 200;
  box-shadow: var(--shadow);
}
.banner img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.banner:hover img { transform: scale(1.05); }
.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(18, 128, 159, .78), rgba(79, 134, 21, .62));
}
.banner__body {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  text-align: center;
  color: #fff;
}
.banner__body strong {
  font-family: var(--ff-round);
  font-weight: 900;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: .08em;
}
.banner__body small {
  display: block;
  margin-top: 6px;
  font-family: var(--ff-en);
  font-size: 12px;
  letter-spacing: .16em;
  opacity: .9;
}
.banner__arrow {
  position: absolute;
  right: 22px; top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  color: #fff;
}
.banner__arrow svg { width: 13px; height: 13px; }

/* --------------------------------------------------------------------------
   レスポンシブ
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .panel { left: 20px; width: 196px; }
  .carousel__arrow--prev { left: -8px; }
  .carousel__arrow--next { right: -8px; }
}

@media (max-width: 1024px) {
  /* パネルは畳んでヘッダーに任せる */
  .panel { display: none; }
  .mv { height: min(86vh, 760px); }
  .mv__dots { bottom: 40px; }

  .sns__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  /* 絶対配置をやめ、本文の下に写真2枚を横並びで置く（縦に積むと写真だけで1画面を使ってしまう） */
  .about { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 16px; padding-inline: 24px; }
  .about__inner { grid-column: 1 / -1; grid-row: 1; padding-inline: 0; }
  .about__photo { position: static; grid-row: 2; width: 100%; margin: 30px 0 0; aspect-ratio: 4 / 3; }
  .about__photo img { height: 100%; object-fit: cover; }
  .about__photo--left { grid-column: 1; }
  .about__photo--right { grid-column: 2; }
  .about__photo--left img { object-position: 50% 62%; }
  .about__photo--right img { object-position: 50% 72%; }

  .pcard { flex: 0 0 calc((100% - 30px) / 2); }

  .bleed, .bleed--reverse { grid-template-columns: 1fr; gap: 26px; }
  .bleed__text, .bleed--reverse .bleed__text { margin-inline: auto; }
  .bleed__media, .bleed--reverse .bleed__media { border-radius: 20px; margin-inline: 24px; }

  .zone { grid-template-columns: 1fr; gap: 34px; }
  .zone__photo { max-width: 420px; margin-inline: auto; }

  .menu__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .strip { grid-auto-flow: row; grid-template-columns: repeat(3, 1fr); }
  .strip li:nth-child(n+7) { display: none; }
}

@media (max-width: 767px) {
  .mv { height: min(76vh, 620px); min-height: 460px; }
  .mv__catch { font-size: clamp(23px, 6.4vw, 30px); letter-spacing: .14em; }
  .mv__ring { width: 74px; height: 74px; }
  .mv__wave { width: 92px; }
  .mv__dots { bottom: 30px; }

  .sec-ttl { margin-bottom: 30px; }
  /* 英字見出しは折り返さないので、狭い画面では文字を小さくして収める */
  .sec-ttl__en { font-size: clamp(28px, 8.6vw, 46px); }
  .cat-ttl__en { font-size: clamp(24px, 7.4vw, 40px); }
  .bleed__en { font-size: clamp(34px, 11vw, 50px); }
  .cat-ttl__ja, .sec-ttl__ja { margin-top: -.34em; }
  .sec-ttl__ja::before, .sec-ttl__ja::after { width: 9px; height: 15px; margin: 0 9px; }
  .cat__lead, .trial__lead { font-size: 15px; text-align: left; }
  .cat-ttl__icon { width: 52px; height: 52px; }
  .cat-ttl__icon svg { width: 25px; height: 25px; }

  .sns__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }

  .about { padding-block: 64px; }
  .about__text { margin-top: 20px; font-size: 15px; text-align: left; }

  .pcard { flex: 0 0 78%; }
  .carousel__arrow { width: 38px; height: 38px; top: 30%; }
  .carousel__arrow--prev { left: -6px; }
  .carousel__arrow--next { right: -6px; }

  .strip { grid-template-columns: repeat(2, 1fr); gap: 3px; }
  .strip li:nth-child(n+5) { display: none; }

  .bleed__media, .bleed--reverse .bleed__media { margin-inline: 20px; }
  .bleed__mark { width: 72px; height: 72px; }
  .trio { grid-template-columns: 1fr; gap: 14px; }
  .trio li { aspect-ratio: 16 / 10; }

  .zone__list a { grid-template-columns: 96px minmax(0, 1fr) 28px; gap: 14px; padding: 15px 2px; }
  .zone__ttl { font-size: 16px; }
  .zone__text { font-size: 13px; }
  .zone__arrow { width: 28px; height: 28px; }
  .zone__photo { border-radius: 34px; }

  .guide__list { grid-template-columns: 1fr; gap: 18px; }
  .guide__list a { aspect-ratio: 16 / 12; }

  .menu__list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .menu__ttl { font-size: 14.5px; }
  .banner { aspect-ratio: 16 / 9; }

  .more { min-width: 0; width: 100%; max-width: 300px; }
  .more-wrap { margin-top: 28px; }
}
