/* ========================================
   Reset and Base Styles
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic UI", Meiryo, sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #fff;
}

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

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

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

.sp-only {
    display: none;
}

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

/* ========================================
   Color Utilities
======================================== */
.red {
    color: #a6211c;
}

.white {
    color: white !important;
}

.underline {
    text-decoration: underline;
    text-decoration-color: white;
    text-underline-offset: 8px;
    text-decoration-thickness: 2px;
}

/* ========================================
   Image Placeholder
======================================== */
.image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-weight: 600;
    text-align: center;
    padding: 20px;
    line-height: 1.6;
}

/* ========================================
   Header
======================================== */
.site-header {
    background: white;
    border-bottom: 1px solid #eee;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.1rem;
    font-weight: 800;
    color: #a6211c;
    letter-spacing: -0.02em;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #a6211c;
}

.header-cta {
    background: #a6211c;
    color: white;
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.header-cta:hover {
    background: #8a1b17;
}

@media (max-width: 768px) {
    .site-header {
        padding: 14px 0;
    }

    .logo {
        font-size: 1rem;
    }

    .main-nav {
        display: none;
    }

    .header-cta {
        font-size: 1.1rem;
        padding: 8px 16px;
    }
}

/* ========================================
   Hero Section - RED BACKGROUND
======================================== */
.hero {
    background: linear-gradient(135deg, #a6211c 0%, #8a1b17 100%);
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* 背景装飾 */
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -250px;
    left: -250px;
    width: 700px;
    height: 700px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-label {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 28px;
    opacity: 0.9;
    text-transform: uppercase;
    border-left: 4px solid white;
    padding-left: 16px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    font-family: "Shippori Mincho", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-title-small {
    font-size: 40px;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.8rem;
    line-height: 1.9;
    margin-bottom: 48px;
    opacity: 0.9;
    font-weight: 400;
}

.hero-image .image-placeholder {
    height: 500px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border: 3px solid rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0 80px;
        min-height: auto;
    }

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

    .hero-label {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 2.4rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .hero-title-small {
        font-size: 1.3rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 28px;
        line-height: 1.7;
    }

    .hero-image .image-placeholder {
        height: 280px;
    }

    .hero-image img {
        height: 280px;
        object-fit: cover;
        border-radius: 8px;
    }
}

/* ========================================
   CTA Button
======================================== */
.cta-button {
    display: inline-block;
    background: white;
    color: #a6211c;
    padding: 22px 60px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.3rem;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    letter-spacing: 0.05em;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.cta-button.large {
    padding: 26px 70px;
    font-size: 1.4rem;
}

/* In red sections */
.solution .cta-button,
.pricing .cta-button,
.cta .cta-button {
    background: white;
    color: #a6211c;
}

@media (max-width: 768px) {
    .cta-button {
        padding: 18px 40px;
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
        display: block;
    }

    .cta-button.large {
        padding: 20px 40px;
        font-size: 1.2rem;
    }
}

/* ========================================
   Stats Section - WHITE
======================================== */
.stats {
    padding: 60px 0;
    background: white;
    border-bottom: 1px solid #eee;
}

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

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: #a6211c;
    line-height: 1;
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.stat-number span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: #666;
}

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

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .stat-number {
        font-size: 3.5rem;
    }
}

/* ========================================
   Section Title
======================================== */
.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.75;
    /* 全見出しを明朝体に統一 */
    font-family: "Shippori Mincho", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

/* 明朝体クラス（不要であれば削除可だが、念のため残す場合はこちら） */
.mincho {
    font-family: "Shippori Mincho", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
        line-height: 1.6;
    }
}

/* ========================================
   Problem Section - WHITE with BORDERS
======================================== */
.problem {
    padding: 120px 0;
    background: white;
}

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

.problem-box {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: white;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.problem-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: #a6211c;
}

.problem-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
}

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

.problem-content {
    padding: 30px;
    position: relative;
}

.problem-number {
    display: inline-block;
    background: #a6211c;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.problem-box h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #333;
    line-height: 1.5;
    text-align: left;
}

.problem-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

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

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .problem-image {
        height: 160px;
    }

    .problem-content {
        padding: 20px;
    }

    .problem-number {
        font-size: 0.7rem;
        padding: 3px 10px;
    }

    .problem-box h3 {
        font-size: 1.15rem;
        margin-bottom: 12px;
    }

    .problem-box p {
        font-size: 1rem;
    }
}

/* ========================================
   Solution Section - RED BACKGROUND
======================================== */
.solution {
    background: linear-gradient(135deg, #a6211c 0%, #8a1b17 100%);
    color: white;
    padding: 100px 0;
}

.solution .section-title {
    color: white;
}

/* 明朝体クラス */
.mincho {
    font-family: "Shippori Mincho", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    line-height: 1.5;
}

/* サービス名強調 */
.service-name {
    font-size: 4rem; /* 2.8remからアップ */
    margin-bottom: 10px;
    border-bottom: solid 1px #fff;
    display: inline-block;
    padding-bottom: 0;
    margin-right: 8px;
    margin-bottom: 8px; 
    line-height: 1.2    ; 
}

/* 数字「3」の強調 */
.reason-number {
    font-size: 5rem;
    font-weight: 900;
    color: #fff; /* 既に白文字エリアなので白のまま */
    line-height: 1;
    padding: 0 10px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.2);
    vertical-align: middle;
    position: relative;
    top: -5px;
}

