/* ========================================
   /flow/ ページ専用スタイル
   LINE相談ハードル低減リデザイン版
   Imperial Hotel aesthetic
   navy: #1A2A4A / beige: #F5F0E8 / gold: #C9A96E
   line green: #06C755
   ======================================== */

.abc-flow {
    color: #1A2A4A;
    line-height: 1.7;
    font-feature-settings: "palt";
}

.abc-flow .abc-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
}

.abc-flow .pc-only {
    display: inline;
}

.abc-flow .sp-only {
    display: none;
}

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

/* ----------------------------------------
   セクション共通
   ---------------------------------------- */
.abc-flow .abc-sec {
    padding: 80px 0;
}

.abc-flow .abc-sec h2 {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin: 0 0 48px;
    color: #1A2A4A;
    letter-spacing: 0.05em;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .abc-flow .abc-sec {
        padding: 56px 0;
    }
    .abc-flow .abc-sec h2 {
        font-size: 22px;
        margin: 0 0 32px;
    }
}

/* ----------------------------------------
   セクション1: ファーストビュー
   ---------------------------------------- */
.abc-flow .abc-sec--hero {
    background: #F5F0E8;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
}

.abc-flow .hero-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 600;
    margin: 0 0 24px;
    color: #1A2A4A;
    letter-spacing: 0.08em;
    line-height: 1.5;
}

.abc-flow .hero-lead {
    font-size: 17px;
    margin: 0 0 48px;
    color: #1A2A4A;
    line-height: 1.9;
}

@media (max-width: 768px) {
    .abc-flow .abc-sec--hero {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .abc-flow .hero-lead {
        font-size: 15px;
        margin: 0 0 36px;
    }
}

/* メインCTAボタン（LINEで相談する） */
.abc-flow .abc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 56px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 0.08em;
}

.abc-flow .abc-btn--line-primary {
    background: #1A2A4A;
    color: #fff;
    border: 2px solid #C9A96E;
    min-width: 280px;
}

.abc-flow .abc-btn--line-primary:hover {
    background: #2a3a5a;
    transform: translateY(-2px);
}

.abc-flow .abc-btn__line-icon {
    width: 24px;
    height: 24px;
    color: #06C755;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .abc-flow .abc-btn {
        padding: 16px 40px;
        font-size: 16px;
    }
    .abc-flow .abc-btn--line-primary {
        min-width: 240px;
    }
}

/* ボタングループ（2ボタン横並び） */
.abc-flow .abc-btn-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* セカンダリボタン（LINEで相談する） */
.abc-flow .abc-btn--line-secondary {
    background: #fff;
    color: #1A2A4A;
    border: 2px solid #C9A96E;
    min-width: 240px;
}

.abc-flow .abc-btn--line-secondary:hover {
    background: #F5F0E8;
    transform: translateY(-2px);
}

.abc-flow .abc-btn--line-secondary .abc-btn__line-icon {
    color: #06C755;
}

/* CTA内のセカンダリボタン色調整 */
.abc-flow .abc-sec--cta .abc-btn--line-secondary {
    background: transparent;
    color: #fff;
    border-color: #C9A96E;
}

.abc-flow .abc-sec--cta .abc-btn--line-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .abc-flow .abc-btn-group {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

/* ----------------------------------------
   セクション3: タイムライン
   ---------------------------------------- */
.abc-flow .abc-sec--timeline {
    background: #F5F0E8;
}

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

.abc-flow .abc-timeline::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 24px;
    bottom: 24px;
    width: 1px;
    background: #C9A96E;
}

.abc-flow .abc-timeline__item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    position: relative;
}

.abc-flow .abc-timeline__item:last-child {
    margin-bottom: 0;
}

.abc-flow .abc-timeline__marker {
    width: 64px;
    height: 64px;
    background: #1A2A4A;
    border: 2px solid #C9A96E;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    z-index: 1;
}

.abc-flow .abc-timeline__label {
    font-size: 9px;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.abc-flow .abc-timeline__number {
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
}

.abc-flow .abc-timeline__content {
    flex: 1;
    background: #fff;
    border: 1px solid rgba(201, 169, 110, 0.4);
    border-radius: 8px;
    padding: 24px 28px;
}

.abc-flow .abc-timeline__content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1A2A4A;
    margin: 0 0 12px;
}

.abc-flow .abc-timeline__content p {
    font-size: 14px;
    color: #1A2A4A;
    margin: 0;
    line-height: 1.8;
}

