/* =========================================================================
   K-9 Cart LP v2 — "Quiet Trust" Design System
   Color: Deep Green × Ivory × Gold
   Font: Noto Serif JP (headings) + Noto Sans JP (body)
   ========================================================================= */

/* --- Reset & Variables --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-deep:   #1B3A2D;
    --green-mid:    #2D5A45;
    --green-light:  #3D7A5F;
    --green-pale:   #E8F0EC;
    --ivory:        #FAF8F2;
    --ivory-dark:   #F0EDE4;
    --gold:         #C9A84C;
    --gold-light:   #E4D18A;
    --gold-dark:    #9E8233;
    --text-primary: #2A2A2A;
    --text-body:    #4A4A4A;
    --text-muted:   #8A8A8A;
    --white:        #FFFFFF;
    --shadow-sm:    0 2px 8px rgba(27, 58, 45, 0.06);
    --shadow-md:    0 8px 30px rgba(27, 58, 45, 0.10);
    --shadow-lg:    0 16px 50px rgba(27, 58, 45, 0.14);
    --radius:       12px;
    --radius-lg:    20px;
    --transition:   all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    --font-serif:   'Noto Serif JP', serif;
    --font-sans:    'Noto Sans JP', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-body);
    background: var(--ivory);
    line-height: 1.9;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.sp-only { display: none; }
@media (max-width: 768px) { .sp-only { display: inline; } }

/* --- Animations --- */
.anim-fade,
.anim-slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-fade.is-visible,
.anim-slide-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    letter-spacing: 0.03em;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--green-deep);
    padding: 18px 42px;
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

.btn-gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.45);
}

.hero .btn-gold {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.75), rgba(228, 209, 138, 0.75));
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.15);
}

.hero .btn-gold:hover {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.9), rgba(228, 209, 138, 0.9));
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.25);
}

.btn-youtube {
    background: #FF0000;
    color: var(--white);
    padding: 14px 32px;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
}

.btn-youtube:hover {
    background: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
}

.btn-gold svg, .btn-youtube svg {
    flex-shrink: 0;
}

/* =========================================================================
   BUTTON UTILITIES
   ========================================================================= */
.btn-outline-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--green-deep);
    background: #fff;
    border: 2px solid var(--green-deep);
    border-radius: 40px;
    text-decoration: none;
    transition: var(--transition);
}
.btn-outline-green:hover {
    background: #f1f5f3;
    transform: translateY(-2px);
}


/* =========================================================================
   HERO
   ========================================================================= */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    overflow: hidden;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 30vh; /* Extremely compressed */
    max-height: 360px;
    z-index: 1;
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 65%; /* 犬の姿が切れないよう、前足がギリギリ入る程度に調整 */
}

.hero-overlay {
    display: none;
}

.hero-body {
    position: relative;
    width: 100%;
    max-width: 900px;
    padding: 24px 20px 24px; /* Minimum padding */
    margin: 0 auto;
    text-align: center;
    background: #fff;
}

.hero-lead {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--green-deep);
    margin-bottom: 8px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    color: var(--text-body);
}

.hero-desc {
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 700;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 16px;
    color: var(--text-body);
}

.hero-actions {
    display: flex;
    flex-direction: row; /* Side-by-side on PC */
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.hero .btn-gold, .hero .btn-outline-green {
    width: auto;
    padding: 14px 28px; /* Slightly smaller button padding */
    font-size: 1rem;
}

.hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.hero-note {
    font-size: 0.85rem;
    opacity: 0.8;
    color: var(--text-body);
    margin-top: 12px;
}

/* --- 施策⑦ 信頼バー（実績バッジ）--- */
.hero-trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
    padding: 8px 16px;
    background: var(--green-pale);
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--green-deep);
}
.trust-item strong {
    color: var(--green-deep);
    font-size: 0.9rem;
}
.trust-divider {
    color: var(--green-light);
    opacity: 0.4;
    font-weight: 300;
}

/* --- 施策① LINE直結ボタン --- */
.btn-line-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #06C755;
    color: #fff !important;
    padding: 16px 36px;
    border-radius: 60px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px rgba(6, 199, 85, 0.35);
    transition: var(--transition);
    border: none;
    text-decoration: none;
    animation: gentlePulse 2.5s ease-in-out infinite;
}
.btn-line-hero:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(6, 199, 85, 0.45);
}

@keyframes gentlePulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(6, 199, 85, 0.35); }
    50% { box-shadow: 0 6px 28px rgba(6, 199, 85, 0.55); }
}

