/* ==========================================================================
   top-pc.css — TOPページの PC・横長画面用（画面幅1024px以上だけ読み込む）
   方針は common-pc.css の冒頭を参照。

   進め方（2026-09-17〜）: セクションごとに段階的に PC レイアウトへ組み直す。
   - ステップ1: ヘッダー / FV / 右下の CTA   … 済
   - ステップ2: ブランドメッセージ / 6つのポイント / PLAN   … 済
   - ステップ3: スタジオについて / お客様の声 / キャンペーン / アクセス / フッター   … 済（仮の枠 .pc-pending は撤去）
   ========================================================================== */

/* ==== FV ====
   画面の高さいっぱい・横いっぱい。写真を縦3列の帯にして、スクロールに合わせて
   列ごとに違う速さ・向きで流す（スマホ版の「写真の帯が流れる」動きを横に広げたもの）。
   3列の中身は js/top.js が PC のときだけ組み立てる（.fv__pc）。
   スマホ版の写真の帯（.fv__images）は PC では隠す */
.fv-stage {
  width: 100%;
  /* スクロールしている間 FV が張り付いている長さ。
     画面1枚分（FV自体）＋ 写真が流れるための 100vh */
  height: calc(200vh - var(--pc-header-h));
}

.fv {
  top: var(--pc-header-h);
  width: 100%;
  height: calc(100vh - var(--pc-header-h));
}

.fv__images { display: none; }

.fv__pc {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 14px;
  padding: 0 14px;
}
/* 文字を読みやすくするため、写真の上にうっすら暗い幕 */
.fv__pc::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 50% 50%, rgba(0, 0, 0, 0.28), transparent 75%),
    linear-gradient(rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.06));
  pointer-events: none;
}
.fv__pc-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  will-change: transform;
}
/* PC 専用の写真（index.html の #fvPcPhotos）は縦長・横長まざってよく、切り抜かずに全体を出す。
   （PC 用が無いときに使うスマホ版の7枚は、元から 3:2 なので見え方は今までと同じ） */
.fv__pc-col img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

/* キャッチコピーは画面の中央に */
.fv-copy-stage {
  top: var(--pc-header-h);
  width: 100%;
  height: calc(200vh - var(--pc-header-h)) !important;
}
.fv-copy-sticky {
  top: var(--pc-header-h);
  height: calc(100vh - var(--pc-header-h));
  justify-content: center;
}
.fv-copy {
  width: auto;
  margin: 0;
  text-align: center;
}
.fv-copy__main {
  font-size: clamp(44px, 4.4vw, 72px);
  letter-spacing: -1px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}
.fv-copy__sub {
  margin-top: 20px;
  padding-left: 0;
  font-size: clamp(15px, 1.25vw, 20px);
  letter-spacing: 4px;
  line-height: 1.9;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}

/* ==========================================================================
   ステップ2: ブランドメッセージ / 6つのポイント / PLAN（2026-09-17）
   ========================================================================== */

/* ==== ブランドメッセージ ====
   見出しは中央。写真の帯は横いっぱい。
   下段は「いびつな丸の上にロゴと見出し」｜「本文」の2列 */
.brand-msg {
  margin: 130px 0 0;
  width: 100%;
}
.brand-msg__title {
  margin: 0;
  font-size: clamp(26px, 2.3vw, 36px);
  letter-spacing: 4px;
  text-align: center;
}
.brand-msg__slide {
  margin: 44px 0 0;
  width: 100%;
  height: clamp(300px, 27vw, 440px);
}
/* 帯が高くなったぶん流れる距離も長いので、少しゆっくりに */
.brand-msg__track { animation-duration: 148s; }

