/*
Theme Name: D-CLEAN
Theme URI: https://d-clean.jp/
Description: 民泊・宿泊施設の清掃代行サービス「Dクリーン」公式サイト用オリジナルテーマ。運営：株式会社デューミラン大阪。
Author: Creative Gang Studio
Author URI: https://creativegang.studio/
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: d-clean
*/

    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 15px;
      line-height: 1.9;
      color: #333333;
      background: #fff;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    /* ===== 日本語の折り返し最適化（読みやすい改行位置） ===== */
    /* 見出し：行数バランス／本文：文節優先＋末尾孤立を抑制 */
    .hero h1, .section-title, .hero-badge, .contact-wrap h2, .company-table th {
      text-wrap: balance;
    }
    .hero-sub, .section-sub,
    .pain-text, .service-desc, .strength-desc, .flow-step-desc,
    .voice-text, .faq-q-text, .faq-a-inner,
    .contact-wrap p, .numbers-note, .pain-bridge, .bed-info-banner {
      word-break: auto-phrase; /* 対応ブラウザ(Chrome/Edge)は文節単位で改行、非対応は通常折返し */
      text-wrap: pretty;       /* 末尾1文字だけの行などを抑制 */
    }

    /* ===== CSS VARIABLES ===== */
    :root {
      --primary: #de1b1b;
      --primary-dark: #b81515;
      --primary-pale: #FDEAEA;
      --bg-light: #F5F5F5;
      --border: #E0E0E0;
      --text: #333333;
      --text-sub: #666666;
      --text-heading: #1A1A1A;
      --line-green: #06C755;
      --white: #FFFFFF;
      --black: #1A1A1A;
      --max-w: 1100px;
      --section-py: 80px;
      --section-py-sp: 56px;
    }

    /* ===== UTILITIES ===== */
    .container {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 24px;
    }
    .section { padding: var(--section-py) 0; }
    .section--gray { background: var(--bg-light); }
    .section--pale { background: var(--primary-pale); }
    .section--dark { background: var(--black); color: #ccc; }
    .section--simulator {
      background: var(--primary);
      padding: var(--section-py) 0;
    }
    .section--simulator .section-label { color: rgba(255,255,255,0.5); }
    .section--simulator .section-title { color: #fff; }
    .section--simulator .section-sub { color: rgba(255,255,255,0.65); }

    .section-label {
      display: inline-block;
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 32px;
      font-weight: 700;
      color: var(--text-heading);
      line-height: 1.4;
      margin-bottom: 16px;
    }
    .section-sub {
      font-size: 15px;
      color: var(--text-sub);
      line-height: 1.9;
      margin-bottom: 48px;
    }
    .text-center { text-align: center; }

    /* ===== BUTTONS ===== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0.04em;
      border-radius: 4px;
      padding: 14px 32px;
      cursor: pointer;
      border: none;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--primary);
      color: var(--white);
    }
    .btn-primary:hover { background: var(--primary-dark); }
    .btn-outline {
      background: transparent;
      color: var(--primary);
      border: 2px solid var(--primary);
      padding: 12px 30px;
    }
    .btn-outline:hover { background: var(--primary-pale); }
    .btn-line {
      background: var(--line-green);
      color: var(--white);
    }
    .btn-line:hover { background: #05a847; }
    .btn-lg { padding: 16px 40px; font-size: 16px; }

    /* ===== HEADER ===== */
    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      height: 72px;
      display: flex;
      align-items: center;
      transition: box-shadow 0.2s;
    }
    .header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
    .header .container {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .header-logo {
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }
    .header-logo img {
      height: 34px;
      width: auto;
      display: block;
    }
    .header-nav {
      display: flex;
      align-items: center;
      flex-wrap: nowrap;
      gap: 22px;
    }
    .header-nav a {
      font-size: 13px;
      font-weight: 500;
      color: var(--text);
      white-space: nowrap;
      transition: color 0.2s;
    }
    .header-nav a:hover { color: var(--primary); }
    .header-nav a.active { color: var(--primary); }
    .header-cta {
      margin-left: 8px;
      background: #fff;
      color: var(--primary) !important;
      border: 2px solid var(--primary);
      border-radius: 6px;
      padding: 8px 18px !important;
      font-size: 13px;
      font-weight: 700;
      transition: background 0.2s, color 0.2s !important;
    }
    .header-cta:hover { background: var(--primary) !important; color: var(--white) !important; }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--text);
      transition: all 0.3s;
    }

    /* SP MENU */
    .sp-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--primary);
      z-index: 200;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
    }
    .sp-menu.active { display: flex; }
    .sp-menu a {
      font-size: 18px;
      font-weight: 700;
      color: var(--white);
    }
    /* メニュー内のLINEボタンは白地に赤文字 */
    .sp-menu a.btn-line {
      background: var(--white);
      color: var(--primary);
    }
    .sp-menu a.btn-line:hover { background: rgba(255,255,255,0.88); color: var(--primary); }
    .sp-menu-close {
      position: absolute;
      top: 20px;
      right: 24px;
      font-size: 28px;
      cursor: pointer;
      color: var(--white);
    }

    /* ===== HERO ===== */
    .hero {
      position: relative;
      min-height: 90vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      color: var(--white);
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('assets/img/hero-clean-room.jpg');
      background-size: cover;
      background-position: center;
      z-index: 0;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.58);
      z-index: 1;
    }
    .hero > .container {
      position: relative;
      z-index: 2;
      padding-top: 60px;
      padding-bottom: 60px;
      width: 100%;
    }
    /* 2カラムレイアウト */
    .hero-layout {
      display: grid;
      grid-template-columns: 55% 45%;
      gap: 48px;
      align-items: center;
    }
    /* 左カラム */
    .hero-copy {}
    .hero-badge {
      display: inline-block;
      background: rgba(255,255,255,0.20);
      border: 1px solid rgba(255,255,255,0.5);
      border-radius: 100px;
      font-size: 15px;
      font-weight: 700;
      padding: 9px 20px;
      margin-bottom: 22px;
      letter-spacing: 0.04em;
      backdrop-filter: blur(2px);
      text-shadow: 0 1px 4px rgba(0,0,0,0.25);
    }
    .hero h1 {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 52px;
      font-weight: 700;
      line-height: 1.4;
      margin-bottom: 20px;
      letter-spacing: -0.01em;
      text-shadow: 0 2px 12px rgba(0,0,0,0.4);
    }
    .hero-sub {
      font-size: 15px;
      line-height: 1.9;
      color: rgba(255,255,255,0.88);
      text-shadow: 0 1px 6px rgba(0,0,0,0.5);
    }

    /* 右カラム: シミュレーターカード */
    .hero-sim-card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 12px 48px rgba(0,0,0,0.3);
      padding: 28px 28px 20px;
      color: var(--text);
    }
    .hero-sim-heading {
      font-size: 18px;
      font-weight: 700;
      color: var(--primary);
      line-height: 1.4;
      margin-bottom: 16px;
    }
    .hero-sim-heading .accent {
      font-size: 26px;
      font-weight: 700;
      font-family: 'DM Sans', sans-serif;
    }
    /* セレクトボックス */
    .hero-sim-select-wrap {
      position: relative;
      margin-bottom: 16px;
    }
    .hero-sim-select {
      width: 100%;
      appearance: none;
      -webkit-appearance: none;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 12px 40px 12px 14px;
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 14px;
      color: var(--text);
      cursor: pointer;
      outline: none;
      transition: border-color 0.2s;
    }
    .hero-sim-select:focus { border-color: var(--primary); }
    .hero-sim-select-arrow {
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-sub);
      font-size: 12px;
      pointer-events: none;
    }
    /* 追加ベッド行 */
    .hero-sim-extra-row {
      margin-bottom: 4px;
    }
    .hero-sim-extra-label {
      font-size: 12px;
      color: var(--text-sub);
      margin-bottom: 6px;
    }
    .hero-sim-spinner {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 4px;
    }
    .hero-sim-spinner-btn {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 2px solid var(--primary);
      background: transparent;
      color: var(--primary);
      font-size: 18px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      line-height: 1;
      font-family: 'DM Sans', sans-serif;
    }
    .hero-sim-spinner-btn:hover { background: var(--primary); color: #fff; }
    .hero-sim-spinner-val {
      font-family: 'DM Sans', sans-serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--text-heading);
      min-width: 28px;
      text-align: center;
    }
    .hero-sim-spinner-unit {
      font-size: 13px;
      color: var(--text-sub);
    }
    .hero-sim-extra-subtotal {
      font-size: 12px;
      color: var(--text-sub);
      margin-bottom: 12px;
      min-height: 16px;
    }
    /* 区切り線 */
    .hero-sim-divider {
      border: none;
      border-top: 1px solid var(--border);
      margin: 12px 0;
    }
    /* 合計金額 */
    .hero-sim-total {
      font-family: 'DM Sans', sans-serif;
      font-size: 36px;
      font-weight: 700;
      color: var(--primary);
      line-height: 1;
      margin-bottom: 14px;
    }
    /* LINEボタン */
    .hero-sim-line-btn {
      display: block;
      width: 100%;
      background: var(--line-green);
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 14px 16px;
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 15px;
      font-weight: 700;
      text-align: center;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s;
      margin-bottom: 8px;
    }
    .hero-sim-line-btn:hover { background: #05a847; }
    /* 免責テキスト */
    .hero-sim-note {
      font-size: 11px;
      color: #999;
      text-align: center;
    }

    .hero-scroll {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.5);
      text-transform: uppercase;
      z-index: 2;
    }
    .hero-scroll::after {
      content: '';
      display: block;
      width: 1px;
      height: 32px;
      background: rgba(255,255,255,0.3);
      animation: scrollline 1.5s ease-in-out infinite;
    }
    @keyframes scrollline {
      0%,100% { opacity: 0.3; transform: scaleY(1); }
      50% { opacity: 1; transform: scaleY(0.5); }
    }

    /* ===== NUMBERS ===== */
    .numbers { padding: 40px 0; }
    .numbers-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
    }
    .numbers-item {
      padding: 28px 16px;
      text-align: center;
      border-right: 1px solid var(--border);
    }
    .numbers-item:last-child { border-right: none; }
    .numbers-value {
      font-family: 'DM Sans', sans-serif;
      font-size: 40px;
      font-weight: 700;
      color: var(--primary);
      line-height: 1;
      margin-bottom: 8px;
    }
    .numbers-label {
      font-size: 12px;
      font-weight: 700;
      color: var(--text-heading);
      margin-bottom: 4px;
    }
    .numbers-note {
      font-size: 11px;
      color: var(--text-sub);
    }

    /* ===== PAIN ===== */
    .pain-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .pain-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 20px;
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }
    .pain-icon {
      flex-shrink: 0;
      line-height: 1;
      margin-top: 2px;
      color: var(--primary);
    }
    .pain-text {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-heading);
      line-height: 1.55;
    }
    .pain-bridge {
      text-align: center;
      margin-top: 40px;
      font-size: 18px;
      font-weight: 700;
      color: var(--primary);
    }

    /* ===== SERVICE ===== */
    .service-section-img {
      width: 100%;
      height: 320px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 48px;
    }
    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .service-card {
      background: var(--white);
      border-radius: 10px;
      padding: 28px 24px;
      box-shadow: 0 2px 16px rgba(0,0,0,0.06);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }
    .service-icon {
      margin-bottom: 14px;
      color: var(--primary);
    }
    .service-title {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--text-heading);
      margin-bottom: 10px;
      line-height: 1.4;
    }
    .service-desc {
      font-size: 13px;
      color: var(--text-sub);
      line-height: 1.9;
    }

    /* ===== SIMULATOR ===== */
    .simulator-wrap {
      background: var(--white);
      border-radius: 12px;
      box-shadow: 0 8px 40px rgba(0,0,0,0.25);
      padding: 48px;
      max-width: 760px;
      margin: 0 auto;
    }
    .sim-step {
      margin-bottom: 36px;
    }
    .sim-step-label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 8px;
    }
    .sim-step-title {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--text-heading);
      margin-bottom: 16px;
      line-height: 1.4;
    }
    .size-btns {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
    }
    .size-btn {
      background: var(--bg-light);
      border: 2px solid transparent;
      border-radius: 8px;
      padding: 16px 8px 14px;
      cursor: pointer;
      text-align: center;
      transition: all 0.18s;
      font-family: 'Noto Sans JP', sans-serif;
    }
    .size-btn:hover { border-color: var(--primary); background: var(--primary-pale); }
    .size-btn.active {
      border-color: var(--primary);
      background: var(--primary-pale);
      box-shadow: 0 0 0 3px rgba(222,27,27,0.1);
    }
    .size-btn-name {
      font-size: 22px;
      font-weight: 700;
      color: var(--primary);
      font-family: 'DM Sans', sans-serif;
      line-height: 1;
      margin-bottom: 4px;
    }
    .size-btn-beds {
      font-size: 12px;
      font-weight: 700;
      color: var(--text-heading);
      margin-bottom: 3px;
      line-height: 1.3;
    }
    .size-btn-range {
      font-size: 11px;
      color: var(--text-sub);
      line-height: 1.3;
    }
    .bed-info-banner {
      background: var(--primary-pale);
      border-radius: 8px;
      padding: 12px 18px;
      margin-top: 14px;
      font-size: 13px;
      color: var(--primary);
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .spinner-wrap {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .spinner-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 2px solid var(--primary);
      background: transparent;
      color: var(--primary);
      font-size: 22px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.2s;
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
      font-family: 'DM Sans', sans-serif;
    }
    .spinner-btn:hover { background: var(--primary); color: var(--white); }
    .spinner-val {
      font-family: 'DM Sans', sans-serif;
      font-size: 32px;
      font-weight: 700;
      color: var(--text-heading);
      min-width: 48px;
      text-align: center;
    }
    .spinner-label {
      font-size: 13px;
      color: var(--text-sub);
    }
    .spinner-note {
      font-size: 12px;
      color: var(--text-sub);
      margin-top: 8px;
      background: #f9f9f9;
      border-radius: 6px;
      padding: 8px 12px;
    }
    .sim-result {
      background: var(--primary-pale);
      border-radius: 10px;
      border: 2px solid var(--primary);
      padding: 28px 32px;
      margin-top: 8px;
      text-align: center;
    }
    .sim-result-label {
      font-size: 13px;
      color: var(--text-sub);
      margin-bottom: 6px;
    }
    .sim-result-price {
      font-family: 'DM Sans', sans-serif;
      font-size: 52px;
      font-weight: 700;
      color: var(--primary);
      line-height: 1;
      margin-bottom: 6px;
    }
    .sim-result-price span {
      font-size: 20px;
      font-weight: 400;
    }
    .sim-result-note {
      font-size: 12px;
      color: var(--text-sub);
      margin-bottom: 20px;
      line-height: 1.6;
    }
    .sim-result-note strong {
      color: var(--primary);
      font-weight: 700;
    }
    .sim-result-disclaimer {
      font-size: 11px;
      color: var(--text-sub);
      margin-top: 14px;
      padding-top: 14px;
      border-top: 1px solid var(--border);
    }
    .sim-initial {
      text-align: center;
      padding: 20px;
      color: var(--text-sub);
      font-size: 14px;
    }
    .sim-initial .arrow { font-size: 28px; display: block; margin-bottom: 8px; }

    /* ===== STRENGTH ===== */
    .strength-section-img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 40px;
    }
    .strength-list {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .strength-item {
      display: flex;
      gap: 28px;
      align-items: flex-start;
      background: var(--white);
      border-radius: 10px;
      padding: 28px 32px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }
    .strength-num {
      font-family: 'DM Sans', sans-serif;
      font-size: 48px;
      font-weight: 700;
      color: var(--primary);
      opacity: 0.18;
      line-height: 1;
      flex-shrink: 0;
      min-width: 64px;
    }
    .strength-body {}
    .strength-title {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--text-heading);
      margin-bottom: 8px;
      line-height: 1.4;
    }
    .strength-desc {
      font-size: 14px;
      color: var(--text-sub);
      line-height: 1.9;
    }

    /* ===== FLOW ===== */
    .flow-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      position: relative;
    }
    .flow-steps::before {
      content: '';
      position: absolute;
      top: 36px;
      left: calc(100%/6);
      right: calc(100%/6);
      height: 2px;
      background: var(--primary);
      opacity: 0.3;
      z-index: 0;
    }
    .flow-step {
      text-align: center;
      padding: 0 24px;
      position: relative;
      z-index: 1;
    }
    .flow-step-num {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: var(--primary);
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-size: 22px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }
    .flow-step-title {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--text-heading);
      margin-bottom: 10px;
      line-height: 1.4;
    }
    .flow-step-desc {
      font-size: 13px;
      color: var(--text-sub);
      line-height: 1.9;
    }

    /* ===== VOICE ===== */
    .voice-photo {
      width: 100%;
      height: 260px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 48px;
    }
    .voice-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .voice-card {
      background: var(--white);
      border-radius: 10px;
      padding: 28px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.07);
      position: relative;
      display: flex;
      flex-direction: column;
    }
    .voice-quote {
      font-size: 56px;
      line-height: 0.8;
      color: var(--primary);
      opacity: 0.2;
      font-family: 'DM Sans', sans-serif;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .voice-text {
      font-size: 14px;
      line-height: 1.9;
      color: var(--text);
      margin-bottom: 20px;
      flex: 1 1 auto;
    }
    .voice-meta {
      font-size: 12px;
      color: var(--text-sub);
      border-top: 1px solid var(--border);
      padding-top: 14px;
    }
    .voice-facility {
      font-size: 11px;
      color: var(--primary);
      font-weight: 500;
      margin-bottom: 4px;
    }

    /* ===== FAQ ===== */
    .faq-list {
      max-width: 760px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--border);
    }
    .faq-item {
      border-bottom: 1px solid var(--border);
      background: var(--white);
    }
    .faq-item:last-child { border-bottom: none; }
    .faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px 24px;
      cursor: pointer;
      font-weight: 700;
      font-size: 15px;
      color: var(--text-heading);
      user-select: none;
      transition: background 0.15s;
    }
    .faq-q:hover { background: var(--bg-light); }
    .faq-q-text { flex: 1; }
    .faq-q-badge {
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: var(--primary);
      flex-shrink: 0;
    }
    .faq-icon {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      border: 2px solid var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-size: 16px;
      font-weight: 700;
      flex-shrink: 0;
      transition: transform 0.25s, background 0.25s;
      line-height: 1;
    }
    .faq-item.open .faq-icon {
      background: var(--primary);
      color: var(--white);
      transform: rotate(45deg);
    }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.35s ease;
      font-size: 14px;
      line-height: 1.9;
      color: var(--text-sub);
    }
    .faq-a-inner {
      padding: 0 24px 20px 24px;
      margin: 0 24px;
    }
    .faq-item.open .faq-a { max-height: 200px; }

    /* ===== COMPANY ===== */
    .company-table {
      width: 100%;
      max-width: 640px;
      margin: 0 auto;
      border-collapse: collapse;
    }
    .company-table tr {
      border-bottom: 1px solid var(--border);
    }
    .company-table th {
      text-align: left;
      padding: 14px 16px;
      font-size: 13px;
      font-weight: 700;
      color: var(--text-sub);
      width: 160px;
      vertical-align: top;
    }
    .company-table td {
      padding: 14px 16px;
      font-size: 14px;
      color: var(--text);
    }

    /* ===== CONTACT CTA ===== */
    .contact-wrap {
      background: var(--primary);
      border-radius: 12px;
      padding: 56px 48px;
      text-align: center;
      color: var(--white);
    }
    .contact-wrap h2 {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 12px;
      line-height: 1.4;
    }
    .contact-wrap p {
      font-size: 15px;
      line-height: 1.9;
      opacity: 0.85;
      margin-bottom: 36px;
    }
    .contact-btns {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ===== FOOTER ===== */
    .footer {
      background: var(--black);
      color: #999;
      padding: 56px 0 32px;
    }
    .footer-inner {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      margin-bottom: 24px;
    }
    .footer-logo {
      margin-bottom: 8px;
    }
    .footer-logo img {
      height: 24px;
      width: auto;
    }
    .footer-tagline {
      font-size: 12px;
      color: #666;
      margin-bottom: 20px;
      line-height: 1.6;
    }
    .footer-nav-title {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 14px;
    }
    .footer-nav a {
      display: block;
      font-size: 13px;
      color: #888;
      margin-bottom: 8px;
      transition: color 0.2s;
    }
    .footer-nav a:hover { color: var(--white); }
    .footer-copy {
      text-align: center;
      font-size: 12px;
      color: #555;
    }

    /* ===== FLOATING CTA - LINE (右下) ===== */
    .float-cta {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 90;
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.3s, transform 0.3s;
      pointer-events: none;
    }
    .float-cta.visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    .float-cta .btn {
      box-shadow: 0 4px 16px rgba(6,199,85,0.35);
    }

    /* ===== FLOATING CTA - シミュレーター (左下) ===== */
    .float-sim-cta {
      position: fixed;
      bottom: 24px;
      left: 24px;
      z-index: 90;
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.3s, transform 0.3s;
      pointer-events: none;
    }
    .float-sim-cta.visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    .float-sim-cta .btn {
      background: var(--primary);
      color: #fff;
      border-radius: 8px;
      font-size: 13px;
      padding: 12px 20px;
      box-shadow: 0 4px 16px rgba(222,27,27,0.35);
    }
    .float-sim-cta .btn:hover { background: var(--primary-dark); }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      :root {
        --section-py: var(--section-py-sp);
      }
      .header { height: 56px; }
      .header-nav { display: none; }
      .hamburger { display: flex; }
      .header-logo img { width: auto; height: 28px; }

      .hero { min-height: auto; padding: 60px 0; }
      .hero h1 { font-size: 32px; }
      .hero-sub { font-size: 14px; }
      .hero-badge {
        font-size: 13px;
        padding: 8px 16px;
        letter-spacing: 0.02em;
        line-height: 1.5;
      }
      .hero-layout {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .hero-sim-card { width: 100%; }

      .numbers-grid {
        grid-template-columns: repeat(3, 1fr);
        border-radius: 8px;
      }
      .numbers-item:nth-child(3) { border-right: none; }
      .numbers-item:nth-child(4),
      .numbers-item:nth-child(5) {
        border-top: 1px solid var(--border);
      }
      .numbers-value { font-size: 28px; }

      .pain-grid { grid-template-columns: 1fr; gap: 10px; }
      .service-grid { grid-template-columns: 1fr; }
      .strength-item { flex-direction: column; gap: 10px; padding: 20px; }
      .strength-num { font-size: 32px; min-width: auto; }
      .flow-steps { grid-template-columns: 1fr; gap: 32px; }
      .flow-steps::before { display: none; }
      .voice-grid { grid-template-columns: 1fr; }
      .section-title { font-size: 24px; }

      .simulator-wrap { padding: 28px 20px; }
      .size-btns { grid-template-columns: repeat(4, 1fr); gap: 6px; }
      .size-btn-name { font-size: 18px; }
      .sim-result-price { font-size: 40px; }

      .contact-wrap { padding: 40px 24px; }
      .contact-wrap h2 { font-size: 22px; }
      .contact-btns { flex-direction: column; }
      .contact-btns .btn { width: 100%; }

      .footer-inner { grid-template-columns: 1fr; gap: 32px; }
      .float-cta { bottom: 16px; right: 16px; }
      .float-sim-cta { bottom: 16px; left: 16px; }

      .service-section-img { height: 200px; }
      .strength-section-img { height: 180px; }
      .voice-photo { height: 180px; }
    }

    @media (max-width: 480px) {
      .size-btns { grid-template-columns: repeat(4, 1fr); gap: 4px; }
      .size-btn { padding: 10px 4px; }
      .size-btn-name { font-size: 16px; }
      .size-btn-range { font-size: 10px; }
      .size-btn-beds { font-size: 10px; }
      .hero-size-btns {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
      }
    }

/* =================================================================
   BLOG / ARTICLE / PAGE  （オリジナルテーマ追加分・既存トークン準拠）
   ================================================================= */

/* ---- 下層ページ共通ヘッダ余白（sticky header 72px 分） ---- */
.page-wrap { padding-top: 0; }

/* ---- パンくず ---- */
.breadcrumb {
  font-size: 12px;
  color: var(--text-sub);
  padding: 18px 0 0;
}
.breadcrumb a { color: var(--text-sub); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { margin: 0 8px; color: #ccc; }

/* ---- 下層ページ・タイトルヘッダ ---- */
.page-head {
  background: var(--bg-light);
  padding: 48px 0 52px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-head .section-label { margin-bottom: 10px; }
.page-head h1 {
  font-size: 30px;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.4;
}
@media (max-width: 768px) {
  .page-head { padding: 36px 0 38px; }
  .page-head h1 { font-size: 23px; }
}

/* =========================================================
   記事一覧（home.php / archive.php）
   ========================================================= */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  padding: 56px 0 80px;
}
@media (max-width: 900px) {
  .blog-layout { grid-template-columns: 1fr; gap: 40px; }
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 600px) {
  .post-grid { grid-template-columns: 1fr; gap: 22px; }
}

.post-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.10);
}
.post-card-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-light);
}
.post-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.post-card:hover .post-card-thumb img { transform: scale(1.05); }
.post-card-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 4px 12px;
  border-radius: 100px;
}
.post-card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post-card-date {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--text-sub);
  margin-bottom: 8px;
}
.post-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.55;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.post-card:hover .post-card-title { color: var(--primary); }
.post-card-excerpt {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.8;
  margin-top: auto;
}