/* --- 施策⑪ 電話ボタン --- */
.btn-tel-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--white);
    color: var(--green-deep) !important;
    padding: 14px 28px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid var(--green-mid);
    transition: var(--transition);
    text-decoration: none;
}
.btn-tel-hero:hover {
    background: #f1f5f3;
    transform: translateY(-2px);
}

/* --- 施策⑥ LINE写真ヒント --- */
.hero-line-hint {
    font-size: 0.8rem;
    color: var(--green-deep);
    text-align: center;
    margin-top: 8px;
    font-weight: 500;
    opacity: 0.85;
}

/* --- 施策⑧ 不安解消セクション --- */
.hero-reassurance {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
    padding: 16px 20px;
    background: #f7faf8;
    border-radius: 12px;
    border: 1px solid rgba(45, 90, 69, 0.1);
}
.reassurance-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.82rem;
    line-height: 1.5;
}
.reassurance-q {
    font-weight: 700;
    color: var(--green-deep);
}
.reassurance-a {
    color: var(--text-body);
    padding-left: 4px;
}

/* --- スクロールヒント --- */
.hero-scroll-hint {
    display: block;
    text-align: center;
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--green-light);
    text-decoration: none;
    animation: bounceHint 2s ease-in-out infinite;
    font-weight: 500;
}
@keyframes bounceHint {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto !important;
        aspect-ratio: auto !important;
        flex-direction: column !important; /* Stack vertically */
        align-items: center !important;
        background: #fff !important; /* Solid background for text */
    }
    /* 施策③ スマホFV縦幅圧縮 */
    .hero-visual {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 2.8 / 1 !important; /* さらに圧縮してCTAまで1画面に収める */
        z-index: 1 !important;
    }
    .hero-photo {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center bottom !important;
    }
    .hero-overlay {
        display: none !important;
    }
    .hero-body {
        padding: 10px 12px 16px !important; /* よりコンパクト */
        width: 100%;
        text-align: center !important;
    }
    .hero-trust-bar {
        gap: 6px !important;
        padding: 6px 10px !important;
        font-size: 0.7rem !important;
        margin-bottom: 8px !important;
    }
    .trust-item strong { font-size: 0.75rem !important; }
    .trust-divider { display: inline !important; }
    .hero-lead {
        color: var(--green-deep) !important;
        text-shadow: none !important;
        font-size: 0.7rem !important;
        margin-bottom: 2px !important;
        font-weight: 700 !important;
    }
    .hero-title {
        color: var(--text-body) !important;
        text-shadow: none !important;
        font-size: 1.3rem !important;
        margin-bottom: 6px !important;
        line-height: 1.35 !important;
    }
    .hero-desc { 
        display: block !important;
        color: var(--text-body) !important;
        text-shadow: none !important;
        font-size: 0.78rem !important;
        margin-bottom: 8px !important;
        text-align: center !important;
        line-height: 1.5 !important;
    }
    .hero-badges {
        gap: 4px !important;
        margin-bottom: 8px !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
    .hero-badge {
        padding: 4px 10px !important;
        font-size: 0.7rem !important;
        background: #f1f5f3 !important;
        border: 1px solid rgba(13, 89, 63, 0.15) !important;
        color: var(--green-deep) !important;
    }
    .hero .stock-warning {
        margin: 6px 0 !important;
        padding: 6px 10px !important;
        font-size: 0.7rem !important;
        background: #fff3cd !important;
        color: #856404 !important;
        border: 1px solid #ffeeba !important;
    }
    .hero-actions {
        width: 100% !important;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .btn-line-hero {
        width: 100% !important;
        padding: 14px 24px !important;
        font-size: 1.05rem !important;
        margin: 0 !important;
    }
    .btn-tel-hero {
        width: 100% !important;
        padding: 10px 20px !important;
        font-size: 0.85rem !important;
        margin: 0 !important;
    }
    .hero-line-hint {
        font-size: 0.72rem !important;
        margin-top: 4px !important;
    }
    .hero-reassurance {
        margin-top: 10px !important;
        padding: 10px 14px !important;
        gap: 6px !important;
    }
    .reassurance-item { font-size: 0.72rem !important; }
    .hero-scroll-hint {
        margin-top: 10px !important;
        font-size: 0.72rem !important;
    }
    .hero-note {
        color: var(--text-body) !important;
        opacity: 0.8 !important;
        margin-top: 12px !important;
        text-shadow: none !important;
    }
}

/* =========================================================================
   SECTIONS — Common
   ========================================================================= */
.section {
    padding: 120px 0;
}

.section-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold-dark);
    margin-bottom: 12px;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--green-deep);
    line-height: 1.5;
    margin-bottom: 20px;
}

