/* =========================================
   初期styleリセット
========================================= */
.lout-grid.lout-breadcrumbs {
    display: none !important;
}
.lout-grid h1 {
    display: none;
    border-bottom: none;
}
.lout-grid h1:after{
    content:none;
}
.lout-grid h2,.lout-grid h3{
    border-bottom: none;
}
.lout-grid.lout-breadcrumbs {
    width: 960px;
}
.lout-followmenu {
    display: none;
}

header.lout-header.lout-grid {
    width: 960px;
}
.lout-grid {
    width: 100%;
}
.lout-footer .lout-footer-inner {
    width: 100%;
max-width: 960px;
    margin: auto;
}
.lout-hamburgerbtn{
    display: none;
}
.lout-contents {
    padding-left: 0px;
    padding-right: 0px;
}
.sp-br{
    display: none;
}

.css-1r2yhgy.evf3f5610{
    display: none;
}

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


/* =========================================
   SUITIA LP v4 — "建築誌のような静けさ"
   Suite × Utopia — 日常を、スイートに。
   -----------------------------------------
   設計思想
   ・日本語組版の職人技（palt詰め・縦組み見開き）
   ・セクションごとに解剖学的構造を変える
     A型: 全幅スプリット / B型: 写真に食い込むテキストプレート
   ・映画的なモーション（段階的立ち上がり・ズームの沈静）
     すべて純CSS。JSなし。非対応環境では静的に劣化。
   -----------------------------------------
   目次
   01. 変数・リセット
   02. ユーティリティ / 組版共通
   03. HERO — 非対称スプリット＋縦書きタグライン
   04. CONCEPT — 縦組みの見開き
   05. STANDARD INTRO ＋ 設備の目次
   06. EQUIPMENT — A型スプリット / B型プレート
   07. CTA ボタン / MID CTA
   08. PERFORMANCE — 段違いギャラリー
   09. TRUST
   10. CLOSING
   11. STICKY CTA（SPのみ）
   12. RESPONSIVE — TABLET (768px+)
   13. RESPONSIVE — DESKTOP (1024px+)
   14. モーション / アクセシビリティ / PRINT
========================================= */

/* =========================================
   01. 変数・リセット
========================================= */
#custom-lp-wrapper {
  /* --- カラー --- */
  --gold: #A98B54;                      /* シャンパンゴールド */
  --gold-soft: #C7AD7E;                 /* 暗い背景の上で使うゴールド */
  --gold-deep: #7C6136;                 /* 小さな文字用（コントラスト確保） */
  --gold-line: rgba(169, 139, 84, 0.4); /* ヘアライン */
  --ink: #221E18;                       /* 見出し・最重要テキスト */
  --text: #3F3B33;                      /* 本文 */
  --text-mid: #6B6459;                  /* 補足テキスト */
  --bg-white: #FFFFFF;
  --bg-linen: #F8F5EF;                  /* ごく淡い生成り */
  --bg-warm: #EFE8DC;                   /* 温かみのあるベージュ */
  --bg-dark: #1B1712;                   /* 深いブラウンブラック */
  --line: #E4DCCC;                      /* 境界線 */

  /* --- レイアウト --- */
  --max-w: 1360px;                      /* 仮想コンテナ（ウルトラワイド時の整列基準） */
  --section-pad: clamp(96px, 13vw, 176px);
  --side-pad: clamp(15px, 5vw, 48px);
  --edge: max(var(--side-pad), calc((100vw - var(--max-w)) / 2));

  /* --- フォント --- */
  --serif-en: "Shippori Mincho", "Noto Serif JP", serif;
  --serif-jp: "Noto Serif JP", "Yu Mincho", "游明朝", serif;
  --sans-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;

  /* --- モーションの共通イージング --- */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);

  font-family: var(--sans-jp);
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  line-height: 2.0;
  letter-spacing: 0.04em;
  background: var(--bg-white);
  overflow-x: hidden;
  overflow-x: clip; /* スクロールコンテナを作らず、view()タイムラインを正常化 */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- WordPress リセット --- */
#custom-lp-wrapper p:empty { display: none !important; }
#custom-lp-wrapper p { margin: 0; } /* UAのmargin-topも含め完全リセット（グリッド内でのズレ防止） */
#custom-lp-wrapper h1,
#custom-lp-wrapper h2,
#custom-lp-wrapper h3,
#custom-lp-wrapper h4 {
  display: block !important;
  visibility: visible !important;
  margin: 0;
  padding: 0;
  font-weight: normal;
}
#custom-lp-wrapper img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  display: block;
}
#custom-lp-wrapper figure {
  margin: 0;
  padding: 0;
}
#custom-lp-wrapper *,
#custom-lp-wrapper *::before,
#custom-lp-wrapper *::after {
  box-sizing: border-box;
}
#custom-lp-wrapper a {
  text-decoration: none;
  color: inherit;
}
#custom-lp-wrapper ::selection {
  background: rgba(169, 139, 84, 0.22);
}

