/* ==========================================
   KeySession Plan Ver2 - CVR Optimized
   ========================================== */

:root {
    --v2-primary: #182b38;
    --v2-primary-mid: #45546c;
    --v2-gold: #fab549;
    --v2-green: #77b800;
    --v2-red: #b82e12;
    --v2-ivory: #faf6e4;
    --v2-white: #ffffff;
    --v2-teal: #799aa3;
    --v2-shadow: 0 2px 12px rgba(0,0,0,0.08);
    --v2-shadow-hover: 0 4px 20px rgba(0,0,0,0.12);
    --v2-radius: 12px;
    --v2-font: 'Noto Sans JP', '游ゴシック体', YuGothic, '游ゴシック', "Yu Gothic", 'メイリオ', sans-serif;
}

/* ===== Hero ===== */
.v2-hero {
    background: linear-gradient(135deg, var(--v2-primary) 0%, #2a4a5e 100%);
    padding: 40px 0 50px;
    color: var(--v2-white);
}
.v2-hero-left {
    padding-top: 30px;
}
.v2-hero-title {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.4;
    color: var(--v2-white);
    margin-bottom: 12px;
}
.v2-hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Social Proof Bar */
.v2-social-proof-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    backdrop-filter: blur(4px);
}
.v2-proof-badge {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--v2-gold);
    white-space: nowrap;
}
.v2-proof-badge i {
    margin-right: 4px;
}
.v2-client-logos {
    display: flex;
    gap: 8px;
    align-items: center;
}
.v2-client-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    background: var(--v2-white);
    border-radius: 6px;
    padding: 4px;
}

/* Hero Target (受講対象者) */
.v2-hero-target {
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 14px 18px;
    margin-top: 20px;
    backdrop-filter: blur(4px);
}
.v2-hero-target-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--v2-gold);
    margin-bottom: 8px;
}
.v2-hero-target-label i {
    margin-right: 6px;
}
.v2-hero-target-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 16px;
}
.v2-hero-target-list li {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.92);
    line-height: 1.6;
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.v2-hero-target-list li i {
    color: var(--v2-gold);
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Hero CTA Button (mobile) */
.v2-hero-cta-btn {
    display: inline-block;
    background: var(--v2-gold);
    color: var(--v2-primary);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    width: 100%;
    text-align: center;
    margin-top: 8px;
}
.v2-hero-cta-btn:hover {
    background: #f0a830;
    color: var(--v2-primary);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(250,181,73,0.4);
}

.v2-hero .history_section_head {
    color: rgba(255,255,255,0.85);
    text-align: center;
}

/* Hero Form (desktop) */
.v2-hero-form-wrap {
    background: var(--v2-white);
    border-radius: var(--v2-radius);
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    position: relative;
}

/* Trust Badges */
.v2-trust-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.v2-trust-badges span {
    font-size: 0.8rem;
    color: var(--v2-primary-mid);
    font-weight: 600;
    white-space: nowrap;
}
.v2-trust-badges span i {
    color: var(--v2-green);
    margin-right: 4px;
}
.v2-trust-badges-main {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

/* Form inner */
.v2-form-inner {
    background: var(--v2-white);
    border-radius: var(--v2-radius);
}

/* ===== General Sections ===== */
.v2-main {
    background: #f5f7fa;
}
.v2-section {
    padding: 60px 0;
}
.v2-section-title {
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    color: var(--v2-primary);
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 20px;
}
.v2-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--v2-gold);
    border-radius: 2px;
}
.v2-section-subtitle {
    text-align: center;
    color: var(--v2-primary-mid);
    margin-bottom: 36px;
    font-size: 1rem;
}
.v2-subsection-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--v2-primary-mid);
    margin-bottom: 16px;
}