/* プレースホルダ（アイキャッチ未設定時） */
.post-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fdeaea 0%, #f6d4d4 100%);
}
.post-thumb-placeholder img { width: 88px; height: auto; opacity: 0.5; }

/* ---- サイドバー ---- */
.blog-sidebar { font-size: 14px; }
.sidebar-widget { margin-bottom: 36px; }
.sidebar-widget-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-heading);
  padding-bottom: 10px;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--primary);
}
.sidebar-cat-list a {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  font-size: 13px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.sidebar-cat-list a:hover { color: var(--primary); }
.sidebar-cat-list .count { color: var(--text-sub); font-size: 12px; }
.sidebar-cta {
  background: var(--primary-pale);
  border-radius: 12px;
  padding: 22px 20px;
  text-align: center;
}
.sidebar-cta p { font-size: 13px; color: var(--text); margin-bottom: 14px; line-height: 1.7; }

/* ---- ページネーション ---- */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  transition: all 0.2s;
}
.pagination .page-numbers:hover { border-color: var(--primary); color: var(--primary); }
.pagination .page-numbers.current {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* =========================================================
   記事詳細（single.php）
   ========================================================= */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 8px 0 80px;
}

/* アイキャッチ（記事上部の主役） */
.article-eyecatch {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 28px 0 0;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-light);
}
.article-eyecatch img { width: 100%; height: 100%; object-fit: cover; }