.section-sub {
    color: var(--text-muted);
    margin-bottom: 48px;
}

/* センター寄せ修飾クラス */
.section-label--center,
.section-heading--center,
.section-sub--center {
    text-align: center;
}

/* 個別セクションの見出しスタイル */
.section-heading--pricing {
    margin-top: 64px;
    font-size: 1.8rem;
}

.shipping-heading {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--green-deep);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--ivory-dark);
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-flow-heading {
    font-size: 1.1rem;
    color: var(--green-deep);
    margin-bottom: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }
}

/* =========================================================================
   STORY
   ========================================================================= */
.story {
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.story-eyebrow {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: var(--gold-dark);
    margin-bottom: 16px;
    letter-spacing: 0.1em;
}

.story-heading {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--green-deep);
    line-height: 1.7;
    margin-bottom: 28px;
}

.story-body {
    line-height: 2.2;
    color: var(--text-body);
}

.story-body em {
    font-style: normal;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--green-deep);
}

.concerns-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--green-deep);
    margin-bottom: 20px;
}

.concerns-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.concerns-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--ivory);
    padding: 16px 20px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    transition: var(--transition);
}

.concerns-list li:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-sm);
}

.concern-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--green-pale);
    color: var(--green-mid);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.concerns-answer {
    background: var(--green-deep);
    color: var(--white);
    padding: 24px 28px;
    border-radius: var(--radius);
}

.concerns-answer p {
    font-size: 0.95rem;
    line-height: 1.8;
}

.concerns-answer strong {
    color: var(--gold-light);
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* =========================================================================
   TIMELINE (Before / After)
   ========================================================================= */
.timeline-section {
    background: var(--ivory);
}

.timeline {
    max-width: 700px;
    margin: 60px auto 0;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--green-pale) 0%, var(--green-mid) 50%, var(--gold) 100%);
}

.timeline-item {
    position: relative;
    padding-bottom: 50px;
}

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

.timeline-marker {
    position: absolute;
    left: -40px;
    top: 0;
    width: 32px;
    height: 32px;
    background: var(--white);
    border: 3px solid var(--green-mid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.timeline-marker.active {
    background: var(--gold);
    border-color: var(--gold);
    width: 36px;
    height: 36px;
    left: -42px;
}

.timeline-day {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--green-deep);
}

.timeline-marker.active .timeline-day {
    color: var(--white);
}

.timeline-content {
    background: var(--white);
    padding: 28px 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
}

.timeline-content.highlight {
    background: var(--green-deep);
    color: var(--white);
}

.timeline-content h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--green-deep);
    margin-bottom: 10px;
}

.timeline-content.highlight h3 {
    color: var(--gold-light);
}

.timeline-content p {
    font-size: 0.9rem;
    line-height: 1.8;
}

/* =========================================================================
   FEATURES
   ========================================================================= */
.features {
    background: var(--white);
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-top: 60px;
}

.feature-card {
    flex: 0 1 calc(33.333% - 22px);
    min-width: 280px;
    padding: 40px 32px;
    border: 1px solid var(--ivory-dark);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--green-deep), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.feature-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green-pale);
    line-height: 1;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--green-deep);
    line-height: 1.6;
    margin-bottom: 16px;
}

.feature-card p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .feature-card {
        flex: 1 1 100%;
        min-width: auto;
    }
}

/* =========================================================================
   FAQ VIDEO Q&A
   ========================================================================= */
.faq {
    background: var(--ivory);
}

.faq-tabs {
    max-width: 800px;
    margin: 0 auto;
}

.faq-tab-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 24px;
}

.faq-tab-btn {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 12px 22px;
    border: 2px solid var(--ivory-dark);
    border-radius: 40px;
    background: var(--white);
    color: var(--text-body);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.faq-tab-btn:hover {
    border-color: var(--green-mid);
    color: var(--green-deep);
}

.faq-tab-btn.active {
    background: var(--green-deep);
    color: var(--white);
    border-color: var(--green-deep);
}

.faq-video-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--green-deep);
}

.faq-video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* lite-yt が faq-video-wrap 内にある場合、
   親の padding-bottom が比率コンテナを担うため
   自身の padding-bottom は不要（絶対配置で埋める） */
.faq-video-wrap .lite-yt {
    position: absolute;
    inset: 0;
    padding-bottom: 0;
    border-radius: 0;
}