/* --- テーマリセット --- */
.lout-grid { width: 100%; }
.lout-contents { padding-left: 0; padding-right: 0; }
.lout-grid h1 { display: none; border-bottom: none; }
.lout-grid h1:after { content: none; }
.lout-grid h2,
.lout-grid h3 { border-bottom: none; }

/* =========================================
   02. ユーティリティ / 組版共通
========================================= */
#custom-lp-wrapper .full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  position: relative;
}

/* 明朝の見出しは約物を詰める（プロポーショナルメトリクス） */
#custom-lp-wrapper .hero-lead,
#custom-lp-wrapper .hero-lead-body,
#custom-lp-wrapper .standard-intro-heading,
#custom-lp-wrapper .equip-name,
#custom-lp-wrapper .equip-copy,
#custom-lp-wrapper .mid-cta-text,
#custom-lp-wrapper .performance-heading,
#custom-lp-wrapper .voice-heading,
#custom-lp-wrapper .performance-row-label,
#custom-lp-wrapper .trust-heading,
#custom-lp-wrapper .closing-heading,
#custom-lp-wrapper .closing-lead {
  font-feature-settings: "palt" 1;
}

/* 英字見出し（セクションの起点）— 上に垂直の細いライン */
#custom-lp-wrapper .standard-intro-en::before,
#custom-lp-wrapper .performance-en::before,
#custom-lp-wrapper .voice-en::before,
#custom-lp-wrapper .trust-en::before,
#custom-lp-wrapper .closing-en::before {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  margin: 0 auto 28px;
  background: var(--gold);
}
#custom-lp-wrapper .trust-en::before,
#custom-lp-wrapper .closing-en::before {
  background: var(--gold-soft);
}

/* =========================================
   03. HERO — 非対称スプリット
========================================= */
#custom-lp-wrapper .hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-linen);
}
#custom-lp-wrapper .hero-inner {
  display: flex;
  flex-direction: column-reverse; /* SPは写真を先頭に */
}

/* --- テキストパネル：要素ごとに時間差で立ち上がる --- */
#custom-lp-wrapper .hero-panel {
  padding: 60px var(--side-pad) 72px;
}
#custom-lp-wrapper .hero-eyebrow,
#custom-lp-wrapper .hero-brand,
#custom-lp-wrapper .hero-sub,
#custom-lp-wrapper .hero-en,
#custom-lp-wrapper .hero-lead,
#custom-lp-wrapper .hero-lead-body,
#custom-lp-wrapper .hero-scroll {
  animation: hero-rise 1s var(--ease-out) both;
}
#custom-lp-wrapper .hero-eyebrow   { animation-delay: 0.15s; }
#custom-lp-wrapper .hero-brand     { animation-delay: 0.27s; }
#custom-lp-wrapper .hero-sub       { animation-delay: 0.42s; }
#custom-lp-wrapper .hero-en        { animation-delay: 0.52s; }
#custom-lp-wrapper .hero-lead      { animation-delay: 0.64s; }
#custom-lp-wrapper .hero-lead-body { animation-delay: 0.76s; }
#custom-lp-wrapper .hero-scroll    { animation-delay: 1.0s; }

#custom-lp-wrapper .hero-eyebrow {
  font-family: var(--sans-jp);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.34em;
  color: var(--gold-deep);
  margin-bottom: 30px;
  text-transform: uppercase;
}
#custom-lp-wrapper .hero-brand {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(40px, 14vw, 50px);
  font-weight: 100;
  letter-spacing: 0.12em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 18px;
}
#custom-lp-wrapper .hero-sub {
  font-family: var(--serif-jp);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--text-mid);
  margin-bottom: 12px;
}
#custom-lp-wrapper .hero-en {
  font-family: var(--serif-en);
  font-size: clamp(16px, 1.7vw, 19px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
  margin-bottom: 48px;
}
#custom-lp-wrapper .hero-lead::before {
  content: "";
  display: block;
  width: 52px;
  height: 1px;
  background: var(--gold-line);
  margin-bottom: 34px;
  transform-origin: left center;
  animation: line-grow 0.9s var(--ease-out) 0.95s both;
}
#custom-lp-wrapper .hero-lead {
  font-family: var(--serif-jp);
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2.1;
  color: var(--ink);
  margin-bottom: 18px;
}
#custom-lp-wrapper .hero-lead-body {
  font-family: var(--serif-jp);
  font-size: clamp(14px, 1.3vw, 15px);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 2.3;
  color: var(--text-mid);
}
#custom-lp-wrapper .hero-scroll {
  display: none; /* SPでは非表示（追従CTAがあるため） */
}

