@charset "UTF-8";
/* ================================================================
   C2案：ネイビー×白×ゴールド
   ヘッダー・フッター：jutakutenjijo.net 既存サイトのトンマナに統一
   FV：横長バナー型（左テキスト＋右住宅写真）
   CONCEPT以降：C案ベースを維持
   ================================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}
body {
    background: #f5f3f0;
    color: #3e3a35;
    font-family: 'Noto Sans JP', sans-serif;
    overflow-x: visible;
    -webkit-font-smoothing: antialiased;
}
img {
    display: block;
    max-width: 100%;
}

li {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.sp {
    display: inline;
}
.pc {
    display: none;
}
@media(min-width:768px) {
    .sp {
        display: none;
    }
    .pc {
        display: inline;
    }
}
/* =====================
   TOKENS
   ===================== */ :root {
    /* ── 既存サイト jutakutenjijo.net カラー ── */
    --accent: #9C3B3B; /* ワイン系（CTA・hover） */
    --accent-dark: #7A2E2E;
    --accent-hover: #B86E2D; /* オレンジ系（数字強調・hover on dark） */
    --site-navy: #1e3a5f; /* メインネイビー */
    --site-navy-dk: #132a44;
    /* ── ゴールド → サイト色に統一 ── */
    /* ゴールドは廃止。アクセントはネイビーまたはワインで統一 */
    --gold: #1e3a5f; /* eyebrow・ラベル → ネイビー */
    --gold-light: #9C3B3B; /* 数字強調 → ワイン */
    --gold-dim: rgba(30, 58, 95, .2); /* ボーダー薄 → ネイビー薄 */
    --gold-faint: rgba(30, 58, 95, .1); /* ボーダー極薄 → ネイビー極薄 */
    /* KPIストリップ内（ネイビー背景上）は明るめで視認性確保 */
    --hero-gold: #ffffff; /* KPI背景上のラベル → 白 */
    --hero-gold-lt: #ffffff; /* KPI数値 → 白 */
    /* LP用ネイビー */
    --navy: #1a2540;
    --navy-dark: #131c34;
    /* 背景 */
    --bg-base: #f5f3f0;
    --bg-alt: #ebe8e3;
    /* テキスト（既存サイトに合わせる） */
    --text-head: #2f2b28; /* 既存サイト h2 color */
    --text-body: #3e3a35; /* 既存サイト body color */
    --text-muted: #5a534c;
    --serif: 'Noto Serif JP', serif;
    --sans: 'Noto Sans JP', sans-serif;
    /* ボタン */
    --btn-bg: #1e3a5f;
    --btn-color: #ffffff;
}
/* =====================
   UTILITIES
   ===================== */
.eyebrow {
    font-size: 12px;
    letter-spacing: .34em;
    color: var(--gold);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 12px;
}
.eyebrow::after {
    content: '';
    flex: 0 0 36px;
    height: 1px;
    background: var(--gold-dim);
}
.eyebrow--center {
    justify-content: center;
}
.eyebrow--center::after {
    display: none;
}
.serif-head {
    font-family: var(--serif);
    font-weight: 400;
    color: var(--text-head);
    line-height: 1.7;
    letter-spacing: .03em;
}
/* ================================================================
   HEADER  ── 既存サイト jutakutenjijo.net のトンマナに統一
   背景：#1e3a5f（ネイビー）、ロゴ白、ナビ白、hover時エンジ
   ================================================================ */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: #1e3a5f;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .15);
    transform: translateZ(0);
}
.header-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
/* ロゴ */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
/* ロゴ差し替え：.logo-img-wrap内の <img src=""> を正式ロゴパスに変更 */
.logo-img-wrap {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 4px;
}
.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.logo-icon-fallback {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #fff;
    stroke-width: 1.3;
}
.logo-name {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: #fff;
    line-height: 1.2;
}
/* デスクトップナビ */
.site-nav {
    display: none;
}
/* ヘッダーCTA */
.header-cta {
    padding: 8px 20px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    cursor: pointer;
    white-space: nowrap;
    transition: background .25s, transform .2s;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .2);
}
.header-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}
.header-cta {
    display: none;
}

@media (min-width: 768px) {
    .header-cta {
        display: inline-flex;
    }
}
/* バーガーボタン（SP） */
.header-burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    cursor: pointer;
    margin-left: 16px;
}
.header-burger span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}
@media(min-width:768px) {
    .header-inner {
        padding: 0 60px 0 30px;
        height: 70px;
    }
    .logo-name {
        font-size: 1.5rem;
    }
    .site-nav {
        display: flex;
        gap: 4px;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .site-nav a {
        text-decoration: none;
        color: #fff;
        font-size: .88rem;
        font-weight: 500;
        letter-spacing: .04em;
        padding: 7px 14px;
        border-radius: 6px;
        transition: background .25s;
        white-space: nowrap;
    }
    .site-nav a:hover {
        background: var(--accent);
    }
    .header-cta {
        font-size: 14px;
        padding: 9px 24px;
    }
    .header-burger {
        display: none;
    }
}
@media(min-width:1025px) {
    .header-inner {
        padding: 0 60px 0 30px;
    }
    .logo-name {
        font-size: 1.6rem;
    }
    .site-nav a {
        font-size: .9rem;
    }
}
/* ================================================================
   HERO（FV）── 横長バナー型
   左：テキスト  右：住宅写真
   SP：テキスト上・写真下の縦積み
   ================================================================ */
.hero {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* SP：縦積み（テキスト→写真の順） */
    background: #fff;
}

/* 写真エリア（SP：テキストの下） */
.hero-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/8;
    overflow: hidden;
    flex-shrink: 0;
}
.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
}
/* 写真上に薄いネイビーオーバーレイ（SP用） */
.hero-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(30, 58, 95, .18);
}
/* テキストエリア（SP：下部） */
.hero-text {
    background: #fff;
    padding: 20px 20px 36px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
/* バッジ */
.hero-badge {
    display: inline-flex;
    flex-direction: column;
    align-self: flex-start;
    background: var(--site-navy);
    padding: 10px 16px;
    margin-bottom: 24px;
    gap: 3px;
    border-radius: 4px;
    min-width:auto;
    width:fit-content;
}
.hero-badge-tag {
    font-size: 11px;
    letter-spacing: .2em;
    color: #fff;
    font-weight: 700;
   background: rgba(255, 255, 255, .2);
    /*background:  var( --accent-hover);*/
    display: inline-block;
    padding: 2px 8px;
    border-radius: 2px;
    align-self: flex-start;
}
.hero-badge-main {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .08em;
    line-height: 1.75;
}
.hero-badge-price {
    font-family: var(--serif);
    font-size: 13px;
    color: rgba(255, 255, 255, .9);
    letter-spacing: .04em;
}
/* eyebrow */
.hero-eyebrow {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .24em;
    color: var(--site-navy);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-eyebrow::before {
    content: '';
    width: 18px;
    height: 1px;
    background: var(--site-navy);
}
/* H1 */

.hero-h1 {
        font-family: var(--serif);
       font-size:clamp(32px,8vw,42px);
        margin-bottom: 18px;
        line-height:1.5;
        letter-spacing: .04em;
         word-break: keep-all;
    }
     .hero-h1-sub{
        font-size: .82em;
        font-weight: 600;
    }
    .hero-h1-main{
        color: var(--accent);
        font-weight: 600;
    }


/* リード */
.hero-lead {
    font-size: 14px;
    font-weight: 400;
    line-height: 2.0;
    color: #5a534c;
    letter-spacing: .08em;
    margin-bottom: 20px;
}
.hero-lead strong{
    color:var(--site-navy);
    font-weight: 600;
}
/* ボタン */
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 32px;
    background: var(--btn-bg);
    color: var(--btn-color);
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .08em;
    text-align: center;
    border: none;
    cursor: pointer;
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .12);
    transition: background .25s, transform .2s;
    width: fit-content;
}
.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}
.btn-ghost {
    font-size: 14px;
    font-weight: 600;
    letter-spacing:.04em;
    color:var(--site-navy);
    margin-top: 8px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--sans);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: opacity .2s;
    margin-left: 16px;
}
.btn-ghost:hover {
    opacity: .7;
}
.btn-ghost::after {
    content: '↓';
}


