:root {
      --bg-cream: #F9F6F0;       /* 特有の白を避けた、温かみのあるニュアンスベージュ */
      --brand-terracotta: #D37B5D; /* 遊び心と洗練さを生むテラコッタ */
      --brand-sage: #8DA399;       /* 安心感を与えるくすんだセージグリーン */
      --text-dark: #332F2C;       /* 冷たさを排除した墨色 */
      --font-ja: 'Kiwi Maru', '筑紫A丸ゴシック', serif;
      --font-heading: 'Yusei Magic', 'Kiwi Maru', '筑紫A丸ゴシック', sans-serif;
      --font-en: 'Montserrat', sans-serif;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      background-color: var(--bg-cream);
      color: var(--text-dark);
      font-family: var(--font-ja);
      line-height: 1.8;
    }

    /* ヘッダーナビゲーション */
    header {
      position: absolute;
      top: 0; left: 0; width: 100%;
      display: flex; justify-content: space-between; align-items: center;
      padding: 30px 8%;
      z-index: 10;
    }
    .logo { font-size: 1.5rem; font-weight: 500; color: var(--text-dark); flex-shrink: 0; }

    /* 見出し全般：手書き風の太字フォントを使用 */
    .logo,
    .hero-title,
    .section-title,
    .concept-card h3,
    .fare-info-card h3,
    .simulator-card h3,
    .equip-block h4,
    .driver-name,
    .news-title,
    .journal-title,
    .footer-logo {
      font-family: var(--font-heading);
      font-weight: 400;
      -webkit-text-stroke: 0.5px currentColor;
      letter-spacing: 0.01em;
    }
    nav a {
      font-family: var(--font-en); font-size: 0.9rem; letter-spacing: 0.1em;
      text-decoration: none; color: var(--text-dark); margin-left: 30px; font-weight: 600;
    }
    @media (max-width: 700px) {
      header { padding: 22px 6%; }
      .logo { font-size: 1.15rem; }
      nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 4px 14px; max-width: 52%; }
      nav a { margin-left: 0; font-size: 0.7rem; }
    }

    /* エディトリアル（雑誌）風の可変ハイブリッドヒーロー */
    .hero {
      position: relative; height: 100vh; display: flex; align-items: center; padding: 0 8%;
    }
    .hero-slider {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;
    }
    .slide {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%;
      background-size: cover; background-position: center;
      opacity: 0; transition: opacity 2s ease-in-out;
    }
    .slide.active { opacity: 1; }
    .hero::after {
      content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
      background: linear-gradient(180deg, rgba(51,47,44,0.15) 0%, rgba(51,47,44,0.38) 100%);
      z-index: 2;
    }
    .hero-content { position: relative; z-index: 3; max-width: 650px; }
    .hero-title {
      font-size: 2.8rem; font-weight: 400; line-height: 1.6;
      color: #FFFFFF;
      text-shadow:
        0 2px 4px rgba(51,47,44,0.55),
        0 8px 24px rgba(51,47,44,0.35);
    }
    @media (max-width: 700px) {
      .hero { padding: 0 6%; }
      .hero-title { font-size: 1.9rem; }
    }

    /* 料金セクション＆シミュレーター */
    .fare-section { padding: 120px 8%; background-color: #FFFFFF; }
    @media (max-width: 700px) {
      .fare-section { padding: 70px 6%; }
    }

    /* ===== コンセプトセクション（ヒーロー直下） ===== */
    .concept-section { padding: 110px 8% 100px; background-color: var(--bg-cream); }
    @media (max-width: 700px) { .concept-section { padding: 64px 6% 60px; } }
    .concept-head { max-width: 600px; margin-bottom: 64px; }
    .concept-head .section-title { font-size: 2.4rem; }
    .concept-head p { font-size: 1rem; color: #6b6661; margin-top: 14px; }

    .concept-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
    @media (max-width: 900px) { .concept-grid { grid-template-columns: 1fr; gap: 24px; } }

    .concept-card {
      background-color: #FFFFFF; border-radius: 16px; padding: 40px 32px;
      border: 1px solid rgba(51,47,44,0.08);
    }
    .concept-mark {
      width: 48px; height: 48px; border-radius: 50%; background: var(--brand-terracotta);
      color: #fff; display: flex; align-items: center; justify-content: center;
      font-family: var(--font-en); font-size: 1.1rem; font-weight: 600; margin-bottom: 22px;
    }
    .concept-card:nth-child(2) .concept-mark { background: var(--brand-sage); }
    .concept-card:nth-child(3) .concept-mark { background: var(--text-dark); }
    .concept-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
    .concept-card p { font-size: 0.92rem; color: #6b6661; line-height: 1.85; }
    .section-title { font-family: var(--font-en); font-size: 3.5rem; color: var(--brand-terracotta); line-height: 1; }
    .section-subtitle { font-size: 1.1rem; margin-bottom: 60px; color: var(--brand-sage); }
    @media (max-width: 700px) {
      .section-title { font-size: 2.2rem; }
      .news-head .section-title, .journal-section .section-title { font-size: 1.9rem !important; }
    }
    
    .fare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
    @media (max-width: 768px) { .fare-grid { grid-template-columns: 1fr; gap: 40px; } }
    
    .fare-info-card {
      background-color: var(--bg-cream); padding: 45px; border-radius: 16px;
    }
    .fare-info-card h3 { color: var(--brand-terracotta); margin-bottom: 20px; font-size: 1.4rem; }
    .fare-info-card ul { list-style: none; margin-top: 25px; }
    .fare-info-card li { margin-bottom: 10px; padding-left: 20px; position: relative; }
    .fare-info-card li::before {
      content: '・'; position: absolute; left: 0; color: var(--brand-terracotta); font-weight: bold;
    }

    /* 機材オプション */
    .equip-block { margin-top: 36px; padding-top: 32px; border-top: 1px solid rgba(51,47,44,0.12); }
    .equip-block h4 { font-size: 1.05rem; color: var(--text-dark); margin-bottom: 6px; }
    .equip-block .equip-note { font-size: 0.85rem; color: #6b6661; margin-bottom: 20px; }
    .equip-list { display: flex; flex-direction: column; gap: 14px; }
    .equip-item {
      display: flex; align-items: center; gap: 16px; background: #FFFFFF;
      border-radius: 10px; padding: 16px 18px;
    }
    .equip-icon {
      flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
      background: rgba(211,123,93,0.12); display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
    }
    .equip-text { flex: 1; min-width: 0; }
    .equip-name { font-size: 0.95rem; font-weight: 500; display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; }
    .equip-desc { font-size: 0.82rem; color: #6b6661; margin-top: 4px; }
    .equip-fare { flex-shrink: 0; font-family: var(--font-en); font-size: 0.85rem; color: var(--brand-terracotta); font-weight: 600; white-space: nowrap; }

    .simulator-card {
      background-color: var(--brand-sage); color: #FFFFFF; padding: 45px; border-radius: 16px;
      box-shadow: 0 10px 30px rgba(141, 163, 153, 0.2);
    }
    .simulator-card h3 { margin-bottom: 25px; font-size: 1.4rem; font-weight: 500; }
    .sim-input-group { margin-bottom: 25px; }
    .sim-input-group label { display: block; margin-bottom: 10px; font-size: 0.95rem; }
    .sim-input-group select {
      width: 100%; padding: 16px; border-radius: 8px; border: none; font-size: 1rem;
      font-family: var(--font-ja); color: var(--text-dark); background-color: #FFFFFF;
    }
    
    .btn-submit {
      width: 100%; padding: 18px; background-color: var(--brand-terracotta); color: white;
      border: none; border-radius: 8px; font-size: 1.1rem; font-family: var(--font-ja);
      cursor: pointer; font-weight: bold; transition: background 0.3s, transform 0.2s;
    }
    .btn-submit:hover { background-color: #c4694b; }
    .btn-submit:active { transform: scale(0.98); }

    .sim-result {
      margin-top: 30px; border-top: 1px solid rgba(255,255,255,0.3); padding-top: 25px; text-align: center;
    }
    .sim-price { font-family: var(--font-en); font-size: 3rem; font-weight: 600; color: var(--bg-cream); margin: 5px 0; }

    /* ===== 共通：セクション見出し ===== */
    .section-eyebrow {
      font-family: var(--font-en); font-size: 0.8rem; letter-spacing: 0.25em;
      color: var(--brand-sage); font-weight: 600; margin-bottom: 8px;
      text-transform: uppercase;
    }

    /* ===== お知らせ（NEWS） ===== */
    .news-section { padding: 90px 8% 100px; background-color: var(--bg-cream); }
    @media (max-width: 700px) { .news-section { padding: 60px 6% 70px; } }
    .news-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; flex-wrap: wrap; gap: 20px; }
    .news-head .section-title { font-size: 2.6rem; margin-bottom: 0; }
    .news-more {
      font-family: var(--font-en); font-size: 0.85rem; letter-spacing: 0.08em; font-weight: 600;
      color: var(--text-dark); text-decoration: none; border-bottom: 1.5px solid var(--brand-terracotta);
      padding-bottom: 3px; white-space: nowrap;
    }
    .news-list { display: flex; flex-direction: column; }
    .news-row {
      display: flex; align-items: center; gap: 28px; padding: 26px 10px;
      border-top: 1px solid rgba(51,47,44,0.12); text-decoration: none; color: var(--text-dark);
      transition: padding-left 0.25s ease, background 0.25s ease;
    }
    .news-list .news-row:last-child { border-bottom: 1px solid rgba(51,47,44,0.12); }
    .news-row:hover { padding-left: 18px; background: rgba(141,163,153,0.08); }
    .news-date { font-family: var(--font-en); font-size: 0.85rem; color: var(--brand-sage); width: 110px; flex-shrink: 0; }
    .news-tag {
      flex-shrink: 0; font-family: var(--font-en); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.05em;
      padding: 5px 14px; border-radius: 999px; background: var(--brand-terracotta); color: #fff;
    }
    .news-tag.is-info { background: var(--brand-sage); }
    .news-title { flex: 1; font-size: 1rem; }
    @media (max-width: 700px) {
      .news-row { flex-wrap: wrap; gap: 8px 14px; padding: 22px 6px; align-items: flex-start; }
      .news-date { width: auto; order: 1; font-size: 0.78rem; }
      .news-tag { order: 2; }
      .news-title { width: 100%; order: 3; font-size: 0.95rem; line-height: 1.7; }
    }

    /* ===== ドライバープロフィール（DRIVER）— シグネチャーセクション ===== */
    .driver-section {
      padding: 130px 8%; background-color: var(--brand-sage); position: relative; overflow: hidden;
    }
    .driver-section .section-eyebrow { color: rgba(255,255,255,0.75); position: relative; z-index: 1; }
    .driver-section .section-title { color: var(--bg-cream); position: relative; z-index: 1; }
    .driver-section .section-subtitle { color: rgba(255,255,255,0.85); position: relative; z-index: 1; }

    /* 走行するハイエースの背景アニメーション */
    .road-scene {
      position: absolute; left: 0; width: 100%; height: 130px; bottom: 36px;
      overflow: hidden; pointer-events: none; z-index: 0;
    }
    .road-line {
      position: absolute; bottom: 18px; left: 0; width: 100%; height: 2px;
      background: repeating-linear-gradient(to right, rgba(249,246,240,0.35) 0 24px, transparent 24px 48px);
    }
    .hiace {
      position: absolute; bottom: 18px; left: -260px; width: 220px; height: auto;
      animation: drive-across 22s linear infinite;
    }
    @keyframes drive-across {
      0%   { left: -260px; }
      100% { left: 100%; }
    }
    @media (prefers-reduced-motion: reduce) {
      .hiace { animation: none; left: 38%; }
    }
    @media (max-width: 760px) {
      .road-scene { height: 90px; bottom: 18px; }
      .hiace { width: 150px; animation-duration: 18s; }
    }

    .driver-list { display: flex; flex-direction: column; gap: 90px; margin-top: 70px; position: relative; z-index: 1; }
    .driver-row {
      display: grid; grid-template-columns: 280px 1fr; gap: 60px; align-items: start;
    }
    .driver-row:nth-child(even) { direction: rtl; }
    .driver-row:nth-child(even) > * { direction: ltr; }

    @media (max-width: 760px) {
      .driver-section { padding: 90px 6%; }
      .driver-list { gap: 70px; margin-top: 48px; }
      .driver-row, .driver-row:nth-child(even) {
        grid-template-columns: 1fr; direction: ltr; gap: 28px;
      }
      .driver-photo-wrap { max-width: 220px; }
      .driver-badge { left: 0; bottom: -14px; font-size: 0.68rem; padding: 8px 14px; }
      .driver-quote { padding: 22px 22px; font-size: 0.95rem; }
    }

    .driver-photo-wrap { position: relative; }
    .driver-photo {
      width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 12px;
      box-shadow: 0 20px 40px rgba(51,47,44,0.25);
    }
    .driver-badge {
      position: absolute; bottom: -18px; left: -18px; background: var(--brand-terracotta); color: #fff;
      font-family: var(--font-en); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em;
      padding: 10px 18px; border-radius: 999px; box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    }

    .driver-info { color: var(--bg-cream); padding-top: 8px; }
    .driver-name-row { display: flex; align-items: baseline; gap: 16px; margin-bottom: 6px; flex-wrap: wrap; }
    .driver-name { font-size: 1.9rem; font-weight: 500; }
    .driver-role { font-family: var(--font-en); font-size: 0.8rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.75); }
    .driver-tenure { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin-bottom: 24px; }

    .driver-quote {
      position: relative; background: rgba(249,246,240,0.12); border-radius: 14px;
      padding: 28px 32px; margin-bottom: 24px; font-size: 1.05rem; line-height: 1.9;
    }
    .driver-quote::before {
      content: '"'; position: absolute; top: -6px; left: 16px; font-family: Georgia, serif;
      font-size: 3.5rem; color: rgba(249,246,240,0.35); line-height: 1;
    }
    .driver-tags { display: flex; flex-wrap: wrap; gap: 10px; }
    .driver-tag {
      font-size: 0.82rem; padding: 6px 16px; border-radius: 999px; border: 1px solid rgba(249,246,240,0.5);
      color: var(--bg-cream);
    }

    /* ===== ブログ／ジャーナル（JOURNAL） ===== */
    .journal-section { padding: 120px 8%; background-color: #FFFFFF; }
    @media (max-width: 700px) { .journal-section { padding: 70px 6%; } }
    .journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 60px; }
    @media (max-width: 900px) { .journal-grid { grid-template-columns: 1fr; } }

    .journal-card { text-decoration: none; color: var(--text-dark); display: block; }
    .journal-thumb {
      width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 14px; margin-bottom: 20px;
      transition: transform 0.4s ease;
    }
    .journal-card:hover .journal-thumb { transform: scale(1.03); }
    .journal-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; }
    .journal-date { font-family: var(--font-en); font-size: 0.8rem; color: var(--brand-sage); }
    .journal-cat {
      font-size: 0.7rem; font-weight: 600; color: var(--brand-terracotta);
      border: 1px solid var(--brand-terracotta); border-radius: 999px; padding: 3px 12px;
    }
    .journal-title { font-size: 1.1rem; line-height: 1.6; margin-bottom: 8px; }
    .journal-excerpt { font-size: 0.88rem; color: #6b6661; line-height: 1.7; }

    /* ===== 安心ポイント帯 ===== */
    .trust-strip {
      background-color: var(--bg-cream); padding: 70px 8%;
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center;
    }
    @media (max-width: 900px) { .trust-strip { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 700px) { .trust-strip { padding: 50px 6%; gap: 36px 20px; } }
    .trust-item .trust-icon { font-size: 1.8rem; margin-bottom: 12px; }
    .trust-item .trust-label { font-size: 0.9rem; line-height: 1.7; }

    /* ===== フッター ===== */
    footer {
      background-color: var(--text-dark); color: rgba(249,246,240,0.85); padding: 80px 8% 40px;
    }
    @media (max-width: 700px) { footer { padding: 56px 6% 30px; } }
    .footer-grid {
      display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 60px; padding-bottom: 50px;
      border-bottom: 1px solid rgba(249,246,240,0.15);
    }
    @media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; gap: 36px; } }
    .footer-logo { font-size: 1.4rem; color: var(--bg-cream); margin-bottom: 16px; }
    .footer-desc { font-size: 0.88rem; line-height: 1.9; opacity: 0.75; max-width: 320px; }
    .footer-heading { font-family: var(--font-en); font-size: 0.78rem; letter-spacing: 0.1em; color: var(--brand-terracotta); margin-bottom: 18px; }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 12px; }
    .footer-links a { color: rgba(249,246,240,0.85); text-decoration: none; font-size: 0.92rem; }
    .footer-links a:hover { color: var(--brand-terracotta); }
    .footer-contact-num { font-family: var(--font-en); font-size: 1.6rem; color: var(--bg-cream); margin-bottom: 4px; }
    .footer-bottom { padding-top: 30px; font-size: 0.78rem; opacity: 0.55; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }