/* ========================================
   リセット・ベーススタイル
   ======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ========================================
   カスタムCSSプロパティ
   ======================================== */
:root {
    /* ブランドカラー */
    --primary-green: #007744;
    --primary-green-dark: #005533;
    --primary-green-light: #009955;
    
    /* アクセントカラー */
    --base-orange: #ea5441;
    --base-orange-dark: #d14030;
    --base-orange-light: #ff6b58;
    
    /* 背景・装飾 */
    --accent-cream: #faf5e8;
    --accent-beige: #f5efe0;
    --accent-brown: #3c2415;
    --bg-white: #ffffff;
    --bg-light-green: #e8f5ec;
    --bg-light-orange: #fff8f6;
    
    /* テキスト */
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-heading: #3c2415;
    
    /* フォント */
    --font-primary: 'Noto Sans JP', sans-serif;
    --font-heading: 'Noto Serif JP', serif;
    
    /* シャドウ */
    --shadow-soft: 0 4px 20px rgba(0, 119, 68, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 119, 68, 0.15);
    --shadow-orange: 0 4px 15px rgba(234, 84, 65, 0.3);
}

/* ========================================
   ベーススタイル
   ======================================== */
html {
    font-size: 17px;
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    html {
        font-size: 18px;
    }
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.9;
    overflow-x: hidden;
    font-size: 1.0625rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 768px) {
    body {
        font-size: 1rem;
        line-height: 1.9;
    }
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--text-heading);
}

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

ul {
    list-style: none;
}

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

button {
    font-family: inherit;
}

/* セクション共通 */
section {
    padding: clamp(3rem, 8vw, 5rem) 0;
    position: relative;
}

/* ========================================
   レイアウトユーティリティ
   ======================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Flexbox */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-baseline { align-items: baseline; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.shrink-0 { flex-shrink: 0; }

/* Grid */
.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* Gap */
.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }

/* Space */
.space-y-1\.5 > * + * { margin-top: 0.375rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* ========================================
   サイズユーティリティ
   ======================================== */
.w-full { width: 100%; }
.w-1\/2 { width: 50%; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-40 { width: 10rem; }
.w-48 { width: 12rem; }

.h-1 { height: 0.25rem; }
.h-16 { height: 4rem; }
.h-40 { height: 10rem; }
.h-48 { height: 12rem; }
.h-full { height: 100%; }

.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }

/* ========================================
   余白ユーティリティ
   ======================================== */
.mx-auto { margin-left: auto; margin-right: auto; }
.mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-14 { margin-top: 3.5rem; }
.mt-16 { margin-top: 4rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-9 { margin-bottom: 2.25rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.mr-2 { margin-right: 0.5rem; }

.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-7 { padding-left: 1.75rem; padding-right: 1.75rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-7 { padding-top: 1.75rem; padding-bottom: 1.75rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-4 { padding-top: 1rem; }
.pt-8 { padding-top: 2rem; }
.pt-10 { padding-top: 2.5rem; }
.pt-28 { padding-top: 7rem; }
.pb-0 { padding-bottom: 0; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-16 { padding-bottom: 4rem; }
.pr-1 { padding-right: 0.25rem; }
.pr-2 { padding-right: 0.5rem; }

/* ========================================
   ポジションユーティリティ
   ======================================== */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.top-0 { top: 0; }
.top-full { top: 100%; }
.top-1\/2 { top: 50%; }
.right-0 { right: 0; }
.left-0 { left: 0; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* Transform */
.transform { transform: translateX(0); }
.rotate-12 { --tw-rotate: 12deg; transform: rotate(var(--tw-rotate)); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.translate-x-1\/2 { transform: translateX(50%); }
.translate-x-20 { transform: translateX(5rem); }
.skew-x-12 { transform: skewX(12deg); }
.-top-3 { top: -0.75rem; }
.-right-3 { right: -0.75rem; }
.-right-2 { right: -0.5rem; }
.-top-4 { top: -1rem; }
.-right-4 { right: -1rem; }
.-right-10 { right: -2.5rem; }
.-bottom-10 { bottom: -2.5rem; }

/* ========================================
   表示ユーティリティ
   ======================================== */
.block { display: block; }
.hidden { display: none; }
.inline-block { display: inline-block; }
.overflow-hidden { overflow: hidden; }

/* ========================================
   テキストユーティリティ
   ======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-xs { font-size: 0.875rem; line-height: 1.375rem; }
.text-sm { font-size: 1rem; line-height: 1.625rem; }
.text-base { font-size: 1.125rem; line-height: 1.75rem; }
.text-lg { font-size: 1.25rem; line-height: 1.95rem; }
.text-xl { font-size: 1.5rem; line-height: 2rem; }
.text-2xl { font-size: 1.75rem; line-height: 2.25rem; }
.text-3xl { font-size: 2rem; line-height: 2.5rem; }
.text-4xl { font-size: 2.5rem; line-height: 3rem; }
.text-5xl { font-size: 3rem; line-height: 1.1; }
.text-6xl { font-size: 3.75rem; line-height: 1.1; }

.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }
.font-serif { font-family: var(--font-heading); }

.leading-relaxed { line-height: 1.625; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

/* ========================================
   カラーユーティリティ
   ======================================== */
/* Text colors */
.text-white { color: #ffffff; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }
.text-\[\#007744\] { color: #007744; }
.text-\[\#3c2415\] { color: #3c2415; }
.text-\[\#ea5441\] { color: #ea5441; }

/* Background colors */
.bg-white { background-color: #ffffff; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-600 { background-color: #4b5563; }
.bg-green-50 { background-color: #f0fdf4; }
.bg-green-100 { background-color: #dcfce7; }
.bg-cream { background-color: var(--accent-cream); }
.bg-light-green { background-color: var(--bg-light-green); }
.bg-\[\#007744\] { background-color: #007744; }
.bg-\[\#3c2415\] { background-color: #3c2415; }
.bg-\[\#e8f5ec\] { background-color: #e8f5ec; }
.bg-\[\#ea5441\] { background-color: #ea5441; }
.bg-\[\#faf5e8\] { background-color: #faf5e8; }
.bg-\[\#fff8f6\] { background-color: #fff8f6; }

/* Gradients */
.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}
.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.bg-gradient-to-b {
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.bg-gradient-to-tr {
    background-image: linear-gradient(to top right, var(--tw-gradient-stops));
}
.from-\[\#007744\] { --tw-gradient-from: #007744; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-\[\#e8f5ec\] { --tw-gradient-from: #e8f5ec; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-\[\#ea5441\] { --tw-gradient-from: #ea5441; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-\[\#f5a623\] { --tw-gradient-from: #f5a623; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-\[\#fff8f0\] { --tw-gradient-from: #fff8f0; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.to-\[\#005533\] { --tw-gradient-to: #005533; }
.to-\[\#fff\] { --tw-gradient-to: #ffffff; }
.to-\[\#ff6b58\] { --tw-gradient-to: #ff6b58; }
.to-\[\#e8941a\] { --tw-gradient-to: #e8941a; }
.to-transparent { --tw-gradient-to: transparent; }

/* Border utilities */
.border-t-4 { border-top-width: 4px; }
.border-b-4 { border-bottom-width: 4px; }
.border-\[\#ea5441\] { border-color: #ea5441; }
.border-\[\#c77a10\] { border-color: #c77a10; }
.border-\[\#007744\] { border-color: #007744; }

/* Opacity */
.opacity-5 { opacity: 0.05; }
.opacity-10 { opacity: 0.1; }
.opacity-50 { opacity: 0.5; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.opacity-95 { opacity: 0.95; }

/* ========================================
   ボーダーユーティリティ
   ======================================== */
.border { border-width: 1px; border-style: solid; border-color: #e5e7eb; }
.border-2 { border-width: 2px; border-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #e5e7eb; }
.border-t { border-top-width: 1px; border-top-style: solid; border-top-color: #e5e7eb; }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.border-none { border: none; }

.border-gray-100 { border-color: #f3f4f6; }
.border-gray-200 { border-color: #e5e7eb; }
.border-gray-700 { border-color: #374151; }
.border-\[\#ea5441\] { border-color: #ea5441; }
.border-\[\#ff6b58\] { border-color: #ff6b58; }
.border-white\/30 { border-color: rgba(255, 255, 255, 0.3); }

.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-r-lg { border-top-right-radius: 0.5rem; border-bottom-right-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* ========================================
   シャドウユーティリティ
   ======================================== */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.shadow-inner { box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); }
.hover\:shadow-2xl:hover { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }

/* ========================================
   トランジションユーティリティ
   ======================================== */
.transition {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.duration-300 { transition-duration: 300ms; }

/* ========================================
   インタラクティブユーティリティ
   ======================================== */
.hover\:text-\[\#007744\]:hover { color: #007744; }
.hover\:text-\[\#ea5441\]:hover { color: #ea5441; }
.hover\:bg-\[\#d14030\]:hover { background-color: #d14030; }
.focus\:outline-none:focus { outline: none; }

/* ========================================
   改行制御ユーティリティ
   ======================================== */
.nowrap {
    white-space: nowrap;
}

.text-balance {
    text-wrap: balance;
    word-break: auto-phrase;
}

.br-pc {
    display: none;
}

.br-sp {
    display: inline;
}

/* ========================================
   コンポーネント：CTAボタン
   ======================================== */
.btn-cta {
    background: linear-gradient(135deg, var(--base-orange) 0%, var(--base-orange-light) 100%);
    color: white;
    font-weight: 700;
    font-size: clamp(1.0625rem, 2.5vw, 1.25rem);
    padding: clamp(1rem, 3vw, 1.25rem) clamp(1.75rem, 5vw, 3.5rem);
    border-radius: 3.125rem;
    box-shadow: var(--shadow-orange);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(234, 84, 65, 0.4);
}

.btn-cta::after {
    content: '\f061';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 0.625rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.btn-cta:hover::after {
    transform: translateX(5px);
}

/* ヒーローセクション用リッチCTAボタン */
.hero-cta-btn {
    background: linear-gradient(180deg, #f5a623 0%, #e8941a 50%, #d4820f 100%);
    border-bottom: 4px solid #b56c08;
    position: relative;
    overflow: hidden;
    animation: pulse-glow 2s ease-in-out infinite;
}
.hero-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 100%);
    border-radius: 9999px 9999px 0 0;
}
/* キラキラシャインエフェクト */
.hero-cta-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 60%;
    height: 200%;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.4) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
    animation: shine 3s ease-in-out infinite;
}
.hero-cta-btn:hover {
    background: linear-gradient(180deg, #ffb833 0%, #f5a623 50%, #e8941a 100%);
    animation: none;
    transform: translateY(-3px) scale(1.02);
}
.hero-cta-btn:hover::after {
    animation: shine-fast 0.6s ease-in-out;
}

/* パルス＆グローアニメーション */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4), 0 0 0 0 rgba(245, 166, 35, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 25px rgba(245, 166, 35, 0.6), 0 0 20px 3px rgba(245, 166, 35, 0.3);
        transform: scale(1.02);
    }
}

/* シャイン（光が流れる）アニメーション */
@keyframes shine {
    0% {
        left: -100%;
    }
    20%, 100% {
        left: 150%;
    }
}
@keyframes shine-fast {
    0% {
        left: -100%;
    }
    100% {
        left: 150%;
    }
}

/* CVブロック用スタイル */
.cv-main-text {
    font-size: clamp(0.85rem, 3.5vw, 1.25rem);
}
.cv-sub-badge {
    font-size: clamp(0.7rem, 3.2vw, 1rem);
}
.cv-cta-btn {
    font-size: clamp(0.9rem, 4vw, 1.375rem);
    padding: clamp(0.7rem, 2.5vw, 1.25rem) clamp(1.25rem, 5vw, 3rem);
}

/* カンタン30秒 装飾 */
.cv-quick-label {
    font-size: clamp(0.8rem, 3.5vw, 1.125rem);
}
.cv-quick-number {
    font-size: 1.3em;
    margin: 0 0.1em;
}
.cv-slash-left,
.cv-slash-right {
    display: inline-block;
    font-weight: normal;
}
.cv-slash-left {
    transform: rotate(-15deg);
}
.cv-slash-right {
    transform: rotate(15deg);
}

/* ========================================
   コンポーネント：問題提起バブル
   ======================================== */
.problem-bubble-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.25rem;
    max-width: 54rem;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .problem-bubble-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem 0.5rem;
    }
}

.problem-bubble {
    position: relative;
    background: linear-gradient(180deg, #ffd4cc 0%, #ffbeb2 100%);
    border-radius: 0.875rem;
    padding: 1.25rem 0.875rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(234, 84, 65, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 5.5rem;
}

@media (max-width: 768px) {
    .problem-bubble {
        padding: 1rem 0.5rem;
        min-height: 4.5rem;
    }
}

.problem-bubble:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(234, 84, 65, 0.2);
}

/* 濃い色のアクセント */
.problem-bubble.accent {
    background: linear-gradient(180deg, #f07563 0%, #ea5441 100%);
}

.problem-bubble.accent p {
    color: white;
}

/* 吹き出しの泡（下部に配置） */
.problem-bubble::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 24px;
    width: 16px;
    height: 16px;
    background: linear-gradient(180deg, #ffbeb2 0%, #ffbeb2 100%);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(234, 84, 65, 0.15);
}

.problem-bubble::after {
    content: '';
    position: absolute;
    bottom: -24px;
    left: 16px;
    width: 10px;
    height: 10px;
    background: #ffbeb2;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(234, 84, 65, 0.1);
}

@media (max-width: 768px) {
    .problem-bubble::before {
        bottom: -10px;
        left: 12px;
        width: 12px;
        height: 12px;
    }
    
    .problem-bubble::after {
        bottom: -18px;
        left: 6px;
        width: 8px;
        height: 8px;
    }
}

/* アクセント色の泡 */
.problem-bubble.accent::before {
    background: linear-gradient(180deg, #ea5441 0%, #d94433 100%);
}

.problem-bubble.accent::after {
    background: #d94433;
}

.problem-bubble p {
    font-size: clamp(0.8125rem, 2.5vw, 1.125rem);
    font-weight: 700;
    color: var(--text-heading);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .problem-bubble p {
        font-size: 0.9375rem;
        line-height: 1.55;
    }
}

/* ========================================
   コンポーネント：比較表
   ======================================== */
.comparison-col {
    transition: transform 0.3s ease;
    overflow: visible;
}

.comparison-col.dont {
    background: #f8f8f8;
    border-radius: 1rem;
    padding: clamp(1rem, 3vw, 1.875rem);
    height: 100%;
}

.comparison-col.do {
    background: var(--bg-light-green);
    border-radius: 1rem;
    padding: clamp(1rem, 3vw, 1.875rem);
    border: 2px solid var(--primary-green);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.comparison-col.do::after {
    content: 'RECOMMENDED';
    position: absolute;
    top: 1.563rem;
    right: -2.813rem;
    background: var(--base-orange);
    color: white;
    width: 9.375rem;
    padding: 0.25rem 0;
    text-align: center;
    transform: rotate(45deg);
    font-size: 0.688rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    letter-spacing: 0.5px;
}

.comparison-col h3 {
    text-align: center;
    padding: 0.5rem 0.75rem;
    border-radius: 1.875rem;
    margin-bottom: 1rem;
    font-size: clamp(0.9375rem, 2.2vw, 1.125rem);
    font-weight: bold;
}

.comparison-col.dont h3 { background: #ddd; color: #666; }
.comparison-col.do h3 { background: var(--primary-green); color: white; }

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: clamp(0.8125rem, 2vw, 1.0625rem);
    line-height: 1.6;
    word-break: break-word;
}

.comparison-col.dont .comparison-item::before {
    content: '\f00d';
    font-family: "Font Awesome 6 Free";
    color: #999;
    font-weight: 900;
    min-width: 1.25rem;
}

.comparison-col.do .comparison-item::before {
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    color: var(--primary-green);
    font-weight: 900;
    min-width: 1.25rem;
}

/* ========================================
   コンポーネント：ステップカード
   ======================================== */
.step-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.875rem;
    position: relative;
    z-index: 10;
}

.step-badge {
    flex-shrink: 0;
    width: clamp(2.5rem, 6vw, 3.125rem);
    height: clamp(2.5rem, 6vw, 3.125rem);
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: clamp(0.875rem, 2vw, 1.25rem);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1;
    padding-top: 0.125rem;
    box-shadow: 0 4px 10px rgba(0, 119, 68, 0.2);
    border: 4px solid #faf5e8;
    z-index: 2;
}

.step-badge.last {
    background: var(--base-orange);
    box-shadow: 0 4px 10px rgba(234, 84, 65, 0.3);
}

.step-content {
    flex-grow: 1;
    background: white;
    border: 1px solid #8fcbb3;
    border-radius: 0.75rem;
    padding: clamp(1rem, 3vw, 1.25rem) clamp(1rem, 3vw, 1.563rem);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 119, 68, 0.1);
    border-color: var(--primary-green);
}

.step-content h4 {
    color: var(--primary-green);
    font-size: clamp(1.125rem, 3vw, 1.375rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.step-item:last-child .step-content h4 {
    color: var(--text-heading);
}
.step-item:last-child .step-content h4 i {
    color: var(--base-orange);
}
.step-item:last-child .step-content {
    border-color: #ffccbc;
}

.step-content p {
    color: var(--text-secondary);
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    line-height: 1.75;
    margin: 0;
}

.step-timeline-line {
    position: absolute;
    left: clamp(1.25rem, 3vw, 1.563rem);
    top: 1.25rem;
    bottom: 2.5rem;
    width: 2px;
    background-color: #d1e8db;
    transform: translateX(-50%);
    z-index: 0;
}

/* ========================================
   コンポーネント：料金カード
   ======================================== */
.pricing-card {
    background: white;
    border-radius: 1.25rem;
    padding: clamp(2rem, 6vw, 3.125rem) clamp(1.5rem, 5vw, 2.5rem);
    text-align: center;
    border: 3px solid var(--primary-green);
    box-shadow: var(--shadow-medium);
    max-width: 31.25rem;
    margin: 0 auto;
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -0.938rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--base-orange);
    color: white;
    padding: 0.5rem 1.563rem;
    border-radius: 1.875rem;
    font-weight: 700;
    font-size: 0.875rem;
    white-space: nowrap;
}

.pricing-amount {
    font-size: clamp(2.5rem, 8vw, 3rem);
    font-weight: 900;
    color: var(--primary-green);
    line-height: 1.2;
}

.pricing-amount span {
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-weight: 500;
}

.pricing-includes {
    background: var(--bg-light-green);
    border-radius: 0.75rem;
    padding: clamp(1rem, 3vw, 1.563rem);
    margin-top: 1.563rem;
    text-align: left;
}

.pricing-includes li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed #ccc;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 500;
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    line-height: 1.7;
}

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

.pricing-includes li::before {
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    color: var(--primary-green);
    font-weight: 900;
}

/* ========================================
   コンポーネント：選ばれる理由カード
   ======================================== */
.reason-card {
    background: white;
    border-radius: 1rem;
    padding: clamp(1.5rem, 4vw, 2.188rem) clamp(1.25rem, 4vw, 1.875rem);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.reason-number {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-green);
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.25rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1;
    padding-top: 0.125rem;
}

/* 理由カード共通：数字と見出しを横並び */
.reason-card-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.reason-card-header h4 {
    margin: 0;
    flex: 1;
    padding-top: 0.25rem;
}

.reason-card.featured {
    border: 2px solid var(--primary-green);
    background: linear-gradient(to bottom right, white, #f0fdf4);
}

.reason-card.featured .reason-number {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    font-size: 1.25rem;
}

.reason-card h4 {
    color: var(--text-heading);
    font-size: clamp(0.938rem, 2.5vw, 1.125rem);
    font-weight: 700;
}

/* ========================================
   コンポーネント：kocchake強調
   ======================================== */
.kocchake-highlight {
    display: inline-block;
    background: var(--base-orange);
    color: white;
    padding: 0.188rem 0.75rem;
    border-radius: 0.25rem;
    font-weight: 700;
    margin: 0 0.125rem;
}

/* ========================================
   コンポーネント：問い合わせフォーム
   ======================================== */
.contact-form {
    background: white;
    border-radius: 1.25rem;
    padding: clamp(1.5rem, 5vw, 3.125rem);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.form-group {
    margin-bottom: 0;
}

.form-label {
    display: block;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.625rem;
    font-size: clamp(0.875rem, 2vw, 1rem);
}

.form-label .required {
    background: var(--base-orange);
    color: white;
    font-size: 0.688rem;
    padding: 0.188rem 0.5rem;
    border-radius: 0.25rem;
    margin-left: 0.625rem;
    vertical-align: middle;
}

.form-input, .form-textarea {
    width: 100%;
    padding: clamp(0.75rem, 2vw, 0.938rem) clamp(1rem, 2vw, 1.25rem);
    border: 2px solid #e0e0e0;
    border-radius: 0.625rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #f9f9f9;
    font-family: inherit;
}

.form-input:focus, .form-textarea:focus {
    border-color: var(--primary-green);
    background-color: #fff;
    outline: none;
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--base-orange) 0%, var(--base-orange-light) 100%);
    color: white;
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-weight: 700;
    padding: clamp(1rem, 3vw, 1.25rem);
    border: none;
    border-radius: 3.125rem;
    cursor: pointer;
    box-shadow: var(--shadow-orange);
    transition: all 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(234, 84, 65, 0.4);
}

/* ========================================
   アニメーション
   ======================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(2.5rem);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* ========================================
   ヒーローセクション
   ======================================== */
.hero-badge {
    font-size: clamp(0.875rem, 2.2vw, 1rem);
    padding: 0.5rem 1.25rem;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 3.75rem);
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    line-height: 1.8;
}

.hero-catchphrase {
    font-size: clamp(0.9rem, 4vw, 1.5rem);
    display: inline-block;
    line-height: 1.6;
}

.hero-price-badge {
    font-size: clamp(0.8rem, 3.5vw, 1.125rem);
    padding: clamp(0.75rem, 2.5vw, 1.25rem) clamp(1.25rem, 4vw, 3rem);
    display: inline-block;
}

/* ========================================
   セクションタイトル
   ======================================== */
.section-title {
    font-size: clamp(1.75rem, 5.5vw, 2.5rem);
}

.section-title-lg {
    font-size: clamp(1.75rem, 6vw, 3rem);
}

/* ========================================
   フロー図
   ======================================== */
.flow-card {
    height: 100%;
    min-height: auto;
}

.flow-card h3 {
    font-size: clamp(1.125rem, 2.8vw, 1.375rem);
}

.flow-card p {
    font-size: clamp(0.9375rem, 2.2vw, 1.125rem);
    line-height: 1.7;
}

/* ========================================
   ポイントカード
   ======================================== */
.point-card h3 {
    font-size: clamp(1.1875rem, 2.8vw, 1.5rem);
}

.point-card p {
    font-size: clamp(0.9375rem, 2.2vw, 1.0625rem);
}

/* ========================================
   ストーリーセクション
   ======================================== */
.story-headline {
    font-size: clamp(1.125rem, 4.5vw, 1.75rem);
}
.story-subhead {
    font-size: clamp(1.0625rem, 4vw, 1.375rem);
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}
.story-text {
    font-size: clamp(0.9375rem, 3.5vw, 1.125rem);
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 0.75em;
    text-align: center;
}
.story-text:last-child {
    margin-bottom: 0;
}
.story-section {
    /* セクション間の余白は親要素で制御 */
}
.story-stat-number {
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
}
.story-stat-unit {
    font-size: 0.45em;
    margin-left: 0.1em;
}
.story-stat-label {
    font-size: clamp(0.6875rem, 2.5vw, 0.875rem);
    opacity: 0.85;
    margin-top: 0.25rem;
}
.story-stat-item {
    padding: 0.5rem 0;
}

/* ========================================
   会社概要
   ======================================== */
.company-info {
    font-size: clamp(0.9375rem, 2.2vw, 1.125rem);
}

/* ========================================
   フッター
   ======================================== */
/* footer-company/address: replaced by logo layout */

/* ========================================
   CTAセクション
   ======================================== */
.cta-title {
    font-size: clamp(1.875rem, 5.5vw, 3.25rem);
    line-height: 1.4;
    letter-spacing: 0.03em;
}

.cta-phone {
    font-size: clamp(1.625rem, 5.5vw, 2rem);
}

/* ========================================
   資料プレゼントセット
   ======================================== */
.tool-set-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}
.tool-set-card {
    display: block;
    background: #fff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    aspect-ratio: 16 / 9;
}
.tool-set-card {
    cursor: default;
}
.tool-set-card:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.tool-set-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (min-width: 768px) {
    .tool-set-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
        max-width: 100%;
    }
}

/* ========================================
   レスポンシブ（768px以上）
   ======================================== */
@media (min-width: 768px) {
    .md\:flex { display: flex; }
    .md\:inline { display: inline; }
    .md\:hidden { display: none; }
    .md\:flex-row { flex-direction: row; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:gap-6 { gap: 1.5rem; }
    .md\:gap-8 { gap: 2rem; }
    .md\:w-1\/3 { width: 33.333333%; }
    .md\:w-2\/3 { width: 66.666667%; }
    .md\:h-20 { height: 5rem; }
    .md\:w-20 { width: 5rem; }
    .md\:w-24 { width: 6rem; }
    .md\:w-48 { width: 12rem; }
    .md\:w-64 { width: 16rem; }
    .md\:h-48 { height: 12rem; }
    .md\:h-64 { height: 16rem; }
    .md\:text-xl { font-size: 1.5rem; line-height: 2rem; }
    .md\:text-2xl { font-size: 1.75rem; line-height: 2.25rem; }
    .md\:text-3xl { font-size: 2rem; line-height: 2.5rem; }
    .md\:text-4xl { font-size: 2.5rem; line-height: 3rem; }
    .md\:text-5xl { font-size: 3rem; line-height: 1.1; }
    .md\:text-6xl { font-size: 3.75rem; line-height: 1.1; }
    .md\:text-base { font-size: 1.125rem; line-height: 1.75rem; }
    .md\:text-sm { font-size: 1rem; line-height: 1.625rem; }
    .md\:text-lg { font-size: 1.25rem; line-height: 1.95rem; }
    .md\:text-left { text-align: left; }
    .md\:justify-start { justify-content: flex-start; }
    .md\:p-6 { padding: 1.5rem; }
    .md\:p-8 { padding: 2rem; }
    .md\:p-10 { padding: 2.5rem; }
    .md\:px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
    .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .md\:px-7 { padding-left: 1.75rem; padding-right: 1.75rem; }
    .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
    .md\:px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
    .md\:px-14 { padding-left: 3.5rem; padding-right: 3.5rem; }
    .md\:mx-auto { margin-left: auto; margin-right: auto; }
    .md\:max-w-xl { max-width: 36rem; }
    .md\:max-w-2xl { max-width: 42rem; }
    .md\:py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
    .md\:py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
    .md\:py-7 { padding-top: 1.75rem; padding-bottom: 1.75rem; }
    .md\:py-8 { padding-top: 2rem; padding-bottom: 2rem; }
    .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
    .md\:pt-10 { padding-top: 2.5rem; }
    .md\:pt-12 { padding-top: 3rem; }
    .md\:pt-36 { padding-top: 9rem; }
    .md\:pb-24 { padding-bottom: 6rem; }
    .md\:pr-2 { padding-right: 0.5rem; }
    .md\:mb-3 { margin-bottom: 0.75rem; }
    .md\:mb-4 { margin-bottom: 1rem; }
    .md\:mb-5 { margin-bottom: 1.25rem; }
    .md\:mb-6 { margin-bottom: 1.5rem; }
    .md\:mb-8 { margin-bottom: 2rem; }
    .md\:mb-10 { margin-bottom: 2.5rem; }
    .md\:mb-12 { margin-bottom: 3rem; }
    .md\:mb-14 { margin-bottom: 3.5rem; }
    .md\:mb-16 { margin-bottom: 4rem; }
    .md\:mt-5 { margin-top: 1.25rem; }
    .md\:mt-6 { margin-top: 1.5rem; }
    .md\:mt-8 { margin-top: 2rem; }
    .md\:mt-10 { margin-top: 2.5rem; }
    .md\:mt-12 { margin-top: 2.5rem; }
    .md\:mt-16 { margin-top: 4rem; }
    .md\:space-y-2 > * + * { margin-top: 0.5rem; }
    .md\:space-y-4 > * + * { margin-top: 1rem; }
    .md\:-top-4 { top: -1rem; }
    .md\:-right-5 { right: -1.25rem; }
    .md\:left-6 { left: 1.5rem; }

    .br-pc { display: inline; }
    .br-sp { display: none; }
}

/* ========================================
   レスポンシブ（1024px以上）
   ======================================== */
@media (min-width: 1024px) {
    .lg\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
    .lg\:text-base { font-size: 1rem; line-height: 1.5rem; }
    .lg\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
    .lg\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
    .lg\:gap-8 { gap: 2rem; }
    .lg\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .lg\:py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
    .lg\:p-8 { padding: 2rem; }
    .lg\:pt-40 { padding-top: 10rem; }
    .lg\:pb-28 { padding-bottom: 7rem; }
    .lg\:-right-5 { right: -1.25rem; }
}

/* ========================================
   超小型デバイス（480px以下）
   ======================================== */
@media (max-width: 480px) {
    html {
        font-size: 15px;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }
}

/* ========================================
   モバイル調整
   ======================================== */
@media (max-width: 768px) {
    .step-item {
        gap: 0.938rem;
    }
    
    .step-timeline-line {
        left: 1.25rem;
    }
    
    .reason-card.featured {
        padding: 1.25rem;
    }
    
    /* モバイルでRECOMMENDEDバッジを非表示 */
    .comparison-col.do::after {
        display: none;
    }
    
    /* 比較表の追加調整 */
    .comparison-col h3 {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
    }
    
    .comparison-item {
        font-size: 0.813rem;
    }
    
    /* フローカードの間隔 */
    .flow-card {
        margin-bottom: 0;
    }
}

/* ========================================
   追加レスポンシブ最適化
   ======================================== */

/* 極小デバイス (320px〜360px) */
@media (max-width: 360px) {
    html { font-size: 14px; }

    .container { padding-left: 0.75rem; padding-right: 0.75rem; }

    .hero-title { font-size: clamp(1.375rem, 8vw, 1.75rem); }

    .problem-bubble-grid {
        grid-template-columns: 1fr;
        gap: 2rem 0;
    }

    .tool-set-grid { grid-template-columns: 1fr; }

    .hero-price-badge {
        font-size: 0.75rem;
        padding: 0.625rem 1rem;
    }

    .cta-title { font-size: 1.5rem; }
}

/* 小型スマホ (361px〜480px) */
@media (min-width: 361px) and (max-width: 480px) {
    .problem-bubble-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* タブレット (768px〜1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .container { max-width: 100%; padding-left: 2rem; padding-right: 2rem; }
}

/* 大画面 (1280px以上) */
@media (min-width: 1280px) {
    .container { padding-left: 2rem; padding-right: 2rem; }
}

/* ========================================
   印刷スタイル
   ======================================== */
@media print {
    header, footer, .btn-cta, .hero-cta-btn, .contact-form, #contact { display: none !important; }
    body { font-size: 12pt; color: #000; }
    section { padding: 1rem 0; page-break-inside: avoid; }
    a { color: inherit; text-decoration: none; }
}

/* ========================================
   アクセシビリティ
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

/* フォーカスアウトライン */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 3px solid #007744;
    outline-offset: 2px;
}

/* ========================================
   画像プレースホルダー
   ======================================== */
.tool-set-card img[src=""] ,
.tool-set-card img:not([src]) {
    background: linear-gradient(135deg, #e8f5ec, #fff);
    display: block;
    min-height: 6rem;
}

/* ========================================
   スムーズスクロールのiOS対応
   ======================================== */
html {
    -webkit-overflow-scrolling: touch;
}

/* ========================================
   タッチデバイス用ホバー無効化
   ======================================== */
@media (hover: none) {
    .btn-cta:hover,
    .hero-cta-btn:hover,
    .reason-card:hover,
    .step-content:hover,
    .problem-bubble:hover,
    .tool-set-card:hover {
        transform: none;
        box-shadow: inherit;
    }
}

/* ========================================
   CVブロック共通
   ======================================== */
.cv-block {
    padding: 1.5rem 1.25rem 1.25rem;
    max-width: 42rem;        /* スマホ：現状維持 */
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .cv-block {
        padding: 2.5rem 2.5rem 2rem;   /* 上下左右を約1.5倍 */
        max-width: 56rem;               /* 幅も拡大（42rem → 56rem） */
    }

    .cv-block .cv-quick-label {
        font-size: 1.375rem;            /* 1.5倍 */
    }

    .cv-block .cv-main-text {
        font-size: 1.5rem;              /* 1.5倍 */
        margin-bottom: 1.25rem;
    }

    .cv-block .cv-cta-btn {
        font-size: 1.5rem;              /* 1.5倍 */
        padding: 1.25rem 3.5rem;
    }
}

/* ========================================
   事例カード：会社情報ヘッダー
   ======================================== */
.case-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* スマホ：社名の下に左揃えで配置 */
@media (max-width: 767px) {
    .case-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.375rem;
    }
    .case-meta {
        margin-left: 0 !important;
    }
}
