/* ===================================
   基本設定 - 高級感のあるリセット
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Yu Gothic', 'メイリオ', Meiryo, sans-serif;
    line-height: 1.8;
    color: #1a1a1a;
    background-color: #fff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* 高級カラー定義 */
:root {
    --primary-red: #8B1A1A;
    --primary-red-dark: #6B0F0F;
    --primary-red-light: #A62828;
    --accent-gold: #D4AF37;
    --accent-gold-dark: #B8941F;
    --accent-gold-light: #E8C55B;
    --accent-navy: #0D2B4A;
    --text-dark: #1a1a1a;
    --text-gray: #4a4a4a;
    --text-light: #666;
    --bg-light: #FAFBFC;
    --bg-cream: #FAF8F5;
    --bg-dark: #1a1a1a;
    --border-color: #E8E5E0;
    --border-gold: #D4AF37;
}

/* スクロールアニメーション用 */
.animate-in {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   ヘッダー
   =================================== */
.header {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border-bottom: 2px solid var(--border-gold);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(139, 26, 26, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-sub {
    font-size: 11px;
    color: var(--text-gray);
    border-left: 3px solid var(--accent-gold);
    padding-left: 18px;
    line-height: 1.4;
}

.header-cta {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline {
    border-color: var(--primary-red);
    color: var(--primary-red);
    background: #fff;
    box-shadow: 0 2px 8px rgba(139, 26, 26, 0.1);
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(139, 26, 26, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(139, 26, 26, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(139, 26, 26, 0.4);
    transform: translateY(-2px);
}

/* ===================================
   ヒーローセクション V2
   =================================== */
.hero-v2 {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('redbkg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 26, 26, 0.7) 0%, rgba(107, 15, 15, 0.8) 50%, rgba(13, 43, 74, 0.7) 100%);
    z-index: 1;
}

.hero-v2-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}

.hero-v2-wrapper {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    padding: 40px 0;
}

.hero-v2-content {
    position: relative;
    text-align: left;
    animation: fadeInUp 1s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-v2-image {
    position: relative;
    height: 100%;
    animation: fadeInUp 1s ease 0.3s backwards;
    align-self: stretch;
    margin: -40px 0;
}

.hero-v2-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
}

.hero-v2-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 30px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 40px;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--accent-gold);
    font-weight: 700;
}

.badge-icon {
    color: var(--accent-gold);
    font-size: 10px;
}

.hero-v2-title {
    margin-bottom: 20px;
}

.title-main {
    display: block;
    font-size: 92px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 6px;
    text-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
    line-height: 1.15;
    font-family: 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'MS P明朝', 'MS 明朝', serif;
    white-space: nowrap;
}

.title-accent {
    display: block;
    font-size: 38.4px;
    font-weight: 600;
    background: linear-gradient(90deg, #D4AF37 0%, #FFF9E6 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 6px;
    font-family: 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'MS P明朝', 'MS 明朝', serif;
    text-align: center;
}

.hero-v2-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.9;
}

.hero-v2-stats {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: nowrap;
}

.stat-item {
    text-align: center;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(5px);
    min-width: 120px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: visible;
}

.stat-label {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 500;
}

.stat-number {
    font-size: 34px;
    font-weight: 900;
    background: linear-gradient(135deg, #D4AF37 0%, #FFF9E6 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    white-space: nowrap;
}

.stat-prefix,
.stat-suffix {
    font-size: 0.5em;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.hero-stats-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
    text-align: right;
}

.hero-v2-cta {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-v2-btn {
    padding: 20px 50px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    border: 3px solid transparent;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.btn-primary-v2 {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: var(--primary-red-dark);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.btn-primary-v2:hover {
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.6);
    transform: translateY(-3px);
}

.btn-secondary-v2 {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary-v2:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.hero-v2-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
    z-index: 10;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), transparent);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ===================================
   共通セクションヘッダー V2
   =================================== */
.section-header-v2 {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-number {
    display: none;
    width: 144px;
    height: 144px;
    background-image: url('pcci_logo03.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.25;
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    font-size: 0;
    color: transparent;
}

.section-title-v2 {
    font-size: 48px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: 1px;
    position: relative;
    font-family: 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'MS P明朝', 'MS 明朝', serif;
}

.section-subtitle-v2 {
    font-size: 13px;
    letter-spacing: 4px;
    color: var(--primary-red);
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.section-subtitle-v2::before,
.section-subtitle-v2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold));
}

.section-subtitle-v2::before {
    right: calc(100% + 15px);
}

.section-subtitle-v2::after {
    left: calc(100% + 15px);
    background: linear-gradient(90deg, var(--accent-gold), transparent);
}

/* ===================================
   選ばれる理由 V2
   =================================== */
.reasons-v2 {
    padding: 120px 0;
    background: #fff;
    position: relative;
}

.section-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(139, 26, 26, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.reason-card {
    position: relative;
    perspective: 1000px;
}

.reason-card-inner {
    position: relative;
    width: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.reason-card-front {
    background: linear-gradient(135deg, #fff 0%, var(--bg-light) 100%);
    padding: 50px 35px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.reason-card-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-gold));
}

.reason-card:hover .reason-card-front {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(139, 26, 26, 0.15);
}

.reason-icon-wrapper {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.reason-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reason-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 60px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
}

.reason-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.5;
    font-family: 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'MS P明朝', 'MS 明朝', serif;
}

.reason-content {
    margin-top: 25px;
}

.reason-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 20px;
}

.reason-features {
    list-style: none;
    padding: 0;
}

.reason-features li {
    font-size: 14px;
    color: var(--text-gray);
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
}

.reason-features li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 10px;
}

/* ===================================
   課題セクション V2
   =================================== */
.challenges-v2 {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--bg-cream) 0%, #fff 100%);
    position: relative;
}

.challenges-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
}

.challenges-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 80px;
}

.challenge-item-v2 {
    background: #fff;
    padding: 45px 35px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border-left: 5px solid var(--primary-red);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.challenge-item-v2::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.challenge-item-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(139, 26, 26, 0.15);
    border-left-color: var(--accent-gold);
}

.challenge-icon-v2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(139, 26, 26, 0.3);
}

