/*
--------------------------------------------
テキスト化セクション用CSS
--------------------------------------------
*/

/* ========================================
   共通テキストスタイル
======================================== */
.text-section {
    text-align: center;
    padding: 40px 20px;
}

.text-main {
    font-size: clamp(24px, 5.5vw, 36px);
    font-weight: 700;
    color: #1a5c6b;
    line-height: 1.5;
    margin: 24px 0;
    text-align: center;
}

.text-sub {
    font-size: clamp(14px, 3.5vw, 18px);
    font-weight: 400;
    color: #333;
    line-height: 1.9;
    margin: 16px 0;
    text-align: center;
}

.text-sub-small {
    font-size: clamp(12px, 3vw, 15px);
    font-weight: 400;
    color: #555;
    line-height: 1.8;
    margin: 12px 0;
    text-align: center;
}

.text-accent {
    font-size: clamp(14px, 3.5vw, 16px);
    font-weight: 500;
    color: #1a5c6b;
    margin: 20px 0;
    text-align: center;
}

.text-title {
    text-align: center;
}

.text-quote {
    text-align: center;
}

/* ========================================
   FV セクション（fv_text01）
======================================== */
.fv_text01_text {
    padding: 20px 15px 0;
    position: relative;
    z-index: 3;
    text-align: center;
}

.fv_text01_text .text-main {
    font-size: clamp(28px, 6.5vw, 42px);
    margin-bottom: 16px;
    text-align: center;
}

.fv_text01_text .text-sub {
    font-size: clamp(13px, 3.2vw, 16px);
    text-align: center;
}

/* ========================================
   はじめに セクション（guide_text）
======================================== */
.guide_text_text {
    padding: 40px 20px;
}

.guide_text_text .text-main {
    font-size: clamp(22px, 5vw, 32px);
}

.guide_text_text .text-quote {
    font-size: clamp(14px, 3.5vw, 16px);
    color: #1a5c6b;
    margin: 24px 0;
}

/* ========================================
   想い セクション（mind_text）
======================================== */
.mind_text_text {
    background: #fff;
    border-radius: 16px;
    padding: 40px 24px;
    margin: 0 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.mind_text_text .text-title {
    font-size: clamp(18px, 4vw, 22px);
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
}

.mind_text_text .text-main {
    font-size: clamp(20px, 4.5vw, 28px);
    margin: 28px 0;
}

/* ========================================
   CTA セクション（footer_text）
======================================== */
.footer_text_text {
    padding: 40px 20px 24px;
}

.footer_text_text .text-main {
    font-size: clamp(20px, 4.8vw, 28px);
    color: #1a5c6b;
}

.footer_text_text .text-sub {
    font-size: clamp(13px, 3.2vw, 15px);
    color: #444;
}

/* ========================================
   ブラックリスト セクション
======================================== */
.blacklist_section {
    background: #fff;
    padding: 50px 20px;
}

.blacklist_text {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.blacklist_text .text-main {
    font-size: clamp(20px, 5vw, 28px);
    color: #1a5c6b;
    margin-bottom: 20px;
}

.blacklist_text .text-sub {
    font-size: clamp(13px, 3.2vw, 15px);
    color: #555;
    line-height: 2;
}

/* ========================================
   よくある不安 セクション
======================================== */
.faq_section {
    background: #f5f9fa;
    padding: 50px 20px;
}

.faq_text {
    max-width: 500px;
    margin: 0 auto;
}

.faq_text .text-title {
    font-size: clamp(18px, 4.5vw, 24px);
    font-weight: 700;
    color: #1a5c6b;
    text-align: center;
    margin-bottom: 28px;
}

.faq_list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.faq_list li {
    background: #fff;
    padding: 16px 20px;
    margin-bottom: 12px;
    border-radius: 10px;
    font-size: clamp(13px, 3.2vw, 15px);
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.faq_list li .check {
    color: #27ae60;
    font-weight: 700;
    margin-right: 8px;
}

.faq_text .text-closing {
    font-size: clamp(12px, 3vw, 14px);
    color: #666;
    text-align: center;
    line-height: 1.9;
}

/* ========================================
   手続きの流れ セクション
======================================== */
.flow_section {
    background: #fff;
    padding: 50px 20px;
}

.flow_text {
    max-width: 400px;
    margin: 0 auto;
}

.flow_text .text-title {
    font-size: clamp(18px, 4.5vw, 24px);
    font-weight: 700;
    color: #1a5c6b;
    text-align: center;
    margin-bottom: 32px;
}

.flow_steps {
    position: relative;
}

.flow_step {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.flow_step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 44px;
    width: 2px;
    height: calc(100% - 4px);
    background: #ddd;
}

.flow_num {
    width: 40px;
    height: 40px;
    background: #1a5c6b;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.flow_content {
    margin-left: 16px;
    font-size: clamp(13px, 3.2vw, 15px);
    color: #333;
}

.flow_content .highlight {
    color: #e74c3c;
    font-weight: 700;
}

/* ========================================
   予備セクション（custom_section）
======================================== */
.custom_section {
    background: #fff;
    padding: 50px 20px;
}

.custom_text {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.custom_text .text-title {
    font-size: clamp(18px, 4.5vw, 24px);
    font-weight: 700;
    color: #1a5c6b;
    margin-bottom: 20px;
}

.custom_text .text-main {
    font-size: clamp(20px, 5vw, 28px);
    color: #1a5c6b;
    margin-bottom: 16px;
}

.custom_text .text-sub {
    font-size: clamp(13px, 3.2vw, 15px);
    color: #555;
    line-height: 1.9;
}

/* ========================================
   PC表示（751px以上）
======================================== */
@media screen and (min-width: 751px) {
    .text-section {
        padding: 60px 40px;
    }
    
    .fv_text01_text {
        padding: 30px 40px 0;
    }
    
    .fv_text01_text .text-main {
        font-size: 38px;
    }
    
    .fv_text01_text .text-sub {
        font-size: 16px;
    }
    
    .guide_text_text {
        padding: 60px 40px;
    }
    
    .mind_text_text {
        padding: 50px 40px;
        margin: 0 40px;
    }
    
    .footer_text_text {
        padding: 50px 40px 30px;
    }
}