/* ── デスクトップ：左右2カラム ── */

@media(min-width:768px) {
    .hero {
        flex-direction: row;
        min-height: 400px;
        max-height: 520px;
        overflow: hidden; /* ← 画像の溢れを封じる */
    }
    .hero-text {
        width: 46%;
        flex-shrink: 0;
        padding: 40px 40px 40px 48px;
        justify-content: center;
        background: #fff;
        position: relative;
        z-index: 2;
        overflow: hidden;
    }
    /* 右側の写真との境界にネイビーのアクセントライン */
    .hero-text::after {
        content: '';
        position: absolute;
        top: 10%;
        bottom: 10%;
        right: 0;
        width: 3px;
        background: linear-gradient(to bottom, transparent, var(--site-navy), transparent);
    }
    .hero-img-wrap {
        flex: 1;
        width: auto;
        aspect-ratio: unset;
        height: 100%;
        overflow: hidden; /* ← 念のため画像エリアも封じる */
    }
    .hero-img-wrap::after {
        display: none;
    }
    .hero-badge {
        margin-bottom: 18px;
    }
    .hero-badge-main {
        font-size: 16px;
    }
    .hero-badge-price {
        font-size: 18px;
    }
    .hero-eyebrow {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .hero-lead {
        font-size: 15px;
        margin-bottom: 28px;
        max-width: 380px;
         line-height: 1.9;
    }
    .hero-actions {
          flex-direction:column;
          align-items:flex-start;
          gap:16px;
    }
}
@media(min-width:1024px) {
    .hero {
        max-height: 560px;
    }
    .hero-text {
        width: 46%;
        padding:32px 32px 40px 82px;
        justify-content: flex-start;
    }
    .hero-badge-main {
        font-size: 16px;
    }
    .hero-badge-price {
        font-size: 20px;
        font-weight: 700;
    }
    .hero-h1 {
        font-size: clamp(46px, 4.0vw, 50px);
        margin-bottom: 18px;
         line-height: 1.4;
         word-break: keep-all;
    }
     .hero-h1-sub{
        font-size: .75em;
        font-weight: 600;
    }
    .hero-h1-main{
        color: var(--accent);
        font-weight: 700;
    }
    .hero-lead {
        max-width: none;
        font-size: 18px;
        margin-bottom: 32px;
    }
    .hero-lead strong{
    display: block;
    margin-bottom: 0;
    font-weight:700;
   }
.hero-actions {
         margin-top: 24px;
    }

}
@media(min-width:1280px) {
    .hero {
        max-height: 600px;
    }
    .hero-text {
        width: 42%;
    }
}
/* ── KPI（デスクトップのみ）ヒーロー内には置かず、ヒーロー直下に移動 ── */
.hero-kpi {
    display: none;
} /* 元のKPIは使わない */
.scroll-ind {
    display: none;
} /* スクロールインジケーター不要 */
/* ================================================================
   モバイル KPIグリッド（ヒーロー直下）── 共通
   ================================================================ */
.hero-kpi-mobile {
    background: var(--site-navy);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 3px solid var(--accent);
}
.hkm-item {
    padding: 10px 10px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.hkm-item:nth-child(2n) {
    border-right: none;
}
.hkm-item:nth-last-child(-n+2) {
    border-bottom: none;
}
.hkm-val {
    font-family: var(--serif);
    font-size: 21px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.1;
}
.hkm-val small {
    font-size: 13px;
    color: rgba(255, 255, 255, .75);
    margin-left: 2px;
    font-weight: 700;
}
.hkm-key {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .03em; /* .1em → .03em に縮小して折り返り位置を最適化 */
    margin-top: 4px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .85);
}
/* デスクトップでは4列に */
@media(min-width:768px) {
    .hero-kpi-mobile {
        grid-template-columns: repeat(4, 1fr);
    }
    .hkm-item {
        border-right: 1px solid rgba(255, 255, 255, .12);
        border-bottom: none;
        padding: 24px 20px;
    }
    .hkm-item:last-child {
        border-right: none;
    }
    .hkm-val {
        font-size: 26px;
    }
    .hkm-key {
        font-size: 13px;
    }
}

@media(min-width:1024px) {
 .hkm-key {
        font-size: 15px;
    }
}

/* CONCEPT */
.concept {
    background: #ffffff;
    padding: 72px 24px;
    border-top: 4px solid var(--site-navy);
}
.concept-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.concept-text .eyebrow {
    margin-bottom: 20px;
}
.concept-h2 {
    font-size: 22px;
    margin-bottom: 24px;
    line-height: 1.6;
}
.concept-h2 em {
    font-style: normal;
    color: var(--accent);
}
.concept-body {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-body);
    letter-spacing: .06em;
    margin-top: 24px;
}
/* ── ビフォー・アフター比較 ── */
.concept-compare {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    align-items: center;
    background: #f8f8fb;
    border: 1px solid rgba(30, 58, 95, .1);
    border-radius: 10px;
    overflow: hidden;
    position:relative;
}
.concept-compare::before{
    content:"";
    position:absolute;
    left:50%;
    top:24px;
    bottom:24px;
    width:1px;
    background:rgba(30,58,95,.12);
    transform:translateX(-50%);
}
.compare-col {
    padding: 16px 16px;
    min-width: 0;
}
.compare-col--before {
    border-right: 1px solid rgba(30, 58, 95, .1);
    border-right: none;
}
.compare-col--after {}
.compare-arrow-col {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--accent);
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    justify-self: center;
    align-self: center;
    margin: 0 auto;
}
/* ラベル */
.compare-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .02em;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    white-space: nowrap;
}
.compare-label--before {
    background: var(--accent);
    color: #fff;
}
.compare-label--after {
    background: var(--site-navy);
    color: #fff;
}
/* リスト */
.compare-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.compare-item {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .02em;
    line-height: 1.4;
}
.compare-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}
.compare-item--bad {
    color: #5a534c;
}
.compare-item--bad .compare-icon {
    background: #e8e4e0;
    color: #888;
}
.compare-item--good {
    color: var(--site-navy);
}
.compare-item--good .compare-icon {
    background: var(--site-navy);
    color: #fff;
}

/* ================================================================
   CONCEPT比較表：スマホ（767px以下）のみ縦積みストーリー型に変更
   PC（768px以上）は既存のグリッドレイアウトのまま
   ================================================================ */
@media (max-width: 767px) {

  .concept-compare {
    display: flex;
    flex-direction: column;
    padding: 28px 18px 32px;
    border-radius: 14px;
    gap: 0;
  }

  /* 中央の縦線は不要なので非表示 */
  .concept-compare::before {
    display: none;
  }

  .compare-col {
    padding: 0;
    width: 100%;
  }

  .compare-col--before {
    padding-bottom: 8px;
  }

  .compare-col--after {
    padding-top: 8px;
  }

  /* 見出しを大きく・全幅バナー化して視認性UP */
  .compare-label {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    font-size: 15px;
    padding: 12px 16px;
    margin-bottom: 16px;
    border-radius: 8px;
    white-space: normal;
  }
/* ── 見出し：隠す＝控えめなアウトライン／公開する＝ネイビー塗りで主役に ── */
  .compare-label--before {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    padding: 11px 16px;
    margin-bottom: 16px;
    border-radius: 8px;
    background: var(--accent);
    color: #ffffff;
    border: 1px solid rgba(62, 58, 53, .2);
    letter-spacing: .04em;
  }

  .compare-label--after {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 16px;
    margin-bottom: 16px;
    border-radius: 8px;
    background: var(--site-navy);
    color: #ffffff;
    letter-spacing: .04em;
  }


  /* リストの余白を広げてカードらしく */
  .compare-list {
    gap: 12px;
  }

  .compare-item {
    font-size: 15px;
    font-weight: 600;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 10px;
    background: #ffffff;
     border: 1px solid rgba(30, 58, 95, .1);
    box-shadow: 0 1px 4px rgba(30, 58, 95, .06);
  }

  .compare-item--bad {
    color: var(--text-muted);
  }
.compare-item--bad .compare-icon {
    background: #ece9e6;
    color: #8a8278;
  }
  .compare-item--good {
    color: var(--site-navy);
  }
.compare-item--good .compare-icon {
    background: var(--site-navy);
    color: #ffffff;
  }
  .compare-icon {
    width: 28px;
    height: 28px;
    font-size: 15px;
  }

  /* 矢印を90度回転させて「↓」に。サイズも拡大して目立たせる */
  .compare-arrow-col {
    width: 42px;
    height: 42px;
    font-size: 20px;
    margin: 22px auto;
    transform: rotate(90deg);
     background: var(--site-navy);
  }
}
/*----縦積みここまで--*/