.challenge-title-v2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 18px;
    line-height: 1.6;
    font-family: 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'MS P明朝', 'MS 明朝', serif;
}

.challenge-text-v2 {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.9;
}

.solution-banner {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(139, 26, 26, 0.3);
    position: relative;
    overflow: hidden;
}

.solution-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.solution-banner-content {
    position: relative;
    z-index: 1;
}

.solution-banner-content h3 {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    font-family: 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'MS P明朝', 'MS 明朝', serif;
}

.solution-banner-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.9;
}

/* ===================================
   研修プログラム V2
   =================================== */
.programs-v2 {
    padding: 120px 0;
    background: #fff;
}

.programs-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.program-card-v2 {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.program-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(139, 26, 26, 0.15);
}

.program-image-v2 {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.program-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.program-card-v2:hover .program-image-v2 img {
    transform: scale(1.1);
}

.program-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    gap: 10px;
    flex-wrap: wrap;
}

.program-tag {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-red-dark);
    letter-spacing: 0.5px;
}

.program-tag-free {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: #fff;
}

.program-content-v2 {
    padding: 35px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.program-title-v2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
    font-family: 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'MS P明朝', 'MS 明朝', serif;
}

.program-desc-v2 {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 3px solid var(--accent-gold);
}

.program-subtitle-v2 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.program-duration-v2 {
    font-size: 14px;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 20px;
}

.program-section-title-v2 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-family: 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'MS P明朝', 'MS 明朝', serif;
}

.program-details-v2 {
    margin-bottom: 25px;
}

.program-pricing-v2 {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border: 2px solid var(--border-color);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.price-row:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

.price-label {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 600;
}

.price-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
}

.price-value.highlight {
    color: var(--primary-red);
}

.price-unit {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-gray);
    margin-left: 4px;
}


.program-level {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.level-label {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 600;
}

.level-bars {
    display: flex;
    gap: 6px;
}

.level-bar {
    width: 40px;
    height: 6px;
    background: var(--bg-light);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.level-bar.active {
    background: linear-gradient(90deg, var(--primary-red), var(--accent-gold));
}

.program-points {
    list-style: none;
    padding: 0;
}

.program-points li {
    font-size: 14px;
    color: var(--text-gray);
    padding-left: 20px;
    margin-bottom: 10px;
    position: relative;
}

.program-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 700;
}

.program-btn-v2 {
    display: block;
    text-align: center;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 26, 26, 0.2);
    margin-top: auto;
}

.program-btn-v2:hover {
    box-shadow: 0 8px 25px rgba(139, 26, 26, 0.3);
    transform: translateY(-2px);
}

/* ===================================
   料金プラン V2（テーブル形式）
   =================================== */
.pricing-v2 {
    padding: 120px 0;
    background: #fff;
}

.pricing-table-v2 {
    max-width: 1100px;
    margin: 0 auto 60px;
    overflow-x: auto;
}

.table-v2 {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.table-v2 thead {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
}

.table-v2 thead th {
    padding: 20px 15px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'MS P明朝', 'MS 明朝', serif;
}

.table-v2 thead th:last-child {
    border-right: none;
}

.table-v2 tbody td {
    padding: 20px 15px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    font-size: 15px;
}

.table-v2 tbody td:last-child {
    border-right: none;
}

.table-v2 tbody td:first-child {
    text-align: left;
    font-size: 16px;
}

.table-v2 tbody tr:last-child td {
    border-bottom: none;
}

.table-v2 .highlight-row {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.1) 100%);
}

.price-cell {
    font-weight: 700;
    color: var(--primary-red);
    font-size: 18px;
}

.discount-price {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.original-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}

.discounted-price {
    font-size: 20px;
    font-weight: 900;
    color: var(--primary-red);
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: #fff;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
}

.pricing-notes-v2 {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-cream);
    padding: 35px 40px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-gold);
}

.pricing-notes-v2 h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'MS P明朝', 'MS 明朝', serif;
}

.pricing-notes-v2 p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.9;
}

.pricing-notes-v2 ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.pricing-notes-v2 ul li {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.9;
    padding-left: 10px;
}

/* ===================================
   場所・日程 V2
   =================================== */
.location-v2 {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-cream) 0%, #fff 100%);
}

.location-content-v2 {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.location-text-v2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.9;
    font-family: 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'MS P明朝', 'MS 明朝', serif;
}

/* ===================================
   お申し込みについて V2
   =================================== */
.application-v2 {
    padding: 100px 0;
    background: #fff;
}

.application-content-v2 {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.application-text-v2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.9;
    font-family: 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'MS P明朝', 'MS 明朝', serif;
}

/* ===================================
   導入事例 V2
   =================================== */
.cases-v2 {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--bg-cream) 0%, #fff 100%);
}

.cases-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.case-card-v2 {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.case-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(139, 26, 26, 0.12);
}

.case-header-v2 {
    margin-bottom: 25px;
}

.case-industry {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
}

.case-company-v2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-family: 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'MS P明朝', 'MS 明朝', serif;
}

.case-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.case-tag {
    background: var(--bg-light);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 600;
}

.case-body-v2 {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.case-summary {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 25px;
}

.case-summary strong {
    color: var(--primary-red);
    font-weight: 700;
}

.case-quote-v2 {
    background: var(--bg-cream);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-gold);
    margin-top: auto;
}

.quote-content {
    display: flex;
    gap: 20px;
}

.customer-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid var(--accent-gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.quote-text p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 12px;
    font-style: italic;
}

