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

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

/* ========================================
   コンテナ
======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   ヘッダー
======================================== */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

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

/* ========================================
   CTAボタン
======================================== */
.cta-button {
    background: linear-gradient(135deg, #ff6b35, #ff9b54);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.cta-button i {
    font-size: 12px;
}

.cta-button-large {
    background: linear-gradient(135deg, #ff6b35, #ff9b54);
    color: #fff;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.cta-button-large i {
    font-size: 16px;
}

/* ========================================
   ヒーローセクション
======================================== */
.hero {
    background: linear-gradient(135deg, #215F9A 0%, #2e7ec4 100%);
    padding: 80px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,154.7C384,149,480,107,576,112C672,117,768,171,864,192C960,213,1056,203,1152,181.3C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.5;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
}

.hero-content {
    width: 100%;
    max-width: 900px;
    text-align: center;
}

.hero-badge {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.badge-urgent {
    background-color: #ff3b3b;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.badge-date {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 30px;
}

.hero-title .highlight {
    color: #ffd700;
    display: block;
    font-size: 36px;
    margin-top: 10px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-subtitle strong {
    color: #ffd700;
    font-size: 20px;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.point-item {
    background-color: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.point-icon {
    background-color: #ffd700;
    color: #215F9A;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.point-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.point-label {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 8px;
    font-weight: 500;
}

.point-value {
    font-size: 24px;
    font-weight: 900;
    color: #ffd700;
}

.hero-cta {
    text-align: center;
    margin-top: 40px;
}

.cta-note {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.9;
}

.hero-image {
    width: 100%;
    max-width: 700px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ========================================
   セクション共通
======================================== */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    color: #215F9A;
}

.section-title .highlight-text {
    color: #ff6b35;
}

.section-intro {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 60px;
    line-height: 2;
}

/* ========================================
   経営者の悩みセクション
======================================== */
.problems {
    background-color: #f8f9fa;
}

.problems-image {
    max-width: 600px;
    margin: 0 auto 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.problems-image img {
    width: 100%;
    height: auto;
    display: block;
}

.problems-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.problem-card {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.problem-content {
    padding: 30px;
}

.problem-icon {
    width: 60px;
    height: 60px;
    background-color: #ffe5e5;
    color: #ff3b3b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.problem-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.problem-text {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

.problems-solution {
    text-align: center;
}

.solution-arrow {
    font-size: 48px;
    color: #215F9A;
    margin-bottom: 30px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.solution-box {
    background: linear-gradient(135deg, #215F9A, #2e7ec4);
    color: #fff;
    padding: 40px 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(33, 95, 154, 0.3);
}

.solution-title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
}

.solution-text {
    font-size: 18px;
    line-height: 1.8;
}

.solution-text strong {
    color: #ffd700;
}

/* ========================================
   メリットセクション
======================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit-card {
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    border-color: #215F9A;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(33, 95, 154, 0.15);
}

.benefit-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 48px;
    font-weight: 900;
    color: #f0f0f0;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #215F9A, #2e7ec4);
    color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 25px;
}

.benefit-title {
    font-size: 22px;
    font-weight: 700;
    color: #215F9A;
    margin-bottom: 20px;
}

.benefit-text {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

.benefit-text strong {
    color: #215F9A;
    font-weight: 700;
}

/* ========================================
   13次公募情報セクション
======================================== */
.current-application {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.application-box {
    background-color: #fff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.application-header {
    text-align: center;
    margin-bottom: 50px;
}

.application-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ff3b3b;
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.application-title {
    font-size: 40px;
    font-weight: 900;
    color: #215F9A;
}

.application-schedule {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    gap: 15px;
}

.schedule-item {
    flex: 1;
    text-align: center;
    background-color: #f8f9fa;
    padding: 25px 20px;
    border-radius: 15px;
}

.schedule-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.schedule-value {
    font-size: 18px;
    font-weight: 700;
    color: #215F9A;
}

.schedule-value.urgent {
    color: #ff3b3b;
    font-size: 24px;
}

.schedule-arrow {
    color: #215F9A;
    font-size: 24px;
}

.application-advice {
    background: linear-gradient(135deg, #fff5e6, #ffe8cc);
    border-left: 5px solid #ff9b54;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
}

.advice-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #ff9b54);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.advice-text h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.advice-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

.advice-text strong {
    color: #ff6b35;
}

.application-cta {
    text-align: center;
}

/* ========================================
   選ばれる理由セクション
======================================== */
.reasons {
    background-color: #fff;
}

.reasons-grid {
    display: grid;
    gap: 40px;
}

.reason-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.reason-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reason-card:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.reason-card:nth-child(even) .reason-image {
    order: 2;
}

.reason-card:nth-child(even) .reason-content {
    order: 1;
}

.reason-card:not(:first-child) {
    display: flex;
    justify-content: center;
    align-items: center;
}

.reason-card:not(:first-child) .reason-content {
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.reason-card:not(:first-child) .reason-number {
    display: inline-block;
}

.reason-card:not(:first-child) .reason-title {
    text-align: center;
}

.reason-card:not(:first-child) .reason-text {
    text-align: center;
}

.reason-card:not(:first-child) .reason-list {
    text-align: left;
    display: inline-block;
    max-width: 500px;
}

.reason-card:not(:first-child) .reason-stats {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.reason-card:not(:first-child) .reason-process {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.reason-card:not(:first-child) .reason-note {
    text-align: center;
}

.reason-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.reason-number {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #ff9b54);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.reason-title {
    font-size: 24px;
    font-weight: 700;
    color: #215F9A;
    margin-bottom: 20px;
}

.reason-text {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.reason-text strong {
    color: #215F9A;
    font-weight: 700;
}

.reason-list {
    margin-top: 20px;
}

.reason-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #666;
    margin-bottom: 12px;
}

.reason-list i {
    color: #28a745;
    font-size: 18px;
}

.reason-list strong {
    color: #215F9A;
}

.reason-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.stat-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.stat-value {
    font-size: 36px;
    font-weight: 900;
    color: #215F9A;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

.reason-process {
    margin-top: 30px;
}

.process-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.process-row:last-child {
    margin-bottom: 0;
}

.process-step {
    background-color: #e0e0e0;
    color: #999;
    padding: 15px 25px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    min-width: 140px;
    text-align: center;
    flex: 1;
    max-width: 180px;
}

.process-step.active {
    background: linear-gradient(135deg, #215F9A, #2e7ec4);
    color: #fff;
    box-shadow: 0 4px 15px rgba(33, 95, 154, 0.3);
}

.reason-process .process-row i {
    color: #215F9A;
    font-size: 20px;
    flex-shrink: 0;
}

.reason-note {
    font-size: 13px;
    color: #666;
    margin-top: 15px;
    font-style: italic;
}

/* ========================================
   M&Aの流れセクション
======================================== */
.flow {
    background-color: #f8f9fa;
}

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

.flow-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.flow-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 60px;
    top: 100px;
    width: 2px;
    height: calc(100% - 60px);
    background: linear-gradient(180deg, #215F9A, #e0e0e0);
}

.flow-step {
    background: linear-gradient(135deg, #215F9A, #2e7ec4);
    color: #fff;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(33, 95, 154, 0.3);
    position: relative;
    z-index: 1;
}

.flow-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.flow-title {
    font-size: 20px;
    font-weight: 700;
    color: #215F9A;
    margin-bottom: 15px;
}

.flow-text {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

.flow-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #fff5e6;
    border-left: 4px solid #ff9b54;
    padding: 12px 20px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 14px;
    color: #ff6b35;
    font-weight: 600;
}

.flow-note.success {
    background-color: #e8f5e9;
    border-left-color: #28a745;
    color: #28a745;
}

.flow-documents {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}

.flow-documents h4 {
    font-size: 16px;
    font-weight: 700;
    color: #215F9A;
    margin-bottom: 15px;
}

.flow-documents ul {
    list-style: disc;
    padding-left: 25px;
}

.flow-documents li {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

/* ========================================
   補助金申請サポートセクション
======================================== */
.support {
    background-color: #fff;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.support-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.support-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #215F9A, #2e7ec4);
    color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 25px;
}

.support-title {
    font-size: 22px;
    font-weight: 700;
    color: #215F9A;
    margin-bottom: 30px;
}

.support-price {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.price-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.price-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.price-value {
    font-size: 28px;
    font-weight: 900;
    color: #ff6b35;
    margin-bottom: 10px;
}

.price-note {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
}

.support-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.support-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #666;
}

.support-list i {
    color: #28a745;
    font-size: 20px;
    margin-top: 3px;
    flex-shrink: 0;
}

.support-cases {
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 20px;
}

.support-cases-title {
    font-size: 24px;
    font-weight: 700;
    color: #215F9A;
    text-align: center;
    margin-bottom: 40px;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.case-item {
    background-color: #fff;
    border-left: 4px solid #ff3b3b;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    gap: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.case-item i {
    color: #ff3b3b;
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 3px;
}

.case-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.cases-note {
    background-color: #fff5e6;
    border-left: 4px solid #ff9b54;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/* ========================================
   お客様の声セクション
======================================== */
.testimonials {
    background: linear-gradient(135deg, #215F9A 0%, #2e7ec4 100%);
    color: #fff;
}

.testimonials .section-title {
    color: #fff;
}

.testimonials .section-title .highlight-text {
    color: #ffd700;
}

.testimonials-image {
    max-width: 600px;
    margin: 0 auto 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonials-image img {
    width: 100%;
    height: auto;
    display: block;
}

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

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-content {
    padding: 30px;
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #ffd700;
    font-size: 18px;
}

.testimonial-text {
    font-size: 15px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 25px;
}

.testimonial-author {
    border-top: 2px solid #e0e0e0;
    padding-top: 20px;
}

.author-name {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

/* ========================================
   FAQセクション
======================================== */
.faq {
    background-color: #f8f9fa;
}

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

.faq-item {
    background-color: #fff;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-q {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #215F9A, #2e7ec4);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-question h3 {
    flex: 1;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.faq-question i {
    color: #215F9A;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer {
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px 30px;
}

.faq-a {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b35, #ff9b54);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 20px;
}

.faq-answer-text {
    margin-left: 60px;
}

.faq-answer-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.faq-answer-text ul {
    list-style: disc;
    padding-left: 25px;
    margin: 15px 0;
}

.faq-answer-text li {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 8px;
}

.faq-answer-text strong {
    color: #215F9A;
    font-weight: 700;
}

/* ========================================
   最終CTAセクション
======================================== */
.final-cta {
    background: linear-gradient(135deg, #215F9A 0%, #2e7ec4 100%);
    color: #fff;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,154.7C384,149,480,107,576,112C672,117,768,171,864,192C960,213,1056,203,1152,181.3C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.final-cta-content {
    position: relative;
    z-index: 1;
}

.final-cta-title {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.5;
}

.final-cta-text {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0.95;
}

.final-cta-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.final-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
}

.final-benefit i {
    color: #ffd700;
    font-size: 24px;
}

.final-cta-note {
    margin-top: 25px;
    font-size: 16px;
    opacity: 0.95;
    font-weight: 600;
}

/* ========================================
   フッター
======================================== */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #fff;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ff6b35;
}

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

.footer-copyright p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   トップに戻るボタン
======================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #215F9A, #2e7ec4);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(33, 95, 154, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(33, 95, 154, 0.4);
}

.scroll-top.show {
    display: flex;
}

/* ========================================
   レスポンシブ対応
======================================== */
.pc-only {
    display: inline;
}

.sp-only {
    display: none;
}

/* タブレット（1024px以下） */
@media (max-width: 1024px) {
    .hero .container {
        flex-direction: column;
        gap: 40px;
    }

    .hero-points {
        grid-template-columns: 1fr;
    }

    .benefits-grid,
    .reasons-grid,
    .problems-grid,
    .support-grid,
    .cases-grid {
        grid-template-columns: 1fr;
    }

    .reason-card {
        grid-template-columns: 1fr !important;
    }

    .reason-card:nth-child(even) .reason-image {
        order: 1;
    }

    .reason-card:nth-child(even) .reason-content {
        order: 2;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }


}

/* スマートフォン（768px以下） */
@media (max-width: 768px) {
    .pc-only {
        display: none;
    }

    .sp-only {
        display: inline;
    }

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

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

    .logo img {
        height: 30px;
    }

    .cta-button {
        font-size: 12px;
        padding: 10px 20px;
    }

    .cta-button-large {
        font-size: 16px;
        padding: 15px 30px;
        width: 100%;
        justify-content: center;
    }

    /* セクション */
    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .section-intro {
        font-size: 14px;
        margin-bottom: 40px;
    }

    /* ヒーロー */
    .hero {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-title .highlight {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .point-item {
        padding: 20px 15px;
    }

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

    .point-label {
        font-size: 13px;
    }

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

    /* 経営者の悩み */
    .problem-image {
        height: 150px;
    }

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

    .problem-title {
        font-size: 18px;
    }

    .solution-box {
        padding: 30px 25px;
    }

    .solution-title {
        font-size: 22px;
    }

    .solution-text {
        font-size: 16px;
    }

    /* メリット */
    .benefit-card {
        padding: 30px 25px;
    }

    .benefit-number {
        font-size: 36px;
        top: 15px;
        right: 20px;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .benefit-title {
        font-size: 20px;
    }

    /* 13次公募 */
    .application-box {
        padding: 30px 20px;
    }

    .application-title {
        font-size: 28px;
    }

    .application-schedule {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }

    .schedule-item {
        min-width: 150px;
    }

    .schedule-arrow {
        flex-shrink: 0;
    }

    .application-advice {
        flex-direction: column;
        padding: 25px 20px;
    }

    /* 選ばれる理由 */
    .reason-card {
        padding: 30px 20px;
    }

    .reason-title {
        font-size: 20px;
    }

    .stat-value {
        font-size: 28px;
    }

    .process-step {
        padding: 12px 15px;
        font-size: 14px;
        min-width: 100px;
    }

    .process-row {
        gap: 10px;
    }

    .process-row i {
        font-size: 16px;
    }

    /* M&Aの流れ */
    .flow-item {
        grid-template-columns: 80px 1fr;
        gap: 20px;
    }

    .flow-step {
        width: 80px;
        height: 80px;
        font-size: 12px;
    }

    .flow-item:not(:last-child)::after {
        left: 40px;
        top: 80px;
    }

    .flow-content {
        padding: 20px;
    }

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

    /* サポート */
    .support-card {
        padding: 30px 20px;
    }

    .support-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

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

    .support-cases {
        padding: 30px 20px;
    }

    /* お客様の声 */
    .testimonial-content {
        padding: 20px;
    }

    /* FAQ */
    .faq-question {
        padding: 20px;
        gap: 15px;
    }

    .faq-q {
        width: 35px;
        height: 35px;
    }

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

    .faq-answer-text {
        margin-left: 0;
    }

    /* 最終CTA */
    .final-cta {
        padding: 60px 0;
    }

    .final-cta-title {
        font-size: 28px;
    }

    .final-cta-text {
        font-size: 16px;
    }

    .final-cta-benefits {
        flex-direction: column;
        gap: 20px;
    }

    .final-benefit {
        font-size: 16px;
    }

    /* フッター */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    /* トップに戻るボタン */
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}