/* ===== Cards ===== */
.v2-card {
    background: var(--v2-white);
    border-radius: var(--v2-radius);
    padding: 28px;
    box-shadow: var(--v2-shadow);
    transition: box-shadow 0.3s ease;
}
.v2-card:hover {
    box-shadow: var(--v2-shadow-hover);
}
.v2-card-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--v2-primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

/* Icon Colors */
.v2-icon-red { color: var(--v2-red); margin-right: 8px; }
.v2-icon-green { color: var(--v2-green); margin-right: 8px; }
.v2-icon-gold { color: var(--v2-gold); margin-right: 8px; }

/* ===== Check Lists ===== */
.v2-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.v2-check-list li {
    padding: 8px 0;
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.v2-check-list li:last-child {
    border-bottom: none;
}
.v2-check-list li i {
    flex-shrink: 0;
    margin-top: 4px;
    font-size: 0.9rem;
}
.v2-check-list-red li i { color: var(--v2-red); }
.v2-check-list-green li i { color: var(--v2-green); }
.v2-check-list-gold li i { color: var(--v2-gold); }

/* Issues & Goals cards */
.v2-card-issues {
    border-top: 4px solid var(--v2-red);
}
.v2-card-goals {
    border-top: 4px solid var(--v2-green);
}

/* Issues & Goals Compact */
.v2-issues-goals-compact {
    padding: 30px 0;
    background: #f5f7f9;
}
.v2-ig-card {
    background: var(--v2-white);
    border-radius: 8px;
    padding: 18px 20px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
    height: 100%;
}
.v2-ig-issues { border-left: 3px solid var(--v2-red); }
.v2-ig-goals  { border-left: 3px solid var(--v2-green); }
.v2-ig-heading {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--v2-primary);
    margin: 0 0 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}
.v2-ig-issues .v2-ig-heading i { color: var(--v2-red); margin-right: 6px; }
.v2-ig-goals  .v2-ig-heading i { color: var(--v2-green); margin-right: 6px; }
.v2-ig-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.v2-ig-list li {
    padding: 5px 0;
    font-size: 0.88rem;
    line-height: 1.5;
    display: flex;
    align-items: baseline;
    gap: 6px;
    border-bottom: 1px solid #f5f5f5;
}
.v2-ig-list li:last-child { border-bottom: none; }
.v2-ig-issues .v2-ig-list li i { color: var(--v2-red); font-size: 0.75rem; flex-shrink: 0; }
.v2-ig-goals  .v2-ig-list li i { color: var(--v2-green); font-size: 0.75rem; flex-shrink: 0; }

/* ===== Reasons ===== */
.v2-reasons-card {
    max-width: 900px;
    margin: 0 auto;
}

/* ===== Reasons (ver1 layout) ===== */
.v2-reasons-card .list-group-item {
    border: none;
    padding-left: 0;
    padding-right: 0;
    background-color: transparent;
}
.v2-reasons-card .tp-reason-icon {
    font-size: 2.2rem;
    color: var(--v2-gold);
    width: 60px;
}
.v2-reasons-card .tp-reason-icon i {
    color: var(--v2-gold);
}
.v2-reasons-card h5 {
    color: var(--v2-primary);
    font-weight: 700;
}

/* ===== Voices ===== */
.v2-voices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.v2-voice-card {
    background: var(--v2-white);
    border-radius: var(--v2-radius);
    padding: 20px 24px;
    box-shadow: var(--v2-shadow);
    position: relative;
    border-left: 4px solid var(--v2-gold);
}
.v2-voice-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
    color: var(--v2-primary);
}
.v2-voice-quote {
    color: var(--v2-gold);
    opacity: 0.3;
    font-size: 1.2rem;
    position: absolute;
    top: 8px;
    right: 12px;
}
.v2-voice-hidden {
    display: none;
}
.v2-voice-hidden.v2-show {
    display: block;
}

/* ===== Toggle Button ===== */
.v2-toggle-btn {
    background: transparent;
    border: 2px solid var(--v2-primary-mid);
    color: var(--v2-primary-mid);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.v2-toggle-btn:hover {
    background: var(--v2-primary);
    border-color: var(--v2-primary);
    color: var(--v2-white);
}

/* ===== Mid CTA ===== */
.v2-mid-cta {
    background: linear-gradient(135deg, var(--v2-primary) 0%, #2a4a5e 100%);
    padding: 48px 0;
}
.v2-mid-cta-text {
    color: var(--v2-white);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.v2-mid-cta-note {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin-top: 12px;
    margin-bottom: 0;
}

/* ===== CTA Buttons ===== */
.v2-cta-btn-large {
    display: inline-block;
    background: var(--v2-gold);
    color: var(--v2-primary);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 14px 40px;
    border-radius: 30px;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(250,181,73,0.3);
}
.v2-cta-btn-large:hover {
    background: #f0a830;
    color: var(--v2-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(250,181,73,0.4);
    text-decoration: none;
}

.v2-btn-outline {
    background: transparent;
    border: 2px solid var(--v2-gold);
    color: var(--v2-gold);
    padding: 10px 28px;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s ease;
}
.v2-btn-outline:hover {
    background: var(--v2-gold);
    color: var(--v2-primary);
}

/* ===== Content Body ===== */
.v2-content-body h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--v2-white);
    background: linear-gradient(135deg, var(--v2-primary) 0%, var(--v2-primary-mid) 100%);
    margin-top: 36px;
    margin-bottom: 16px;
    padding: 12px 18px;
    border-radius: 6px;
}
.v2-content-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--v2-primary);
    margin-top: 28px;
    margin-bottom: 10px;
    padding-left: 12px;
    border-left: 3px solid var(--v2-gold);
}
.v2-content-body p {
    font-size: 0.95rem;
    line-height: 1.8;
}
.v2-content-body ul {
    padding-left: 0;
    margin: 12px 0;
    list-style: none;
}
.v2-content-body ul li {
    font-size: 0.95rem;
    line-height: 1.8;
    padding: 6px 0 6px 20px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}
.v2-content-body ul li:last-child {
    border-bottom: none;
}
.v2-content-body ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--v2-gold);
    position: absolute;
    left: 0;
    font-size: 0.8rem;
    top: 10px;
}
.v2-content-body strong {
    color: var(--v2-primary);
    font-weight: 700;
}
.v2-content-body .highlight {
    font-size: 1.15rem;
    font-weight: 700;
    text-align: center;
    color: var(--v2-primary);
    padding: 16px;
    margin: 20px 0;
    line-height: 1.7;
}
.v2-content-body .marker {
    background: linear-gradient(transparent 60%, rgba(250,181,73,0.3) 60%);
    padding: 0 2px;
    font-weight: 600;
}

/* ===== Curriculum Table ===== */
.v2-curriculum-table {
    padding: 0;
    overflow-x: auto;
}
.v2-curriculum-table table {
    margin: 0;
}
.v2-curriculum-table th {
    background-color: var(--v2-primary-mid);
    color: var(--v2-white);
    font-weight: bold;
    padding: 12px 16px;
    white-space: nowrap;
}
.v2-curriculum-table tbody th {
    max-width: 300px;
    min-width: 180px;
    white-space: normal;
    word-break: break-all;
}
.v2-curriculum-table td, .v2-curriculum-table th {
    vertical-align: middle;
    font-size: 0.9rem;
    padding: 12px 16px;
}
.v2-curriculum-table caption {
    caption-side: top;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--v2-white);
    background: linear-gradient(135deg, var(--v2-primary) 0%, var(--v2-primary-mid) 100%);
    padding: 12px 20px;
    border-radius: 8px 8px 0 0;
    letter-spacing: 0.03em;
}
.v2-curriculum-table td ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.v2-curriculum-table td ul li::before {
    font-family: "Font Awesome 5 Free";
    content: '\f0da';
    margin-right: 8px;
    color: var(--v2-gold);
    font-weight: 900;
    position: static;
    font-size: 1em;
}

/* ===== Case Studies (導入実績) ===== */
.v2-main .tp-case-studies-section {
    padding-top: 60px;
}

/* ===== Case Study Card (ver1 layout) ===== */
.tp-case-study-card {
    background: var(--v2-white);
    border-radius: var(--v2-radius);
    padding: 20px;
    box-shadow: var(--v2-shadow);
    height: 100%;
}
.tp-case-study-card .media img {
    border-radius: 4px;
    background: #f8f9fa;
}

/* Compact Case Study Card (その他の実績) */
.tp-compact-case-study-card {
    background: var(--v2-white);
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
}
.tp-compact-case-study-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.tp-compact-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 4px;
    background: #f8f9fa;
}
.tp-compact-client-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--v2-primary);
    margin-bottom: 0.5rem;
}
.tp-compact-training-title {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}
.tp-compact-training-title a {
    text-decoration: none;
    color: var(--v2-primary);
}
.tp-compact-training-title a:hover {
    text-decoration: underline;
}
.tp-compact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: #6c757d;
}
.tp-compact-detail-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.tp-compact-detail-item i {
    font-size: 0.9rem;
    color: var(--v2-primary);
}
@media (max-width: 767px) {
    .tp-compact-logo {
        width: 50px;
        height: 50px;
    }
    .tp-compact-client-name {
        font-size: 1rem;
    }
    .tp-compact-training-title {
        font-size: 0.85rem;
    }
    .tp-compact-details {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ===== Reviewer ===== */
.v2-reviewer-card {
    max-width: 800px;
    margin: 0 auto;
}
.v2-reviewer-inner {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.v2-reviewer-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.v2-reviewer-body {
    flex: 1;
}
.v2-reviewer-badge {
    display: inline-block;
    background: var(--v2-primary-mid);
    color: var(--v2-white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 8px;
}
.v2-reviewer-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--v2-primary);
    margin-bottom: 4px;
}
.v2-reviewer-tagline {
    color: var(--v2-primary-mid);
    font-size: 0.9rem;
    margin-bottom: 12px;
}
.v2-reviewer-profile {
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== Case Studies ===== */
.v2-case-card {
    padding: 20px;
}
.v2-case-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}
.v2-case-logo {
    width: 80px;
    height: auto;
    flex-shrink: 0;
}
.v2-case-header h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}
.v2-case-metas {
    font-size: 0.85rem;
    color: var(--v2-primary-mid);
    margin: 4px 0 0;
}
.v2-case-meta {
    margin-right: 12px;
}
.v2-case-meta i {
    margin-right: 4px;
}
.v2-case-detail h5 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--v2-primary-mid);
    margin-bottom: 4px;
}
.v2-case-detail p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Compact Case Card */
.v2-compact-case-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--v2-white);
    border-radius: 8px;
    padding: 12px 16px;
    box-shadow: var(--v2-shadow);
}
.v2-compact-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}
.v2-compact-client {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
}
.v2-compact-plan {
    font-size: 0.8rem;
    margin: 0;
}
.v2-compact-plan a {
    color: var(--v2-primary-mid);
}