.quote-text cite {
    display: block;
    font-size: 13px;
    color: var(--primary-red);
    font-weight: 700;
    font-style: normal;
}

/* ===================================
   授業形式 V2
   =================================== */
.teaching-method-v2 {
    padding: 120px 0;
    background: linear-gradient(135deg, #fff 0%, var(--bg-cream) 100%);
}

.teaching-method-content-v2 {
    max-width: 1000px;
    margin: 0 auto;
}

.teaching-method-text-v2 {
    font-size: 16px;
    line-height: 2;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 60px;
    font-family: 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'MS P明朝', 'MS 明朝', serif;
}

.teaching-method-text-v2 strong {
    color: var(--primary-red);
    font-weight: 700;
}

.teaching-method-icons-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.teaching-method-item-v2 {
    flex: 0 0 auto;
}

.teaching-method-tile-v2 {
    position: relative;
    width: 280px;
    height: 200px;
    min-width: 280px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    background: #fff;
}

.teaching-method-tile-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(139, 26, 26, 0.2);
}

.teaching-method-tile-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.teaching-method-label-v2 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    text-align: center;
    font-family: 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'MS P明朝', 'MS 明朝', serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.teaching-method-plus-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    opacity: 0.8;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

.teaching-method-plus-v2:hover {
    opacity: 1;
    transform: scale(1.15);
}

/* ===================================
   料金プラン V2
   =================================== */
.pricing-v2 {
    padding: 120px 0;
    background: #fff;
}

.pricing-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.pricing-card-v2 {
    background: #fff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.pricing-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(139, 26, 26, 0.15);
    border-color: var(--accent-gold);
}

.pricing-card-v2.featured {
    border-color: var(--accent-gold);
    border-width: 3px;
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.2);
    transform: scale(1.05);
}

.pricing-card-v2.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: var(--primary-red-dark);
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.pricing-header-v2 {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 2px solid var(--bg-light);
}

.pricing-plan-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    font-family: 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'MS P明朝', 'MS 明朝', serif;
}

.pricing-amount {
    margin-bottom: 15px;
}

.price-yen {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-red);
}

.price-number {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-unit {
    font-size: 18px;
    color: var(--text-gray);
    font-weight: 600;
}

.price-text {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-red);
}

.pricing-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

.pricing-features {
    list-style: none;
    margin-bottom: 35px;
}

.pricing-features li {
    font-size: 15px;
    color: var(--text-gray);
    padding: 15px 0;
    border-bottom: 1px solid var(--bg-light);
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.feature-icon {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 18px;
}

.pricing-btn-v2 {
    display: block;
    text-align: center;
    padding: 16px 35px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 26, 26, 0.2);
}

.pricing-btn-v2:hover {
    box-shadow: 0 8px 25px rgba(139, 26, 26, 0.3);
    transform: translateY(-2px);
}

.pricing-notes {
    background: var(--bg-cream);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-notes h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-family: 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'MS P明朝', 'MS 明朝', serif;
}

.pricing-notes p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.9;
}

/* ===================================
   受講の流れ V2
   =================================== */
.flow-v2 {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--bg-cream) 0%, #fff 100%);
}

.flow-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.flow-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-red), var(--accent-gold));
}

.flow-item-v2 {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.flow-item-v2:last-child {
    margin-bottom: 0;
}

.flow-icon-v2 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(139, 26, 26, 0.3);
    position: relative;
    z-index: 2;
}

.flow-icon-v2 span {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
}

.flow-content-v2 {
    flex: 1;
    background: #fff;
    padding: 35px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--accent-gold);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.flow-item-v2:hover .flow-content-v2 {
    transform: translateX(10px);
    box-shadow: 0 12px 40px rgba(139, 26, 26, 0.12);
}

.flow-title-v2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'MS P明朝', 'MS 明朝', serif;
}

.flow-text-v2 {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.9;
}

.flow-link-v2 {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.flow-link-v2:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

/* ===================================
   商工会議所パソコン教室とは V2
   =================================== */
.about-pcci-v2 {
    padding: 120px 0;
    background: linear-gradient(135deg, #fff 0%, var(--bg-cream) 100%);
}

.about-content-v2 {
    max-width: 1200px;
    margin: 0 auto;
}

.about-main-v2 {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.about-visual-v2 {
    position: relative;
}

.about-visual-v2 img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.about-badge-v2 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    gap: 15px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.badge-icon-v2 {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon-v2 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.badge-text-v2 strong {
    display: block;
    font-size: 16px;
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 4px;
}

.badge-text-v2 span {
    font-size: 13px;
    color: var(--text-gray);
}

.about-heading-v2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    border-left: 4px solid var(--accent-gold);
    padding-left: 20px;
    line-height: 1.5;
    font-family: 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'MS P明朝', 'MS 明朝', serif;
}

.about-paragraph-v2 {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-features-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.about-feature-v2 {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-top: 3px solid var(--accent-gold);
    transition: all 0.3s ease;
}

.about-feature-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 26, 26, 0.12);
}

.feature-number-v2 {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1;
}

.feature-label-v2 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    word-break: keep-all;
}

.feature-desc-v2 {
    font-size: 13px;
    color: var(--text-gray);
    word-break: keep-all;
}

.about-cta-v2 {
    background: linear-gradient(135deg, var(--primary-red-dark) 0%, var(--primary-red) 100%);
    padding: 50px 60px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: 0 15px 50px rgba(139, 26, 26, 0.3);
    position: relative;
    overflow: hidden;
}

.about-cta-v2::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
}

.about-cta-text-v2 {
    flex: 1;
    position: relative;
    z-index: 1;
}

.about-cta-text-v2 h3 {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.5;
    font-family: 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'MS P明朝', 'MS 明朝', serif;
}