.brand-msg__lower {
  margin: 110px auto 0;
  width: min(1100px, calc(100% - 2 * var(--pc-gutter)));
}
.brand-msg__decor {
  inset: 50% auto auto 0;
  width: 540px;
  height: 434px;           /* 元の 438×352 と同じ比率 */
  transform: translateY(-50%);
}
.brand-msg__body {
  display: grid;
  grid-template-columns: 540px 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 70px;
  min-height: 434px;
  margin: 0;
  width: 100%;
  padding: 0;
}
.brand-msg__body .fv-logo {
  grid-column: 1;
  grid-row: 1;
  justify-self: center;
  align-self: end;
  margin: 0;
  zoom: 1.5;
}
.brand-msg__heading {
  grid-column: 1;
  grid-row: 2;
  justify-self: center;
  align-self: start;
  margin: 18px 0 0;
  font-size: clamp(24px, 2vw, 30px);
  text-align: center;
}
.brand-msg__text {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  margin: 0;
  font-size: clamp(17px, 1.35vw, 20px);
  letter-spacing: 2px;
  line-height: 2.1;
}

/* ==== 6つのポイント ====
   上に見出し。下は左に6つの項目（3×2のカード）、右に選んだ項目の写真と説明 */
.points {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas:
    "title  title"
    "grid   detail";
  column-gap: clamp(40px, 5vw, 90px);
  row-gap: 60px;
  align-items: center;
  margin: 160px auto 0;
  width: min(1100px, calc(100% - 2 * var(--pc-gutter)));
}
.points__title-wrap {
  grid-area: title;
  justify-self: center;
  zoom: 1.5;
}
.points__decor {
  left: -110px;
  bottom: -60px;
  width: 190px;
  height: 181px;
}
.points-grid {
  grid-area: grid;
  margin: 0;
  width: 100%;
  gap: clamp(14px, 1.6vw, 24px);
}
.points-grid__item {
  aspect-ratio: 1 / 1;
  gap: 14px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.points-grid__item:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); }
/* 選んでいる項目は、文字色（スマホ版と同じピンク）に加えて枠でも示す */
.points-grid__item--red { box-shadow: inset 0 0 0 3px var(--pink), 0 4px 14px rgba(0, 0, 0, 0.06); }
.points-grid__item img { height: clamp(42px, 3.6vw, 56px); }
.points-grid__item p {
  font-size: clamp(14px, 1.2vw, 18px);
  letter-spacing: 1px;
}

.points__detail {
  grid-area: detail;
  margin: 0;
  width: 100%;
}
.points__detail-photo {
  margin: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  border-radius: 24px;
}
.points__detail-label {
  margin: 22px 0 0;
  font-size: clamp(22px, 2vw, 30px);
}
.points__detail-text {
  margin: 14px 0 0;
  width: auto;
  font-size: clamp(15px, 1.2vw, 18px);
  letter-spacing: 1.4px;
  line-height: 1.95;
}

/* ==== PLAN ====
   カルーセルをやめて 3列×2段のグリッド。各カードの下にプラン名と説明を出す。
   カルーセル用の複製（aria-hidden のカード）と、スマホ版の「いま真ん中のプラン名・説明」「TAP!」は出さない */
.menu-section {
  margin: 170px auto 0;
  width: min(1200px, calc(100% - 2 * var(--pc-gutter)));
}
/* 見出しの後ろの大きないびつな丸（スマホ版と同じく、見出しを白抜きで重ねる） */
.menu-section__bg {
  left: 50%;
  top: -150px;
  transform: translateX(-50%);
}
.plan-viewport {
  margin: 0;
  width: 100%;
  min-height: 0;
  overflow: visible;
}
.plan-title {
  position: relative;
  left: auto;
  top: auto;
  margin: 0 auto;
  width: 360px;
  height: 120px;
}
.plan-title__main { font-size: 72px; letter-spacing: 10px; }
.plan-title__sub { top: 72%; font-size: 15px; letter-spacing: 16px; text-indent: 16px; }

.plan-cards {
  position: relative;
  left: auto;
  top: auto;
  height: auto;
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 70px clamp(24px, 3vw, 56px);
  /* カルーセルの JS が書き込む移動を打ち消す */
  transform: none !important;
  transition: none !important;
}
.maincard[aria-hidden="true"] { display: none; }