/* --- ビジュアル：写真はズームの沈静、パースは遅れて浮上 --- */
#custom-lp-wrapper .hero-visual {
  position: relative;
  background: var(--bg-linen);
}
#custom-lp-wrapper .hero-photo {
  position: relative;
  overflow: hidden; /* ズーム分をクロップ */
}
#custom-lp-wrapper .hero-photo img {
  width: 100%;
  height: min(62vh, 540px);
  object-fit: cover;
  object-position: center;
  animation: photo-settle 2.6s var(--ease-out) both;
}
/* 写真全体をわずかに落ち着かせ、右端はタグライン用に濃く */
#custom-lp-wrapper .hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(20, 16, 10, 0.62) 0%,
    rgba(20, 16, 10, 0.14) 34%,
    rgba(20, 16, 10, 0.08) 100%
  );
}
#custom-lp-wrapper .hero-tagline {
  position: absolute;
  z-index: 2;
  top: 44px;
  right: clamp(20px, 6vw, 48px);
  writing-mode: vertical-rl;
  font-family: var(--serif-jp);
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 400;
  letter-spacing: 0.44em;
  line-height: 1;
  color: #FFFFFF;
  animation: fade-in 1.6s ease 0.9s both;
}

/* =========================================
   04. CONCEPT — 縦組みの見開き
========================================= */
#custom-lp-wrapper .concept {
  padding: var(--section-pad) var(--side-pad);
  background: var(--bg-white);
}
/* --- 情景写真3枚：SPは段違いの2段組、PCは余白に浮かべる --- */
#custom-lp-wrapper .concept-stage {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;                 /* SP：フレックス＋割合指定のみ。崩れる要素を持たない */
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
#custom-lp-wrapper .concept-photo {
  overflow: hidden;
  background: var(--bg-warm);    /* 画像が未設定・読込失敗でも空間が保たれる */
}
#custom-lp-wrapper .concept-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 枠の比率はfigure側で確定させる（画像の読込状態に依存しない） */
/* 視覚順: 上段=p1+p3(段違い) → 下段=p2 → 本文。orderで折返し順を制御 */
#custom-lp-wrapper .concept-photo--1 { order: 1; width: 55%;  aspect-ratio: 3 / 4; }
#custom-lp-wrapper .concept-photo--3 { order: 2; width: 41%;  aspect-ratio: 4 / 5;  margin-top: 40px; }
#custom-lp-wrapper .concept-photo--2 { order: 3; width: 76%;  aspect-ratio: 16 / 10; margin: 16px 0 0 auto; }

#custom-lp-wrapper .concept-inner {
  order: 4;
  width: 100%;
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: clamp(56px, 9vw, 80px) auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
#custom-lp-wrapper .concept-en {
  font-family: var(--serif-en);
  font-size: clamp(17px, 1.9vw, 20px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.14em;
  color: var(--gold-deep);
  margin-bottom: clamp(44px, 6vw, 72px);
}
#custom-lp-wrapper .concept-spread {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(52px, 6vw, 72px);
}
#custom-lp-wrapper .concept-heading {
  writing-mode: vertical-rl;
  font-family: var(--serif-jp);
  font-size: clamp(24px, 2.7vw, 30px);
  font-weight: 500;
  letter-spacing: 0.3em;
  line-height: 2.3;
  color: var(--ink);
  margin-bottom: clamp(48px, 6vw, 64px);
}
#custom-lp-wrapper .concept-body p {
  font-family: var(--serif-jp);
  font-size: clamp(15px, 1.7vw, 17px);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2.2;
  color: var(--text-mid);
}
#custom-lp-wrapper .concept-body p + p {
  margin-top: 0;
  margin-block-start: 22px; /* 縦組み時は右→左の字間になる論理マージン */
}
#custom-lp-wrapper .concept-accent {
  width: 1px;
  height: 56px;
  background: var(--gold);
  margin: 0 auto 52px;
}
#custom-lp-wrapper .concept-closing {
  font-size: clamp(14px, 1.5vw, 15px);
  letter-spacing: 0.06em;
  line-height: 2.5;
  color: var(--text-mid);
}