.point-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    background: rgba(255,255,255,0.08);
    padding: 40px;
    border-radius: 8px;
}

.point-row.reverse {
    direction: rtl;
}

.point-row.reverse > * {
    direction: ltr;
}

.point-image .image-placeholder {
    border-radius: 8px;
}

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    padding-bottom: 177.77%; /* 9:16 Aspect Ratio (Shorts) */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .video-container {
        max-width: 280px;
    }
}

/* Middle CTA */
.middle-cta {
    background: linear-gradient(135deg, #a6211c 0%, #8a1b17 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.point-badge {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #a6211c;
    padding: 12px 36px 12px 24px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.3rem;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border: none;
    letter-spacing: 0.05em;
}

/* チェックマークアイコン */
.point-badge::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a6211c' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    top: 1px;
}

.point-content h3 {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.4;
    font-family: "Shippori Mincho", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

.point-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 24px;
    opacity: 0.95;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding-left: 40px;
    position: relative;
    margin-bottom: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.6;
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 28px;
    height: 28px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='white'/%3E%3Cpolyline points='17 8 9.5 16 6 12' fill='none' stroke='%23a6211c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

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

    .service-name {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .reason-number {
        font-size: 3rem;
    }

    .point-row {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px 20px;
        margin-bottom: 32px;
    }

    .point-badge {
        font-size: 1.1rem;
        padding: 10px 28px 10px 20px;
    }

    .point-content h3 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .point-content p {
        font-size: 1.05rem;
        margin-bottom: 20px;
    }

    .check-list li {
        font-size: 1rem;
        padding-left: 36px;
    }

    .check-list li::before {
        width: 24px;
        height: 24px;
    }

 
}

/* ========================================
   Story Section - WHITE
======================================== */
.story {
    padding: 100px 0;
    background: white;
}

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

.story-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 24px;
    color: #555;
}

.story-text p.large {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.story-text strong {
    font-weight: 800;
    color: #a6211c;
}

.story-image .image-placeholder {
    height: 380px;
    border-radius: 8px;
}

.story-image .video-container {
    position: relative;
    width: 100%;
    padding-bottom: 177.77%; /* 9:16 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.story-image .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

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

    .story-image .image-placeholder {
        height: 260px;
    }
}

/* ========================================
   Flow Section - Timeline Style
======================================== */
.flow {
    padding: 100px 0;
    background: #f5f5f5;
}

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

.flow-step-item {
    display: flex;
    gap: 50px; /* 間隔拡大 */
    margin-bottom: 20px; /* 下余白追加 */
    position: relative;
}

.flow-step-item:last-child .step-line {
    display: none; /* 最後の線は消す */
}

/* 左側のマーカーエリア */
.flow-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px; /* 幅拡大 */
}

.step-badge {
    background: #a6211c;
    color: white;
    font-weight: 900;
    padding: 15px 0;
    width: 100px;
    text-align: center;
    border-radius: 12px; /* 丸から角丸四角へ変更して力強く */
    font-size: 1.2rem;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(166, 33, 28, 0.4);
    border: 4px solid #fff; /* 白枠追加 */
}

.step-line {
    width: 6px; /* 線を太く */
    background: #e0e0e0;
    flex-grow: 1;
    margin-top: -5px; /* バッジに食い込ませる */
    margin-bottom: -5px;
    min-height: 120px;
}

/* 右側のコンテンツエリア */
.flow-content {
    background: white;
    padding: 40px 50px; /* パディング拡大 */
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08); /* 影を強く */
    flex: 1;
    margin-bottom: 60px;
    position: relative;
    border: 1px solid #eee;
    transition: transform 0.3s;
}

.flow-content:hover {
    transform: translateY(-5px);
}

/* 吹き出しの三角 */
.flow-content::before {
    content: '';
    position: absolute;
    top: 25px;
    left: -12px;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 12px solid white;
}

.flow-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #f5f5f5;
    padding-bottom: 20px;
}