/* 矢印 */
.compare-arrow {
    flex: 0 0 56px; /* 固定幅でどちらにも寄らない */
    display: flex;
    align-items: center;
    justify-content: center;
}
.compare-arrow-inner {
    width: 32px;
    height: 32px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.compare-arrow-inner svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
}
@media(min-width:768px) {
    .compare-item {
        font-size: 14px;
    }
    
}
@media(min-width:1024px) {
     .concept-compare{
        padding: 24px;
        gap:0;
        grid-template-columns:1fr 56px 1fr;
    }
   .compare-label {
        font-size: 16px;
       font-weight: 500;
    }
    
    .compare-arrow-col{
        width: 48px;
        height: 48px;
        font-size:16px;
    }
    
    .concept-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 72px;
        align-items: start;
    }
    .concept-h2 {
        font-size: 26px;
    }
    .concept-compare {
        padding: 24px 20px;
        gap: 16px;
    }
    .concept-body{
        font-size: 16px;
        font-weight: 500;
    }
    .compare-item {
        font-size: 18px;
    }
}
/* 右側：公開できる情報グリッド */
.concept-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.concept-info-title {
    font-size: 18px;
    font-weight: 400;
    color: var(--site-navy);
    text-align: center;
    letter-spacing: .08em;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--site-navy);
}
.concept-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.cinfo-card {
    background: #fff;
    border: 1px solid rgba(30, 58, 95, .12);
    border-radius: 8px;
    padding: 20px 6px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform .2s, box-shadow .2s;
}
.cinfo-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 58, 95, .1);
}
/* アクセントカード（価格）→ 廃止・全カード統一 */
.cinfo-card--accent {
    background: #ffffff; /* 他カードと同じ白に統一 */
}
.cinfo-card--accent .cinfo-icon svg {
    stroke: var(--site-navy);
}
.cinfo-card--accent .cinfo-label {
    color: var(--site-navy);
}
.cinfo-card--accent .cinfo-desc {
    color: var(--text-muted);
}
.cinfo-card--accent .cinfo-icon {
    background: rgba(30, 58, 95, .08);
}
.cinfo-icon {
    width: 48px;
    height: 48px;
    background: rgba(30, 58, 95, .08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cinfo-card--accent .cinfo-icon {
    background: rgba(255, 255, 255, .15);
}
.cinfo-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--site-navy);
}
.cinfo-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--site-navy);
    letter-spacing: .02em;
    line-height: 1.3;
}
.cinfo-desc {
    font-size: clamp(12px, 2.2vw, 14px);
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: .06em;
    line-height: 1.4;
}
@media(min-width:1024px) {
    .concept {
        padding: 120px 88px;
    }
    .concept-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }
    .concept-text .eyebrow {
    font-size: 16px;
}
    .concept-h2 {
        font-size: 30px;
    }
    
    .concept-info-title {
        font-size: 20px;
        font-weight: 600;
    }
    .concept-info-grid {
        gap: 10px;
    }
    .cinfo-card {
        padding: 22px 14px 18px;
    }
    .cinfo-icon {
        width: 52px;
        height: 52px;
    }
    .cinfo-icon svg {
        width: 24px;
        height: 24px;
    }
    .cinfo-label {
        font-size: 16px;
    }
    .cinfo-desc {
        font-size: clamp(11px, 2.8vw, 13px);
        font-weight: 500;
    }
    
}
/* ================================================================
   KPI STRIP（サイトネイビー）
   ================================================================ */
.kpi-strip {
    background: var(--site-navy);
    padding: 48px 24px;
}
.kpi-strip-label {
    font-size: 12px;
    letter-spacing: .34em;
    color: rgba(255, 255, 255, .7);
    text-align: center;
    margin-bottom: 36px;
    font-weight: 400;
}
/* モバイル：2列グリッド */
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .15);
    border-left: 1px solid rgba(255, 255, 255, .15);
}
.kpi-item {
    padding: 28px 16px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .15);
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}
/* 5番目のアイテム（奇数番）は2列の中央に */
.kpi-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}
.kpi-icon {
    width: 38px;
    height: 38px;
    margin: 0 auto 14px;
    border: 1px solid rgba(255, 255, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center;
}
.kpi-icon svg {
    width: 16px;
    height: 16px;
    stroke: rgba(255, 255, 255, .8);
    fill: none;
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.kpi-val {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1;
}
.kpi-val small {
    font-size: 14px;
    color: rgba(255, 255, 255, .75);
    font-weight: 500;
}
.kpi-key {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .85);
    margin-top: 8px;
    line-height: 1.7;
}
@media(min-width:768px) {
    .kpi-strip {
        padding: 64px 48px;
    }
    /* タブレット以上：5列横並び */
    .kpi-grid {
        grid-template-columns: repeat(5, 1fr);
        border-top: none;
        border-left: none;
    }
    .kpi-item {
        border-top: none;
        border-bottom: none;
        border-left: none;
        border-right: 1px solid rgba(255, 255, 255, .15);
        padding: 28px 16px;
    }
    .kpi-item:last-child {
        border-right: none;
    }
    .kpi-item:last-child:nth-child(odd) {
        grid-column: auto;
    }
    .kpi-val {
        font-size: 26px;
    }
    .kpi-key {
        font-size: 12px;
    }
}
@media(min-width:1024px) {
    .kpi-strip {
        padding: 72px 88px;
    }
    .kpi-strip-label {
        margin-bottom: 48px;
        font-size: 15px;
    }
    .kpi-val {
        font-size: 28px;
    }
    .kpi-val small {
        font-size: 16px;
        font-weight: 600;
    }
    .kpi-key {
        font-size: 13px;
    }
}
/* ================================================================
   住宅展示場ネットでできること
   ================================================================ */
.features-sec {
    background: #ffffff;
    padding: 64px 24px;
    border-top: 1px solid rgba(30, 58, 95, .1);
}
.features-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.features-header {
    margin-bottom: 40px;
}
.features-header .eyebrow {
    margin-bottom: 14px;
}
.features-title {
    font-size: clamp(20px, 4vw, 28px);
    margin: 0;
}
/* 2ブロック横並び */
.features-body {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
/* ── 左：できること4項目 ── */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.features-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-base);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-head);
    letter-spacing: .03em;
    transition: box-shadow .2s;
}
.features-item:hover {
    box-shadow: 0 3px 12px rgba(30, 58, 95, .1);
}
.features-item-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: var(--site-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.features-item-icon svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
}
/* 縦区切り線（デスクトップのみ） */
.features-divider {
    display: none;
}
/* ── 右：無料機能リスト ── */
.freelist-wrap {}
.freelist-heading {
    font-size: 17px;
    font-weight: 400;
    color: var(--site-navy);
    padding-bottom: 12px;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--site-navy);
    letter-spacing: .04em;
}
.freelist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.freelist li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(30, 58, 95, .08);
}
.freelist li:last-child {
    border-bottom: none;
}
.freelist-dot {
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    background: var(--site-navy);
    border-radius: 50%;
}
.freelist-dot--paid {
    background: var(--accent);
}
.freelist-label {
    flex: 1;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-body);
    line-height: 1.5;
}
.freelist-badge {
    font-size: 14px;
    font-weight: 700;
    color: var(--site-navy);
    white-space: nowrap;
    flex-shrink: 0;
}
.freelist-badge--paid {
    color: var(--accent);
}
@media(min-width:768px) {
    .features-sec {
        padding: 80px 40px;
    }
    .features-body {
        flex-direction: row;
        align-items: flex-start;
        gap: 0;
    }
    .features-list {
        flex: 1;
    }
    .features-divider {
        display: block;
        width: 1px;
        background: rgba(30, 58, 95, .12);
        margin: 0 48px;
        align-self: stretch;
        flex-shrink: 0;
    }
    .freelist-wrap {
        flex: 1;
    }
    .features-item {
        padding: 14px 18px;
    }
    .freelist li {
        padding: 12px 0;
    }
    .freelist-label {
        font-size: 14px;
    }
}
@media(min-width:1024px) {
    .features-sec {
        padding: 88px 88px;
    }
    .features-title {
        font-size: 28px;
    }
    .features-item {
        font-size: 16px;
    }
    .features-item-icon {
        width: 44px;
        height: 44px;
    }
    .features-item-icon svg {
        width: 20px;
        height: 20px;
    }
    .freelist-heading {
        font-size: 18px;
    }
    .freelist-label {
        font-size: 15px;
    }
    .freelist-badge {
        font-size: 15px;
    }
    .features-divider {
        margin: 0 56px;
    }
    .features-header .eyebrow {
    font-size: 16px;
    }
}
/* ================================================================
   REASON（オフホワイト、ネイビーアクセント）
   ================================================================ */