/* =========================================
   05. STANDARD INTRO ＋ 目次
========================================= */
#custom-lp-wrapper .standard-intro {
  background: var(--bg-warm);
  padding: var(--section-pad) var(--side-pad);
  text-align: center;
}
#custom-lp-wrapper .standard-intro-inner {
  max-width: 760px;
  margin: 0 auto;
}
#custom-lp-wrapper .standard-intro-en {
  font-family: var(--serif-en);
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 400;
  letter-spacing: 0.24em;
  color: var(--gold-deep);
  margin-bottom: 30px;
}
#custom-lp-wrapper .standard-intro-heading {
  font-family: var(--serif-jp);
  font-size: clamp(28px, 3.9vw, 46px);
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 34px;
}
#custom-lp-wrapper .standard-intro-lead {
  font-size: clamp(14px, 1.5vw, 15px);
  letter-spacing: 0.06em;
  line-height: 2.4;
  color: var(--text-mid);
  margin-bottom: clamp(52px, 7vw, 76px);
}

/* --- 5つの設備の目次 --- */
#custom-lp-wrapper .standard-index {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 26px;
}
#custom-lp-wrapper .standard-index li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans-jp);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
#custom-lp-wrapper .standard-index-num {
  font-family: var(--serif-en);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold);
  line-height: 1;
}

/* =========================================
   06. EQUIPMENT — A型スプリット / B型プレート
========================================= */
#custom-lp-wrapper .equip {
  background: var(--bg-white);
}
#custom-lp-wrapper .equip--kitchen,
#custom-lp-wrapper .equip--flooring,
#custom-lp-wrapper .equip--toilet {
  background: var(--bg-linen);
}
#custom-lp-wrapper .equip-split {
  display: grid;
  grid-template-columns: 1fr;
}
#custom-lp-wrapper .equip-img {
  overflow: hidden;
  background: var(--bg-warm);
}
#custom-lp-wrapper .equip-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
#custom-lp-wrapper .equip-text {
  padding: clamp(52px, 9vw, 80px) var(--side-pad) clamp(64px, 10vw, 96px);
}
#custom-lp-wrapper .equip-head {
  margin-bottom: 26px;
}
#custom-lp-wrapper .equip-num {
  display: block;
  font-family: var(--serif-en);
  font-size: clamp(64px, 9vw, 104px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.82;
  color: var(--gold);
  opacity: 0.34;
  margin: 0 0 22px -3px;
}
#custom-lp-wrapper .equip-cat {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans-jp);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
#custom-lp-wrapper .equip-cat::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold-line);
  margin-right: 14px;
}
#custom-lp-wrapper .equip-name {
  font-family: var(--serif-jp);
  font-size: clamp(19px, 2.2vw, 23px);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.9;
  color: var(--ink);
  margin-bottom: 22px;
}
#custom-lp-wrapper .equip-copy {
  font-family: var(--serif-jp);
  font-size: clamp(15px, 1.8vw, 17px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.9;
  color: var(--gold-deep);
  margin-bottom: 20px;
}
#custom-lp-wrapper .equip-desc {
  font-size: clamp(14px, 1.5vw, 15px);
  letter-spacing: 0.05em;
  line-height: 2.2;
  color: var(--text-mid);
  max-width: 34em;
}

/* --- B型（プレート）：SPでは写真に白いカードが重なる --- */
#custom-lp-wrapper .equip--plate .equip-split {
  padding-bottom: clamp(56px, 9vw, 80px);
}
#custom-lp-wrapper .equip--plate .equip-text {
  position: relative;
  z-index: 2;
  background: var(--bg-white);
  margin: -64px var(--side-pad) 0;
  padding: 44px clamp(24px, 6vw, 40px) 0;
}

/* =========================================
   07. CTA ボタン / MID CTA
========================================= */
#custom-lp-wrapper .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans-jp);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-align: center;
  min-width: 300px;
  min-height: 62px;
  padding: 0 36px;
  border-radius: 0;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}