.article-header { padding: 32px 0 24px; }
.article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.article-cat {
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
}
.article-date {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text-sub);
}
.article-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.5;
  letter-spacing: -0.01em;
}
@media (max-width: 768px) {
  .article-title { font-size: 23px; }
  .article-eyecatch { border-radius: 10px; }
}

/* 本文タイポグラフィ */
.article-body {
  font-size: 16px;
  line-height: 2.0;
  color: var(--text);
}
.article-body > * + * { margin-top: 1.5em; }
.article-body h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.5;
  margin-top: 2.2em;
  padding: 6px 0 14px 16px;
  border-left: 4px solid var(--primary);
}
.article-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-heading);
  margin-top: 1.8em;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.article-body h4 { font-size: 17px; font-weight: 700; color: var(--text-heading); margin-top: 1.6em; }
.article-body p { line-height: 2.0; }
.article-body a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.article-body a:hover { color: var(--primary-dark); }
.article-body ul, .article-body ol { padding-left: 1.4em; }
.article-body li { margin-top: 0.5em; line-height: 1.9; }
.article-body ul li::marker { color: var(--primary); }
.article-body img { border-radius: 10px; margin: 1.8em auto; }
.article-body blockquote {
  border-left: 4px solid var(--border);
  background: var(--bg-light);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  color: var(--text-sub);
  font-size: 15px;
}
.article-body strong { font-weight: 700; color: var(--text-heading); }
.article-body table { width: 100%; border-collapse: collapse; font-size: 14px; }
.article-body th, .article-body td { border: 1px solid var(--border); padding: 10px 14px; text-align: left; }
.article-body th { background: var(--bg-light); font-weight: 700; }
.article-body .wp-block-image { margin: 1.8em 0; }