.about-cta-text-v2 p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.about-cta-btn-v2 {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: var(--primary-red-dark);
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.about-cta-btn-v2:hover {
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
    transform: translateY(-3px);
}

/* ===================================
   FAQ V2
   =================================== */
.faq-v2 {
    padding: 120px 0;
    background: #fff;
}

.faq-list-v2 {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item-v2 {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item-v2:hover {
    box-shadow: 0 10px 35px rgba(139, 26, 26, 0.1);
}

.faq-item-v2.active {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
}

.faq-question-v2 {
    padding: 30px 35px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.faq-question-v2:hover {
    background: var(--bg-cream);
}

.faq-q {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    font-size: 18px;
    flex-shrink: 0;
}

.faq-question-v2 h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
    line-height: 1.6;
    font-family: 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'MS P明朝', 'MS 明朝', serif;
}

.faq-icon-v2 {
    width: 35px;
    height: 35px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-red);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item-v2.active .faq-icon-v2 {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: var(--primary-red-dark);
    transform: rotate(45deg);
}

.faq-answer-v2 {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 35px 0 95px;
}

.faq-item-v2.active .faq-answer-v2 {
    max-height: 500px;
    padding: 0 35px 30px 95px;
}

.faq-a {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red-dark);
    font-weight: 900;
    font-size: 18px;
    margin-right: 15px;
    margin-bottom: 15px;
    float: left;
}

.faq-answer-v2 p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.9;
    margin: 0;
}

/* ===================================
   教室 V2
   =================================== */
.classroom-v2 {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--bg-cream) 0%, #fff 100%);
}

.classroom-accordion-v2 {
    max-width: 1000px;
    margin: 0 auto;
}

.region-item-v2 {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.region-item-v2:hover {
    box-shadow: 0 10px 35px rgba(139, 26, 26, 0.1);
}

.region-header-v2 {
    padding: 25px 35px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, var(--bg-cream) 0%, #fff 100%);
    transition: all 0.3s ease;
}

.region-header-v2:hover {
    background: var(--bg-cream);
}

.region-label {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    font-family: 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'MS P明朝', 'MS 明朝', serif;
}

.region-icon-v2 {
    font-size: 18px;
    color: var(--primary-red);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.region-item-v2.active .region-icon-v2 {
    transform: rotate(-180deg);
    color: var(--accent-gold);
}

.region-content-v2 {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-light);
}

.region-item-v2.active .region-content-v2 {
    max-height: 10000px;
}

.prefecture-item-v2 {
    border-bottom: 1px solid var(--border-color);
}

.prefecture-item-v2:last-child {
    border-bottom: none;
}

.prefecture-header-v2 {
    padding: 20px 35px 20px 60px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    transition: all 0.3s ease;
    position: relative;
}

.prefecture-header-v2::before {
    content: '';
    position: absolute;
    left: 45px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-red);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.prefecture-header-v2:hover {
    background: var(--bg-cream);
    padding-left: 65px;
}

.prefecture-header-v2:hover::before {
    background: var(--accent-gold);
    transform: translateY(-50%) scale(1.5);
}

.prefecture-header-v2 h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    font-family: 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'MS P明朝', 'MS 明朝', serif;
}

.prefecture-icon-v2 {
    font-size: 20px;
    color: var(--text-gray);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.prefecture-item-v2.active .prefecture-icon-v2 {
    transform: rotate(45deg);
    color: var(--accent-gold);
}

.prefecture-content-v2 {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
}

.prefecture-item-v2.active .prefecture-content-v2 {
    max-height: 3000px;
}

.classroom-item-v2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 18px 35px 18px 90px;
    border-bottom: 1px solid var(--bg-light);
    background: #fff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    opacity: 0;
    animation: slideInClassroom 0.4s ease forwards;
    gap: 20px;
}

@keyframes slideInClassroom {
    to {
        opacity: 1;
    }
}

.classroom-item-v2:nth-child(1) {
    animation-delay: 0.05s;
}

.classroom-item-v2:nth-child(2) {
    animation-delay: 0.1s;
}

.classroom-item-v2:nth-child(3) {
    animation-delay: 0.15s;
}

.classroom-item-v2:nth-child(4) {
    animation-delay: 0.2s;
}

.classroom-item-v2:nth-child(5) {
    animation-delay: 0.25s;
}

.classroom-item-v2::before {
    content: '●';
    position: absolute;
    left: 70px;
    top: 22px;
    color: var(--primary-red);
    font-size: 10px;
    transition: all 0.3s ease;
}

.classroom-item-v2:hover {
    background: var(--bg-cream);
    padding-left: 95px;
    box-shadow: inset 5px 0 0 var(--accent-gold);
}

.classroom-item-v2:hover::before {
    color: var(--accent-gold);
    transform: scale(1.5);
}

.classroom-info-v2 {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.classroom-name-v2 {
    color: var(--text-dark);
    font-size: 17px;
    font-weight: 600;
}

.classroom-details-v2 {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 4px;
}

.classroom-detail-item-v2 {
    display: flex;
    align-items: flex-start;
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-gray);
}


.detail-label-v2 {
    font-weight: 500;
    color: var(--text-dark);
    flex-shrink: 0;
}

.detail-value-v2 {
    color: var(--text-gray);
    flex: 1;
}

.detail-link-v2 {
    color: var(--primary-red);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.detail-link-v2:hover {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
}

.classroom-buttons-v2 {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.classroom-btn-v2 {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    text-align: center;
}

.classroom-btn-map {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: #fff;
    box-shadow: 0 3px 12px rgba(74, 144, 226, 0.3);
}

.classroom-btn-map:hover {
    background: linear-gradient(135deg, #357abd 0%, #2a5f8f 100%);
    box-shadow: 0 5px 20px rgba(74, 144, 226, 0.5);
    transform: translateY(-2px);
}

.classroom-btn-contact {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    color: #fff;
    box-shadow: 0 3px 12px rgba(108, 117, 125, 0.3);
}

.classroom-btn-contact:hover {
    background: linear-gradient(135deg, #5a6268 0%, #495057 100%);
    box-shadow: 0 5px 20px rgba(108, 117, 125, 0.5);
    transform: translateY(-2px);
}

.classroom-btn-entry {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: #fff;
    box-shadow: 0 3px 12px rgba(139, 26, 26, 0.2);
}

.classroom-btn-entry:hover {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: var(--primary-red-dark);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

/* ===================================
   CTA V2
   =================================== */
.cta-v2 {
    padding: 120px 0;
    background: linear-gradient(180deg, #fff 0%, #faf8f5 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.cta-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.cta-v2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.cta-v2-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(139, 26, 26, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 20% 100%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-v2-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-v2-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 25px;
    letter-spacing: 1px;
    font-family: 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'MS P明朝', 'MS 明朝', serif;
}

.cta-v2-text {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 50px;
    line-height: 1.9;
}

.cta-v2-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-v2-btn {
    padding: 20px 50px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.cta-v2-btn.primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: var(--primary-red-dark);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.cta-v2-btn.primary:hover {
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.6);
    transform: translateY(-3px);
}

.cta-v2-btn.secondary {
    background: transparent;
    color: var(--primary-red);
    border: 3px solid var(--primary-red);
}

.cta-v2-btn.secondary:hover {
    background: var(--primary-red);
    color: #fff;
    border-color: var(--primary-red);
}

/* ===================================
   固定CTA V2
   =================================== */
.fixed-cta-v2 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-red-dark) 0%, var(--primary-red) 100%);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.fixed-cta-v2.visible {
    transform: translateY(0);
}

.fixed-cta-content-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.fixed-cta-text-v2 {
    color: #fff;
}

.fixed-cta-text-v2 strong {
    font-size: 20px;
    font-weight: 900;
    display: block;
    margin-bottom: 2px;
    font-family: 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'MS P明朝', 'MS 明朝', serif;
}

.fixed-cta-text-v2 span {
    font-size: 14px;
    opacity: 0.9;
}

.fixed-cta-buttons-v2 {
    display: flex;
    gap: 15px;
}

.fixed-btn {
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.fixed-btn.outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.fixed-btn.outline:hover {
    background: #fff;
    color: var(--primary-red);
}

.fixed-btn.primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: var(--primary-red-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.fixed-btn.primary:hover {
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    transform: translateY(-2px);
}

/* ===================================
   トップへ戻るボタン V2
   =================================== */
.to-top-btn-v2 {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(139, 26, 26, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.to-top-btn-v2.visible {
    opacity: 1;
    transform: translateY(0);
}

.to-top-btn-v2:hover {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    transform: translateY(-5px);
}

/* ===================================
   フッター V2
   =================================== */
.footer-v2 {
    background: linear-gradient(135deg, var(--primary-red-dark) 0%, var(--primary-red) 30%, #2d1515 100%);
    color: rgba(255, 255, 255, 0.95);
    padding: 80px 0 30px;
    border-top: 3px solid var(--accent-gold);
}

.footer-content-v2 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo-v2 img {
    height: 40px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-about-v2 {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.85;
}

.footer-title-v2 {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    font-family: 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'MS P明朝', 'MS 明朝', serif;
}

.footer-links-v2 {
    list-style: none;
}

.footer-links-v2 li {
    margin-bottom: 12px;
}

.footer-links-v2 a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.footer-links-v2 a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-bottom-v2 {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-v2 p {
    font-size: 13px;
    opacity: 0.85;
}

.footer-bottom-v2 span {
    opacity: 0.7;
    font-size: 11px;
}

/* ===================================
   レスポンシブ対応
   =================================== */
@media (max-width: 1024px) {
    .title-main {
        font-size: 72px;
    }

    .title-accent {
        font-size: 33.6px;
    }

    .hero-v2 {
        min-height: 48vh;
    }

    .hero-v2-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-v2-content {
        text-align: center;
    }

    .hero-v2-stats {
        justify-content: center;
    }

    .hero-v2-cta {
        justify-content: center;
    }

    .hero-v2-image {
        height: 400px;
        margin: 0;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .challenges-wrapper {
        grid-template-columns: 1fr;
    }

    .programs-grid-v2 {
        grid-template-columns: 1fr;
    }

    .cases-slider {
        grid-template-columns: 1fr;
    }

    .pricing-grid-v2 {
        grid-template-columns: 1fr;
    }

    .pricing-card-v2.featured {
        transform: scale(1);
    }

    .footer-content-v2 {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

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

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .hero-v2 {
        min-height: 48vh;
    }

    .hero-v2-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px 0;
    }

    .hero-v2-content {
        text-align: center;
    }

    .hero-v2-stats {
        justify-content: center;
    }

    .hero-v2-cta {
        justify-content: center;
    }

    .hero-v2-image {
        order: -1;
    }

    .title-main {
        font-size: 52px;
    }

    .title-accent {
        font-size: 26.4px;
    }

    .hero-v2 {
        min-height: 48vh;
    }

    .hero-v2-stats {
        flex-direction: row;
        gap: 8px;
        justify-content: center;
        flex-wrap: nowrap;
    }

    .stat-item {
        padding: 10px 8px;
        min-width: 0;
        flex: 1;
        overflow: visible;
    }

    .stat-number {
        font-size: 24px;
        white-space: nowrap;
    }

    .stat-label {
        font-size: 10px;
        letter-spacing: 0.5px;
    }

    .stat-prefix,
    .stat-suffix {
        font-size: 0.45em;
    }

    .stat-divider {
        display: none;
    }

    .hero-v2-image {
        height: 350px;
        margin: 0;
    }

    .section-number {
        width: 80px;
        height: 80px;
        top: -30px;
    }

    .section-title-v2 {
        font-size: 32px;
    }

    .teaching-method-text-v2 {
        font-size: 14px;
        line-height: 1.9;
        padding: 0 10px;
    }

    .teaching-method-icons-v2 {
        gap: 20px;
        flex-direction: column;
    }

    .teaching-method-tile-v2 {
        width: 100%;
        max-width: 320px;
        height: 180px;
    }

    .teaching-method-label-v2 {
        font-size: 18px;
        padding: 15px;
    }

    .teaching-method-plus-v2 {
        font-size: 36px;
    }

    .flow-timeline::before {
        left: 30px;
    }

    .flow-icon-v2 {
        width: 60px;
        height: 60px;
    }

    .flow-icon-v2 span {
        font-size: 24px;
    }

    .fixed-cta-content-v2 {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-v2 {
        padding: 50px 0 20px;
    }

    .footer-content-v2 {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-col-main {
        text-align: center;
    }

    .footer-logo-v2 {
        display: flex;
        justify-content: center;
    }

    .footer-logo-v2 img {
        height: 35px;
        margin-bottom: 15px;
    }

    .footer-about-v2 {
        font-size: 13px;
        line-height: 1.7;
        text-align: center;
    }

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

    .footer-title-v2 {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .footer-links-v2 li {
        margin-bottom: 10px;
    }

    .footer-links-v2 a {
        font-size: 13px;
    }

    .footer-bottom-v2 {
        padding-top: 20px;
    }

    .footer-bottom-v2 p {
        font-size: 11px;
        line-height: 1.6;
    }

    .footer-bottom-v2 span {
        display: block;
        margin-top: 5px;
        font-size: 10px;
    }

    .prefecture-header-v2 {
        padding: 15px 20px 15px 45px;
    }

    .prefecture-header-v2::before {
        left: 30px;
    }

    .classroom-item-v2 {
        padding: 15px 20px 15px 55px;
    }

    .classroom-item-v2 {
        padding: 15px 20px 15px 55px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .classroom-item-v2::before {
        left: 40px;
        top: 18px;
    }

    .classroom-info-v2 {
        width: 100%;
    }

    .classroom-buttons-v2 {
        width: 100%;
        flex-direction: row;
        gap: 6px;
        justify-content: flex-start;
    }

    .classroom-btn-v2 {
        flex: 1;
        min-width: 0;
        padding: 8px 8px;
        font-size: 11px;
        text-align: center;
    }

    .classroom-btn-v2.btn-full-width {
        width: 100%;
        text-align: center;
    }

    .detail-label-v2 {
        min-width: 75px;
        font-size: 11px;
    }

    .detail-value-v2 {
        font-size: 11px;
    }
}

/* ===================================
   追加スマホ対応 (480px以下)
   =================================== */
@media (max-width: 480px) {

    /* ヘッダー調整 */
    .header {
        padding: 10px 0;
    }

    .header-content {
        flex-direction: column;
        gap: 10px;
    }

    .logo img {
        height: 28px;
    }

    .logo-sub {
        font-size: 10px;
    }

    .header-cta {
        width: 100%;
        justify-content: center;
        gap: 8px;
    }

    .header-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    /* ヒーローセクション調整 */
    .hero-v2 {
        min-height: auto;
        padding: 30px 0;
    }

    .title-main {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .title-accent {
        font-size: 14px;
    }

    .hero-v2-subtitle {
        font-size: 13px;
    }

    .stat-item {
        padding: 8px 8px;
        min-width: 70px;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-label {
        font-size: 8px;
        letter-spacing: 0.5px;
        margin-bottom: 5px;
    }

    .stat-prefix,
    .stat-suffix {
        font-size: 0.4em;
    }

    .hero-v2-stats {
        gap: 8px;
    }

    .hero-v2-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 14px;
    }

    .hero-v2-cta {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .hero-v2-image {
        height: 250px;
    }

    /* セクション共通調整 */
    .section-number {
        font-size: 50px;
    }

    .section-title-v2 {
        font-size: 22px;
        letter-spacing: 1px;
    }

    .section-subtitle-v2 {
        font-size: 11px;
    }

    /* カード系調整 */
    .reason-card {
        height: auto !important;
        min-height: 320px;
    }

    .reason-title {
        font-size: 1rem !important;
    }

    .reason-icon-wrapper img {
        width: 70px;
        height: 70px;
    }

    /* 授業形式セクション調整 */
    .teaching-method-tile-v2 {
        width: 100%;
        max-width: 280px;
        height: 160px;
    }

    .teaching-method-label-v2 {
        font-size: 16px;
        padding: 12px;
    }

    .teaching-method-text-v2 {
        font-size: 13px;
        line-height: 1.8;
    }

    /* 研修プログラム調整 */
    .program-card-v2 {
        padding: 25px 20px;
    }

    .program-icon-v2 {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .program-name {
        font-size: 20px;
    }

    .program-desc {
        font-size: 13px;
    }

    /* 料金カード調整 */
    .pricing-card-v2 {
        padding: 30px 20px;
    }

    .pricing-amount {
        font-size: 36px;
    }

    /* 導入実績調整 */
    .case-card-v2 {
        padding: 25px 20px;
    }

    .case-quote {
        font-size: 14px;
    }

    /* フロー調整 */
    .flow-icon-v2 {
        width: 50px;
        height: 50px;
    }

    .flow-icon-v2 span {
        font-size: 20px;
    }

    .flow-title-v2 {
        font-size: 18px;
    }

    .flow-desc-v2 {
        font-size: 13px;
    }

    /* 教室リスト調整 */
    .region-header-v2 {
        padding: 15px 20px;
        font-size: 14px;
    }

    .prefecture-header-v2 {
        padding: 12px 15px 12px 35px;
    }

    .prefecture-header-v2 h4 {
        font-size: 14px;
    }

    .classroom-item-v2 {
        padding: 12px 15px 12px 45px;
    }

    .classroom-name-v2 {
        font-size: 14px;
    }

    .classroom-btn-v2 {
        padding: 6px 6px;
        font-size: 10px;
    }

    /* CTA調整 */
    .fixed-cta-v2 {
        padding: 8px 0;
    }

    .cta-text-v2 {
        font-size: 12px;
    }

    .cta-btn-v2 {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* ===================================
   2026年3月1日受付開始メッセージ
   =================================== */
.coming-soon-msg {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #fff 0%, #fef8f8 100%);
    border: 2px solid var(--primary-red);
    border-radius: 8px;
    color: var(--primary-red);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(139, 26, 26, 0.15);
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(139, 26, 26, 0.15);
    }

    50% {
        box-shadow: 0 4px 25px rgba(139, 26, 26, 0.35);
    }
}

/* ヘッダー用調整 */
.header-cta .coming-soon-msg {
    padding: 10px 20px;
    font-size: 13px;
}

/* 固定CTA用調整 */
.fixed-cta-buttons-v2 .coming-soon-msg {
    padding: 12px 24px;
    font-size: 14px;
}

/* CTAセクション用調整 */
.cta-v2-buttons .coming-soon-msg {
    padding: 18px 40px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.95);
}

/* 教室一覧用調整 */
.classroom-buttons-v2 .coming-soon-msg {
    padding: 8px 12px;
    font-size: 11px;
    white-space: nowrap;
}

/* プログラムカード用調整 */
.program-content-v2 .coming-soon-msg {
    display: block;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    margin-top: auto;
}

/* ヒーロー用調整 */
.hero-v2-cta .coming-soon-msg {
    padding: 20px 40px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.95);
}

/* about CTA用調整 */
.about-cta-v2 .coming-soon-msg {
    display: inline-block;
    padding: 18px 40px;
    font-size: 16px;
}

/* ===================================
   スマホ表示修正 (追加)
   =================================== */

/* スマホ専用改行（PCでは非表示） */
.sp-br {
    display: none;
}

/* 全体幅100%対応 */
@media (max-width: 768px) {

    /* スマホ専用改行を表示 */
    .sp-br {
        display: block;
    }

    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
    }

    /* 長文・説明文は左揃えに（タイトル・サブタイトルは中央維持） */
    .teaching-method-text-v2,
    .about-paragraph-v2,
    .flow-text-v2,
    .program-desc-v2,
    .faq-answer-v2 p,
    .reason-text,
    .challenge-text-v2,
    .location-text-v2 {
        text-align: left !important;
    }

    /* セクション説明文のみ左揃え */
    .section-description-v2 {
        text-align: left !important;
    }

    /* Solutionセクション (reasons-v2) の修正 */
    .reasons-v2 {
        padding: 60px 0;
    }

    .reasons-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 0 10px;
    }

    .reason-card {
        width: 100%;
        height: auto !important;
        min-height: auto;
    }

    .reason-card-inner {
        height: auto !important;
    }

    .reason-card-front {
        height: auto !important;
        padding: 30px 20px 25px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .reason-icon-wrapper {
        width: 100%;
        max-width: 250px;
        height: 150px;
        margin: 0 auto 20px;
    }

    .reason-icon-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .reason-number {
        font-size: 40px;
        top: 15px;
        right: 15px;
    }

    .reason-title {
        font-size: 16px !important;
        text-align: center;
        line-height: 1.6 !important;
    }

    /* 料金表セクション修正 */
    .pricing-table-v2 {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .pricing-table-v2 table {
        min-width: 600px;
        width: 100%;
        font-size: 12px;
    }

    .pricing-table-v2 th,
    .pricing-table-v2 td {
        padding: 10px 8px;
        white-space: nowrap;
    }

    .pricing-table-v2 .discount-price {
        display: flex;
        flex-direction: column;
        gap: 3px;
    }

    .pricing-table-v2 .original-price {
        font-size: 11px;
    }

    .pricing-table-v2 .discounted-price {
        font-size: 14px;
    }

    .pricing-table-v2 .discount-badge {
        font-size: 9px;
        padding: 2px 4px;
    }

    .pricing-notes-v2 {
        padding: 20px 15px;
    }

    .pricing-notes-v2 h4 {
        font-size: 14px;
    }

    .pricing-notes-v2 ul {
        padding-left: 0;
    }

    .pricing-notes-v2 li {
        font-size: 13px;
        margin-bottom: 8px;
    }

    /* 受講の流れセクション修正 */
    .flow-v2 {
        padding: 60px 0;
    }

    .flow-timeline {
        padding-left: 0;
        position: relative;
    }

    .flow-timeline::before {
        left: 25px;
    }

    .flow-item-v2 {
        display: flex;
        gap: 15px;
        padding-left: 10px;
        margin-bottom: 30px;
    }

    .flow-icon-v2 {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }

    .flow-icon-v2 span {
        font-size: 18px;
    }

    .flow-content-v2 {
        flex: 1;
        min-width: 0;
    }

    .flow-title-v2 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .flow-text-v2 {
        font-size: 13px;
        line-height: 1.7;
    }

    /* about-pcci セクション修正 */
    .about-pcci-v2 {
        padding: 60px 0;
    }

    .about-main-v2 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-visual-v2 {
        width: 100%;
        margin-bottom: 30px;
    }

    .about-visual-v2 img {
        width: 100%;
        height: auto;
    }

    .about-badge-v2 {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        transform: none;
        margin-top: 15px;
        flex-direction: row;
        text-align: left;
        padding: 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .badge-icon-v2 {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }

    .badge-text-v2 strong {
        font-size: 14px;
    }

    .badge-text-v2 span {
        font-size: 12px;
    }

    .about-text-v2 {
        width: 100%;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .about-heading-v2 {
        font-size: 20px;
        text-align: left;
        word-break: break-word;
    }

    .about-paragraph-v2 {
        font-size: 14px;
        word-break: break-word;
    }

    .about-features-v2 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-feature-v2 {
        width: 100%;
        padding: 20px;
    }

    .feature-number-v2 {
        font-size: 32px;
    }

    .feature-label-v2 {
        font-size: 14px;
    }

    .feature-desc-v2 {
        font-size: 12px;
    }

    /* about-cta 修正 */
    .about-cta-v2 {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
        gap: 20px;
    }

    .about-cta-text-v2 {
        width: 100%;
    }

    .about-cta-text-v2 h3 {
        font-size: 18px;
        line-height: 1.6;
    }

    .about-cta-text-v2 p {
        font-size: 13px;
    }

    .about-cta-btn-v2 {
        width: 100%;
        padding: 15px 20px;
        font-size: 14px;
    }

    /* CTA セクション修正 */
    .cta-v2 {
        padding: 60px 0;
    }

    .cta-v2-content {
        padding: 0 10px;
    }

    .cta-v2-title {
        font-size: 20px;
        line-height: 1.5;
    }

    .cta-v2-text {
        font-size: 14px;
    }

    .cta-v2-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .cta-v2-btn {
        width: 100%;
        padding: 15px 20px;
        font-size: 14px;
    }

    /* FAQ カテゴリ修正 */
    .faq-category {
        margin-bottom: 30px !important;
    }

    .faq-category-title {
        font-size: 16px !important;
        padding-bottom: 8px !important;
    }

    .faq-question-v2 {
        padding: 20px 15px;
        gap: 12px;
    }

    .faq-question-v2 h3 {
        font-size: 14px;
    }

    .faq-q,
    .faq-a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .faq-answer-v2 {
        padding: 0 15px 0 60px;
    }

    .faq-item-v2.active .faq-answer-v2 {
        padding: 0 15px 20px 60px;
    }

    .faq-answer-v2 p {
        font-size: 13px;
    }

    /* フッター修正 */
    .footer-v2 {
        padding: 40px 15px 20px;
    }

    .footer-content-v2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px 15px;
    }

    .footer-col-main {
        grid-column: 1 / -1;
        text-align: left;
        margin-bottom: 10px;
    }

    .footer-logo-v2 {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }

    .footer-logo-v2 img {
        height: 30px;
        margin-bottom: 0;
    }

    .footer-logo-text {
        font-size: 14px;
        font-weight: 700;
    }

    .footer-about-v2 {
        font-size: 12px;
        line-height: 1.6;
        text-align: left;
    }

    .footer-col {
        text-align: left;
    }

    .footer-title-v2 {
        font-size: 13px;
        margin-bottom: 10px;
        padding-bottom: 5px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .footer-links-v2 {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .footer-links-v2 li {
        margin-bottom: 0;
    }

    .footer-links-v2 a {
        font-size: 12px;
        display: block;
        padding: 3px 0;
    }

    .footer-bottom-v2 {
        padding-top: 15px;
        margin-top: 15px;
    }

    .footer-bottom-v2 p {
        font-size: 11px;
    }

    .footer-bottom-v2 span {
        font-size: 10px;
    }

    /* 固定CTA修正 */
    .fixed-cta-v2 {
        padding: 10px 15px;
    }

    .fixed-cta-content-v2 {
        flex-direction: column;
        gap: 8px;
    }

    .fixed-cta-text-v2 {
        display: none;
    }

    .fixed-cta-buttons-v2 {
        width: 100%;
        flex-direction: row;
        gap: 8px;
    }

    .fixed-btn {
        flex: 1;
        padding: 10px 15px;
        font-size: 12px;
        text-align: center;
    }

    /* Coming soon メッセージ調整 */
    .coming-soon-msg {
        padding: 8px 12px;
        font-size: 11px;
    }

    .hero-v2-cta .coming-soon-msg,
    .cta-v2-buttons .coming-soon-msg {
        padding: 12px 20px;
        font-size: 12px;
    }

    /* 授業形式セクション修正 */
    .teaching-method-v2 {
        padding: 60px 0;
    }

    .teaching-method-content-v2 {
        padding: 0;
    }

    .teaching-method-icons-v2 {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .teaching-method-item-v2 {
        width: 100%;
    }

    .teaching-method-tile-v2 {
        width: 100%;
        max-width: none;
        height: 140px;
    }

    .teaching-method-tile-v2 img {
        max-height: 80px;
    }

    .teaching-method-plus-v2 {
        font-size: 28px;
        margin: 10px 0;
    }

    /* プログラムカード修正 */
    .programs-v2 {
        padding: 60px 0;
    }

    .program-card-v2 {
        margin-bottom: 20px;
    }

    .program-content-v2 {
        padding: 20px 15px;
    }

    .program-title-v2 {
        font-size: 20px;
    }

    .program-subtitle-v2 {
        font-size: 13px;
    }

    .program-desc-v2 {
        font-size: 13px;
    }

    .program-pricing-v2 {
        padding: 15px;
    }

    .price-row {
        flex-wrap: wrap;
    }

    .price-label {
        font-size: 12px;
    }

    .price-value {
        font-size: 20px;
    }

    /* セクションヘッダー修正 */
    .section-header-v2 {
        margin-bottom: 40px;
    }

    .section-title-v2 {
        font-size: 24px;
        line-height: 1.4;
    }

    .section-subtitle-v2::before,
    .section-subtitle-v2::after {
        width: 30px;
    }

    /* 教室選択修正 */
    .location-v2 {
        padding: 60px 0;
    }

    .location-text-v2 {
        font-size: 14px;
        text-align: left;
    }

    .region-header-v2 {
        padding: 15px 20px;
    }

    .region-label {
        font-size: 16px;
    }
}