.faq-yt-link {
    text-align: center;
    margin-top: 28px;
}

.btn-text-link {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green-mid);
    transition: color 0.3s;
    letter-spacing: 0.03em;
}

.btn-text-link:hover {
    color: var(--gold-dark);
}

@media (max-width: 768px) {
    .faq-tab-btn {
        font-size: 0.8rem;
        padding: 10px 16px;
    }
}

/* =========================================================================
   GOOGLE FORM EMBED
   ========================================================================= */
.form-section {
    background: var(--white);
}

.form-embed-wrap {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--ivory-dark);
}

/* --- Text FAQ & Blog Cards --- */
.text-faq {
    background-color: var(--ivory); /* 少し背景色を変えて区別 */
}
.faq-accordion-wrap {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--ivory-dark);
}
.faq-item[open] {
    border-color: var(--green-mid);
}
.faq-q {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--green-deep);
    cursor: pointer;
    position: relative;
    list-style: none; /* remove default triangle */
    gap: 12px;
}
.faq-q::-webkit-details-marker {
    display: none;
}
.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: var(--font-sans);
    font-size: 1.1rem;
}
.q-icon {
    background-color: var(--gold);
    color: var(--white);
}
.a-icon {
    background-color: var(--green-pale);
    color: var(--green-deep);
}
.faq-toggle-icon {
    margin-left: auto;
    flex-shrink: 0;
    position: relative;
    width: 20px;
    height: 20px;
}
.faq-toggle-icon::before, .faq-toggle-icon::after {
    content: '';
    position: absolute;
    background-color: var(--green-mid);
    border-radius: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}
.faq-toggle-icon::before {
    width: 16px;
    height: 2px;
}
.faq-toggle-icon::after {
    width: 2px;
    height: 16px;
}
.faq-item[open] .faq-toggle-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-a {
    padding: 0 24px 24px;
    animation: fadeInDown 0.4s ease-out;
}
.faq-a-text {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    align-items: flex-start;
}
.faq-a-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-body);
    margin: 0;
    padding-top: 4px; /* アイコンと高さを合わせる */
}
.faq-blog-card {
    display: flex;
    background: var(--ivory);
    border: 1px solid var(--ivory-dark);
    border-radius: var(--radius);
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-items: stretch;
}
.faq-blog-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-mid);
}
.faq-blog-img {
    width: 140px;
    object-fit: cover;
    flex-shrink: 0;
}
.faq-blog-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}
.faq-blog-content h4 {
    font-size: 0.95rem;
    color: var(--green-deep);
    margin: 0 0 12px 0;
    line-height: 1.4;
    font-weight: 600;
}
.faq-blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--green-mid);
    margin-top: auto;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .faq-q {
        padding: 16px;
        font-size: 0.95rem;
        gap: 10px;
    }
    .faq-a {
        padding: 0 16px 20px;
    }
    .faq-icon {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
    .faq-a-text {
        gap: 10px;
    }
    .faq-blog-card {
        flex-direction: column;
    }
    .faq-blog-img {
        width: 100%;
        height: 140px;
    }
    .faq-blog-content h4 {
        font-size: 0.9rem;
    }
}

.form-embed-wrap iframe {
    display: block;
    width: 100%;
    min-height: 1800px;
    border: none;
}

@media (max-width: 768px) {
    .form-embed-wrap iframe {
        min-height: 2000px;
    }
}

/* =========================================================================
   MIDWAY CTA
   ========================================================================= */
.midway-cta {
    background: var(--green-deep);
    padding: 60px 0;
    text-align: center;
}

.midway-cta p {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
}

/* =========================================================================
   VOICES / TESTIMONIALS
   ========================================================================= */
.voices {
    background: var(--ivory);
}

.voices-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 60px;
}

.voice-item {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    align-items: center;
}

.voice-item.reverse {
    grid-template-columns: 1.3fr 1fr;
}

.voice-item.reverse .voice-photo-wrap {
    order: 2;
}

.voice-item.reverse .voice-body {
    order: 1;
}

.voice-photo-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.voice-photo {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.voice-photo-wrap:hover .voice-photo {
    transform: scale(1.04);
}

.voice-quote {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--green-deep);
    line-height: 1.8;
    border-left: 3px solid var(--gold);
    padding-left: 20px;
    margin-bottom: 20px;
}

.voice-detail {
    font-size: 0.9rem;
    line-height: 1.9;
    color: var(--text-body);
    margin-bottom: 16px;
}