/* =========================================================
   シェアボタン
   ========================================================= */
.share-box {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.share-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-sub);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.share-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1 1 0;
  min-width: 120px;
  height: 46px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.1s;
}
.share-btn:hover { opacity: 0.88; }
.share-btn:active { transform: translateY(1px); }
.share-btn svg { width: 18px; height: 18px; fill: currentColor; }
.share-x { background: #000; }
.share-line { background: var(--line-green); }
.share-fb { background: #1877F2; }
.share-copy { background: var(--text-heading); }
.share-copy.copied { background: var(--primary); }
@media (max-width: 600px) {
  .share-btn { flex: 1 1 calc(50% - 5px); min-width: 0; }
  .share-btn span { font-size: 12px; }
}

/* ---- 記事下 著者/運営ボックス ---- */
.article-author {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 40px;
  padding: 22px 24px;
  background: var(--bg-light);
  border-radius: 12px;
}
.article-author img { width: 56px; height: auto; flex-shrink: 0; }
.article-author-name { font-size: 14px; font-weight: 700; color: var(--text-heading); margin-bottom: 4px; }
.article-author-desc { font-size: 12px; color: var(--text-sub); line-height: 1.8; }

/* ---- 関連記事 ---- */
.related-posts { margin-top: 64px; }
.related-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 24px;
  text-align: center;
}

/* ---- 記事末CTA ---- */
.article-cta {
  margin-top: 56px;
  background: var(--black);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  color: #fff;
}
.article-cta h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.article-cta p { font-size: 14px; color: rgba(255,255,255,0.8); margin-bottom: 24px; line-height: 1.8; }

/* 戻るリンク */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 40px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}
.back-link:hover { color: var(--primary-dark); }

