/* ========================================
   カラー設計（ホワイト × ブルー）
   ======================================== */
      :root {
        --blue-main: #0052cc; /* メインブルー（信頼感） */
        --blue-deep: #002d72; /* ディープネイビー */
        --blue-dark: #001f4d; /* 最も濃いネイビー（見出し） */
        --blue-soft: #e8f2ff; /* 薄いブルー（背景用） */
        --blue-tint: #f5f9ff; /* 極薄ブルー */
        --accent: #ff9900; /* CTAアクセント（行動喚起） */
        --accent-hot: #ff6a00; /* CTA強調 */
        --ink: #1a1a1a;
        --gray: #6b7280;
        --line: #d5e2f5;
      }

      /* ========================================
   リセット & 基本設定
   ======================================== */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        font-family:
          "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
        color: var(--ink);
        line-height: 1.7;
        background: #fff;
        padding-top: 68px; /* 固定ヘッダーの高さ分 */
        padding-bottom: 110px; /* 追従CTA（バナー+ボタン）の高さ分 */
        -webkit-text-size-adjust: 100%;
      }

      /* ========================================
   サイトヘッダー（OWL,Inc ロゴ）
   ======================================== */
      .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0, 45, 114, 0.08);
        z-index: 1000;
        padding: 8px 0;
        border-bottom: 1px solid var(--line);
      }
      .site-header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 92%;
        max-width: 1080px;
        margin: 0 auto;
      }
      .site-logo {
        display: flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        color: var(--ink);
      }
      .site-logo img,
      .site-logo svg {
        height: 48px;
        width: auto;
        display: block;
      }
      .site-logo .brand-sub {
        font-size: 10px;
        color: var(--gray);
        line-height: 1.2;
        font-weight: bold;
      }
      .site-logo .brand-sub strong {
        color: var(--blue-main);
        font-size: 12px;
        display: block;
      }
      .header-cta {
        display: flex;
        gap: 6px;
        align-items: center;
      }
      .header-cta a {
        font-size: 12px;
        font-weight: 900;
        padding: 8px 12px;
        border-radius: 4px;
        color: #fff;
      }
      .header-cta .hc-tel {
        background: var(--blue-main);
      }
      .header-cta .hc-form {
        background: linear-gradient(180deg, #ff8a1a 0%, var(--accent-hot) 100%);
        box-shadow: 0 2px 0 #b84400;
        animation: headerPulse 2s infinite;
        padding: 10px 14px;
        font-size: 13px;
      }
      @keyframes headerPulse {
        0%,
        100% {
          box-shadow:
            0 2px 0 #b84400,
            0 0 0 0 rgba(255, 106, 0, 0.6);
        }
        50% {
          box-shadow:
            0 2px 0 #b84400,
            0 0 0 8px rgba(255, 106, 0, 0);
        }
      }
      .header-cta .hc-web {
        background: #fff;
        color: var(--blue-dark);
        border: 1px solid var(--blue-dark);
      }
      @media (max-width: 600px) {
        body {
          padding-top: 60px;
        }
        .site-logo img,
        .site-logo svg {
          height: 38px;
        }
        .site-logo .brand-sub {
          display: none;
        }
        .header-cta a {
          font-size: 11px;
          padding: 6px 8px;
        }
        .header-cta .hc-web {
          display: none;
        }
      }
      img {
        max-width: 100%;
        display: block;
      }
      a {
        text-decoration: none;
        color: inherit;
      }
      .container {
        width: 92%;
        max-width: 960px;
        margin: 0 auto;
      }

      /* 共通タイトル */
      .section-title {
        text-align: center;
        font-size: 26px;
        font-weight: 900;
        margin-bottom: 30px;
        padding-top: 10px;
        line-height: 1.4;
        color: var(--blue-dark);
      }
      .section-title span {
        color: var(--blue-main);
      }
      .section-title::after {
        content: "";
        display: block;
        width: 60px;
        height: 4px;
        background: var(--blue-main);
        margin: 12px auto 0;
        border-radius: 2px;
      }
      section {
        padding: 60px 0;
      }

      /* ========================================
   ① ファーストビュー（信頼感重視・白×青）
   ======================================== */
      .fv {
        background: linear-gradient(180deg, #fff 0%, var(--blue-soft) 100%);
        color: var(--blue-dark);
        padding: 28px 0 40px;
        position: relative;
        overflow: hidden;
      }
      .fv::before {
        content: "";
        position: absolute;
        top: -60px;
        right: -60px;
        width: 240px;
        height: 240px;
        background: var(--blue-main);
        opacity: 0.08;
        border-radius: 50%;
      }
      .fv::after {
        content: "";
        position: absolute;
        bottom: -80px;
        left: -80px;
        width: 280px;
        height: 280px;
        background: var(--blue-deep);
        opacity: 0.06;
        border-radius: 50%;
      }
      .fv-inner {
        position: relative;
        z-index: 2;
        text-align: center;
      }

      /* 信頼バッジ（上部） */
      .trust-bar {
        display: flex;
        justify-content: center;
        gap: 8px;
        flex-wrap: wrap;
        margin-bottom: 20px;
      }
      .trust-bar li {
        list-style: none;
        background: #fff;
        border: 1px solid var(--blue-main);
        color: var(--blue-main);
        padding: 5px 12px;
        font-size: 12px;
        font-weight: 900;
        border-radius: 20px;
        box-shadow: 0 2px 6px rgba(0, 82, 204, 0.1);
      }

      .fv-badge {
        display: inline-block;
        background: var(--blue-main);
        color: #fff;
        padding: 6px 18px;
        font-size: 13px;
        font-weight: bold;
        border-radius: 30px;
        margin-bottom: 15px;
        letter-spacing: 1px;
      }
      .fv h1 {
        font-size: 34px;
        font-weight: 900;
        line-height: 1.3;
        margin-bottom: 15px;
        color: var(--blue-dark);
      }
      .fv h1 .big {
        font-size: 56px;
        color: var(--blue-main);
        display: inline-block;
        text-shadow: 2px 2px 0 rgba(0, 82, 204, 0.1);
      }
      .fv h1 .accent {
        color: var(--accent-hot);
      }
      .fv-sub {
        font-size: 18px;
        margin-bottom: 20px;
        font-weight: bold;
        color: var(--blue-deep);
      }

      /* FVメインビジュアル（ブランドヘッダー画像・ワイド） */
      .fv-hero-img {
        width: 100%;
        max-width: 960px;
        margin: 0 auto 24px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 16px 40px rgba(0, 45, 114, 0.18);
        aspect-ratio: 1712 / 900;
        background: #fff;
        position: relative;
      }
      .fv-hero-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      /* ヒーロー画像が読み込めないときのCSSフォールバック */
      .hero-fallback {
        position: absolute;
        inset: 0;
        display: none;
        background: linear-gradient(120deg, #fafbfc 0%, #fff 50%, #eef2f7 100%);
        padding: 5%;
      }
      .fv-hero-img.is-fallback .hero-fallback {
        display: flex;
      }
      .hero-fallback .hf-left {
        flex: 1.1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-right: 4%;
      }
      .hero-fallback h2 {
        font-size: clamp(28px, 4.2vw, 56px);
        font-weight: 900;
        color: #0a0a0a;
        line-height: 1.15;
        letter-spacing: 0.02em;
        margin: 0 0 10px;
      }
      .hero-fallback .hf-sub {
        font-size: clamp(12px, 1.5vw, 20px);
        color: #333;
        margin-bottom: 10px;
      }
      .hero-fallback hr {
        border: none;
        border-top: 1px solid #333;
        width: 85%;
        margin: 8px 0 12px;
      }
      .hero-fallback .hf-desc {
        font-size: clamp(10px, 1.1vw, 14px);
        color: #444;
        line-height: 1.8;
        margin-bottom: 14px;
      }
      .hero-fallback .hf-icons {
        display: flex;
        gap: clamp(10px, 2vw, 30px);
        list-style: none;
        padding: 0;
        margin: 0;
      }
      .hero-fallback .hf-icons li {
        font-size: clamp(9px, 1vw, 12px);
        color: #111;
        text-align: center;
        font-weight: bold;
      }
      .hero-fallback .hf-icons span {
        display: block;
        font-size: clamp(20px, 2.6vw, 34px);
        margin-bottom: 4px;
        line-height: 1;
      }
      .hero-fallback .hf-right {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .hero-fallback .hf-right svg {
        width: 100%;
        height: auto;
        max-height: 85%;
      }

      .fv-hero-img .overlay-stamp {
        position: absolute;
        top: 14px;
        right: 14px;
        background: var(--accent-hot);
        color: #fff;
        padding: 8px 14px;
        font-weight: 900;
        font-size: 13px;
        border-radius: 4px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        letter-spacing: 1px;
      }

      /* FV直下：短納期訴求の強調コピー */
      .fv-catch {
        text-align: center;
        margin: 0 auto 18px;
        max-width: 760px;
      }
      .fv-catch .lead {
        display: inline-block;
        background: var(--blue-dark);
        color: #fff;
        padding: 6px 14px;
        font-size: 13px;
        font-weight: 900;
        border-radius: 4px;
        letter-spacing: 2px;
        margin-bottom: 12px;
      }
      .fv-catch h1 {
        font-size: 34px;
        font-weight: 900;
        color: var(--blue-dark);
        line-height: 1.35;
        margin: 0;
      }
      .fv-catch h1 .big {
        font-size: 60px;
        color: var(--blue-main);
        display: inline-block;
        vertical-align: -6px;
        text-shadow: 2px 2px 0 rgba(0, 82, 204, 0.1);
      }
      .fv-catch h1 .marker {
        background: linear-gradient(transparent 60%, #ffe87a 60%);
        padding: 0 4px;
      }

      /* ========================================
   期間限定バナー（工場空き枠・緊急訴求）
   ======================================== */
      .fv-limited-banner {
        max-width: 640px;
        margin: 0 auto 12px;
        background: linear-gradient(
          90deg,
          #d10000 0%,
          #ff3b3b 50%,
          #d10000 100%
        );
        background-size: 200% 100%;
        color: #fff;
        text-align: center;
        padding: 10px 14px;
        border-radius: 6px;
        font-size: 15px;
        font-weight: 900;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 12px rgba(209, 0, 0, 0.35);
        animation:
          limitedSlide 3s linear infinite,
          limitedPulse 1.4s ease-in-out infinite;
        white-space: nowrap;
        overflow: hidden;
      }
      .fv-limited-banner .fire {
        display: inline-block;
        animation: shake 0.4s infinite;
        margin: 0 4px;
      }
      .fv-limited-banner .hl {
        background: #fff200;
        color: #d10000;
        padding: 1px 8px;
        border-radius: 3px;
        margin: 0 2px;
      }
      @keyframes limitedSlide {
        0% {
          background-position: 0% 0;
        }
        100% {
          background-position: 200% 0;
        }
      }
      @keyframes limitedPulse {
        0%,
        100% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.015);
        }
      }

      /* ========================================
   強化版：価格バッジ（大きく・目立つ）
   ======================================== */
      .fv-price-big {
        max-width: 640px;
        margin: 0 auto 22px;
        background: linear-gradient(180deg, #fffdf0 0%, #fff 100%);
        border: 3px solid var(--blue-main);
        border-radius: 14px;
        padding: 22px 18px 16px;
        box-shadow: 0 10px 28px rgba(0, 45, 114, 0.2);
        position: relative;
      }
      .fv-price-big::before {
        content: "法人価格・工場直販";
        position: absolute;
        top: -14px;
        left: 50%;
        transform: translateX(-50%);
        background: #d10000;
        color: #fff;
        font-size: 12px;
        font-weight: 900;
        padding: 5px 16px;
        border-radius: 20px;
        letter-spacing: 1px;
        white-space: nowrap;
        box-shadow: 0 2px 8px rgba(209, 0, 0, 0.4);
      }
      .fv-price-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 18px;
        flex-wrap: nowrap;
      }
      .fv-price-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        flex: 1 1 auto;
      }
      .fv-price-item .item-label {
        background: var(--blue-main);
        color: #fff;
        font-size: 14px;
        font-weight: 900;
        padding: 3px 12px;
        border-radius: 4px;
        letter-spacing: 0.5px;
        white-space: nowrap;
      }
      .fv-price-item .item-amount {
        font-weight: 900;
        color: var(--blue-dark);
        line-height: 1;
        display: inline-flex;
        align-items: baseline;
        gap: 1px;
        white-space: nowrap;
      }
      .fv-price-item .num {
        font-size: 52px;
        color: var(--blue-main);
        letter-spacing: -1px;
        text-shadow: 2px 2px 0 rgba(0, 82, 204, 0.08);
      }
      .fv-price-item .yen {
        font-size: 22px;
      }
      .fv-price-item .tilde {
        font-size: 24px;
        color: #d10000;
      }
      .fv-price-divider {
        width: 2px;
        height: 60px;
        background: var(--blue-main);
        opacity: 0.25;
        flex-shrink: 0;
      }
      .fv-price-note {
        text-align: center;
        font-size: 11px;
        color: #666;
        margin-top: 10px;
        white-space: nowrap;
      }

      .fv-points {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 25px;
      }
      .fv-points li {
        background: var(--blue-main);
        color: #fff;
        padding: 6px 14px;
        list-style: none;
        font-size: 13px;
        border-radius: 4px;
        font-weight: bold;
      }

      /* CTAボタン */
      .fv-cta {
        display: flex;
        flex-direction: column;
        gap: 14px;
        max-width: 420px;
        margin: 0 auto;
      }
      .btn {
        display: block;
        padding: 20px 20px;
        font-size: 18px;
        font-weight: 900;
        text-align: center;
        border-radius: 10px;
        transition:
          transform 0.15s,
          box-shadow 0.15s;
        box-shadow: 0 4px 0 rgba(0, 45, 114, 0.25);
        letter-spacing: 1px;
        position: relative;
      }
      .btn:active {
        transform: translateY(2px);
        box-shadow: 0 2px 0 rgba(0, 45, 114, 0.25);
      }
      .btn-line {
        background: #06c755;
        color: #fff;
      }

      /* 緊急CTA — 最強の視認性・サイレン感 */
      .btn-urgent {
        background: linear-gradient(180deg, #ff3b3b 0%, #d10000 100%);
        color: #fff !important;
        padding: 28px 20px 24px !important;
        font-size: 24px !important;
        border-radius: 14px !important;
        border: 4px solid #ffeb00;
        box-shadow:
          0 0 0 3px #d10000,
          0 8px 0 #8a0000,
          0 12px 32px rgba(209, 0, 0, 0.5);
        animation:
          urgentSiren 0.9s infinite,
          urgentPulse 1.3s infinite;
        position: relative;
        overflow: hidden;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
        letter-spacing: 2px !important;
        line-height: 1.2;
      }
      .btn-urgent .urg-badge {
        display: inline-block;
        background: #ffeb00;
        color: #c80000;
        padding: 3px 12px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 900;
        margin-bottom: 8px;
        letter-spacing: 3px;
        animation: badgeFlash 0.7s infinite alternate;
      }
      .btn-urgent .urg-sub {
        display: block;
        font-size: 13px;
        opacity: 0.95;
        margin-top: 6px;
        font-weight: bold;
        letter-spacing: 1px;
      }
      .btn-urgent::before {
        content: "🚨";
        display: inline-block;
        margin-right: 8px;
        font-size: 28px;
        animation: shake 0.4s infinite;
      }
      .btn-urgent::after {
        content: "";
        position: absolute;
        top: -50%;
        left: -30%;
        width: 25%;
        height: 200%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.7),
          transparent
        );
        transform: rotate(25deg);
        animation: shine 1.8s infinite;
      }
      .btn-urgent:active {
        transform: translateY(4px);
        box-shadow:
          0 0 0 3px #d10000,
          0 4px 0 #8a0000,
          0 6px 16px rgba(209, 0, 0, 0.4);
      }
      @keyframes urgentSiren {
        0%,
        100% {
          background: linear-gradient(180deg, #ff3b3b 0%, #d10000 100%);
        }
        50% {
          background: linear-gradient(180deg, #ff6b6b 0%, #ff0000 100%);
        }
      }
      @keyframes urgentPulse {
        0%,
        100% {
          box-shadow:
            0 0 0 3px #d10000,
            0 8px 0 #8a0000,
            0 12px 32px rgba(209, 0, 0, 0.5),
            0 0 0 0 rgba(255, 59, 59, 0.7);
        }
        50% {
          box-shadow:
            0 0 0 3px #d10000,
            0 8px 0 #8a0000,
            0 12px 32px rgba(209, 0, 0, 0.5),
            0 0 0 24px rgba(255, 59, 59, 0);
        }
      }
      @keyframes badgeFlash {
        from {
          background: #ffeb00;
          transform: scale(1);
        }
        to {
          background: #fff;
          transform: scale(1.08);
        }
      }
      @keyframes shake {
        0%,
        100% {
          transform: rotate(-8deg);
        }
        50% {
          transform: rotate(8deg);
        }
      }
      .btn-tel {
        background: #fff;
        color: var(--blue-main);
        border: 2px solid var(--blue-main);
      }
      .btn-tel .num {
        font-size: 22px;
      }

      /* メインCTA（見積もりボタン）— 大きく目立たせる */
      .btn-form {
        background: linear-gradient(180deg, #ff8a1a 0%, var(--accent-hot) 100%);
        color: #fff;
        padding: 26px 20px;
        font-size: 22px;
        border-radius: 12px;
        animation: pulseBig 1.6s infinite;
        box-shadow:
          0 6px 0 #b84400,
          0 8px 24px rgba(255, 106, 0, 0.4);
        border: 3px solid #fff;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        position: relative;
        overflow: hidden;
      }
      .btn-form::before {
        content: "▼ 法人様・1クリックで相談 ▼";
        display: block;
        font-size: 11px;
        background: #fff;
        color: var(--accent-hot);
        padding: 3px 10px;
        border-radius: 20px;
        width: fit-content;
        margin: 0 auto 8px;
        letter-spacing: 2px;
        font-weight: 900;
      }
      .btn-form::after {
        content: "";
        position: absolute;
        top: -50%;
        left: -30%;
        width: 25%;
        height: 200%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.5),
          transparent
        );
        transform: rotate(25deg);
        animation: shine 2.8s infinite;
      }
      .btn-form:active {
        transform: translateY(3px);
        box-shadow:
          0 3px 0 #b84400,
          0 4px 12px rgba(255, 106, 0, 0.3);
      }
      @keyframes pulseBig {
        0%,
        100% {
          box-shadow:
            0 6px 0 #b84400,
            0 0 0 0 rgba(255, 106, 0, 0.7),
            0 8px 24px rgba(255, 106, 0, 0.4);
        }
        50% {
          box-shadow:
            0 6px 0 #b84400,
            0 0 0 18px rgba(255, 106, 0, 0),
            0 8px 24px rgba(255, 106, 0, 0.4);
        }
      }
      @keyframes shine {
        0% {
          left: -30%;
        }
        60% {
          left: 130%;
        }
        100% {
          left: 130%;
        }
      }
      @keyframes pulse {
        0%,
        100% {
          box-shadow:
            0 4px 0 rgba(0, 45, 114, 0.25),
            0 0 0 0 rgba(255, 106, 0, 0.6);
        }
        50% {
          box-shadow:
            0 4px 0 rgba(0, 45, 114, 0.25),
            0 0 0 12px rgba(255, 106, 0, 0);
        }
      }

      /* ========================================
   信頼実績バー（FV直下）
   ======================================== */
      .trust-strip {
        background: var(--blue-dark);
        color: #fff;
        padding: 20px 0;
      }
      .trust-strip-inner {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        text-align: center;
      }
      .trust-strip .t-num {
        font-size: 26px;
        font-weight: 900;
        color: #fff;
        display: block;
        line-height: 1.1;
      }
      .trust-strip .t-num small {
        font-size: 14px;
      }
      .trust-strip .t-label {
        font-size: 11px;
        opacity: 0.85;
        margin-top: 4px;
        display: block;
      }

      /* ========================================
   ② 共感・問題提起
   ======================================== */
      .problem {
        background: var(--blue-tint);
      }
      .problem-list {
        display: grid;
        gap: 12px;
        max-width: 600px;
        margin: 0 auto;
      }
      .problem-list li {
        background: #fff;
        padding: 16px 20px 16px 50px;
        list-style: none;
        position: relative;
        border-left: 5px solid var(--blue-main);
        font-weight: bold;
        font-size: 16px;
        box-shadow: 0 2px 8px rgba(0, 45, 114, 0.06);
        border-radius: 4px;
      }
      .problem-list li::before {
        content: "✓";
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--blue-main);
        font-size: 22px;
        font-weight: 900;
      }
      .problem-msg {
        text-align: center;
        margin-top: 30px;
        font-size: 20px;
        font-weight: 900;
        color: var(--blue-main);
        line-height: 1.5;
      }

      /* ========================================
   ③ 解決策
   ======================================== */
      .solution {
        background: #fff;
      }
      .solution-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 30px;
      }
      .solution-card {
        background: #fff;
        border: 2px solid var(--line);
        padding: 30px 20px;
        text-align: center;
        border-radius: 8px;
        border-top: 5px solid var(--blue-main);
        transition:
          transform 0.2s,
          box-shadow 0.2s;
      }
      .solution-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0, 82, 204, 0.12);
      }
      .solution-card .icon {
        font-size: 40px;
        margin-bottom: 10px;
        color: var(--blue-main);
        font-weight: 900;
      }
      .solution-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
        font-weight: 900;
        color: var(--blue-dark);
      }
      .solution-card p {
        font-size: 13px;
        line-height: 1.6;
        color: var(--gray);
      }

      /* ========================================
   プリント加工＆工場写真セクション
   ======================================== */
      .gallery {
        background: var(--blue-tint);
        padding: 60px 0;
      }
      .gallery-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-top: 20px;
      }
      .gallery-item {
        position: relative;
        border-radius: 8px;
        overflow: hidden;
        aspect-ratio: 4/3;
        background: var(--blue-deep);
        box-shadow: 0 6px 20px rgba(0, 45, 114, 0.15);
      }
      .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .gallery-item .label {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0, 31, 77, 0.9));
        color: #fff;
        padding: 25px 15px 12px;
        font-weight: 900;
        font-size: 14px;
      }
      .gallery-item .label span {
        background: var(--blue-main);
        padding: 2px 8px;
        border-radius: 3px;
        font-size: 11px;
        margin-right: 6px;
      }

      /* ========================================
   ④ 実績
   ======================================== */
      .results {
        background: linear-gradient(
          135deg,
          var(--blue-deep) 0%,
          var(--blue-dark) 100%
        );
        color: #fff;
      }
      .results .section-title {
        color: #fff;
      }
      .results .section-title span {
        color: #8ab4ff;
      }
      .results .section-title::after {
        background: #fff;
      }
      .results-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-top: 30px;
      }
      .result-box {
        background: #fff;
        color: var(--blue-dark);
        padding: 25px 15px;
        text-align: center;
        border-radius: 8px;
        border-top: 5px solid var(--blue-main);
      }
      .result-box .num {
        font-size: 44px;
        font-weight: 900;
        color: var(--blue-main);
        line-height: 1;
        display: block;
      }
      .result-box .unit {
        font-size: 18px;
        font-weight: 900;
        color: var(--blue-main);
      }
      .result-box .label {
        font-size: 13px;
        font-weight: bold;
        margin-top: 8px;
        display: block;
      }
      .results-note {
        text-align: center;
        margin-top: 25px;
        font-size: 13px;
        opacity: 0.8;
      }

      /* ========================================
   ⑤ 価格
   ======================================== */
      .price {
        background: var(--blue-tint);
      }
      .price-hero {
        text-align: center;
        background: var(--blue-main);
        color: #fff;
        padding: 20px;
        border-radius: 8px;
        max-width: 600px;
        margin: 0 auto 20px;
        font-weight: 900;
        font-size: 20px;
        line-height: 1.4;
        box-shadow: 0 6px 20px rgba(0, 82, 204, 0.25);
      }
      .price-hero .num {
        font-size: 44px;
        color: #fff;
        display: inline-block;
        vertical-align: middle;
      }
      .price-hero .yen {
        font-size: 18px;
      }
      .price-table {
        max-width: 600px;
        margin: 20px auto 0;
        border-collapse: collapse;
        width: 100%;
        background: #fff;
        box-shadow: 0 4px 16px rgba(0, 45, 114, 0.08);
        border-radius: 6px;
        overflow: hidden;
      }
      .price-table th,
      .price-table td {
        padding: 16px 10px;
        text-align: center;
        border-bottom: 1px solid var(--line);
        font-size: 14px;
      }
      .price-table th {
        background: var(--blue-dark);
        color: #fff;
        font-weight: 900;
      }
      .price-table td.item {
        font-weight: bold;
        text-align: left;
        color: var(--blue-dark);
      }
      .price-table td.amount {
        color: var(--blue-main);
        font-weight: 900;
        font-size: 17px;
      }
      .price-note {
        text-align: center;
        margin-top: 15px;
        font-size: 13px;
        color: var(--gray);
      }
      .price-highlight {
        background: var(--blue-dark);
        color: #fff;
        padding: 15px 20px;
        text-align: center;
        font-weight: 900;
        font-size: 16px;
        margin: 25px auto 0;
        max-width: 600px;
        border-radius: 4px;
      }

      /* ========================================
   ⑥ 制作の流れ
   ======================================== */
      .flow {
        background: #fff;
      }
      .flow-steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        margin-top: 30px;
      }
      .flow-step {
        background: var(--blue-tint);
        padding: 20px 10px;
        text-align: center;
        border-radius: 8px;
        border: 1px solid var(--line);
      }
      .flow-step .step-num {
        background: var(--blue-main);
        color: #fff;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        margin: 0 auto 10px;
        font-size: 16px;
      }
      .flow-step h4 {
        font-size: 15px;
        font-weight: 900;
        margin-bottom: 6px;
        color: var(--blue-dark);
      }
      .flow-step p {
        font-size: 12px;
        color: var(--gray);
      }

      /* ========================================
   ⑦ FAQ
   ======================================== */
      .faq {
        background: var(--blue-tint);
      }
      .faq-list {
        max-width: 700px;
        margin: 30px auto 0;
        display: grid;
        gap: 12px;
      }
      .faq-item {
        background: #fff;
        padding: 20px;
        border-radius: 6px;
        border-left: 4px solid var(--blue-main);
        box-shadow: 0 2px 8px rgba(0, 45, 114, 0.05);
      }
      .faq-q {
        font-weight: 900;
        margin-bottom: 10px;
        padding-left: 30px;
        position: relative;
        font-size: 15px;
        color: var(--blue-dark);
      }
      .faq-q::before {
        content: "Q";
        position: absolute;
        left: 0;
        top: -2px;
        background: var(--blue-main);
        color: #fff;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
      }
      .faq-a {
        padding-left: 30px;
        position: relative;
        font-size: 14px;
        line-height: 1.7;
        color: #333;
      }
      .faq-a::before {
        content: "A";
        position: absolute;
        left: 0;
        top: -2px;
        background: var(--blue-dark);
        color: #fff;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
      }

      /* ========================================
   ⑧ 最終CTA
   ======================================== */
      .final-cta {
        background: linear-gradient(
          135deg,
          var(--blue-main) 0%,
          var(--blue-deep) 100%
        );
        color: #fff;
        text-align: center;
      }
      .final-cta h2 {
        font-size: 28px;
        font-weight: 900;
        margin-bottom: 10px;
        line-height: 1.4;
      }
      .final-cta h2 .underline {
        background: linear-gradient(transparent 60%, #fff 60%);
        padding: 0 4px;
        color: var(--blue-dark);
      }
      .final-cta-sub {
        font-size: 16px;
        margin-bottom: 30px;
      }
      .final-cta .fv-cta {
        max-width: 400px;
      }

      /* 3つの問い合わせ方法（LINE／電話／メール並列） */
      .contact-methods {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        max-width: 980px;
        margin: 30px auto 40px;
      }
      .cm-card {
        background: #fff;
        color: var(--ink);
        padding: 24px 18px;
        border-radius: 10px;
        text-align: center;
        position: relative;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      .cm-badge {
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        color: #fff;
        padding: 4px 12px;
        font-size: 11px;
        font-weight: 900;
        border-radius: 4px;
        letter-spacing: 1px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
      }
      .cm-card h3 {
        font-size: 18px;
        font-weight: 900;
        margin: 8px 0 10px;
      }
      .cm-card .cm-desc {
        font-size: 13px;
        color: #555;
        line-height: 1.6;
        margin-bottom: 14px;
        flex-grow: 1;
      }

      /* LINE QRコード（cm-card内） */
      .line-qr {
        background: #fff;
        color: var(--blue-dark);
        padding: 0;
        text-align: center;
      }
      .line-qr img {
        width: 160px;
        height: 160px;
        margin: 0 auto;
        border: 2px solid #06c755;
        border-radius: 6px;
      }
      .line-qr p {
        font-size: 11px;
        color: var(--gray);
        margin-top: 8px;
      }

      /* 電話・メールの大型ボタン */
      .cm-tel-big,
      .cm-mail-big {
        display: block;
        width: 100%;
        background: var(--blue-tint);
        color: var(--blue-dark);
        padding: 14px 10px;
        border-radius: 8px;
        border: 2px solid var(--blue-main);
        text-align: center;
        transition: background 0.15s;
      }
      .cm-tel-big:active,
      .cm-mail-big:active {
        background: var(--blue-soft);
      }
      .cm-tel-big span,
      .cm-mail-big span {
        font-size: 12px;
        color: var(--gray);
        display: block;
        margin-bottom: 2px;
      }
      .cm-tel-big strong {
        font-size: 22px;
        color: var(--blue-main);
        font-weight: 900;
        display: block;
        line-height: 1.1;
        letter-spacing: 0.5px;
      }
      .cm-mail-big strong {
        font-size: 15px;
        color: var(--accent-hot);
        font-weight: 900;
        display: block;
        line-height: 1.2;
        word-break: break-all;
      }
      .cm-mail-big {
        border-color: var(--accent-hot);
      }
      .cm-tel-big small,
      .cm-mail-big small {
        display: block;
        font-size: 10px;
        color: var(--gray);
        margin-top: 4px;
      }
      @media (max-width: 768px) {
        .contact-methods {
          grid-template-columns: 1fr;
          gap: 20px;
        }
      }

      /* 必須ラベル */
      .req {
        background: var(--accent-hot);
        color: #fff;
        font-size: 10px;
        padding: 2px 6px;
        border-radius: 3px;
        margin-left: 4px;
        font-weight: 900;
      }

      /* サンクス画面 */
      .thanks {
        max-width: 500px;
        margin: 30px auto 0;
        background: #fff;
        color: var(--blue-dark);
        border-radius: 10px;
        padding: 40px 25px;
        text-align: center;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
      }
      .thanks-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #06c755;
        color: #fff;
        font-size: 36px;
        font-weight: 900;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
      }
      .thanks h3 {
        font-size: 20px;
        font-weight: 900;
        margin-bottom: 12px;
      }
      .thanks p {
        font-size: 14px;
        color: #444;
        margin-bottom: 20px;
        line-height: 1.7;
      }
      .thanks-contacts {
        max-width: 320px;
        margin: 0 auto;
      }

      .contact-form {
        background: #fff;
        color: var(--ink);
        padding: 30px 20px;
        border-radius: 8px;
        max-width: 500px;
        margin: 30px auto 0;
        text-align: left;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
      }
      .contact-form h3 {
        text-align: center;
        font-size: 18px;
        font-weight: 900;
        margin-bottom: 20px;
        color: var(--blue-main);
      }
      .form-row {
        margin-bottom: 15px;
      }
      .form-row label {
        display: block;
        font-weight: bold;
        font-size: 14px;
        margin-bottom: 5px;
        color: var(--blue-dark);
      }
      .form-row input,
      .form-row textarea,
      .form-row select {
        width: 100%;
        padding: 12px;
        border: 2px solid var(--line);
        border-radius: 4px;
        font-size: 15px;
        font-family: inherit;
      }
      .form-row input:focus,
      .form-row textarea:focus,
      .form-row select:focus {
        border-color: var(--blue-main);
        outline: none;
      }
      .form-submit {
        width: 100%;
        background: var(--accent-hot);
        color: #fff;
        padding: 18px;
        font-size: 18px;
        font-weight: 900;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        margin-top: 10px;
      }
      .form-submit:hover {
        background: #e55c00;
      }

      /* 担当者直通連絡先ボックス */
      .direct-contact {
        background: #fff;
        color: var(--blue-dark);
        padding: 20px;
        border-radius: 8px;
        max-width: 500px;
        margin: 25px auto 0;
        text-align: center;
        border: 2px solid #fff;
      }
      .direct-contact .label {
        background: var(--blue-dark);
        color: #fff;
        padding: 3px 10px;
        display: inline-block;
        font-size: 12px;
        font-weight: 900;
        border-radius: 3px;
        margin-bottom: 10px;
      }
      .direct-contact .item {
        margin: 8px 0;
        font-size: 15px;
        font-weight: bold;
      }
      .direct-contact .item a {
        color: var(--blue-main);
      }
      .direct-contact .item strong {
        font-size: 20px;
        color: var(--blue-main);
      }

      /* ========================================
   フッター
   ======================================== */
      footer {
        background: var(--blue-dark);
        color: #a8bddb;
        padding: 25px 0;
        text-align: center;
        font-size: 12px;
      }
      footer a {
        color: #fff;
      }

      /* ========================================
   追従CTA（常時表示・目立つデザイン）
   ======================================== */
      .fixed-cta-wrapper {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.25);
      }
      .fixed-cta-banner {
        background: var(--blue-dark);
        color: #ffeb00;
        text-align: center;
        padding: 6px;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 1px;
      }
      .fixed-cta-banner .flash {
        display: inline-block;
        background: var(--accent-hot);
        color: #fff;
        padding: 2px 8px;
        border-radius: 3px;
        margin-right: 6px;
        animation: flashBlink 1.2s infinite;
      }
      @keyframes flashBlink {
        0%,
        100% {
          opacity: 1;
        }
        50% {
          opacity: 0.5;
        }
      }
      /* 追従バーの緊急ボタン（最上段・最も目立つ） */
      .fixed-urgent {
        background: #fff;
        padding: 8px 6px 0;
      }
      .fixed-urgent a {
        display: block;
        text-align: center;
        text-decoration: none;
        background: linear-gradient(180deg, #ff3b3b 0%, #d10000 100%);
        color: #fff;
        font-weight: 900;
        font-size: 18px;
        letter-spacing: 1px;
        padding: 14px 10px 12px;
        border-radius: 10px;
        border: 3px solid #ffeb00;
        box-shadow:
          0 0 0 2px #d10000,
          0 5px 0 #8a0000,
          0 6px 16px rgba(209, 0, 0, 0.45);
        position: relative;
        overflow: hidden;
        animation:
          urgentSiren 0.9s infinite,
          urgentPulse 1.3s infinite;
      }
      .fixed-urgent a::before {
        content: "🚨";
        margin-right: 8px;
        display: inline-block;
        animation: shake 0.35s infinite;
        font-size: 20px;
      }
      .fixed-urgent a::after {
        content: "";
        position: absolute;
        top: -50%;
        left: -30%;
        width: 25%;
        height: 200%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.6),
          transparent
        );
        transform: rotate(25deg);
        animation: shine 2.2s infinite;
      }
      .fixed-urgent a small {
        display: block;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.5px;
        margin-top: 2px;
        opacity: 0.98;
      }
      .fixed-cta {
        background: #fff;
        padding: 8px 6px;
        display: grid;
        grid-template-columns: 1fr 1fr 2fr;
        gap: 6px;
      }
      .fixed-cta a {
        padding: 13px 5px;
        text-align: center;
        font-weight: 900;
        font-size: 13px;
        border-radius: 8px;
        color: #fff;
        line-height: 1.2;
        box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
      }
      .fixed-cta a:active {
        transform: translateY(2px);
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
      }
      .fixed-cta .f-line {
        background: #06c755;
      }
      .fixed-cta .f-tel {
        background: var(--blue-main);
      }
      .fixed-cta .f-form {
        background: linear-gradient(180deg, #ff8a1a 0%, var(--accent-hot) 100%);
        font-size: 15px;
        position: relative;
        overflow: hidden;
        animation: ctaFlash 1.6s infinite;
        border: 2px solid #fff;
        box-shadow:
          0 3px 0 #b84400,
          0 0 0 2px var(--accent-hot);
      }
      .fixed-cta .f-form::after {
        content: "";
        position: absolute;
        top: -50%;
        left: -30%;
        width: 25%;
        height: 200%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.6),
          transparent
        );
        transform: rotate(25deg);
        animation: shine 2.4s infinite;
      }
      @keyframes ctaFlash {
        0%,
        100% {
          box-shadow:
            0 3px 0 #b84400,
            0 0 0 2px var(--accent-hot),
            0 0 0 0 rgba(255, 106, 0, 0.7);
        }
        50% {
          box-shadow:
            0 3px 0 #b84400,
            0 0 0 2px var(--accent-hot),
            0 0 0 10px rgba(255, 106, 0, 0);
        }
      }
      .fixed-cta a small {
        display: block;
        font-size: 10px;
        opacity: 0.95;
        font-weight: normal;
        margin-top: 2px;
      }

      /* ========================================
   レスポンシブ（スマホ最適化）
   ======================================== */
      @media (max-width: 768px) {
        .section-title {
          font-size: 22px;
        }
        section {
          padding: 45px 0;
        }

        /* FVキャッチ：PCで1行のものはスマホでも1行で表示 */
        .fv-catch h1 {
          font-size: 22px;
          line-height: 1.35;
          white-space: nowrap;
        }
        .fv-catch h1 .big {
          font-size: 36px;
          vertical-align: -3px;
        }
        .fv-catch h1 br + span {
          font-size: 13px !important;
          white-space: nowrap;
          display: inline-block;
        }
        .fv-catch .lead {
          font-size: 11px;
          white-space: nowrap;
        }

        .fv-hero-img {
          border-radius: 6px;
        }

        /* 期間限定バナー（1行厳守・極小画面は文字を縮めて対応） */
        .fv-limited-banner {
          font-size: 12px;
          padding: 9px 8px;
          letter-spacing: 0;
        }
        .fv-limited-banner .hl {
          padding: 1px 5px;
        }
        .fv-limited-banner .fire {
          font-size: 13px;
        }

        /* 強化版価格バッジ：スマホでも大きくインパクトを残す */
        .fv-price-big {
          padding: 20px 10px 14px;
          max-width: 360px;
        }
        .fv-price-big::before {
          font-size: 11px;
          padding: 4px 12px;
        }
        .fv-price-row {
          gap: 8px;
        }
        .fv-price-item .item-label {
          font-size: 11px;
          padding: 2px 8px;
        }
        .fv-price-item .num {
          font-size: 40px;
        }
        .fv-price-item .yen {
          font-size: 16px;
        }
        .fv-price-item .tilde {
          font-size: 18px;
        }
        .fv-price-divider {
          height: 48px;
        }
        .fv-price-note {
          font-size: 10px;
          white-space: nowrap;
        }

        /* fv-points：3つを1行にキープ */
        .fv-points {
          flex-wrap: nowrap;
          gap: 6px;
          padding: 0 8px;
        }
        .fv-points li {
          font-size: 11px;
          padding: 5px 8px;
          white-space: nowrap;
          flex: 0 1 auto;
        }

        /* 追従CTAバナー：1行厳守 */
        .fixed-cta-banner {
          font-size: 10px;
          letter-spacing: 0;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
          padding: 6px 4px;
        }
        .fixed-cta-banner .flash {
          font-size: 10px;
          padding: 1px 5px;
          margin-right: 4px;
        }
        .fixed-urgent a {
          font-size: 16px;
          padding: 12px 8px 10px;
        }
        .fixed-urgent a small {
          font-size: 10px;
          white-space: nowrap;
        }
        .fixed-urgent a::before {
          font-size: 17px;
          margin-right: 5px;
        }

        .trust-strip-inner {
          grid-template-columns: repeat(2, 1fr);
          gap: 14px;
        }
        .solution-grid {
          grid-template-columns: 1fr;
        }
        .results-grid {
          grid-template-columns: 1fr;
        }
        .flow-steps {
          grid-template-columns: repeat(2, 1fr);
        }
        .final-cta h2 {
          font-size: 22px;
        }
        .price-table th,
        .price-table td {
          padding: 10px 6px;
          font-size: 12px;
        }
        .price-table td.amount {
          font-size: 14px;
        }
        .price-hero {
          font-size: 16px;
          white-space: nowrap;
        }
        .price-hero .num {
          font-size: 32px;
        }
        .trust-bar {
          flex-wrap: nowrap;
          overflow-x: auto;
          -webkit-overflow-scrolling: touch;
        }
        .trust-bar li {
          font-size: 10px;
          padding: 4px 8px;
          white-space: nowrap;
          flex-shrink: 0;
        }

        /* ヘッダーCTA：スマホでも重ならず1行 */
        .header-cta {
          gap: 4px;
        }
        .header-cta a {
          font-size: 11px;
          padding: 6px 8px;
          white-space: nowrap;
        }
        .header-cta .hc-web {
          display: none;
        }
      }

      /* 極小画面用（iPhone SE等） */
      @media (max-width: 390px) {
        .fv-catch h1 {
          font-size: 20px;
        }
        .fv-catch h1 .big {
          font-size: 32px;
        }
        .fv-limited-banner {
          font-size: 11px;
        }
        .fv-price-item .num {
          font-size: 34px;
        }
        .fv-price-note {
          font-size: 9px;
        }
        .fixed-cta-banner {
          font-size: 9px;
        }
        .fv-points li {
          font-size: 10px;
          padding: 4px 6px;
        }
      }

      @media (min-width: 769px) {
        .fixed-cta {
          grid-template-columns: 160px 160px 280px;
          justify-content: center;
        }
      }