.voice-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    align-items: baseline;
}

.voice-name {
    font-weight: 700;
    color: var(--green-deep);
}

.voice-info {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .voice-item, .voice-item.reverse {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .voice-item.reverse .voice-photo-wrap { order: 0; }
    .voice-item.reverse .voice-body { order: 0; }
    .voice-photo { height: 240px; }
}

/* =========================================================================
   FLOW
   ========================================================================= */
.flow {
    background: var(--white);
}

.flow-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 60px;
}

.flow-step {
    flex: 1;
    max-width: 240px;
    text-align: center;
    padding: 0 16px;
}

.flow-step-num {
    width: 48px;
    height: 48px;
    background: var(--green-deep);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 16px;
}

.flow-step h3 {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--green-deep);
    margin-bottom: 10px;
}

.flow-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.flow-connector {
    width: 40px;
    height: 2px;
    background: var(--green-pale);
    margin-top: 24px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .flow-steps {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .flow-connector {
        width: 2px;
        height: 30px;
    }
    .flow-step { max-width: 100%; }
}

/* =========================================================================
   PRICING
   ========================================================================= */
.pricing {
    background: var(--ivory);
}

.pricing-tables {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-table-block {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--ivory-dark);
}

.pricing-type-label {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--green-deep);
    text-align: center;
    padding: 20px 24px 0;
    margin: 0;
}

.pricing-table-wrap {
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
    padding: 18px 24px;
    text-align: center;
    font-size: 0.95rem;
}

.pricing-table thead {
    background: var(--green-deep);
    color: var(--white);
}

.pricing-table thead th {
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.pricing-table tbody tr {
    border-bottom: 1px solid var(--ivory-dark);
    transition: background 0.2s;
}

.pricing-table tbody tr:last-child { border-bottom: none; }
.pricing-table tbody tr:hover { background: var(--green-pale); }

.pricing-table td:first-child { text-align: left; }
.pricing-table td strong { color: var(--green-deep); font-size: 1rem; }

.pricing-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 20px;
}

/* =========================================================================
   CONTACT / FINAL CTA
   ========================================================================= */
.contact {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.contact-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px) brightness(0.6);
}

.contact-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 58, 45, 0.7);
}

.contact-body {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.contact-heading {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 20px;
}

.contact-desc {
    font-size: 1rem;
    line-height: 2;
    opacity: 0.85;
    margin-bottom: 48px;
}

.contact-methods {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 40px;
}

.contact-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 260px;
}

.contact-card:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.contact-card-icon {
    font-size: 2rem;
    margin-bottom: 4px;
}

.contact-card h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--gold-light);
}

.contact-card p {
    font-size: 0.95rem;
    opacity: 0.85;
}

.contact-card-sub {
    font-size: 0.75rem;
    opacity: 0.6;
}

.contact-card-action {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-top: 8px;
}

.contact-reassure {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .contact { padding: 100px 0; }
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
    .contact-card { min-width: auto; width: 100%; max-width: 340px; }
    .contact-desc br { display: none; }
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
    background: var(--green-deep);
    color: rgba(255,255,255,0.6);
    padding: 60px 0 30px;
}

.footer-inner {
    text-align: center;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

.footer-brand p {
    font-size: 0.75rem;
    margin-top: 4px;
    margin-bottom: 12px;
}

.footer-contact {
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.8;
}

.footer-contact p {
    margin: 4px 0;
}

.footer-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.footer-links a {
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-copy {
    font-size: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
}

.footer-sns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 32px;
}

.footer-sns a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.footer-sns a:hover {
    background: var(--gold);
    color: var(--green-deep);
    transform: translateY(-3px);
}

/* --- Stock Warning Box --- */
.stock-warning {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fffafa;
    border: 1px solid #fee2e2;
    border-left: 5px solid #e11d48;
    border-radius: 12px;
    padding: 16px 24px;
    margin: 24px 0;
    color: #991b1b;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    transition: var(--transition);
}

.hero .stock-warning {
    background: rgba(255, 250, 250, 0.75);
    border: 1px solid rgba(254, 226, 226, 0.8);
}

.stock-warning svg {
    flex-shrink: 0;
    color: #fbbf24; /* Warning yellow */
}

@media (max-width: 768px) {
    .stock-warning {
        padding: 14px 18px;
        font-size: 0.85rem;
        gap: 10px;
    }
}


/* =========================================================================
   追加スタイル（旧インラインCSS統合）
   ========================================================================= */

/* --- Lite YouTube Embed --- */
.lite-yt {
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}
.lite-yt__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}
.lite-yt:hover .lite-yt__img {
    opacity: 0.8;
}
.lite-yt__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    background: #ff0000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    pointer-events: none;
}
.lite-yt:hover .lite-yt__play {
    background: #cc0000;
    transform: translate(-50%, -50%) scale(1.08);
}
.lite-yt__play svg {
    width: 24px;
    height: 24px;
    fill: #fff;
    margin-left: 4px;
}
.lite-yt iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* --- フローティングCTA（PC・スマホ両対応） --- */
.floating-cta {
    position: fixed;
    z-index: 99;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s;
    opacity: 0;
    pointer-events: none;
}