/* STEP 2 の選択肢 */
.abc-flow .abc-timeline__options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.abc-flow .abc-timeline__option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F5F0E8;
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 6px;
    padding: 16px 20px;
    text-decoration: none;
    color: #1A2A4A;
    transition: all 0.3s ease;
}

.abc-flow .abc-timeline__option:hover {
    border-color: #C9A96E;
    background: #efe8db;
    transform: translateY(-1px);
}

.abc-flow .abc-timeline__option-icon {
    width: 20px;
    height: 20px;
    color: #06C755;
    flex-shrink: 0;
}

.abc-flow .abc-timeline__option-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #1A2A4A;
    margin: 0 0 4px;
}

.abc-flow .abc-timeline__option-desc {
    display: block;
    font-size: 13px;
    color: #1A2A4A;
    opacity: 0.8;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .abc-flow .abc-timeline::before {
        left: 24px;
    }
    .abc-flow .abc-timeline__item {
        gap: 16px;
        margin-bottom: 24px;
    }
    .abc-flow .abc-timeline__marker {
        width: 48px;
        height: 48px;
    }
    .abc-flow .abc-timeline__label {
        font-size: 8px;
    }
    .abc-flow .abc-timeline__number {
        font-size: 16px;
    }
    .abc-flow .abc-timeline__content {
        padding: 20px;
    }
    .abc-flow .abc-timeline__content h3 {
        font-size: 16px;
    }
    .abc-flow .abc-timeline__option {
        padding: 14px 16px;
    }
    .abc-flow .abc-timeline__option-label {
        font-size: 14px;
    }
}

/* ----------------------------------------
   セクション4: FAQ
   ---------------------------------------- */
.abc-flow .abc-sec--faq {
    background: #fff;
}

.abc-flow .abc-faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.abc-flow .abc-faq-item {
    border-bottom: 1px solid rgba(201, 169, 110, 0.3);
    padding: 28px 0;
}

.abc-flow .abc-faq-item:first-child {
    border-top: 1px solid rgba(201, 169, 110, 0.3);
}

.abc-flow .abc-faq-item__q {
    font-size: 17px;
    font-weight: 600;
    color: #1A2A4A;
    margin: 0 0 16px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    line-height: 1.6;
}

.abc-flow .abc-faq-item__icon {
    background: #C9A96E;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

.abc-flow .abc-faq-item__a {
    font-size: 14px;
    color: #1A2A4A;
    margin: 0 0 0 48px;
    line-height: 1.9;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .abc-flow .abc-faq-item__q {
        font-size: 15px;
        gap: 12px;
    }
    .abc-flow .abc-faq-item__icon {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
    .abc-flow .abc-faq-item__a {
        margin-left: 40px;
        font-size: 13px;
    }
}

/* ----------------------------------------
   セクション5: 最終CTA
   ---------------------------------------- */
.abc-flow .abc-sec--cta {
    background: #1A2A4A;
    color: #fff;
    text-align: center;
}

.abc-flow .abc-sec--cta h2 {
    color: #fff;
    margin-bottom: 24px;
}

.abc-flow .abc-sec--cta p {
    font-size: 16px;
    color: #fff;
    margin: 0 0 40px;
    line-height: 1.9;
    opacity: 0.95;
}

.abc-flow .abc-sec--cta .abc-btn--line-primary {
    background: #fff;
    color: #1A2A4A;
    border-color: #C9A96E;
}

.abc-flow .abc-sec--cta .abc-btn--line-primary:hover {
    background: #F5F0E8;
}

@media (max-width: 768px) {
    .abc-flow .abc-sec--cta p {
        font-size: 14px;
        margin-bottom: 32px;
    }
}

/* ----------------------------------------
   注意事項
   ---------------------------------------- */
.abc-flow .abc-disclaimer {
    background: #F5F0E8;
    padding: 32px 0;
    border-top: 1px solid rgba(201, 169, 110, 0.3);
}

.abc-flow .abc-disclaimer p {
    font-size: 12px;
    color: #1A2A4A;
    line-height: 1.8;
    margin: 0;
    opacity: 0.8;
}

.abc-flow .abc-disclaimer strong {
    font-weight: 600;
}

.abc-flow__phone-notice {
    max-width: 480px;
    margin: 32px auto 0;
}

@media (max-width: 768px) {
    .abc-flow__phone-notice {
        max-width: 100%;
        margin: 32px 0 0;
    }
}