.reason {
    background: var(--bg-base);
    padding: 72px 24px;
}
.reason-header {
    text-align: center;
    margin-bottom: 44px;
}
.reason-header .eyebrow {
    margin-bottom: 20px;
}
.reason-h2 {
    font-size: 22px;
    margin-bottom: 10px;
}
.reason-sub {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .1em;
    color: var(--text-muted);
}
.reason-cards {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.reason-card {
    background: #ffffff;
    padding: 28px 20px;
    border-left: 3px solid var(--site-navy);
}
.reason-n {
    font-family: var(--serif);
    font-size: 20px;
    letter-spacing: .2em;
    color: var(--site-navy);
    margin-bottom: 16px;
    font-weight: 400;
}
.reason-card h3 {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.55;
    color: var(--navy);
    margin-bottom: 10px;
}
.reason-card p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--text-body);
    letter-spacing: .1em;

}
@media(min-width:768px) {
    .reason {
        padding: 96px 48px;
    }
    .reason-header {
        margin-bottom: 56px;
    }
    .reason-h2 {
        font-size: 26px;
    }
    .reason-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
    }
    .reason-card {
        border-left: none;
        border-top: 3px solid var(--site-navy);
        padding: 44px 32px;
    }
    .reason-card h3 {
        font-size: 19px;
    }
}
@media(min-width:1024px) {
    .reason {
        padding: 120px 88px;
    }
     .reason-sub {
        font-size: 16px;
         font-weight: 500;
    }
    .reason-h2 {
        font-size: 28px;
    }
    .reason-card {
        padding: 52px 40px;
    }
    .reason-card h3 {
     font-weight: 600;
     margin-bottom: 20px;
    }
    .reason-header .eyebrow {
    font-size: 16px;
   }
}
/* ================================================================
   VISUAL BREAK
   ================================================================ */
.visual-break {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}
.visual-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.65) saturate(.8);
}
.visual-break::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(30, 58, 95, .7) 0%, rgba(30, 58, 95, .35) 50%, rgba(30, 58, 95, .7) 100%);
}
.visual-break-text {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}
.vb-eyebrow {
    font-size: 12px !important;
    color: rgba(255, 255, 255, .75) !important;
    justify-content: center;
    letter-spacing: .3em;
}
.vb-eyebrow::after {
    display: none;
}
.visual-break-quote {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 400;
   color:#ffffff;
  text-shadow:
    0 2px 8px rgba(0,0,0,.35);
    letter-spacing: .08em;
    line-height: 1.85;
}

.visual-break-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

@media(min-width:768px) {
    .visual-break {
        height: 360px;
    }
    .visual-break-quote {
        font-size: 26px;
    }
}
@media(min-width:1024px) {
  .vb-eyebrow {
    font-size: 16px !important;
  }
}   
/* ================================================================
   SECTION 03：AI×CG 業界の変革（1カラム構成）
   ================================================================ */
.aicg-section {
    background: #f8f8fb;
    padding: 56px 20px;
    border-top: 4px solid var(--site-navy);
}
.aicg-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
/* 見出し */
.aicg-heading {
    margin-bottom: 0;
}
.aicg-title-wrap {}
.aicg-title-sub {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: .08em;
    margin-bottom: 6px;
}
.aicg-title {
    font-family: var(--serif);
    font-size: clamp(36px, 6vw, 52px);
    font-weight: 700;
    color: var(--text-head);
    line-height: 1.2;
    margin-bottom: 14px;
}
.aicg-title em {
    font-style: normal;
    color: var(--accent);
}
.aicg-tag {
    display: inline-block;
    background: var(--site-navy);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    padding: 6px 16px;
    border-radius: 3px;
}
/* 画像エリア：左小・右大 */
.aicg-images {
    display: flex;
    flex-direction: column; /* SP：縦積み */
    gap: 12px;
}
.aicg-img--left {
    filter: brightness(.82) saturate(.75);
}
.aicg-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .18);
    flex-shrink: 0;
}
.aicg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.aicg-img--left {
    width: 100%;
    aspect-ratio: 16/9;
    filter: brightness(.82) saturate(.75);
}
.aicg-img--right {
    width: 100%;
    aspect-ratio: 16/9;
}
/* ラベル */
.aicg-img-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    padding: 4px 10px;
    border-radius: 3px;
    z-index: 2;
    white-space: nowrap;
}
.aicg-img-label--ai {
    background: var(--site-navy);
}
/* AIバッジを含む見出しエリア */
.aicg-top {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.aicg-ai-badge {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    margin-left: 16px;
    margin-top: 0;
}
.aicg-ai-badge svg {
    width: 100%;
    height: 100%;
}
@media(min-width:768px) {
    .aicg-ai-badge {
        width: 90px;
        height: 90px;
    }
}
@media(min-width:1024px) {
    .aicg-ai-badge {
        width: 110px;
        height: 110px;
    }
}
/* 矢印 */
.aicg-img-arrow {
    flex: 0 0 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}
.aicg-img-arrow svg {
    width: 20px;
    height: 20px;
    stroke: var(--site-navy);
}
/* 5項目：SP縦、PC横一列 */
.aicg-benefits {
    list-style: none;
    margin: 0 15px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(30, 58, 95, .1);
}
.aicg-benefit {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(30, 58, 95, .1);
}

.aicg-benefit-icon-wrap {
    position: relative;
    flex-shrink: 0;
}
.aicg-benefit-num {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background: var(--accent);
    color: #fff;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    z-index: 2;
}

.aicg-benefit-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: rgba(30, 58, 95, .08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.aicg-benefit-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--site-navy);
}
.aicg-benefit-text {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-body);
    line-height: 1.6;
    letter-spacing: .02em;
    padding-left: 12px;
}
.aicg-benefit-text strong {
    display: inline-block;
    color: var(--text-muted);
    font-weight: 500;
}
.aicg-benefit-sub {
    display: inline-block;
    margin-top: 4px;
    color: var(--navy);
    font-weight: 600;
    font-size: 1.1em;
    letter-spacing: .03em;
}