/* 文字の右に伸びる細いライン（ホバーで伸長） */
#custom-lp-wrapper .cta-btn::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  margin-left: 18px;
  transform: scaleX(0.55);
  transform-origin: left center;
  transition: transform 0.35s var(--ease-out);
}
#custom-lp-wrapper .cta-btn:hover::after {
  transform: scaleX(1);
}
#custom-lp-wrapper .cta-btn--primary {
  background: var(--ink);
  color: #FFFFFF;
}
#custom-lp-wrapper .cta-btn--primary:hover {
  background: var(--gold-deep);
}
#custom-lp-wrapper .cta-btn--secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(34, 30, 24, 0.35);
}
#custom-lp-wrapper .cta-btn--secondary:hover {
  border-color: var(--ink);
  background: rgba(34, 30, 24, 0.04);
}

/* 暗い背景（CLOSING）では反転 */
#custom-lp-wrapper .closing .cta-btn--primary {
  background: #FFFFFF;
  color: var(--ink);
}
#custom-lp-wrapper .closing .cta-btn--primary:hover {
  background: var(--bg-warm);
}
#custom-lp-wrapper .closing .cta-btn--secondary {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.55);
}
#custom-lp-wrapper .closing .cta-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.9);
}

/* --- CTA直前のキャンペーンバナー --- */
#custom-lp-wrapper .cta-banner {
  display: block;
  max-width: 620px;
  margin: 0 auto clamp(44px, 6vw, 56px);
  transition: opacity 0.3s ease;
}
#custom-lp-wrapper .cta-banner:hover {
  opacity: 0.88;
}
#custom-lp-wrapper .cta-banner img {
  width: 100%;
  height: auto;
}

/* --- MID CTA --- */
#custom-lp-wrapper .mid-cta {
  background: var(--bg-warm);
  padding: clamp(96px, 12vw, 150px) var(--side-pad);
  text-align: center;
}
#custom-lp-wrapper .mid-cta-inner {
  max-width: 620px;
  margin: 0 auto;
}
#custom-lp-wrapper .mid-cta-text {
  font-family: var(--serif-jp);
  font-size: clamp(17px, 2.3vw, 21px);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2.2;
  color: var(--ink);
  margin-bottom: 48px;
}

/* =========================================
   08. PERFORMANCE — 仕様書スタイルの行組み
   ヘアラインで区切ったスペックリスト。
   どの画面幅・文章量でも崩れない堅牢な構造。
========================================= */
#custom-lp-wrapper .performance {
  background: var(--bg-linen);
  padding: var(--section-pad) var(--side-pad);
}
#custom-lp-wrapper .performance-inner {
  max-width: 1080px;
  margin: 0 auto;
}
#custom-lp-wrapper .performance-head {
  text-align: center;
  margin-bottom: clamp(56px, 7vw, 88px);
}
#custom-lp-wrapper .performance-en {
  font-family: var(--serif-en);
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 28px;
}
#custom-lp-wrapper .performance-heading {
  font-family: var(--serif-jp);
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.9;
  color: var(--ink);
}
#custom-lp-wrapper .performance-lead {
  font-size: clamp(14px, 1.5vw, 15px);
  letter-spacing: 0.06em;
  line-height: 2.4;
  color: var(--text-mid);
  margin: 30px auto 0;
  max-width: 680px;
}
#custom-lp-wrapper .performance-list {
  border-top: 1px solid var(--line);
}
#custom-lp-wrapper .performance-row {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: clamp(36px, 6vw, 56px) 0;
  border-bottom: 1px solid var(--line);
}
#custom-lp-wrapper .performance-row-label {
  order: 1;
  font-family: var(--serif-jp);
  font-size: clamp(17px, 1.9vw, 19px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.8;
  color: var(--ink);
}
#custom-lp-wrapper .performance-row-label::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin-top: 16px;
}
#custom-lp-wrapper .performance-row-img {
  order: 2;
  overflow: hidden;
  background: var(--bg-warm);
}
#custom-lp-wrapper .performance-row-img img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
#custom-lp-wrapper .performance-row-desc {
  order: 3;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 2.15;
  color: var(--text-mid);
}

/* =========================================
   08b. OWNER'S VOICE — オーナー様インタビュー
========================================= */
#custom-lp-wrapper .voice {
  background: var(--bg-white);
  padding: var(--section-pad) var(--side-pad);
  text-align: center;
}
#custom-lp-wrapper .voice-inner {
  max-width: 760px;
  margin: 0 auto;
}
#custom-lp-wrapper .voice-en {
  font-family: var(--serif-en);
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 28px;
}
#custom-lp-wrapper .voice-heading {
  font-family: var(--serif-jp);
  font-size: clamp(23px, 3vw, 30px);
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.9;
  color: var(--ink);
  margin-bottom: clamp(48px, 6vw, 64px);
}
#custom-lp-wrapper .voice-embed {
  display: flex;
  justify-content: center;
}
/* TikTok側のiframeに置換される前後どちらでも崩れないようにリセット */
#custom-lp-wrapper .voice-embed blockquote.tiktok-embed {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  width: 100%;
}
/* 埋め込みの最小幅325pxに満たない極小画面では左右の余白を開放 */
@media (max-width: 380px) {
  #custom-lp-wrapper .voice-embed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}
@media (max-width: 736px) {
  .mod-movie iframe {
    height: 480px;
  }
#custom-lp-wrapper .voice-embed {
    display: flex;
    justify-content: center;
    height: 520px;
}
}