@media (min-width: 901px) {
    .floating-cta {
        bottom: 30px;
        right: 30px;
        transform: translateY(30px);
        display: block;
    }
    .floating-cta.is-visible {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    .floating-cta-inner {
        max-width: 320px;
        background: var(--white);
        border: 2px solid var(--green-mid);
        border-radius: var(--radius);
        padding: 20px;
        box-shadow: var(--shadow-lg);
        text-align: center;
    }
    .floating-cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .floating-cta .btn-gold,
    .floating-cta .btn-outline {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.9rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }
    .floating-cta-text {
        display: block;
        font-size: 0.8rem;
        color: var(--green-deep);
        margin-bottom: 10px;
        text-align: center;
        font-weight: bold;
        font-family: var(--font-serif);
        line-height: 1.4;
    }
}

@media (max-width: 900px) {
    .floating-cta {
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(27, 58, 45, 0.95);
        backdrop-filter: blur(12px);
        padding: 12px 20px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
        transform: translateY(100%);
        display: block;
    }
    .floating-cta.is-visible {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .floating-cta-inner {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        max-width: 500px;
        margin: 0 auto;
    }
    .floating-cta-buttons {
        display: flex;
        gap: 8px;
        width: 100%;
    }
    .floating-cta .btn-gold,
    .floating-cta .btn-outline {
        flex: 1;
        justify-content: center;
        font-size: 0.95rem;
    }
    .floating-cta-text {
        display: none;
    }
    body {
        padding-bottom: 70px;
    }
}

/* --- FAQ後のCTA強化 --- */
.faq-cta-box {
    max-width: 700px;
    margin: 48px auto 0;
    background: var(--white);
    border: 2px solid var(--green-pale);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    text-align: center;
}
.faq-cta-box p {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--green-deep);
    margin-bottom: 20px;
    line-height: 1.7;
}
.faq-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.faq-cta-buttons .btn {
    font-size: 0.95rem;
    padding: 14px 32px;
}
.btn-outline {
    background: transparent;
    color: var(--green-deep);
    border: 2px solid var(--green-mid);
    padding: 14px 32px;
    border-radius: 60px;
}
.btn-outline:hover {
    background: var(--green-deep);
    color: var(--white);
    border-color: var(--green-deep);
    transform: translateY(-2px);
}

/* --- ヒーローの補足バッジ --- */
.hero-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(27, 58, 45, 0.25);
    border-radius: 40px;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green-deep);
}
.hero-badge svg {
    flex-shrink: 0;
}

/* --- FINAL CTA 安心リスト --- */
.contact-features-list {
    list-style: none;
    padding: 24px 32px;
    margin: 32px auto;
    max-width: 480px;
    text-align: left;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.contact-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
}
.contact-features-list .feature-check {
    color: var(--gold);
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .contact-features-list {
        margin: 24px 16px;
        padding: 20px 24px;
    }
    .contact-features-list li {
        font-size: 0.9rem;
    }
}

/* --- 犬種別動画セクションの導入メッセージ --- */
.youtube-lead-msg {
    text-align: center;
    margin: 0 auto 48px;
    padding: 32px 24px;
    background: var(--green-pale);
    border: 2px solid var(--green-mid);
    border-radius: var(--radius-lg);
    max-width: 720px;
    box-shadow: var(--shadow-sm);
}
.youtube-lead-text {
    font-family: var(--font-serif);
    font-size: 1.65rem;
    color: var(--green-deep);
    font-weight: 700;
    line-height: 1.7;
    margin: 0;
    letter-spacing: 0.03em;
}
.youtube-lead-highlight {
    background: linear-gradient(transparent 60%, rgba(201, 168, 76, 0.35) 40%);
    padding: 0 4px;
    display: inline-block;
}
@media (max-width: 768px) {
    .youtube-lead-text {
        font-size: 1.2rem;
        line-height: 1.6;
    }
    .youtube-lead-msg {
        margin-bottom: 32px;
        padding: 24px 16px;
        border-radius: var(--radius);
    }
}