.flow-header h3 {
    font-size: 2rem; /* 見出し拡大 */
    font-weight: 900;
    color: #333;
    font-family: "Shippori Mincho", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

.flow-time {
    color: #a6211c;
    font-weight: 800;
    font-size: 1.3rem; /* 時間表示拡大 */
    background: #fff5f5;
    padding: 8px 20px;
    border-radius: 6px;
}

.flow-content p {
    font-size: 1.1rem; /* 本文拡大 */
    color: #555;
    line-height: 2;
}

@media (max-width: 768px) {
    .flow-step-item {
        gap: 20px;
    }

    .flow-marker {
        min-width: 80px;
    }

    .step-badge {
        width: 80px;
        font-size: 1.1rem;
        padding: 10px 0;
    }

    .flow-content {
        padding: 24px;
        margin-bottom: 40px;
    }
    
    .flow-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .flow-header h3 {
        font-size: 1.5rem;
    }

    .flow-time {
        font-size: 1.1rem;
    }
}

/* ========================================
   Testimonials Section - WHITE
======================================== */
.testimonials {
    padding: 120px 0;
    background: white;
}

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

.testimonial-box {
    background: white;
    border: 3px solid #ddd;
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 40px;
    color: #333;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.testimonial-author {
    border-top: 3px solid #a6211c;
    padding-top: 24px;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #a6211c;
    margin-bottom: 8px;
}

.author-age {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
}

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

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

    .testimonial-box {
        padding: 40px 30px;
    }

    .testimonial-box::before {
        font-size: 4rem;
        top: 15px;
        left: 20px;
    }
}

/* ========================================
   Pricing Section - RED
======================================== */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, #a6211c 0%, #8a1b17 100%);
    color: white;
}

.pricing-box {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-main {
    background: #fff;
    padding: 40px;
    text-align: center;
    border-bottom: 2px solid #f0f0f0;
}

.pricing-main h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.price-large {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    color: #a6211c;
    margin-bottom: 12px;
}

.currency {
    font-size: 2rem;
    font-weight: 700;
}

.amount {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
}

.unit {
    font-size: 1.2rem;
    font-weight: 600;
    color: #666;
}

.price-note {
    font-size: 1rem;
    color: #999;
}

.pricing-includes {
    padding: 40px;
    background: white;
}

.pricing-includes h4 {
    font-size: 1.3rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    display: inline-block;
    border-bottom: 2px solid #a6211c;
    padding-bottom: 8px;
    font-family: "Shippori Mincho", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

.pricing-includes-header {
    text-align: center;
}

.pricing-includes ul {
    list-style: none;
    margin-bottom: 40px;
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    background: #fffbfb;
    padding: 30px 40px;
    border-radius: 12px;
    border: 2px solid #f0e6e6;
}

.pricing-includes li {
    padding: 16px 0;
    padding-left: 40px;
    position: relative;
    font-size: 1.15rem;
    color: #333;
    border-bottom: 2px dashed #ddd;
    font-weight: 700;
    text-align: left;
    line-height: 1.6;
}

.pricing-includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='white'/%3E%3Cpolyline points='17 8 9.5 16 6 12' fill='none' stroke='%23a6211c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

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

.time {
    display: inline-block;
    background: #a6211c;
    color: white;
    padding: 4px 14px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    margin-right: 12px;
    vertical-align: middle;
    font-family: "Shippori Mincho", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

.pricing-footnote {
    font-size: 1rem;
    color: #999;
    line-height: 1.6;
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

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

    .pricing-main {
        padding: 32px 24px;
    }

    .pricing-main h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .amount {
        font-size: 3.5rem;
    }

    .currency {
        font-size: 1.6rem;
    }

    .pricing-includes {
        padding: 32px 24px;
    }

    .pricing-includes h4 {
        font-size: 1.2rem;
        margin-bottom: 24px;
    }

    .pricing-includes ul {
        padding: 24px 28px;
        margin-bottom: 32px;
    }

    .pricing-includes li {
        font-size: 1.05rem;
        padding: 14px 0;
        padding-left: 36px;
    }

    .time {
        font-size: 0.95rem;
        padding: 3px 10px;
        margin-right: 8px;
    }
}

/* ========================================
   FAQ Section - WHITE
======================================== */
.faq {
    padding: 100px 0;
    background: white;
}

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

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 2px solid #f0f0f0;
}

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

.faq-q,
.faq-a {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.q-mark,
.a-mark {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #a6211c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.a-mark {
    background: #666;
}

.faq-q h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #333;
    line-height: 1.5;
    padding-top: 4px;
}

.faq-a {
    margin-top: 12px;
}

.faq-a p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: #666;
    padding-top: 4px;
}

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

/* ========================================
   CTA Section - RED
======================================== */
.cta {
    padding: 140px 0;
    background: linear-gradient(135deg, #a6211c 0%, #8a1b17 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* 背景の装飾 */
.cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
}

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

.cta-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 40px;
    line-height: 1.3;
    font-family: "Shippori Mincho", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    letter-spacing: 0.05em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.cta-text {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 50px;
    opacity: 0.9;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

    .cta-title {
        font-size: 2rem;
        margin-bottom: 24px;
        line-height: 1.4;
    }

    .cta-text {
        font-size: 1.05rem;
        margin-bottom: 40px;
    }
}

/* ========================================
   Footer
======================================== */
.footer {
    background: #2a2a2a;
    color: white;
    text-align: center;
    padding: 40px 0 32px;
}

.footer-nav {
    margin-bottom: 30px;
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-nav a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-text {
    font-size: 0.85rem;
    opacity: 0.5;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: inline-block;
    width: 100%;
}

@media (max-width: 768px) {
    .footer-nav ul {
        flex-direction: column;
        gap: 16px;
    }
}