/* =========================================
   09. TRUST — 信頼の裏付け
========================================= */
#custom-lp-wrapper .trust {
  background: var(--bg-dark);
  padding: var(--section-pad) var(--side-pad);
  text-align: center;
}
#custom-lp-wrapper .trust-inner {
  max-width: 960px;
  margin: 0 auto;
}
#custom-lp-wrapper .trust-en {
  font-family: var(--serif-en);
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 28px;
}
#custom-lp-wrapper .trust-heading {
  font-family: var(--serif-jp);
  font-size: clamp(23px, 3vw, 30px);
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.9;
  color: #F5F1E8;
  margin-bottom: clamp(64px, 9vw, 96px);
}
#custom-lp-wrapper .trust-numbers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: clamp(64px, 9vw, 96px);
}
#custom-lp-wrapper .trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
#custom-lp-wrapper .trust-num {
  font-family: var(--serif-en);
  font-size: clamp(60px, 7.5vw, 96px);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--gold-soft);
  line-height: 0.9;
}
#custom-lp-wrapper .trust-unit {
  font-family: var(--serif-jp);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-left: 8px;
}
#custom-lp-wrapper .trust-label {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.9;
}
#custom-lp-wrapper .trust-closing {
  font-size: clamp(14px, 1.5vw, 15px);
  letter-spacing: 0.06em;
  line-height: 2.6;
  color: rgba(255, 255, 255, 0.75);
}

/* =========================================
   10. CLOSING CTA
========================================= */
#custom-lp-wrapper .closing {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#custom-lp-wrapper .closing-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--bg-dark);
  overflow: hidden;
}
#custom-lp-wrapper .closing-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#custom-lp-wrapper .closing-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(21, 17, 11, 0.55) 0%,
    rgba(21, 17, 11, 0.7) 100%
  );
}
#custom-lp-wrapper .closing-body {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: clamp(112px, 16vw, 180px) var(--side-pad);
  color: #FFFFFF;
  max-width: 700px;
  margin: 0 auto;
}
#custom-lp-wrapper .closing-en {
  font-family: var(--serif-en);
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 30px;
}
#custom-lp-wrapper .closing-heading {
  font-family: var(--serif-jp);
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.9;
  color: #FFFFFF;
  margin-bottom: clamp(40px, 5vw, 56px);
}
#custom-lp-wrapper .closing-copy {
  font-size: clamp(14px, 1.5vw, 15px);
  letter-spacing: 0.06em;
  line-height: 2.7;
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 30px;
}
#custom-lp-wrapper .closing-lead {
  font-family: var(--serif-jp);
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2.3;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: clamp(56px, 7vw, 72px);
}
#custom-lp-wrapper .closing-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* =========================================
   11. STICKY CTA（SPのみ）
========================================= */
#custom-lp-wrapper .sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(248, 245, 239, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  text-align: center;
}
#custom-lp-wrapper .sticky-cta-btn {
  display: block;
  background: var(--ink);
  color: #FFFFFF;
  font-family: var(--sans-jp);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  padding: 17px 24px;
  border-radius: 0;
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
  transition: background-color 0.3s ease;
}
#custom-lp-wrapper .sticky-cta-btn:hover {
  background: var(--gold-deep);
}

