/* flow.css - 最新デザイン反映版 */

.flow-page-main {
    background-color: #fff;
}

/* ページヘッダー */
.flow-header-section {
    padding: 60px 0 40px;
    text-align: center;
}
.flow-main-title {
    background-color: #BC221C; /* 深い赤色 */
    color: #fff;
    padding: 15px 0;
    font-size: 1.8rem;
    margin-bottom: 60px;
}
.flow-sub-title {
    color: #BC221C;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.flow-intro-text {
    display: inline-block; 
    text-align: left;      
    max-width: 800px;   
    margin: 0 auto;     
    font-size: 0.95rem;
    line-height: 1.8;
    color: #333;
}

/* タイムライン・ステップカード */
.flow-steps-section {
    padding-bottom: 100px;
}
.flow-timeline {
    max-width: 750px;
    margin: 0 auto;
}

.flow-card {
    border: 1px solid #BC221C;
    padding: 35px 40px;
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

/* ステップ間の三角矢印 */
.flow-card:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    border-top: 15px solid #BC221C;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
}

.step-label {
    display: block;
    font-size: 0.85rem;
    color: #DAA520; /* ゴールド/マスタード系 */
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}
.step-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #BC221C;
    margin-bottom: 20px;
}
.step-desc, .step-item-text {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #333;
    text-align: left;
}
.step-desc .note {
    font-size: 0.8rem;
    color: #888;
    display: block;
    margin-top: 10px;
}

/* 当日のチェックリスト */
.step-checklist {
    list-style: none;
    padding: 0;
    text-align: left;
}
.step-checklist li {
    font-size: 0.9rem;
    line-height: 1.8;
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
}
.step-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #DAA520;
    font-weight: 700;
}

/* ==========================================
   CTAセクション (スクリーンショット 3.35.15.png 準拠)
   ========================================== */
.page-cta-section {
    padding: 100px 0;
    background-color: #1a1a1a; /* ダーク背景 */
    text-align: center;
    color: #fff;
}
.page-cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}
.page-cta-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 2;
    margin-bottom: 45px;
}
.page-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* プライマリボタン (赤色) */
.btn-cta-primary {
    display: inline-block;
    padding: 18px 50px;
    background-color: #BC221C;
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.btn-cta-primary:hover {
    background-color: #fff;
    color: #BC221C;
}

/* セカンダリボタン (枠線) */
.btn-cta-secondary {
    display: inline-block;
    padding: 18px 50px;
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.btn-cta-secondary:hover {
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

/* モバイル対応 */
@media (max-width: 768px) {
    .flow-main-title { font-size: 1.4rem; }
    .flow-sub-title { font-size: 1.3rem; }
    .flow-card { padding: 25px 20px; }
    .page-cta-title { font-size: 1.4rem; padding: 0 15px; }
    .page-cta-buttons { flex-direction: column; align-items: center; }
    .btn-cta-primary, .btn-cta-secondary { width: 85%; padding: 16px 0; }
}