
    /* =====================================================
       CSS変数：白ベース・黒グレー中心・アクセント1色（#1C2B4A）
       スマホファーストで設計
    ====================================================== */
    :root {
      --bg: #ffffff;
      --bg-gray: #f7f7f5;
      --bg-dark: #111111;
      --text: #111111;
      --text-mid: #444444;
      --text-muted: #888888;
      --border: #e5e5e5;
      --border-mid: #d0d0d0;
      --accent: #1C2B4A;
      --accent-hover: #253562;
      --line: #06C755;
      --radius: 4px;
      --trans: 0.18s ease;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    /* お知らせバー */
    .notice-bar {
      display: none;
      /* ★ 休業時は display:flex に変更 */
      background: #c0392b;
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      padding: 10px 0;
      justify-content: flex-start;
      align-items: center;
      gap: 8px;
      overflow: hidden;
      white-space: nowrap;
      position: sticky;
      top: 0;
      z-index: 200;
    }

    .notice-bar > span:first-child {
      flex: 0 0 auto;
      padding-left: 16px;
    }

    #notice-text {
      display: inline-block;
      flex: 0 0 auto;
      min-width: max-content;
      padding-right: 16px;
      white-space: nowrap;
      will-change: transform;
      animation: notice-marquee 16s linear infinite;
    }

    @keyframes notice-marquee {
      from { transform: translateX(100vw); }
      to { transform: translateX(-100%); }
    }

    .notice-bar a {
      color: #fff;
      text-decoration: underline;
    }

    .notice-bar[style*="flex"] + header {
      top: var(--notice-offset, 40px);
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Inter', 'Noto Sans JP', sans-serif;
      line-height: 1.75;
      font-size: 15px;
      -webkit-font-smoothing: antialiased;
    }

    img {
      display: block;
      max-width: 100%;
      height: auto;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      font-family: inherit;
      cursor: pointer;
    }

    /* =====================================================
       レイアウト
    ====================================================== */
    .container {
      max-width: 860px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .sec {
      padding: 80px 0;
    }

    .sec--gray {
      padding: 80px 0;
      background: var(--bg-gray);
    }

    .sec--dark {
      padding: 80px 0;
      background: var(--bg-dark);
    }

    @media (max-width: 680px) {

      .sec,
      .sec--gray,
      .sec--dark {
        padding: 56px 0;
      }
    }

    /* =====================================================
       タイポグラフィ
    ====================================================== */
    .sec-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-muted);
      display: block;
      margin-bottom: 12px;
    }

    h2.sec-title {
      font-size: clamp(22px, 4vw, 30px);
      font-weight: 700;
      line-height: 1.3;
      letter-spacing: -0.02em;
      margin-bottom: 44px;
    }

    h3 {
      font-size: 17px;
      font-weight: 700;
      line-height: 1.45;
    }

    p {
      font-size: 15px;
      color: var(--text-mid);
      line-height: 1.85;
    }

    /* =====================================================
       ボタン
    ====================================================== */
    .btn-cta {
      display: inline-block;
      background: var(--accent);
      color: #fff;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0.03em;
      padding: 15px 36px;
      border-radius: var(--radius);
      border: none;
      transition: background var(--trans), transform var(--trans);
      text-align: center;
    }

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

    .btn-cta--full {
      width: 100%;
      display: block;
      padding: 17px 24px;
      font-size: 16px;
    }

    .btn-line {
      display: inline-block;
      background: var(--line);
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      padding: 13px 28px;
      border-radius: var(--radius);
      border: none;
      transition: opacity var(--trans);
      text-align: center;
    }

    .btn-line:hover {
      opacity: 0.85;
    }

    .btn-line--full {
      width: 100%;
      display: block;
      padding: 15px 24px;
      font-size: 15px;
    }

    .btn-outline {
      display: inline-block;
      background: transparent;
      color: var(--text);
      font-size: 14px;
      font-weight: 600;
      padding: 12px 24px;
      border-radius: var(--radius);
      border: 1.5px solid var(--border-mid);
      transition: border-color var(--trans);
      text-align: center;
    }

    .btn-outline:hover {
      border-color: var(--text);
    }

    .cta-pair {
      display: flex;
      flex-direction: column;
      gap: 12px;
      width: 100%;
    }

    .cta-pair > a {
      flex: 1 1 0;
      min-height: 58px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    @media (min-width: 500px) {
      .cta-pair {
        flex-direction: row;
        width: min(100%, 760px);
        margin-inline: auto;
      }

      .btn-cta--full,
      .btn-line--full {
        width: auto;
      }
    }

    /* =====================================================
       HEADER
    ====================================================== */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 60px;
      padding: 0 24px;
      max-width: 1080px;
      margin: 0 auto;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-img {
      width: 34px;
      height: 34px;
      border-radius: 4px;
      object-fit: cover;
    }

    .logo-text {
      font-size: 14px;
      font-weight: 700;
      line-height: 1.25;
    }

    .logo-sub {
      font-size: 10px;
      color: var(--text-muted);
      letter-spacing: 0.08em;
      display: block;
    }

    .pc-nav {
      display: none;
      align-items: center;
      gap: 20px;
    }

    @media (min-width: 900px) {
      .pc-nav {
        display: flex;
      }
    }

    .pc-nav a {
      font-size: 13px;
      color: var(--text-muted);
      font-weight: 500;
      transition: color var(--trans);
    }

    .pc-nav a:hover {
      color: var(--text);
    }

    .header-cta {
      display: none;
    }

    @media (min-width: 680px) {
      .header-cta {
        display: block;
      }
    }

    .header-cta .btn-cta {
      font-size: 13px;
      padding: 10px 20px;
    }

    .hamburger {
      display: flex;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      padding: 6px;
    }

    @media (min-width: 680px) {
      .hamburger {
        display: none;
      }
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--text);
      transition: all 0.28s;
    }

    .mobile-nav {
      display: none;
      position: fixed;
      inset: 60px 0 0 0;
      background: var(--bg);
      z-index: 99;
      flex-direction: column;
      padding: 28px 24px;
      gap: 0;
      border-top: 1px solid var(--border);
      overflow-y: auto;
    }

    .mobile-nav.open {
      display: flex;
    }

    .mobile-nav a {
      font-size: 17px;
      font-weight: 600;
      padding: 17px 0;
      border-bottom: 1px solid var(--border);
      color: var(--text);
    }

    .mobile-nav-btns {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 24px;
    }

    /* =====================================================
       ① HERO
    ====================================================== */
    #hero {
      display: block;
    }

    /* スマホ：上部が画像 */
    .hero-img {
      width: 100%;
      height: 50vw;
      min-height: 220px;
      max-height: 380px;
      overflow: hidden;
      background: #e0e0e0;
      flex-shrink: 0;
    }

    /* ★ img5.webp：メインビジュアル（縦長の男性・サロンイメージ） */
    .hero-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 15%;
    }

    .hero-body {
      flex: 1;
      display: flex;
      align-items: center;
      padding: 40px 24px 64px;
    }

    .hero-inner {
      max-width: 560px;
    }

    .hero-eyebrow {
      display: inline-block;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-muted);
      border: 1px solid var(--border-mid);
      padding: 5px 12px;
      border-radius: 2px;
      margin-bottom: 18px;
    }

    /* H1：SEOキーワード「米子 メンズ脱毛」「ヒゲ脱毛 米子」含む */
    h1.hero-title {
      font-size: clamp(28px, 7vw, 52px);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.03em;
      margin-bottom: 18px;
    }

    h1.hero-title strong {
      color: var(--accent);
    }

    .hero-desc {
      font-size: 15px;
      color: var(--text-mid);
      line-height: 1.8;
      margin-bottom: 24px;
      max-width: 400px;
    }

    .hero-price {
      display: inline-flex;
      align-items: baseline;
      gap: 6px;
      margin-bottom: 28px;
      padding: 10px 16px;
      background: var(--bg-gray);
      border: 1px solid var(--border);
      border-radius: var(--radius);
    }

    .hp-label {
      font-size: 12px;
      color: var(--text-muted);
    }

    .hp-num {
      font-size: 26px;
      font-weight: 700;
      color: var(--accent);
    }

    .hp-unit {
      font-size: 13px;
      color: var(--text-muted);
    }

    .hero-note {
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 14px;
    }

    .hero-sub-tag {
      font-size: 13px;
      font-weight: 700;
      color: var(--accent);
      letter-spacing: 0.06em;
      margin: 6px 0 14px;
    }

    .hero-proof {
      display: flex;
      flex-direction: column;
      gap: 5px;
      margin: 0 0 16px;
    }

    .proof-item {
      font-size: 13px;
      font-weight: 600;
      color: var(--text-mid);
    }

    @media (min-width: 560px) {
      .hero-proof {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px 16px;
      }
    }


    /* =====================================================
       信頼バー
    ====================================================== */
    .trust-bar {
      background: var(--accent);
      color: #fff;
    }

    .trust-inner {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      max-width: 860px;
      margin: 0 auto;
    }

    .trust-item {
      padding: 22px 16px;
      text-align: center;
      border-right: 1px solid rgba(255, 255, 255, 0.15);
    }

    .trust-item:last-child {
      border-right: none;
    }

    .trust-num {
      font-size: clamp(20px, 3.5vw, 28px);
      font-weight: 700;
      display: block;
      line-height: 1.1;
    }

    .trust-label {
      font-size: 11px;
      opacity: 0.65;
      margin-top: 3px;
      display: block;
    }

    @media (max-width: 480px) {
      .trust-inner {
        grid-template-columns: 1fr;
      }

      .trust-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
      }

      .trust-item:last-child {
        border-bottom: none;
      }
    }

    /* =====================================================
       ② 悩み訴求
    ====================================================== */
    .pain-list {
      display: flex;
      flex-direction: column;
    }

    .pain-item {
      display: grid;
      grid-template-columns: 28px 1fr;
      gap: 16px;
      align-items: start;
      padding: 22px 0;
      border-bottom: 1px solid var(--border);
    }

    .pain-item:first-child {
      border-top: 1px solid var(--border);
    }

    .pain-num {
      font-size: 12px;
      font-weight: 700;
      color: var(--text-muted);
      padding-top: 2px;
    }

    .pain-text h3 {
      font-size: 16px;
      margin-bottom: 5px;
    }

    .pain-text p {
      font-size: 14px;
      color: var(--text-muted);
    }

    .concern-lead {
      max-width: 720px;
      margin: -26px auto 30px;
      text-align: center;
      color: var(--text-mid);
      font-size: 14px;
    }

    .concern-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
    }

    @media (min-width: 720px) {
      .concern-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    .concern-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 20px 18px;
    }

    .concern-tag {
      display: inline-block;
      margin-bottom: 10px;
      color: var(--accent);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
    }

    .concern-card h3 {
      min-height: 48px;
      margin-bottom: 10px;
      font-size: 16px;
    }

    .concern-card p {
      font-size: 13px;
      line-height: 1.75;
      color: var(--text-muted);
    }

    .concern-card p + p {
      margin-top: 9px;
      color: var(--text-mid);
    }

    .concern-card strong {
      color: var(--text);
      font-weight: 700;
    }

    .concern-cta {
      margin-top: 30px;
      text-align: center;
    }

    .concern-cta p {
      max-width: 620px;
      margin: 0 auto 16px;
      font-size: 14px;
    }

    @media (max-width: 719px) {
      .concern-lead {
        margin-top: -28px;
        text-align: left;
      }

      .concern-card {
        padding: 18px 16px;
      }

      .concern-card h3 {
        min-height: 0;
      }
    }

    /* =====================================================
       ③ 解決提示
    ====================================================== */
    .solution-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1px;
      margin-bottom: 40px;
      border: 1px solid var(--border);
    }

    @media (min-width: 560px) {
      .solution-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    .solution-card {
      background: var(--bg);
      padding: 26px 22px;
      border: none;
    }

    .solution-card h3 {
      font-size: 15px;
      margin-bottom: 6px;
    }

    .solution-card p {
      font-size: 13px;
    }

    /* =====================================================
       ④ 選ばれる理由
    ====================================================== */
    .reasons-list {
      display: flex;
      flex-direction: column;
      gap: 36px;
    }

    .reason-item {
      display: grid;
      grid-template-columns: 52px 1fr;
      gap: 18px;
      align-items: start;
    }

    .reason-num {
      font-size: 34px;
      font-weight: 700;
      color: var(--border-mid);
      line-height: 1;
      padding-top: 4px;
    }

    .reason-body h3 {
      margin-bottom: 8px;
    }

    .reason-body p {
      font-size: 14px;
    }

    .reason-scene {
      border-radius: 12px;
      overflow: hidden;
    }

    .reason-scene img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    /* =====================================================
       ⑤ 施術の流れ
    ====================================================== */
    .flow-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      position: relative;
    }

    .flow-list::before { display: none; }

    .flow-item {
      display: flex;
      flex-direction: column;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 4px;
      overflow: hidden;
      padding-bottom: 0;
      position: relative;
    }

    .flow-item:last-child {
      padding-bottom: 0;
    }

    .flow-img-step {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      object-position: center center;
      display: block;
    }

    .flow-inner-wrap {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      padding: 12px;
    }

    .flow-dot {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--bg-gray);
      border: 1.5px solid var(--border-mid);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 700;
      color: var(--accent);
      position: relative;
      z-index: 1;
      flex-shrink: 0;
    }

    .flow-item:nth-child(2) .flow-dot {
      background: var(--accent);
      border-color: var(--accent);
      color: #fff;
    }

    .flow-body {
      padding-top: 8px;
    }

    .flow-body h3 {
      margin-bottom: 5px;
    }

    .flow-body p {
      font-size: 14px;
    }

    .flow-note {
      display: inline-block;
      font-size: 11px;
      color: var(--accent);
      background: rgba(28, 43, 74, 0.07);
      padding: 3px 10px;
      border-radius: 2px;
      margin-top: 7px;
    }

    /* =====================================================
       ⑥ 料金・安心
    ====================================================== */
    .price-table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 32px;
    }

    .price-table th,
    .price-table td {
      padding: 12px 14px;
      text-align: left;
      border-bottom: 1px solid var(--border);
      font-size: 14px;
    }

    .price-table th {
      font-weight: 500;
      width: 65%;
      color: var(--text-mid);
    }

    .price-table td {
      font-weight: 700;
      color: var(--accent);
      white-space: nowrap;
      text-align: right;
    }

    /* カテゴリ見出し行 */
    .price-cat th {
      background: var(--accent);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 8px 14px;
      border-bottom: none;
      border-top: none;
    }

    .price-cat th[colspan] {
      width: 100%;
    }

    /* 初回価格行 */
    .price-first {
      background: rgba(28, 43, 74, 0.05);
    }

    .price-first th {
      font-weight: 700;
      color: var(--text);
    }

    .price-first td {
      font-size: 16px;
    }

    .price-new-badge {
      display: inline-block;
      font-size: 10px;
      font-weight: 700;
      background: #e8562a;
      color: #fff;
      padding: 1px 6px;
      border-radius: 2px;
      margin-left: 7px;
      vertical-align: middle;
      letter-spacing: 0.04em;
    }

    /* カテゴリ間の余白区切り */
    .price-spacer td,
    .price-spacer th {
      padding: 0;
      border: none;
      height: 8px;
      background: var(--bg-gray);
    }

    .price-note {
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 28px;
      line-height: 1.8;
    }

    /* 料金表 折りたたみ */
    .price-detail {
      display: none;
    }

    .price-detail.open {
      display: table-row-group;
    }

    .btn-price-toggle {
      display: block;
      width: 100%;
      margin: 0 0 24px;
      padding: 12px;
      background: none;
      border: 1px solid var(--border);
      color: var(--accent);
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      border-radius: var(--radius);
      text-align: center;
      transition: background var(--trans);
    }

    .btn-price-toggle:hover {
      background: var(--bg-gray);
    }

    .assurance-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      border: 1px solid var(--border);
    }

    @media (min-width: 560px) {
      .assurance-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .assurance-item {
      background: var(--bg-gray);
      padding: 20px 14px;
      text-align: center;
    }

    .assurance-item h4 {
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 3px;
    }

    .assurance-item p {
      font-size: 12px;
    }

    /* =====================================================
       ⑦ 代表
    ====================================================== */
    .profile-layout {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }

    @media (min-width: 680px) {
      .profile-layout {
        flex-direction: row;
        gap: 48px;
        align-items: flex-start;
      }
    }

    .profile-img-wrap {
      width: 100%;
      max-width: 240px;
      flex-shrink: 0;
    }

    /* ★ img1.jpg：代表プロフィール写真 */
    .profile-img-wrap img {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      object-position: center top;
      border-radius: var(--radius);
      background: #e0e0e0;
      min-height: 200px;
    }

    .profile-name {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 3px;
    }

    .profile-role {
      font-size: 12px;
      color: var(--text-muted);
      letter-spacing: 0.08em;
      margin-bottom: 20px;
    }

    .profile-quote {
      border-left: 3px solid var(--accent);
      padding: 14px 18px;
      margin-bottom: 18px;
      background: var(--bg-gray);
    }

    .profile-quote p {
      font-size: 15px;
      color: var(--text);
      line-height: 1.8;
    }

    .profile-text {
      font-size: 14px;
    }

    .mt20 {
      margin-top: 20px;
    }

    .mt28 {
      margin-top: 28px;
    }

    /* =====================================================
       CTAバナー（セクション間）
    ====================================================== */
    .cta-banner {
      background: var(--bg-gray);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 52px 24px;
      text-align: center;
    }

    .cta-banner h3 {
      font-size: clamp(17px, 3vw, 22px);
      margin-bottom: 7px;
    }

    .cta-banner p {
      font-size: 14px;
      margin-bottom: 26px;
    }

    .cta-banner-btns {
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: center;
    }

    @media (min-width: 480px) {
      .cta-banner-btns {
        flex-direction: row;
        justify-content: center;
      }
    }

    /* =====================================================
       ⑧ アクセス
    ====================================================== */
    .access-layout {
      display: flex;
      flex-direction: column;
      gap: 36px;
    }

    @media (min-width: 768px) {
      .access-layout {
        flex-direction: row;
        gap: 48px;
        align-items: flex-start;
      }

      .access-info,
      .access-map {
        flex: 1;
      }
    }

    .access-table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 24px;
    }

    .access-table th,
    .access-table td {
      padding: 12px 0;
      border-bottom: 1px solid var(--border);
      font-size: 14px;
      vertical-align: top;
    }

    .access-table th {
      width: 90px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      color: var(--text-muted);
      padding-right: 14px;
      white-space: nowrap;
    }

    .access-table td {
      color: var(--text-mid);
      line-height: 1.7;
    }

    .access-table a {
      color: var(--accent);
      font-weight: 600;
    }

    .access-btns {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    @media (min-width: 480px) {
      .access-btns {
        flex-direction: row;
      }
    }

    .map-frame {
      width: 100%;
      height: 280px;
      border: none;
      border-radius: var(--radius);
    }

    .prep-section {
      margin-top: 40px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 26px;
    }

    .prep-lead {
      font-size: 13.5px;
      line-height: 1.9;
      color: var(--text-mid);
      margin-bottom: 20px;
    }

    .prep-products {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .prep-product {
      display: grid;
      grid-template-columns: 112px 1fr;
      gap: 16px;
      align-items: center;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 14px;
      background: #fafafa;
    }

    .prep-product img {
      width: 112px;
      aspect-ratio: 1 / 1;
      object-fit: contain;
      background: #fff;
      border-radius: 6px;
    }

    .prep-product h4 {
      font-size: 14px;
      line-height: 1.45;
      margin-bottom: 7px;
      color: var(--text);
    }

    .prep-product p {
      font-size: 12.5px;
      line-height: 1.7;
      color: var(--text-muted);
      margin-bottom: 10px;
    }

    .prep-buy-links {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .prep-buy-links a {
      display: inline-block;
      padding: 8px 12px;
      border-radius: var(--radius);
      background: var(--accent);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
    }

    .prep-affiliate-note {
      margin-top: 14px;
      font-size: 11px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    @media (max-width: 760px) {
      .prep-products {
        grid-template-columns: 1fr;
      }

      .prep-product {
        grid-template-columns: 96px 1fr;
      }

      .prep-product img {
        width: 96px;
      }
    }

    /* =====================================================
       FAQ
    ====================================================== */
    .faq-wrap {
      max-width: 640px;
    }

    .faq-item {
      border-bottom: 1px solid var(--border);
    }

    .faq-q {
      width: 100%;
      text-align: left;
      padding: 18px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      background: none;
      border: none;
      color: var(--text);
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
    }

    .faq-q:hover {
      color: var(--accent);
    }

    .faq-icon {
      flex-shrink: 0;
      font-size: 20px;
      color: var(--text-muted);
      transition: transform 0.28s;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
    }

    .faq-a {
      display: none;
      padding: 0 0 18px;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.85;
    }

    .faq-item.open .faq-a {
      display: block;
    }

    /* =====================================================
       ⑨ BOOKING（ダーク背景）
    ====================================================== */
    #booking {
      background: var(--bg-dark);
      color: #fff;
      padding: 72px 0;
    }

    #booking .sec-label {
      color: rgba(255, 255, 255, 0.35);
    }

    #booking h2.sec-title {
      color: #fff;
    }

    #booking p {
      color: rgba(255, 255, 255, 0.55);
    }

    .booking-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 20px 0 36px;
    }

    .booking-badge {
      font-size: 12px;
      padding: 5px 12px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: rgba(255, 255, 255, 0.6);
      border-radius: 2px;
    }

    .booking-wrap {
      max-width: 620px;
    }

    .step-nav {
      display: flex;
      margin-bottom: 28px;
    }

    .step-item {
      flex: 1;
      padding: 10px 8px;
      text-align: center;
      border-bottom: 2px solid rgba(255, 255, 255, 0.1);
      font-size: 11px;
      color: rgba(255, 255, 255, 0.3);
      letter-spacing: 0.06em;
      transition: all 0.2s;
    }

    .step-item.active {
      border-color: #fff;
      color: #fff;
      font-weight: 700;
    }

    .step-item.done {
      border-color: rgba(255, 255, 255, 0.25);
      color: rgba(255, 255, 255, 0.25);
    }

    .bk-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 26px;
      border-radius: var(--radius);
      margin-bottom: 10px;
    }

    .bk-card h3 {
      font-size: 15px;
      color: #fff;
      margin-bottom: 18px;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .bk-back {
      background: none;
      border: none;
      color: rgba(255, 255, 255, 0.35);
      font-size: 12px;
      padding: 0;
      margin-bottom: 12px;
      cursor: pointer;
    }

    .bk-back:hover {
      color: #fff;
    }

    .cal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 14px;
    }

    .cal-title {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
    }

    .cal-nav {
      background: none;
      border: 1px solid rgba(255, 255, 255, 0.18);
      color: rgba(255, 255, 255, 0.45);
      width: 32px;
      height: 32px;
      font-size: 16px;
      cursor: pointer;
      transition: all 0.18s;
    }

    .cal-nav:hover:not(:disabled) {
      border-color: #fff;
      color: #fff;
    }

    .cal-nav:disabled {
      opacity: 0.12;
      cursor: default;
    }

    .cal-head {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 2px;
      margin-bottom: 4px;
    }

    .cal-head span {
      text-align: center;
      font-size: 11px;
      color: rgba(255, 255, 255, 0.3);
      padding: 2px 0;
    }

    .cal-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 2px;
    }

    .cal-day {
      aspect-ratio: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.65);
      border: 1px solid transparent;
      cursor: pointer;
      border-radius: 2px;
      transition: all 0.15s;
    }

    .cal-day:hover:not(.cal-dis):not(.cal-blank) {
      border-color: #fff;
      color: #fff;
    }

    .cal-today {
      border-color: rgba(255, 255, 255, 0.22);
    }

    .cal-sel {
      background: #fff;
      color: var(--accent) !important;
      font-weight: 700;
    }

    .cal-dis {
      opacity: 0.14;
      cursor: default;
    }

    .cal-blank {
      cursor: default;
    }

    .slots-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
    }

    .slot-btn {
      padding: 8px 14px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: none;
      color: rgba(255, 255, 255, 0.65);
      font-size: 13px;
      border-radius: 2px;
      cursor: pointer;
      transition: all 0.15s;
    }

    .slot-btn:hover {
      border-color: #fff;
      color: #fff;
    }

    .slot-btn.sel {
      background: #fff;
      color: var(--accent);
      border-color: #fff;
      font-weight: 700;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;
      margin-bottom: 10px;
    }

    @media (min-width: 480px) {
      .form-row {
        grid-template-columns: 1fr 1fr;
      }
    }

    .form-group {
      margin-bottom: 10px;
    }

    .form-label {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.45);
      display: block;
      margin-bottom: 4px;
    }

    .form-input {
      width: 100%;
      padding: 10px 13px;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.14);
      color: #fff;
      font-size: 14px;
      border-radius: 2px;
      outline: none;
      transition: border-color 0.18s;
      font-family: inherit;
    }

    .form-input::placeholder {
      color: rgba(255, 255, 255, 0.22);
    }

    .form-input:focus {
      border-color: rgba(255, 255, 255, 0.45);
    }

    select.form-input option {
      background: #1e2a3a;
      color: #fff;
    }

    .bk-summary {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 12px 14px;
      margin-bottom: 18px;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.6);
    }

    .btn-submit {
      padding: 13px 28px;
      background: #fff;
      color: var(--accent);
      font-size: 14px;
      font-weight: 700;
      border: none;
      border-radius: var(--radius);
      cursor: pointer;
      transition: opacity 0.18s;
    }

    .btn-submit:hover {
      opacity: 0.9;
    }

    .btn-submit:disabled {
      opacity: 0.28;
      cursor: default;
    }

    .err-msg {
      font-size: 13px;
      color: #ff7b7b;
      padding: 10px 14px;
      background: rgba(255, 0, 0, 0.08);
      margin-top: 10px;
      display: none;
    }

    .done-box {
      text-align: center;
      padding: 44px 24px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius);
    }

    .done-icon {
      width: 52px;
      height: 52px;
      border: 2px solid rgba(255, 255, 255, 0.35);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
    }

    .done-icon svg {
      width: 22px;
      height: 22px;
      color: #fff;
    }

    .done-box h3 {
      color: #fff;
      font-size: 19px;
      margin-bottom: 10px;
    }

    .done-box p {
      color: rgba(255, 255, 255, 0.45);
      font-size: 14px;
    }

    #gas-notice {
      display: none;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.12);
      padding: 13px 16px;
      margin-bottom: 18px;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.55);
      border-radius: 2px;
    }

    .alt-booking {
      margin-top: 28px;
      padding: 22px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius);
    }

    .alt-booking p {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.35);
      margin-bottom: 14px;
    }

    .alt-btns {
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    @media (min-width: 480px) {
      .alt-btns {
        flex-direction: row;
      }
    }

    .btn-white {
      display: inline-block;
      background: transparent;
      border: 1px solid rgba(255, 255, 255, 0.25);
      color: rgba(255, 255, 255, 0.65);
      font-size: 14px;
      font-weight: 600;
      padding: 11px 22px;
      border-radius: var(--radius);
      transition: all 0.18s;
      text-align: center;
    }

    .btn-white:hover {
      border-color: #fff;
      color: #fff;
    }

    /* =====================================================
       FOOTER
    ====================================================== */
    footer {
      border-top: 1px solid var(--border);
      padding: 40px 24px 24px;
    }

    .footer-inner {
      max-width: 860px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 24px;
    }

    .footer-brand {
      flex: 1;
      min-width: 200px;
    }

    .footer-address {
      font-style: normal;
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.85;
      margin-top: 10px;
    }

    .footer-address a {
      color: var(--accent);
    }

    .footer-kw {
      font-size: 10px;
      color: #d0d0d0;
      margin-top: 8px;
    }

    .footer-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 16px;
      align-items: flex-start;
      max-width: 280px;
    }

    .footer-nav a {
      font-size: 12px;
      color: var(--text-muted);
      transition: color 0.18s;
    }

    .footer-nav a:hover {
      color: var(--text);
    }

    .footer-copy {
      max-width: 860px;
      margin: 0 auto;
      font-size: 11px;
      color: #ccc;
      border-top: 1px solid var(--border);
      padding-top: 18px;
    }

    /* =====================================================
       モバイル固定CTAバー
    ====================================================== */
    .mobile-cta-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 90;
      background: rgba(255, 255, 255, 0.97);
      backdrop-filter: blur(10px);
      border-top: 1px solid var(--border);
      padding: 10px 12px;
      display: flex;
      gap: 8px;
    }

    .mobile-cta-bar a {
      flex: 1 1 0;
      min-height: 58px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-size: 12px;
      font-weight: 700;
      padding: 11px 6px;
      border-radius: var(--radius);
    }

    .mobile-cta-bar .mobile-cta-main {
      flex-direction: column;
      gap: 2px;
    }

    @media (min-width: 769px) {
      .mobile-cta-bar {
        display: none;
      }
    }

    @media (max-width: 768px) {
      footer {
        padding-bottom: 76px;
      }
    }

    /* =====================================================
       フェードイン
    ====================================================== */
    .fi {
      opacity: 0;
      transform: translateY(14px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }

    .fi.show {
      opacity: 1;
      transform: none;
    }

    /* お客様の声カード */
    .voice-card {
      background: var(--bg);
      padding: 26px 22px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
    }

    .voice-stars {
      font-size: 13px;
      color: #f59e0b;
      margin-bottom: 10px;
    }

    .voice-text {
      font-size: 15px;
      color: var(--text);
      line-height: 1.8;
      margin-bottom: 14px;
    }

    .voice-meta {
      font-size: 13px;
      color: var(--text-muted);
    }

    /* utilities */
    .mt12 {
      margin-top: 12px;
    }

    .mt20 {
      margin-top: 20px;
    }

    .mt28 {
      margin-top: 28px;
    }

    .mt40 {
      margin-top: 40px;
    }

    /* =====================================================
       料金シミュレーター
    ====================================================== */
    .sim-desc {
      text-align: center;
      color: var(--text-muted);
      margin-bottom: 28px;
      font-size: 15px;
    }

    .sim-section-label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .08em;
      color: var(--text-muted);
      margin-bottom: 10px;
    }

    .sim-set-cards {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }

    .sim-set-card {
      flex: 1;
      min-width: 140px;
      display: flex;
      flex-direction: column;
      border: 2px solid var(--border);
      border-radius: 8px;
      padding: 14px 12px;
      text-align: center;
      cursor: pointer;
      position: relative;
      transition: all 0.18s;
      background: #fff;
    }

    .sim-set-card:hover {
      border-color: var(--accent);
    }

    .sim-set-card.selected {
      border-color: var(--accent);
      background: var(--accent);
      color: #fff;
    }

    .sim-set-card.selected .sim-set-badge {
      background: rgba(255, 255, 255, 0.2);
      color: #fff;
    }

    .sim-set-name {
      font-size: 13px;
      line-height: 1.5;
      margin-bottom: 8px;
      font-weight: 600;
    }

    .sim-set-price {
      font-size: 24px;
      font-weight: 700;
    }

    .sim-set-badge {
      display: inline-block;
      font-size: 10px;
      background: #f0f2f6;
      color: var(--text-muted);
      padding: 2px 9px;
      border-radius: 20px;
      margin-top: 6px;
    }

    .sim-set-card .sim-book-btn {
      margin-top: auto;
    }

    .sim-divider {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 20px 0 24px;
      color: var(--text-muted);
      font-size: 13px;
    }

    .sim-divider::before,
    .sim-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border);
    }

    .sim-groups {
      display: flex;
      flex-direction: column;
      gap: 22px;
    }

    .sim-group-label {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 8px;
    }

    .sim-group-label strong {
      color: var(--text);
      font-size: 15px;
    }

    .sim-tiles {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .sim-tile {
      border: 2px solid var(--border);
      border-radius: 6px;
      padding: 10px 16px;
      font-size: 13px;
      font-weight: 600;
      text-align: center;
      cursor: pointer;
      transition: all 0.15s;
      line-height: 1.4;
      background: #fff;
      user-select: none;
    }

    .sim-tile:hover {
      border-color: var(--accent);
      color: var(--accent);
    }

    .sim-tile.selected {
      border-color: var(--accent);
      background: var(--accent);
      color: #fff;
    }

    .sim-tile--opt {
      border-style: dashed;
      color: var(--text-muted);
    }

    .sim-tile--opt:hover {
      border-style: solid;
    }

    .sim-tile--opt.selected {
      border-style: solid;
      color: #fff;
    }

    .sim-total-area {
      margin-top: 28px;
      background: #fff;
      border-radius: 10px;
      padding: 22px 20px;
      border: 2px solid var(--border);
      transition: border-color 0.2s;
    }

    .sim-total-area.has-selection {
      border-color: var(--accent);
    }

    .sim-total-row {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      margin-bottom: 6px;
      flex-wrap: wrap;
      gap: 6px;
    }

    .sim-total-label {
      font-size: 13px;
      color: var(--text-muted);
      font-weight: 600;
      letter-spacing: .04em;
    }

    .sim-total-price {
      font-size: 32px;
      font-weight: 700;
      color: var(--accent);
    }

    .sim-selected-items {
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 16px;
      min-height: 18px;
      line-height: 1.6;
    }

    /* 割引ガイド */
    .sim-discount-guide {
      display: flex;
      flex-wrap: wrap;
      gap: 0;
      background: #f7f8fa;
      border: 1px solid var(--border);
      border-radius: 6px;
      overflow: hidden;
      margin-top: 24px;
    }

    .sim-dg-step {
      flex: 1;
      min-width: 0;
      padding: 10px 8px;
      text-align: center;
      border-right: 1px solid var(--border);
      font-size: 11px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    .sim-dg-step:last-child {
      border-right: none;
    }

    .sim-dg-step strong {
      display: block;
      font-size: 13px;
      color: var(--text);
    }

    .sim-dg-step.active {
      background: #eef3ff;
      color: var(--accent);
    }

    .sim-dg-step.active strong {
      color: var(--accent);
    }

    /* 合計エリア内割引行 */
    .sim-original-row {
      display: none;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 4px;
    }

    .sim-original-price-val {
      text-decoration: line-through;
    }

    .sim-discount-row {
      display: none;
      justify-content: space-between;
      align-items: center;
      background: #eef3ff;
      border-radius: 4px;
      padding: 7px 12px;
      font-size: 13px;
      color: var(--accent);
      font-weight: 600;
      margin-bottom: 10px;
    }

    .sim-discount-amount {
      font-size: 15px;
      font-weight: 700;
    }

    /* 予約ボタン */
    .sim-book-btn {
      display: block;
      width: 100%;
      padding: 14px;
      font-size: 15px;
      font-weight: 700;
      text-align: center;
      background: var(--accent);
      color: #fff;
      border: none;
      border-radius: var(--radius);
      cursor: pointer;
      transition: opacity 0.18s;
      margin-bottom: 10px;
    }

    .sim-book-btn:hover {
      opacity: 0.88;
    }

    .sim-book-btn:disabled {
      opacity: 0.35;
      cursor: default;
    }

    .sim-caution {
      font-size: 11px;
      color: var(--text-muted);
      text-align: center;
    }

/* Sheets-powered news, scoped to the homepage section. */
.news-section { padding: 32px 0; background: var(--bg-gray); border-bottom: 1px solid var(--border); }
.news-header-title { margin: 0 0 12px; font-size: 20px; line-height: 1.5; }
.news-loading-text { color: var(--text-mid); font-size: 16px; }
.news-item { display: grid; grid-template-columns: minmax(90px, auto) 1fr; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--border); }
.news-item:last-child { border-bottom: 0; }
.news-date { color: var(--text-mid); font-size: 14px; white-space: nowrap; }
.news-title { margin: 0; font-size: 16px; font-weight: 600; line-height: 1.6; }
.news-body-text { margin: 4px 0 0; color: var(--text-mid); font-size: 16px; line-height: 1.7; white-space: pre-line; overflow-wrap: anywhere; }
@media (max-width: 480px) { .news-item { grid-template-columns: 1fr; gap: 3px; } }