.maincard {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  filter: none;
}
.maincard__visual {
  position: relative;
  inset: auto;
  width: min(100%, 330px);
  aspect-ratio: 274 / 267;
  filter: drop-shadow(4px 3px 5px rgba(0, 0, 0, 0.25));
  transition: transform 0.25s ease;
}
.maincard:hover .maincard__visual { transform: translateY(-6px) rotate(-1deg); }

.maincard__name {
  display: block;
  margin-top: 18px;
  font-family: var(--font-pocchi);
  font-size: clamp(30px, 2.6vw, 42px);
  line-height: 1.2;
  color: var(--dark);
}
.maincard__desc {
  display: block;
  margin-top: 12px;
  max-width: 330px;
  font-family: var(--font-zenmaru);
  font-size: 15px;
  line-height: 1.85;
  color: #000;
  text-align: left;
}

.menu-section__decor-front,
.plan-name,
.tap-btn,
.menu-section__desc { display: none; }

/* 「下へ進む」ボタン */
.scroll-down-btn { margin-top: 90px; zoom: 1.3; }

/* ==========================================================================
   ステップ3: スタジオについて / お客様の声 / キャンペーン / アクセス（2026-09-17）
   フッターは全ページ共通なので common-pc.css に書いている
   ========================================================================== */

/* ==== スタジオについて ====
   左に写真（後ろにベージュのいびつな形）、右にバッジ・見出し・本文 */
.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas:
    "photo badge"
    "photo intro";
  grid-template-rows: auto 1fr;
  column-gap: clamp(50px, 6vw, 100px);
  margin: 170px auto 0;
  width: min(1100px, calc(100% - 2 * var(--pc-gutter)));
  overflow: visible;
}
/* 写真の左上にベージュ、右下にオレンジが覗くよう、写真の列（grid-area）を基準に一回り大きく敷く */
.about__bg-decor {
  grid-area: photo;
  inset: -40px -60px -40px -50px;
  width: auto;
  height: auto;
}
/* 共通の .img-full は object-fit: cover なので、枠の縦横比が素材と違うと左右の飾りが切れる。
   PC では枠いっぱいに合わせて伸ばす（素材自体も伸縮前提の作り） */
.about__bg-decor img { object-fit: fill; }
.about__photo {
  grid-area: photo;
  margin: 0;
  width: 100%;
  height: auto;
  align-self: center;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
}
.about-us-badge {
  grid-area: badge;
  align-self: end;
  margin: 0;
  zoom: 1.4;
}
.about__intro {
  grid-area: intro;
  margin: 34px 0 0;
  width: auto;
}
.about__intro-title {
  margin: 0;
  width: auto;
  font-size: clamp(26px, 2.2vw, 32px);
  text-align: left;
}
.about__intro-text {
  margin-top: 24px;
  width: auto;
  font-size: clamp(15px, 1.2vw, 18px);
  letter-spacing: 1.4px;
  line-height: 1.9;
}
.about__intro-text p { margin-bottom: 0.9em; }

/* ==== お客様の声 ====
   カルーセルのまま（金田さん指定）。緑の帯を横いっぱいにして、カードを大きく。
   マウスでも操作できるよう、下に「前へ／次へ」ボタンを出す（動きは js/top.js） */
.voice {
  margin-top: 170px;
  width: 100%;
  padding-bottom: 150px;
}
.voice__bg {
  top: 150px;
  bottom: 40px;
  width: 100%;
  height: auto;
}
.voice__title-wrap {
  margin: 0 auto;
  zoom: 1.5;
}
.voice-viewport {
  margin-top: 30px;
  width: 100%;
  height: 300px;
}
.voice-track { gap: 32px; }
.voice-card {
  width: 340px;
  height: 300px;
  border-radius: 28px;
  padding: 30px 30px;
  transition: transform 0.2s ease;
}
.voice-card:hover { transform: translateY(-4px); }
.voice-card__initial { width: 52px; height: 52px; font-size: 17px; }
.voice-card__plan { margin-top: 18px; font-size: 16px; }
.voice-card__text {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.8;
  -webkit-line-clamp: 5;
}
.voice-nav {
  position: absolute;
  bottom: 62px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: var(--green-leaf);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.2s ease;
}
.voice-nav:hover { transform: scale(1.08); }
.voice-nav--prev { left: calc(50% - 72px); }
.voice-nav--next { left: calc(50% + 16px); }
.voice__decor {
  left: auto;
  right: max(var(--pc-gutter), calc((100% - var(--pc-content)) / 2));
  top: auto;
  bottom: 0;
  width: 110px;
  height: 106px;
}

/* ==== イベント・キャンペーン ====
   横いっぱいに流れる帯のまま、カードを大きく */
.campaign {
  margin: 130px 0 0;
  width: 100%;
  padding-bottom: 0;
}
.campaign__title {
  margin: 0;
  font-size: clamp(26px, 2.3vw, 34px);
  letter-spacing: 2px;
}
.campaign-slider {
  margin-top: 44px;
  width: 100%;
  height: 300px;
}
.campaign-slider__track {
  gap: 32px;
  padding: 0;
  /* 幅の広い画面でも途切れないよう、js/top.js がカードを倍に増やしている。
     1枚あたりの流れる速さがスマホ版と近くなるよう長めに */
  animation-duration: 60s;
}
.campaign-card {
  width: 300px;
  height: 300px;
  border-radius: 32px;
}

/* ==== アクセス ====
   見出しの下を2列に。左に地図（スクロールしても画面に残る）、右に住所と道順 */
.access {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(50px, 6vw, 100px);
  align-items: start;
  margin: 150px auto 0;
  width: min(1100px, calc(100% - 2 * var(--pc-gutter)));
  padding: 150px 0 220px;
  overflow: visible;
}
/* ベージュのいびつな形は、2列の後ろに大きく敷く */
.access__bg {
  left: -14%;
  right: -14%;
  top: 40px;
  bottom: 40px;
  width: auto;
  overflow: hidden;
}
/* 素材の上部にある細い突き出し（スマホ版で見出しの後ろに来る部分）は、PC では外に出して見せない */
.access__bg img {
  inset: auto 0 0 0;
  height: 123%;
}
.access__decor-left {
  left: -40px;
  bottom: 90px;
  width: 190px;
  height: 62px;
}
.access__decor-right {
  left: auto;
  right: -30px;
  top: 150px;
  width: 90px;
  height: 86px;
}
.access-title {
  position: relative;
  left: auto;
  top: auto;
  grid-column: 1 / -1;
  justify-self: center;
  margin: 0 0 40px;
  zoom: 1.5;
}
.access-map {
  position: sticky;
  left: auto;
  top: calc(var(--pc-header-h) + 40px);
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
}
.access-text-block {
  margin: 0;
  width: auto;
}
.access-address {
  text-align: left;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1.7;
}
.access-title-pill {
  margin-top: 40px;
  height: 46px;
  border-radius: 12px;
  font-size: 17px;
  letter-spacing: 1px;
}
.access-route { padding: 26px 0 6px; }
.access-route__icon-row { justify-content: flex-start; }
.access-route__icon-row img { width: 26px; height: 26px; }
.access-route__label,
.access-route__note,
.access-parking-note { text-align: left; }
.access-route__label { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.access-route__note,
.access-parking-note { font-size: 15px; line-height: 1.85; }
.access-coin-parking {
  margin-top: 30px;
  text-align: left;
}
.access-coin-parking img {
  width: 100%;
  max-width: 400px;
  height: auto;
  aspect-ratio: 268 / 189;
  margin: 0 0 12px;
}
.access-coin-parking p { font-size: 15px; }