/* =========================================
   12. RESPONSIVE — TABLET (768px+)
========================================= */
@media (min-width: 768px) {

  /* --- Hero：パネル×写真の非対称スプリット --- */
  #custom-lp-wrapper .hero-inner {
    flex-direction: row;
    min-height: min(94vh, 940px);
  }
  #custom-lp-wrapper .hero-panel {
    width: 46%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: clamp(72px, 9vw, 120px);
    padding-bottom: clamp(72px, 9vw, 120px);
    padding-left: var(--edge);
    padding-right: clamp(72px, 6vw, 104px);
  }
  #custom-lp-wrapper .hero-brand {
    font-size: clamp(56px, 4.8vw, 70px);
  }
  #custom-lp-wrapper .hero-visual {
    width: 54%;
  }
  #custom-lp-wrapper .hero-photo {
    position: absolute;
    inset: 0;
  }
  #custom-lp-wrapper .hero-photo img {
    height: 100%;
  }
  #custom-lp-wrapper .hero-tagline {
    top: 50%;
    right: clamp(28px, 3.5vw, 60px);
    transform: translateY(-50%);
  }
  /* Scrollの誘い */
  #custom-lp-wrapper .hero-scroll {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: clamp(52px, 6vw, 80px);
  }
  #custom-lp-wrapper .hero-scroll span {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold-deep);
    line-height: 1;
  }

  /* --- Concept：縦書き見出し×縦書き本文の「見開き」 --- */
  #custom-lp-wrapper .concept-spread {
    flex-direction: row-reverse; /* 見出しを右、本文をその左に（右→左に読む） */
    justify-content: center;
    align-items: flex-start;     /* 天付きで揃える */
    gap: clamp(64px, 8vw, 112px);
  }
  #custom-lp-wrapper .concept-heading {
    margin-bottom: 0;
  }
  #custom-lp-wrapper .concept-body {
    writing-mode: vertical-rl;
    text-align: start;
  }
  #custom-lp-wrapper .concept-body p {
    font-size: clamp(15px, 1.6vw, 16px);
    letter-spacing: 0.18em;
    line-height: 1.9;
  }
  #custom-lp-wrapper .concept-body p + p {
    margin-block-start: 36px;
  }

  /* --- 目次：PCは1行に。コンテナ幅(760px)から解放して中央配置 --- */
  #custom-lp-wrapper .standard-index {
    gap: 14px 0;
    width: max-content;
    max-width: calc(100vw - var(--side-pad) * 2);
    margin-left: 50%;
    transform: translateX(-50%);
  }
  #custom-lp-wrapper .standard-index li {
    padding: 2px clamp(12px, 1.8vw, 30px);
  }
  #custom-lp-wrapper .standard-index li + li {
    border-left: 1px solid var(--gold-line);
  }

  /* --- Equipment A型：55/45の非対称2カラム --- */
  #custom-lp-wrapper .equip-split {
    grid-template-columns: 11fr 9fr;
    min-height: 580px;
  }
  #custom-lp-wrapper .equip-img img {
    aspect-ratio: auto;
    height: 100%;
    min-height: 580px;
  }
  #custom-lp-wrapper .equip-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(56px, 7vw, 104px) clamp(40px, 5.5vw, 88px);
  }

  /* --- Equipment B型：写真に食い込む白いテキストプレート --- */
  #custom-lp-wrapper .equip--plate .equip-split {
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
    min-height: 0;
    padding: clamp(64px, 8vw, 120px) 0;
  }
  #custom-lp-wrapper .equip--plate .equip-img {
    grid-column: 4 / 13;
    grid-row: 1;
  }
  #custom-lp-wrapper .equip--plate .equip-img img {
    aspect-ratio: 16 / 10;
    height: 100%;
    min-height: 520px;
  }
  #custom-lp-wrapper .equip--plate .equip-text {
    grid-column: 1 / 7;
    grid-row: 1;
    z-index: 2;
    background: var(--bg-white);
    margin: 0;
    margin-left: var(--edge);
    padding: clamp(48px, 5vw, 84px) clamp(44px, 4.5vw, 72px);
  }

  /* --- Performance：仕様書スタイルの3カラム行（名称/説明/写真） --- */
  #custom-lp-wrapper .performance-row {
    display: grid;
    grid-template-columns: minmax(200px, 0.9fr) 1.5fr clamp(200px, 23vw, 280px);
    gap: clamp(32px, 4.5vw, 64px);
    align-items: start;
    padding: clamp(44px, 5vw, 60px) 0;
  }
  #custom-lp-wrapper .performance-row-label,
  #custom-lp-wrapper .performance-row-img,
  #custom-lp-wrapper .performance-row-desc {
    order: 0; /* DOM順＝名称→説明→写真 の3カラムに戻す */
  }

  /* --- Trust：横並び＋仕切り線 --- */
  #custom-lp-wrapper .trust-numbers {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  #custom-lp-wrapper .trust-item {
    padding: 12px 0px;
  }
  #custom-lp-wrapper .trust-item:nth-child(n+2) {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  /* --- Closing：ボタン横並び --- */
  #custom-lp-wrapper .closing-cta-group {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }

  /* --- Sticky CTA：PCでは非表示 --- */
  #custom-lp-wrapper .sticky-cta {
    display: none;
  }
}