@media(min-width:768px) {
    .aicg-section {
        padding: 72px 40px;
    }
    .aicg-inner {
        gap: 32px;
    }
    .aicg-images {
        flex-direction: row;
        align-items: flex-end;
        gap: 14px;
    }
    .aicg-img--left {
        flex: 0 0 36%;
        width: auto;
        aspect-ratio: 4/3;
    }
    .aicg-img--right {
        flex: 1;
        width: auto;
        aspect-ratio: 16/9;
    }
    .aicg-img-arrow {
        flex: 0 0 34px;
    }
    .aicg-img-arrow svg {
        width: 24px;
        height: 24px;
    }
    .aicg-benefits {
        flex-direction: row;
        border-top: none;
        background: rgba(30, 58, 95, .04);
        border-radius: 10px;
        overflow: hidden;
        margin: 0;
    }
    .aicg-benefit {
        flex: 1;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 12px;
        border-bottom: none;
        border-right: 1px solid rgba(30, 58, 95, .1);
        gap: 10px;
    }
    .aicg-benefit:last-child {
        border-right: none;
    }
    .aicg-benefit-text {
        font-size: 14px;
        padding: 0;
    }
}
@media(min-width:1024px) {
    .aicg-section {
        padding: 80px 88px;
    }
    .aicg-inner {
        max-width: 1100px;
    }
    .aicg-img-label {
        font-size: 12px;
        padding: 5px 12px;
    }
    .aicg-benefit {
        padding: 28px 16px;
    }
    .aicg-benefit-text {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
  .aicg-img-arrow {
    display: none;
  }
}
/* ================================================================
   SECTION 04：受注まで支援
   ================================================================ */
.support-section {
    background: #ffffff;
    padding: 56px 20px;
    border-top: 1px solid rgba(30, 58, 95, .1);
}
.support-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.support-left {}
.support-heading {
    margin-bottom: 32px;
}
.support-title {
    font-family: var(--serif);
    font-size: clamp(18px, 4vw, 26px);
    font-weight: 700;
    color: var(--text-head);
    line-height: 1.45;
    margin: 0;
    text-align: center;
}
.support-title em {
    font-style: normal;
    color: var(--accent);
}
.support-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.support-card {
    background: #f8f8fb;
    border: 1px solid rgba(30, 58, 95, .1);
    border-radius: 10px;
    padding: 12px 18px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: box-shadow .2s;
}
.support-card:hover {
    box-shadow: 0 4px 14px rgba(30, 58, 95, .1);
}
.support-card-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: rgba(30, 58, 95, .08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.support-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--site-navy);
}
.support-card-body {}
.support-card-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: .08em;
    margin-bottom: 4px;
}
.support-card-price {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--site-navy);
    line-height: 1.1;
    margin-bottom: 12px;
}
.support-card-price span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    margin-left: 4px;
}
.support-card-desc {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
    font-size: 11px;
    font-weight: 400;
    color: var(--accent-dark);
    background: rgba(156, 59, 59, .08);
    border: 1px solid rgba(156, 59, 59, .2);
    padding: 5px 12px;
    border-radius: 999px;
    line-height: 1.4;
    letter-spacing: .02em;
}
.support-card-desc::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
}

@media(min-width:768px) {
    .support-section {
        padding: 72px 40px;
    }
    .support-cards {
        flex-direction: row;
        gap: 20px;
    }
    .support-card {
        flex: 1;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .support-card-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 4px;
    }
    .support-card-icon svg {
        width: 26px;
        height: 26px;
    }
    .support-card-label {
        font-size: 14px;
    }
    .support-card-price {
        font-size: 36px;
    }
    .support-card-desc {
        font-size: 13px;
    }
}
@media(min-width:1024px) {
    .support-section {
        padding: 80px 88px;
    }
    .support-title {
        font-size: 28px;
    }
    .support-cards {
        gap: 24px;
    }
    .support-card {
        padding: 28px 24px;
    }
    .support-card-price {
        font-size: 32px;
    }
    .support-card-price span{
        font-size: 16px;
        font-weight: 600;
    }
    
    .support-card-desc {
    font-size: 14px;
    font-weight: 500;
    margin-top: 1em; 
}
}
/* ================================================================
   SUCCESS CASES
   ================================================================ */
.cases {
    background: #ffffff;
    padding: 72px 24px;
}
.cases-header {
    text-align: center;
    margin-bottom: 44px;
}
.cases-header .eyebrow {
    margin-bottom: 20px;
}
.cases-h2 {
    font-size: 22px;
    margin-bottom: 10px;
}
.cases-sub {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: .1em;
}
/* リスト：SP縦積み */
.cases-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: var(--gold-faint);
}
/* カード：SP＝縦（画像上・テキスト下） */
.case-item {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    border-left: 3px solid var(--site-navy);
    overflow: hidden;
}
/* 画像エリア */
/* ▼ 画像差し替え方法：各 .case-img-wrap 内の <img src=""> を対象写真に変更 */
.case-img-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    flex-shrink: 0;
}
.case-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.case-item:hover .case-img-wrap img {
    transform: scale(1.04);
}
/* テキストエリア */
.case-body-wrap {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.case-tag {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid rgba(30, 58, 95, .3);
    font-size: 12px;
    letter-spacing: .16em;
    background: var(--site-navy);
    color: #ffffff;
    align-self: flex-start;
    border-radius: 3px;
}
.case-headline {
    font-family: var(--serif);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-head);
}
.case-figure {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 400;
    color: var(--site-navy);
    line-height: 1;
}
.case-figure small {
    font-family: var(--sans);
    font-size: 14px;
    color: var(--text-muted);
    margin-left: 4px;
}
.case-body {
    font-size: 14px;
    font-weight:400;
    line-height: 1.5;
    color: var(--text-body);
    letter-spacing: .02em;
}
.case-company {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: .1em;
    border-top: 1px solid var(--gold-faint);
    padding-top: 12px;
    margin-top: auto;
}
/* タブレット以上：3カラムグリッド、各カード縦方向（画像上・テキスト下） */
@media(min-width:768px) {
    .cases {
        padding: 96px 48px;
    }
    .cases-header {
        margin-bottom: 56px;
    }
    .cases-h2 {
        font-size: 26px;
    }
    .cases-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
        flex-direction: unset;
    }
    .case-item {
        border-left: none;
        border-top: 3px solid var(--site-navy);
        flex-direction: column; /* 画像上・テキスト下 */
    }
    .case-img-wrap {
        aspect-ratio: 4/3;
    } /* タブレット以上は少し正方形寄りに */
    .case-body-wrap {
        padding: 28px 28px;
    }
    .case-headline {
        font-size: 16px;
    }
    .case-figure {
        font-size: 28px;
    }
}
@media(min-width:1024px) {
    .cases {
        padding: 96px 88px;
    }
    .cases-header .eyebrow {
    font-size: 16px;
   }
    .cases-sub{
        font-size: 16px;
    }
    .cases-h2 {
        font-size: 28px;
    }
    .case-img-wrap {
        aspect-ratio: 16/10;
    } /* デスクトップは横長に */
    .case-body-wrap {
        padding: 32px 32px;
    }
    .case-headline {
        font-size: 17px;
    }
    .case-figure {
        font-size: 32px;
    }
}
/* ================================================================
   FLOW（オフホワイト）
   ================================================================ */