/* =========================================================
   固定ページ（page.php：プラポリ・特商法等）
   ========================================================= */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 0 80px;
  font-size: 15px;
  line-height: 1.95;
  color: var(--text);
}
.legal > * + * { margin-top: 1.4em; }
.legal h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-heading);
  margin-top: 2em;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
}
.legal h3 { font-size: 16px; font-weight: 700; color: var(--text-heading); margin-top: 1.6em; }
.legal p, .legal li { line-height: 1.95; }
.legal ul, .legal ol { padding-left: 1.4em; }
.legal a { color: var(--primary); text-decoration: underline; }
.legal table { width: 100%; border-collapse: collapse; font-size: 14px; }
.legal th, .legal td { border: 1px solid var(--border); padding: 12px 16px; text-align: left; vertical-align: top; }
.legal th { background: var(--bg-light); font-weight: 700; width: 30%; white-space: nowrap; }
@media (max-width: 600px) {
  .legal th, .legal td { display: block; width: 100%; }
  .legal th { border-bottom: none; }
}

/* ---- 404 ---- */
.notfound { text-align: center; padding: 80px 0; }
.notfound .big { font-family: 'DM Sans', sans-serif; font-size: 88px; font-weight: 700; color: var(--primary-pale); line-height: 1; }
.notfound h1 { font-size: 22px; margin: 16px 0 12px; color: var(--text-heading); }
.notfound p { color: var(--text-sub); margin-bottom: 28px; }