/* --- youtube-card wrapper --- */
.youtube-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--ivory-dark);
}
.youtube-card-hint {
    margin-top: 16px;
    background-color: var(--green-pale);
    padding: 12px 20px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    color: var(--green-deep);
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(27, 58, 45, 0.15);
}
.youtube-card-hint-icon {
    font-size: 1.1rem;
    line-height: 1;
    flex-shrink: 0;
}
.youtube-card-meta {
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.youtube-card-label {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--green-deep);
    margin-bottom: 6px;
}
.youtube-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.youtube-card-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--ivory-dark);
}

/* --- stats-images --- */
.stats-img-wrap {
    flex: 1;
    min-width: 320px;
    max-width: 500px;
}
.stats-img-wrap img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* --- 犬種別サイズ早見表 --- */
.breed-chart {
    margin-top: 48px;
    background: var(--white);
    border: 2px solid var(--ivory-dark);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.breed-chart-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--green-deep);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.breed-chart-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}
.breed-search-wrap {
    position: relative;
    margin-bottom: 32px;
}
.breed-search-input {
    width: 100%;
    padding: 14px 20px 14px 44px;
    border: 2px solid var(--ivory-dark);
    border-radius: 60px;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-body);
    background: var(--ivory);
    transition: var(--transition);
    outline: none;
}
.breed-search-input:focus {
    border-color: var(--green-mid);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(45, 90, 69, 0.1);
}
.breed-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    pointer-events: none;
}
.breed-search-result {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 2px solid var(--ivory-dark);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    max-height: 320px;
    overflow-y: auto;
    z-index: 50;
    display: none;
}
.breed-search-result.is-active { display: block; }
.breed-result-item {
    padding: 14px 20px;
    border-bottom: 1px solid var(--ivory-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.breed-result-item:last-child { border-bottom: none; }
.breed-result-name {
    font-weight: 600;
    color: var(--green-deep);
}
.breed-result-size {
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
}
.breed-result-detail {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.breed-result-notfound {
    padding: 20px;
    text-align: center;
    color: var(--text-muted);
}
.breed-result-notfound a {
    color: var(--green-mid);
    font-weight: 600;
    text-decoration: underline;
}
.breed-size-groups {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}
.breed-size-group {
    background: var(--ivory);
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid var(--ivory-dark);
}
.breed-size-label {
    display: inline-block;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 14px;
    color: var(--white);
    letter-spacing: 0.05em;
}
.breed-size-label.xs { background: #5B8DEF; }
.breed-size-label.s  { background: var(--green-mid); }
.breed-size-label.m  { background: var(--gold-dark); }
.breed-size-label.l  { background: #D4764E; }
.breed-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.breed-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--white);
    border: 1px solid var(--ivory-dark);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-body);
    cursor: default;
    transition: var(--transition);
    position: relative;
}
.breed-tag:hover {
    border-color: var(--green-mid);
    color: var(--green-deep);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}
.breed-tag .breed-tag-cases {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-left: 2px;
}
.breed-chart-cta {
    text-align: center;
    padding: 24px;
    background: var(--green-pale);
    border-radius: var(--radius);
    border: 1px solid rgba(27, 58, 45, 0.12);
}
.breed-chart-cta p {
    font-size: 0.95rem;
    color: var(--green-deep);
    margin-bottom: 12px;
}
@media (max-width: 768px) {
    .breed-chart {
        padding: 24px 16px;
    }
    .breed-size-groups {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .breed-size-group {
        padding: 16px;
    }
    .breed-tag {
        font-size: 0.8rem;
        padding: 5px 12px;
    }
}

/* --- 犬種タブナビ --- */
.breed-tab-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto 24px;
    max-width: 800px;
}
.breed-tab-btn {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 12px 20px;
    border: 2px solid var(--ivory-dark);
    border-radius: 40px;
    background: var(--white);
    color: var(--text-body);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.breed-tab-btn:hover {
    border-color: var(--green-mid);
    color: var(--green-deep);
    transform: translateY(-2px);
}
.breed-tab-btn.active {
    background: var(--green-deep);
    color: var(--white);
    border-color: var(--green-deep);
    box-shadow: 0 4px 12px rgba(27, 58, 45, 0.2);
}
.breed-tab-guide {
    display: none;
}
@media (max-width: 768px) {
    .breed-tab-guide {
        display: block;
        width: max-content;
        max-width: 95%;
        white-space: nowrap;
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--green-deep);
        background: var(--green-pale);
        border: 1px solid rgba(45, 90, 69, 0.25);
        border-radius: 30px;
        padding: 6px 14px;
        margin: 0 auto 16px;
        letter-spacing: 0.03em;
        animation: pulseText 2s infinite ease-in-out;
    }
    .breed-tab-wrapper {
        position: relative;
        width: 100%;
        margin-bottom: 24px;
    }
    .breed-tab-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 48px;
        background: linear-gradient(to right, transparent, var(--ivory));
        pointer-events: none;
        z-index: 2;
    }
    .breed-tab-nav {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 8px 48px 8px 16px;
        gap: 12px;
        scroll-snap-type: x mandatory;
        justify-content: flex-start;
        margin-bottom: 0;
    }
    .breed-tab-wrapper.is-visible .breed-tab-nav {
        animation: swipeHint 1.2s ease-in-out;
        animation-delay: 0.4s;
    }
    .breed-tab-nav::-webkit-scrollbar {
        display: none;
    }
    .breed-tab-btn {
        font-size: 0.8rem;
        padding: 10px 14px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
}

@keyframes swipeHint {
    0%, 100% { transform: translateX(0); }
    20%, 60%  { transform: translateX(-15px); }
    40%, 80%  { transform: translateX(15px); }
}
@keyframes pulseText {
    0%, 100% { opacity: 0.6; }
    50%       { opacity: 1; }
}



/* === 固定ヘッダー被り防止パディング === */
body {
  padding-top: 130px;
}
@media (max-width: 768px) {
  body {
    padding-top: 110px;
  }
}
[id], section, h1, h2, h3, main {
  scroll-margin-top: 140px;
}

/* =========================================================================
   1:1 正方形動画ヒーローセクション スタイル（fbtest 準拠）
   ========================================================================= */

/* 動画カード共通 */
.hero-video-card {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(27, 58, 45, 0.18);
    border: 3px solid rgba(255, 255, 255, 0.85);
}

/* 1:1 正方形アスペクト比 */
.hero-video-card--1-1 {
    aspect-ratio: 1 / 1;
}

.hero-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
    display: block;
}

/* シネマ風オーバーレイ */
.hero-video-scanline {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.03) 1px, transparent 1px, transparent 2px);
}