.flow {
    background: var(--bg-alt);
    padding: 72px 24px;
}
.flow-header {
    text-align: center;
    margin-bottom: 44px;
}
.flow-header .eyebrow {
    margin-bottom: 20px;
}
.flow-h2 {
    font-size: 22px;
}
.flow-steps {
    display: flex;
    flex-direction: column;
}
.flow-step {
    padding: 32px 24px;
    text-align: center;
    border-bottom: 1px solid var(--gold-faint);
    position: relative;
}
.flow-step:last-child {
    border-bottom: none;
}
.flow-step:not(:last-child)::after {
    content: '↓';
    color: var(--text-muted);
    font-size: 16px;
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-alt);
    padding: 0 4px;
    z-index: 1;
}
.flow-num {
    width: 46px;
    height: 46px;
    margin: 0 auto 16px;
    border: 2px solid var(--site-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 400;
    color: var(--site-navy);
}
.flow-step h4 {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 400;
    color: var(--text-head);
    margin-bottom: 10px;
}
.flow-step p {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-body);
    line-height: 2;
    letter-spacing: .06em;
}
@media(min-width:768px) {
    .flow {
        padding: 96px 48px;
    }
    .flow-h2 {
        font-size: 24px;
    }
    .flow-steps {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
    .flow-step {
        border-bottom: none;
        padding: 36px 28px;
    }
    .flow-step:not(:last-child)::after {
        content: '→';
        position: absolute;
        right: -10px;
        top: 48%;
        bottom: auto;
        left: auto;
        transform: translateY(-50%);
        padding: 0;
        background: none;
        font-size: 18px;
    }
}
@media(min-width:1024px) {
    .flow {
        padding: 112px 88px;
    }
    .flow-step {
        padding: 40px 36px;
    }
    .flow-num {
        width: 50px;
        height: 50px;
        font-size: 17px;
    }
    .flow-step h4 {
        font-size: 18px;
    }
    .flow-header .eyebrow {
    font-size: 16px;
    }
    .flow-h2 {
        font-size: 32px;
    }
}
/* ================================================================
   CTA
================================================================ */

.cta-sec{
    background:#f8f8f8;
    padding:48px 20px 40px;
    text-align:center;
    position:relative;
    border-top:3px solid var(--accent);
}

.cta-sec::before{
    content:'';
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:1px;
    height:44px;
    background:rgba(30,58,95,.2);
}

.cta-h2{
    font-size:18px;
    padding-top:16px;
    margin-bottom:12px;
    color:#1e3a5f;
    font-weight:600;
}

.cta-body-txt{
    font-size:16px;
    font-weight:400;
    color:#1e3a5f;
    letter-spacing:.08em;
    margin-bottom:32px;
}

/* ボタン群 */

.cta-buttons{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:14px;
}

.cta-primary-btn,
.cta-secondary-btn{
    width:100%;
    max-width:300px;
    box-sizing:border-box;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    border-radius:999px;
    transition:.25s;
}

/* メインCTA */

.cta-primary-btn{
    background:var(--accent);
    color:#fff;
    font-size:15px;
    font-weight:600;
    padding:16px 32px;
    box-shadow:0 6px 18px rgba(0,0,0,.3);
}

.cta-primary-btn:hover{
    background:var(--accent-dark);
    transform:translateY(-3px);
}

/* 資料DL */

.cta-secondary-btn{
    background:#fff;
    color:var(--site-navy);
    border:1px solid rgba(30,58,95,.28);
    font-size:15px;
    font-weight:600;
    padding:16px 32px;
}

.cta-secondary-btn:hover{
    background:var(--site-navy);
    color:#fff;
    border-color:var(--site-navy);
    transform:translateY(-2px);
}

/* チェック */

.cta-checks{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px 20px;
    margin-top:24px;
}

.cta-check{
    font-size:14px;
    font-weight:400;
    color:#1e3a5f;
    letter-spacing:.08em;
    display:flex;
    align-items:center;
    gap:5px;
}

.cta-check::before{
    content:'✓';
    color:var(--accent-hover);
}

/* Tablet */

@media(min-width:768px){

    .cta-sec{
        padding:80px 48px 72px;
    }

    .cta-h2{
        font-size:24px;
    }

    .cta-buttons{
        flex-direction:row;
        justify-content:center;
        gap:16px;
    }

    .cta-primary-btn,
    .cta-secondary-btn{
        width:300px;
        max-width:none;
    }

    .cta-checks{
        flex-wrap:nowrap;
        gap:12px 32px;
    }
}

/* PC */

@media(min-width:1024px){

    .cta-sec{
        padding:96px 88px 80px;
    }

    .cta-h2{
        font-size:26px;
    }
}
/* ================================================================
   FOOTER ── 既存サイト jutakutenjijo.net のトンマナに統一
   モバイルファースト
   ================================================================ */
.site-footer {
    background: #1e3a5f;
    color: #fff;
    /* モバイルデフォルト */
    padding: 48px 20px 24px;
    font-size: .95rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
    text-align: center;
}
.footer-inner {
    display: flex;
    flex-direction: column; /* モバイル：縦積み */
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto 24px;
}
.footer-col {
    flex: 1;
    min-width: 0;
}
.footer-col h4 {
    font-size: 1.0rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: #fff;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
    padding-bottom: 4px;
}
.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-col li {
    margin-bottom: 10px;
}
.footer-col a {
    color: #f0f0f0;
    text-decoration: none;
    opacity: .9;
    font-size: .88rem;
    transition: color .3s, opacity .3s;
}
.footer-col a:hover {
    color: var(--accent-hover);
    opacity: 1;
}
.footer-col .address {
    font-size: .88rem;
    line-height: 1.7;
    margin-top: 10px;
    opacity: .88;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .18);
    text-align: center;
    padding-top: 16px;
    margin-top: 24px;
    font-size: .8rem;
    color: rgba(255, 255, 255, .75);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
@media(min-width:768px) {
    .site-footer {
        padding: 56px 28px 32px;
        text-align: left;
    }
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        gap: 32px;
        margin-bottom: 32px;
    }
    .footer-col {
        min-width: 160px;
    }
    .footer-col a {
        font-size: .9rem;
    }
    .footer-bottom {
        padding-top: 18px;
        font-size: .85rem;
    }
}
@media(min-width:1025px) {
    .site-footer {
        padding: 64px 40px 36px;
    }
    .footer-inner {
        gap: 48px;
        margin-bottom: 36px;
    }
    .footer-col {
        min-width: 180px;
    }
}
/* ================================================================
   ドロワーメニュー
   ================================================================ */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
    z-index: 9000;
}
.drawer-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.drawer-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100%;
    background: var(--site-navy);
    z-index: 9001;
    padding: 72px 28px 40px;
    transition: right .35s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
    gap: 0;
}
.drawer-menu.open {
    right: 0;
}
.drawer-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background .2s;
}
.drawer-close:hover {
    background: rgba(255, 255, 255, .1);
}
.drawer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.drawer-menu ul li {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.drawer-menu ul li a {
    display: block;
    padding: 16px 0;
    color: rgba(255, 255, 255, .9);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .06em;
    transition: color .2s;
}
.drawer-menu ul li a:hover {
    color: #fff;
}
.drawer-cta {
    display: block;
    margin-top: 32px;
    padding: 14px 0;
    background: var(--accent);
    color: #fff;
    text-align: center;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-decoration: none;
    transition: background .25s;
}
.drawer-cta:hover {
    background: var(--accent-dark);
}
/* PCではドロワー非表示 */
@media(min-width:768px) {
    .drawer-menu, .drawer-overlay {
        display: none !important;
    }
    .header-burger {
        display: none !important;
    }
    /* .header-cta: 非表示維持 */
}

/* ================================================================
   SECTION 05：プロジェクトリーダー
   ================================================================ */
.leaders-section {
    background: #ffffff;
    padding: 56px 20px;
    border-top: 1px solid rgba(30, 58, 95, .1);
}
.leaders-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.leaders-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
}
.leaders-header-icon {
    width: 30px;
    height: 30px;
    color: var(--site-navy);
    flex-shrink: 0;
}
.leaders-header-icon svg {
    width: 100%;
    height: 100%;
}
.leaders-title {
    font-size: 22px;
    text-align: center;
}
.leaders-lead {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 32px;
    letter-spacing: .04em;
    line-height: 1.8;
}
.leaders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
}
.leader-card {
    text-align: center;
}
.leader-photo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 12px;
    box-shadow: 0 4px 12px rgba(30, 58, 95, .14);
}
.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.leader-name {
    font-family: var(--serif);
    font-size: 15px;
    font-weight: 700;
    color: var(--site-navy);
    margin-bottom: 4px;
}
.leader-role {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
    letter-spacing: .02em;
    line-height: 1.5;
}
.leader-desc {
    font-size: 11px;
    color: var(--text-body);
    line-height: 1.7;
    letter-spacing: .02em;
    text-align: left;
}
.leaders-note {
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 32px;
    letter-spacing: .1em;
}
@media(min-width:768px) {
    .leaders-section {
        padding: 80px 40px;
    }
    .leaders-title {
        font-size: 26px;
    }
    .leaders-lead {
        font-size: 14px;
    }
    .leaders-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px 20px;
    }
}
@media(min-width:1024px) {
    .leaders-section {
        padding: 96px 88px;
    }
    .leaders-title {
        font-size: 28px;
    }
    .leaders-lead {
        font-size: 15px;
    }
    .leaders-grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 20px 16px;
    }
    .leader-name {
        font-size: 14px;
    }
    .leader-role {
        font-size: 11px;
    }
    .leader-desc {
        font-size: 12px;
        text-align: left;
    }
}