/* ===== Pricing ===== */
.v2-pricing-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.v2-pricing-body {
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ===== Main Form ===== */
.v2-main-form {
    background: var(--v2-white);
    padding: 60px 0;
}
.v2-form-container {
    max-width: 680px;
    margin: 0 auto;
    background: var(--v2-white);
    border-radius: var(--v2-radius);
    padding: 24px;
    box-shadow: var(--v2-shadow);
    border: 2px solid var(--v2-gold);
}

/* ===== Company ===== */
.v2-company-logo {
    max-width: 160px;
    height: auto;
}
.v2-company-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--v2-primary);
    margin-top: 8px;
}
.v2-company-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* ===== Related Plans ===== */
.v2-related-card {
    background: var(--v2-white);
    border-radius: var(--v2-radius);
    overflow: hidden;
    box-shadow: var(--v2-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.v2-related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--v2-shadow-hover);
}
.v2-related-card img {
    border-radius: var(--v2-radius) var(--v2-radius) 0 0;
}
.v2-related-body {
    padding: 12px 14px;
}
.v2-related-badge {
    display: inline-block;
    background: var(--v2-primary);
    color: var(--v2-white);
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 6px;
}
.v2-related-name {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 4px;
}
.v2-related-name a:hover {
    color: var(--v2-gold) !important;
}
.v2-related-company {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 4px;
}
.v2-related-time {
    font-size: 0.75rem;
    color: #999;
    margin: 0;
}
.v2-category-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--v2-primary);
    margin-bottom: 16px;
    padding-left: 12px;
    border-left: 4px solid var(--v2-gold);
}

/* Compact Link Card */
.v2-compact-link-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--v2-white);
    border-radius: 8px;
    padding: 12px 16px;
    box-shadow: var(--v2-shadow);
    text-decoration: none;
    color: var(--v2-primary);
    transition: box-shadow 0.3s ease;
}
.v2-compact-link-card:hover {
    box-shadow: var(--v2-shadow-hover);
    text-decoration: none;
    color: var(--v2-primary);
}
.v2-compact-link-card img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 6px;
    flex-shrink: 0;
}
.v2-compact-link-card h5 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 4px;
}
.v2-compact-link-card .fa-chevron-right {
    margin-left: auto;
    color: #ccc;
}

/* ===== Floating CTA ===== */
.v2-floating-cta {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: bottom 0.4s ease;
}
.v2-floating-cta.v2-visible {
    bottom: 0;
}
.v2-floating-inner {
    background: var(--v2-primary);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.v2-floating-text {
    color: var(--v2-white);
    line-height: 1.3;
}
.v2-floating-text strong {
    display: block;
    font-size: 0.9rem;
}
.v2-floating-sub {
    font-size: 0.75rem;
    opacity: 0.8;
}
.v2-floating-btn {
    display: inline-block;
    background: var(--v2-gold);
    color: var(--v2-primary);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: 24px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    animation: v2-pulse 2s infinite;
}
.v2-floating-btn:hover {
    background: #f0a830;
    color: var(--v2-primary);
    text-decoration: none;
    transform: scale(1.05);
}

@keyframes v2-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(250,181,73,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(250,181,73,0); }
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .v2-hero {
        padding: 24px 0 32px;
    }
    .v2-hero-left {
        padding-top: 0;
    }
    .v2-hero-title {
        font-size: 1.4rem;
    }
    .v2-section {
        padding: 40px 0;
    }
    .v2-section-title {
        font-size: 1.4rem;
    }
    .v2-voices-grid {
        grid-template-columns: 1fr;
    }
    .v2-reviewer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .v2-mid-cta-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .v2-card {
        padding: 20px 16px;
    }
    .v2-hero-title {
        font-size: 1.25rem;
    }
    .v2-social-proof-bar {
        padding: 10px 12px;
        gap: 10px;
    }
    .v2-client-logo-img {
        width: 32px;
        height: 32px;
    }
    .v2-floating-inner {
        padding: 10px 16px;
        gap: 12px;
    }
    .v2-floating-text strong {
        font-size: 0.8rem;
    }
    .v2-floating-sub {
        font-size: 0.7rem;
    }
    .v2-floating-btn {
        font-size: 0.8rem;
        padding: 8px 18px;
    }
    .v2-cta-btn-large {
        font-size: 1rem;
        padding: 12px 28px;
        display: block;
        width: 100%;
    }
    .v2-form-container {
        padding: 16px;
    }
}