/* ライブ動画バッジ */
.hero-video-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
    pointer-events: none;
}

.hero-video-badge-dot {
    width: 8px;
    height: 8px;
    background: #00E676;
    border-radius: 50%;
    display: inline-block;
    animation: videoBadgeBlink 1.5s infinite;
}

@keyframes videoBadgeBlink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

/* PC表示時（min-width: 769px）の2カラムFVレイアウト */
@media (min-width: 769px) {
    .hero.hero--video {
        display: flex !important;
        flex-direction: row-reverse !important;
        justify-content: center !important;
        align-items: center !important;
        max-width: 1200px;
        margin: 0 auto;
        padding: 30px 24px 44px !important;
        gap: 40px;
        min-height: 540px;
    }

    .hero.hero--video .hero-body {
        text-align: left !important;
        max-width: 580px !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .hero.hero--video .hero-trust-bar {
        justify-content: flex-start !important;
        display: inline-flex !important;
    }

    .hero.hero--video .hero-desc {
        text-align: left !important;
        margin: 0 0 16px 0 !important;
    }

    .hero.hero--video .hero-badges {
        justify-content: flex-start !important;
    }

    .hero.hero--video .hero-actions {
        justify-content: flex-start !important;
    }

    .hero.hero--video .hero-visual {
        height: auto !important;
        max-height: none !important;
        flex-shrink: 0;
        margin: 0;
        padding: 0;
        z-index: 2;
        width: 440px !important;
        max-width: 45% !important;
    }
}

/* スマホ表示時（max-width: 768px）のFVレイアウト */
@media (max-width: 768px) {
    .hero.hero--video {
        padding-top: 20px !important;
    }

    .hero.hero--video .hero-visual {
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        aspect-ratio: auto !important;
        padding: 0 12px;
        display: flex;
        justify-content: center;
    }

    .hero.hero--video-b .hero-video-card--1-1 {
        width: 82% !important;
        max-width: 310px !important;
        margin: 4px auto 0 !important;
    }

    .hero.hero--video .hero-body {
        padding: 16px 12px 14px !important;
    }
}