/* ================================================================
   SECTION 06：代表挨拶
   ================================================================ */
.greeting-section {
    background: var(--bg-base);
    padding: 56px 20px;
}
.greeting-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.greeting-photo {
    width: 200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(30, 58, 95, .16);
}
.greeting-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.greeting-body .eyebrow {
    justify-content: center;
    margin-bottom: 14px;
}
.greeting-title {
    font-size: 22px;
    text-align: center;
    margin-bottom: 18px;
}
.greeting-lead {
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 700;
    color: var(--site-navy);
    line-height: 1.7;
    letter-spacing: .03em;
    margin-bottom: 18px;
    text-align: center;
}
.greeting-text {
    font-size: 13px;
    line-height: 1.9;
    color: var(--text-body);
    letter-spacing: .03em;
    margin-bottom: 16px;
}
.greeting-sign {
    margin-top: 20px;
    text-align: right;
}
.greeting-company {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.greeting-name {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 700;
    color: var(--site-navy);
}
@media(min-width:768px) {
    .greeting-section {
        padding: 80px 40px;
    }
    .greeting-inner {
        flex-direction: row;
        align-items: flex-start;
        gap: 48px;
    }
    .greeting-photo {
        width: 240px;
        flex-shrink: 0;
        margin: 0;
    }
    .greeting-body .eyebrow {
        justify-content: flex-start;
    }
    .greeting-title {
        text-align: left;
        font-size: 24px;
    }
    .greeting-lead {
        text-align: left;
        font-size: 19px;
    }
    .greeting-text {
        font-size: 14px;
    }
}
@media(min-width:1024px) {
    .greeting-section {
        padding: 96px 88px;
    }
    .greeting-photo {
        width: 280px;
    }
    .greeting-title {
        font-size: 28px;
    }
    .greeting-lead {
        font-size: 21px;
    }
    .greeting-text {
        font-size: 15px;
    }
}

/* ================================================================
   SECTION 07：会社概要
   ================================================================ */
.company-section {
    background: #ffffff;
    padding: 56px 20px;
    border-top: 1px solid rgba(30, 58, 95, .1);
}
.company-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.company-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.company-header-icon {
    width: 26px;
    height: 26px;
    color: var(--site-navy);
    flex-shrink: 0;
}
.company-header-icon svg {
    width: 100%;
    height: 100%;
}
.company-title {
    font-size: 19px;
}
.company-table {
    display: flex;
    flex-direction: column;
}
.company-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(30, 58, 95, .1);
}
.company-row dt {
    font-size: 12px;
    font-weight: 700;
    color: var(--site-navy);
    letter-spacing: .06em;
}
.company-row dd {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.7;
    letter-spacing: .02em;
}
.company-philosophy {
    background: var(--bg-base);
    border-radius: 10px;
    padding: 24px 20px;
    border-left: 3px solid var(--accent);
}
.company-philosophy-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--site-navy);
    letter-spacing: .1em;
    margin-bottom: 12px;
}
.company-philosophy-quote {
    font-family: var(--serif);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-head);
    line-height: 1.7;
    margin-bottom: 14px;
}
.company-philosophy-body {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.8;
    letter-spacing: .02em;
    margin-bottom: 14px;
}
.company-philosophy-cite {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.6;
    letter-spacing: .04em;
}
@media(min-width:768px) {
    .company-section {
        padding: 80px 40px;
    }
    .company-inner {
        flex-direction: row;
        align-items: flex-start;
        gap: 48px;
    }
    .company-table-wrap {
        flex: 1.4;
    }
    .company-philosophy {
        flex: 1;
    }
    .company-row {
        flex-direction: row;
        gap: 24px;
    }
    .company-row dt {
        width: 110px;
        flex-shrink: 0;
    }
}
@media(min-width:1024px) {
    .company-section {
        padding: 96px 88px;
    }
    .company-title {
        font-size: 24px;
    }
    .company-row dt {
        font-size: 13px;
        width: 130px;
    }
    .company-row dd {
        font-size: 14px;
    }
    .company-philosophy-quote {
        font-size: 17px;
    }
    .company-philosophy-body {
        font-size: 14px;
    }
}

/* ================================================================
   参加企業（社会的証明）
   ================================================================ */
.partners-section {
    background: #ffffff;
    padding: 36px 20px;
    border-top: 1px solid rgba(30, 58, 95, .1);
}
.partners-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.partners-header {
    text-align: center;
    margin-bottom: 20px;
}
.partners-header .eyebrow {
    margin-bottom: 12px;
}
.partners-h2 {
    font-size: 20px;
    margin-bottom: 6px;
}
.partners-sub {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: .04em;
}
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}
.partner-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 26px;
    padding: 0 4px;
    background: #f3f2ef;
    border: 1px solid rgba(30, 58, 95, .08);
    border-radius: 6px;
    font-size: 10px;
    font-weight: 500;
    color: var(--text-body);
    letter-spacing: .01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.partners-more {
    text-align: center;
    margin-top: 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--site-navy);
    letter-spacing: .06em;
}
@media(min-width:768px) {
    .partners-section {
        padding: 48px 40px;
    }
    .partners-h2 {
        font-size: 24px;
    }
    .partners-sub {
        font-size: 14px;
    }
    .partners-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 6px;
    }
    .partner-tag {
        height: 30px;
        padding: 0 8px;
        font-size: 12px;
    }
    .partners-more {
        font-size: 14px;
        margin-top: 18px;
    }
}
@media(min-width:1024px) {
    .partners-section {
        padding: 56px 88px;
    }
    .partners-h2 {
        font-size: 26px;
    }
    .partners-header .eyebrow {
        font-size: 16px;
    }
    .partners-grid {
        grid-template-columns: repeat(8, 1fr);
        gap: 8px;
    }
    .partner-tag {
        height: 32px;
        font-size: 12px;
    }
}

/* ================================================================
   公開イメージ（動画ギャラリー）
   ================================================================ */
.gallery-section {
    background: #ffffff;
    padding: 48px 20px;
}
.gallery-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.gallery-header {
    text-align: center;
    margin-bottom: 32px;
}
.gallery-header .eyebrow {
    margin-bottom: 16px;
}
.gallery-h2 {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.6;
}
.gallery-sub {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: .03em;
    line-height: 1.8;
    max-width: 480px;
    margin: 0 auto;
}
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.gallery-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(30, 58, 95, .06);
    transition: transform .3s ease, box-shadow .3s ease;
}
.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(30, 58, 95, .14);
}
.gallery-thumb-link {
    display: block;
    text-decoration: none;
}
.gallery-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--site-navy);
}
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.gallery-card:hover .gallery-thumb img {
    transform: scale(1.04);
}
.gallery-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,.35) 100%);
    pointer-events: none;
}
.gallery-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: rgba(30, 58, 95, .82);
    backdrop-filter: blur(2px);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    padding: 5px 11px;
    border-radius: 999px;
}
.gallery-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    z-index: 2;
    transition: transform .3s ease;
}
.gallery-card:hover .gallery-play {
    transform: translate(-50%, -50%) scale(1.08);
}
.gallery-play svg {
    width: 100%;
    height: 100%;
}