/* ===== Desktop Floating CTA (右下固定) ===== */
@media (min-width: 992px) {
    .v2-floating-cta {
        bottom: -100%;
        left: auto;
        right: 24px;
        width: 380px;
        border-radius: var(--v2-radius) var(--v2-radius) 0 0;
        overflow: hidden;
    }
    .v2-floating-cta.v2-visible {
        bottom: 0;
    }
    .v2-floating-inner {
        flex-direction: column;
        gap: 10px;
        padding: 16px 20px;
        text-align: center;
    }
    .v2-floating-btn {
        width: 100%;
        text-align: center;
    }
}

/* ===== dl/dt/dd (研修内容等) ===== */
.v2-main dl {
    margin-bottom: 1em;
}
.v2-main dt {
    font-size: 1rem;
    font-weight: 700;
    color: var(--v2-primary);
    margin-bottom: 6px;
}
.v2-main dd {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1em;
    margin-left: 0;
}

/* ===== Value Cards (研修会社紹介) ===== */
.ks-value-card {
    background: var(--v2-white);
    border-radius: 10px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}
.ks-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.ks-value-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--v2-primary) 0%, #2a4a5e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 12px rgba(24,43,56,0.25);
}
.ks-value-icon i {
    font-size: 1.3rem;
    color: var(--v2-gold);
}
.ks-value-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--v2-primary);
    margin-bottom: 10px;
    line-height: 1.4;
}
.ks-value-card p {
    color: #555;
    line-height: 1.65;
    font-size: 0.88rem;
    margin: 0;
}

/* ===== Side Nav (sticky) ===== */
.v2-side-nav {
    position: sticky;
    top: 100px;
    background: var(--v2-white);
    border-radius: 8px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
    padding: 12px 0;
    margin-top: 20px;
}
.v2-side-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.v2-side-nav li {
    margin: 0;
}
.v2-side-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    font-size: 0.78rem;
    color: #666;
    text-decoration: none;
    border-left: 3px solid transparent;
    line-height: 1.3;
    transition: all 0.15s ease;
}
.v2-side-nav a i {
    font-size: 0.8rem;
    width: 16px;
    text-align: center;
    color: #aaa;
    flex-shrink: 0;
    transition: color 0.15s ease;
}
.v2-side-nav a:hover {
    color: var(--v2-primary);
    background: #f5f7fa;
    border-left-color: var(--v2-gold);
}
.v2-side-nav a:hover i {
    color: var(--v2-gold);
}
.v2-side-nav a.active {
    color: var(--v2-primary);
    font-weight: 700;
    border-left-color: var(--v2-gold);
    background: rgba(250,181,73,0.08);
}
.v2-side-nav a.active i {
    color: var(--v2-gold);
}
.v2-side-nav-top {
    font-weight: 700;
    color: var(--v2-primary) !important;
    font-size: 0.75rem !important;
    border-bottom: 1px solid #eee;
    margin-bottom: 2px;
}
.v2-side-nav-cta {
    padding: 8px 12px 4px;
}
.v2-side-nav-cta a,
.v2-side-nav-cta a:link,
.v2-side-nav-cta a:visited {
    background: var(--v2-primary) !important;
    color: var(--v2-white) !important;
    border-radius: 6px;
    border-left: none !important;
    text-align: center;
    justify-content: center;
    font-weight: 700;
    padding: 10px 8px;
    font-size: 0.8rem;
}
.v2-side-nav-cta a:hover {
    background: var(--v2-primary-mid) !important;
    color: var(--v2-white) !important;
    border-left: none !important;
}
.v2-side-nav-cta a i,
.v2-side-nav-cta a:hover i {
    color: var(--v2-gold) !important;
}

/* 2カラム時: セクション内 .container をフル幅に */
.v2-main-content .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

/* ===== Breadcrumb override ===== */
.breadcrumb {
    background-color: var(--v2-white);
    margin-bottom: 0;
}
.v2-main > .v2-section:first-child {
    padding-top: 40px;
}