/* ---- Toast（シミュレーター→LINEコピー通知） ---- */
.dc-toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%) translateY(20px);
  background: #1a1a1a;
  color: #fff;
  padding: 15px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  max-width: min(92%, 420px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  z-index: 10000;
  text-align: center;
}
.dc-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* シミュレーターLINEボタン：コピー完了状態（気づけるよう明示） */
.btn-line.is-copied,
.hero-sim-line-btn.is-copied {
  background: #04a648;
  pointer-events: none;
  transition: background .2s ease;
}

/* 見積もり内容の確認＆コピー欄（入力とLINEボタンの間） */
.sim-copybox {
  margin: 16px 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #f6f7f8;
  overflow: hidden;
  text-align: left;
}
.sim-copybox-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 12px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-sub);
}
.sim-copybox-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--primary);
  color: var(--primary);
  background: #fff;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.sim-copybox-ico {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.sim-copybox-btn:hover { background: var(--primary); color: #fff; }
.sim-copybox-btn.is-copied { background: #04a648; border-color: #04a648; color: #fff; }
.sim-copybox-text {
  padding: 12px 14px;
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--text);
  white-space: pre-line;
  word-break: break-word;
  max-height: 190px;
  overflow: auto;
}

/* =========================================================
   スクロールリビール / Hero読み込みアニメ（じんわり・下から）
   JS有効時のみ初期非表示（html.js）＝FOUC防止・JS/非対応時は素で表示
   ease: power2.out=cubic-bezier(.25,.46,.45,.94) / power3.out=cubic-bezier(.215,.61,.355,1)
   ========================================================= */