.gallery-body {
    padding: 18px 18px 20px;
}
.gallery-title {
    font-family: var(--serif);
    font-size: 15px;
    font-weight: 700;
    color: var(--site-navy);
    line-height: 1.5;
    margin-bottom: 6px;
    letter-spacing: .02em;
}
.gallery-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.7;
    letter-spacing: .02em;
    margin-bottom: 14px;
}
.gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--site-navy);
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid rgba(30, 58, 95, .25);
    border-radius: 999px;
    letter-spacing: .04em;
    transition: background .25s, color .25s;
}
.gallery-btn:hover {
    background: var(--site-navy);
    color: #ffffff;
}
.gallery-btn::after {
    content: '▶';
    font-size: 8px;
}
@media(min-width:768px) {
    .gallery-section {
        padding: 64px 40px;
    }
    .gallery-h2 {
        font-size: 24px;
    }
    .gallery-sub {
        font-size: 14px;
        max-width: 560px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    .gallery-title {
        font-size: 16px;
    }
    .gallery-desc {
        font-size: 13px;
    }
}
@media(min-width:1024px) {
    .gallery-section {
        padding: 80px 88px;
    }
    .gallery-h2 {
        font-size: 28px;
    }
    .gallery-header .eyebrow {
        font-size: 16px;
    }
    .gallery-sub {
        font-size: 15px;
        max-width: 740px;
    }
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    .gallery-play {
        width: 48px;
        height: 48px;
    }
    .gallery-body {
        padding: 20px 20px 24px;
    }
    .gallery-btn {
        font-size: 13px;
        padding: 9px 18px;
    }
}

/* ================================================================
   もっと見る→　追加
   ================================================================ */
.gallery-more{
    text-align:center;
    margin-top:48px;
}

.gallery-more-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--site-navy);
    font-size:15px;
    font-weight:600;
    letter-spacing:.04em;
    text-decoration:none;
    transition:.25s ease;
}

.gallery-more-link span{
    transition:.25s ease;
}

.gallery-more-link:hover{
    opacity:.8;
}

.gallery-more-link:hover span{
    transform:translateX(4px);
}

@media(min-width:1024px){
    .gallery-more{
        margin-top:56px;
    }

    .gallery-more-link{
        font-size:16px;
    }
}

/* ================================================================
   資料ダウンロード
   ================================================================ */
.download-guide {
    background: #f8f8f8;
    padding: 56px 20px 60px;
    text-align: center;
}
.download-guide-inner {
    max-width: 760px;
    margin: 0 auto;
}
.download-guide .eyebrow {
    margin-bottom: 18px;
}
.download-guide-h2 {
    font-size: 20px;
    margin-bottom: 18px;
    color: var(--site-navy);
    font-weight: 500;
}
.download-guide-text {
    font-size: 14px;
    line-height: 2;
    letter-spacing: .05em;
    color: var(--text-muted);
    margin-bottom: 28px;
}
.download-guide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 260px;
    padding: 15px 34px;
    background: var(--accent);
    color: #ffffff;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .08em;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .16);
    transition: background .25s, transform .2s;
}
.download-guide-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}
@media(min-width:768px) {
    .gallery-section {
        padding: 64px 40px;
    }
    .gallery-h2 {
        font-size: 24px;
    }
    .gallery-sub {
        font-size: 14px;
        max-width: 560px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    .gallery-title {
        font-size: 16px;
    }
    .gallery-desc {
        font-size: 13px;
    }
}
@media(min-width:1024px) {
    .gallery-section {
        padding: 80px 88px;
    }
    .gallery-h2 {
        font-size: 28px;
    }
    .gallery-header .eyebrow {
        font-size: 16px;
    }
    .gallery-sub {
        font-size: 15px;
        max-width: 740px;
    }
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    .gallery-play {
        width: 48px;
        height: 48px;
    }
    .gallery-body {
        padding: 20px 20px 24px;
    }
    .gallery-btn {
        font-size: 13px;
        padding: 9px 18px;
    }
    .download-guide {
        padding: 72px 48px 76px;
    }
    .download-guide-h2 {
        font-size: 26px;
    }
    .download-guide-text {
        font-size: 15px;
        margin-bottom: 34px;
    }
    .download-guide-btn {
        width: auto;
        min-width: 260px;
        padding: 17px 52px;
    }
}

/* ================================================================
   PRICING
================================================================ */

.pricing-sec{
    padding:72px 20px;
    background:#f5f3f0;
}

.pricing-inner{
    max-width:1100px;
    margin:auto;
}

.pricing-title{
    margin-top:18px;
    font-size:32px;
    text-align:center;
}

.pricing-lead{
    margin:20px auto 48px;
    text-align:center;
    color:var(--text-muted);
    line-height:2;
}

.pricing-block{
    margin-top:56px;
}

.pricing-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    margin-bottom:18px;
    gap:12px;
}

.pricing-head h3{
    color:var(--site-navy);
    font-size:20px;
}

.pricing-head span{
    font-size:12px;
    color:#777;
}

.pricing-table{
    border:1px solid rgba(30,58,95,.18);
    background:#fff;
}

.pricing-row{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;
    padding:22px 20px;
    border-bottom:1px solid rgba(30,58,95,.12);
}

.pricing-row:last-child{
    border-bottom:none;
}

/* 左列 */

.pricing-name{
    flex:1;
    line-height:1.8;
     font-weight:600;
}

.pricing-service{
    display:block;
    font-size:18px;
    color:var(--text-head);
    line-height:1.5;
    font-weight:600;
}
.pricing-service a {
    color: #A4A4A4;
    display: inline-block;   /* transformを効かせる */
    transition: transform 0.2s ease, color 0.2s ease;
}

.pricing-service a:hover {
    transform: scale(1.05);  /* 5%拡大 */
    color: #333;             /* お好みで色も変更 */
}

.pricing-meta{
    display:block;
    margin-top:8px;
}

.pricing-meta strong{
    display:inline-block;
    padding:4px 10px;
    border-radius:999px;
    background:rgba(30,58,95,.08);
    color:var(--site-navy);
    font-size:12px;
    font-weight:600;
}

.pricing-note{
    display:block;
    margin-top:8px;
    font-size:12px;
    color:var(--accent);
    font-weight:600;
}

/* 右列 */

.pricing-price{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    text-align:right;
    flex-shrink:0;
}

.pricing-value{
    font-size:16px;
    font-weight:600;
    color:var(--site-navy);
    line-height:1.2;
}

.pricing-sub{
    margin-top:4px;
    font-size:12px;
    color:var(--accent);
    line-height:1.45;
    font-weight:600;
}

.pricing-price.free .pricing-value{
    color:var(--accent);
}

@media(max-width:767px){

    .pricing-row{
        flex-direction:column;
        align-items:flex-start;
        gap:8px;
        padding:14px 18px;
    }

    .pricing-price{
        align-items:flex-start;
        text-align:left;
        margin-top:0;
    }

    .pricing-service{
        font-size:16px;
        line-height:1.35;
    }

    .pricing-note{
        margin-top:4px;
    }

    .pricing-meta{
        margin-top:4px;
    }

    .pricing-value{
        font-size:18px;
        line-height:1.1;
    }

    .pricing-sub{
        margin-top:2px;
        line-height:1.3;
    }
}

@media(min-width:768px){

    .pricing-sec{
        padding:96px 48px;
    }

    .pricing-title{
        font-size:40px;
    }

}

@media(min-width:1024px){

    .pricing-sec{
        padding:110px 80px;
    }

    .pricing-row{
        padding:24px 64px;
    }

    .pricing-price{
        flex:0 0 180px;
    }

    .pricing-value{
        font-size:22px;
    }

}