/* =========================================
   13. RESPONSIVE — DESKTOP (1024px+)
========================================= */
@media (min-width: 1024px) {
  /* --- Concept：写真を余白に浮かべる（スケッチの非対称配置） --- */
  #custom-lp-wrapper .concept-stage {
    display: block;
  }
  #custom-lp-wrapper .concept-photo {
    position: absolute;
    z-index: 1;
  }
  #custom-lp-wrapper .concept-photo--1 {
    left: 13%;
    top: clamp(0px, 1vw, 16px);
    width: clamp(150px, 12.5vw, 185px);
    margin: 0;
  }
  #custom-lp-wrapper .concept-photo--2 {
    left: 0;
    bottom: 9%;
    width: clamp(215px, 21vw, 300px);
    margin: 0;
  }
  #custom-lp-wrapper .concept-photo--3 {
    right: 0;
    top: 26%;
    width: clamp(235px, 24vw, 350px);
    aspect-ratio: 4 / 3;          /* PCでは横型に */
    margin: 0;
    outline: 1px solid var(--gold-line);
    outline-offset: 10px;
  }
  #custom-lp-wrapper .concept-inner {
    margin-top: 0;
  }

  #custom-lp-wrapper .equip-split {
    min-height: 640px;
  }
  #custom-lp-wrapper .equip-img img {
    min-height: 640px;
  }
  #custom-lp-wrapper .equip--plate .equip-split {
    min-height: 0;
  }
  #custom-lp-wrapper .equip--plate .equip-img img {
    min-height: 560px;
  }
  #custom-lp-wrapper .closing {
    min-height: 96vh;
  }
}

/* =========================================
   14. モーション / アクセシビリティ / PRINT
========================================= */
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes line-grow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes photo-settle {
  from { opacity: 0.2; transform: scale(1.05); }
  to   { opacity: 1;   transform: scale(1); }
}
@keyframes zoom-settle {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
@keyframes photo-drift {
  from { transform: translateY(var(--drift-a, 24px)); }
  to   { transform: translateY(var(--drift-b, -24px)); }
}
@keyframes rise-in {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* スクロール連動の控えめな演出（対応ブラウザのみ／JS不使用） */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    /* フェードアップ */
    #custom-lp-wrapper .concept-inner,
    #custom-lp-wrapper .standard-intro-inner,
    #custom-lp-wrapper .equip-text,
    #custom-lp-wrapper .mid-cta-inner,
    #custom-lp-wrapper .performance-head,
    #custom-lp-wrapper .performance-row,
    #custom-lp-wrapper .voice-inner,
    #custom-lp-wrapper .trust-inner,
    #custom-lp-wrapper .closing-body {
      animation: rise-in 1s ease-out both;
      animation-timeline: view();
      animation-range: entry 10% entry 45%;
    }
    /* 写真はズームがゆっくり沈静していく */
    #custom-lp-wrapper .equip-img img {
      animation: zoom-settle 1s linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 90%;
    }
    #custom-lp-wrapper .closing-bg img {
      animation: zoom-settle 1s linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 45%;
    }
  }
}

/* Conceptの写真：スクロールに応じて速度差で漂う（PCのみ） */
@media (prefers-reduced-motion: no-preference) and (min-width: 1024px) {
  @supports (animation-timeline: view()) {
    #custom-lp-wrapper .concept-photo {
      animation: photo-drift linear both;
      animation-timeline: view();
      animation-range: entry 0% exit 100%;
    }
    #custom-lp-wrapper .concept-photo--1 { --drift-a: 30px; --drift-b: -42px; }
    #custom-lp-wrapper .concept-photo--2 { --drift-a: 14px; --drift-b: -18px; }
    #custom-lp-wrapper .concept-photo--3 { --drift-a: 44px; --drift-b: -60px; }
  }
}

#custom-lp-wrapper a:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}
#custom-lp-wrapper .trust a:focus-visible,
#custom-lp-wrapper .closing a:focus-visible {
  outline-color: var(--gold-soft);
}

@media (prefers-reduced-motion: reduce) {
  #custom-lp-wrapper *,
  #custom-lp-wrapper *::before,
  #custom-lp-wrapper *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media print {
  #custom-lp-wrapper .sticky-cta {
    display: none !important;
  }
  #custom-lp-wrapper .full-bleed {
    width: 100%;
    margin-left: 0;
  }
}