html.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .85s cubic-bezier(.25,.46,.45,.94),
              transform .85s cubic-bezier(.25,.46,.45,.94);
  will-change: opacity, transform;
}
html.js .reveal.is-visible { opacity: 1; transform: none; }

/* グループ（グリッド/リスト）は子要素を stagger でじんわり */
html.js .reveal-group > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.25,.46,.45,.94),
              transform .8s cubic-bezier(.25,.46,.45,.94);
  will-change: opacity, transform;
}
html.js .reveal-group.is-visible > * { opacity: 1; transform: none; }
html.js .reveal-group.is-visible > *:nth-child(1) { transition-delay: 0s; }
html.js .reveal-group.is-visible > *:nth-child(2) { transition-delay: .09s; }
html.js .reveal-group.is-visible > *:nth-child(3) { transition-delay: .18s; }
html.js .reveal-group.is-visible > *:nth-child(4) { transition-delay: .27s; }
html.js .reveal-group.is-visible > *:nth-child(5) { transition-delay: .36s; }
html.js .reveal-group.is-visible > *:nth-child(6) { transition-delay: .45s; }
html.js .reveal-group.is-visible > *:nth-child(7) { transition-delay: .54s; }

/* Hero：読み込み時に順次じんわり登場（バッジ→見出し→サブ→カード） */
@keyframes dcHeroIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
html.js .hero-badge     { opacity: 0; animation: dcHeroIn .9s  cubic-bezier(.215,.61,.355,1) .10s forwards; }
html.js .hero-copy h1   { opacity: 0; animation: dcHeroIn 1s   cubic-bezier(.215,.61,.355,1) .28s forwards; }
html.js .hero-sub       { opacity: 0; animation: dcHeroIn 1s   cubic-bezier(.25,.46,.45,.94) .46s forwards; }
html.js .hero-sim-card  { opacity: 0; animation: dcHeroIn 1.05s cubic-bezier(.25,.46,.45,.94) .62s forwards; }

/* 動きを減らす設定は全て無効化して即表示 */
@media (prefers-reduced-motion: reduce) {
  html.js .reveal,
  html.js .reveal-group > *,
  html.js .hero-badge,
  html.js .hero-copy h1,
  html.js .hero-sub,
  html.js .hero-sim-card {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}
