@charset "utf-8";

/* =========================================
   共通: セクションタイトル
   ========================================= */
.section-title-area {
    margin-bottom: 50px;
}
.text-right {
    text-align: right;
}
.section-title__en {
    font-size: 10rem;
    color: #172A88; /* 青 */
    font-weight: 500;
    line-height: 1;
    margin: 0 0 10px;
    font-family: 'Gabarito', sans-serif;
}
.section-title__jp {
    font-size: 3.6rem;
    font-weight: 700;
}

/* =========================================
   1. STRENGTH (強み)
   ========================================= */
.section-strength {
    margin: 0 0 180px;
}
.strength-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px 0; /* 上下の隙間 */
}
.strength-item {
    width: 48%; /* 2列表示 */
    position: relative;
    padding-bottom: 30px;
}
/* ナンバーとタイトルの配置 */
.strength-head {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.strength-num {
    font-family: 'Gabarito', sans-serif;
    font-size: 6.8rem;
    color: #B37642; /* 茶色 */
    font-weight: 400;
    line-height: 1;
    margin-right: 15px;
}
.strength-title {
    font-size: 1.8rem;
    color: #B37642; /* 茶色 */
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}
.sp_only {
    display: none; /* PCでは改行なし */
}

.strength-desc {
    line-height: 1.8;
    margin-bottom: 0;
}
/* アイコン位置 (右下に配置) */
.strength-icon {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

/* =========================================
   2. FLOW (流れ)
   ========================================= */
.section-flow {
    background-color: #F2F0EE; /* 指定色 */
    padding: 160px 0 80px 0;
    position: relative;
}
.section-flow__tit{
    position: absolute;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.section-flow__tit h2{
    z-index: 2;
    position: relative;
}
.flow-bg-text {
    position: absolute;
    top: -110%;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Gabarito', sans-serif;
    font-size: 20rem;
    font-weight: 500;
    color: #CBD1E3; /* 指定色 */
    z-index: -1;
    white-space: nowrap;
    line-height: 1;
    pointer-events: none; /* クリック不可に */
}

/* フローチャート */
.flow-steps {
    max-width: 800px;
    margin: 0 auto;
}
.flow-step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
    align-items: center;
}
/* 左側：円 */
.flow-step__left {
    width: 80px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 30px;
    z-index: 2; /* 線の前に出す */
}
.step-circle {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    border: 2px solid #fff;
}
.step-label {
    font-size: 1.4rem;
    color: #172A88;
    font-weight: 400;
    line-height: 1;
    font-family: 'Gabarito', sans-serif;
}
.step-num {
    font-size: 3.8rem;
    color: #172A88;
    font-weight: 400;
    line-height: 1;
    font-family: 'Gabarito', sans-serif;
}
/* つなぎの線（疑似要素で描画） */
.flow-step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 40px; /* circleの中心 */
    top: 80px;  /* circleの下 */
    height: calc(185% - 70px); /* 次のcircleまで */
    width: 2px;
    background-color: #CBD1E3;
    z-index: 1;
}

/* 右側：テキスト */
.flow-step__right {
    padding-top: 10px;
}
.step-title {
    font-size: 2.4rem;
    color: #172A88;
    font-weight: 700;
    margin: 0 0 10px;
}


/* =========================================
   3. ALLIANCE (提携)
   ========================================= */
.section-alliance {
    margin: 80px 0;
}
.alliance-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
}
.alliance-list li {
    width: 15%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.alliance-list li img {
    max-width: 100%;
    height: auto;
    display: block;
}
.alliance-small{
    font-size: 12px;
    line-height: 1.8;
    margin-bottom: 10px;
    text-align: right;
}
.alliance-note {
    font-size: 20px;
    line-height: 1.8;
    text-align: center;
}

/* =========================================
   4. FAQ (よくある質問)
   ========================================= */
.faq-box {
    background-color: #EBE0D7; /* 指定色 */
    border-radius: 30px;
    padding: 60px;
    max-width: 800px;
    margin: 0 auto;
}
.faq-title {
    text-align: center;
    color: #172A88;
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 40px;
}
.faq-subtitle{
    color: #172A88;
    font-size: 2.4rem;
    font-weight: 700;
    margin: 60px 0 40px 0;
    border-bottom: 1px solid;
    padding-bottom: 20px;
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    margin-bottom: 40px;
}
.faq-item:last-child {
    margin-bottom: 0;
}
/* 質問部分 */
.faq-q {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}
.faq-icon-q {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #fff;
    color: #172A88;
    font-weight: 700;
    font-family: sans-serif;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-right: 15px;
    flex-shrink: 0;
}
.faq-q-text {
    font-size: 18px;
    font-weight: 700;
    color: #172A88;
    margin: 0;
    padding-left: 20px;
    position: relative;
    z-index: 2;
}
.faq-q-text::after {
    content: "Q";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Gabarito', sans-serif;
    font-size: 8rem;
    line-height: 1;
    color: #fff;
    z-index: -1;
}
/* 回答部分 */
.faq-a p {
    line-height: 1.8;
    margin: 0;
}

/* スマホ対応 */
@media screen and (max-width: 960px) {
    .section-title__en{
        font-size: 5.6rem;
    }
    .section-title__jp {
        font-size: 2.4rem;
    }
    .section-strength {
        margin: 0 0 100px;
    }
    .strength-item {
        width: 100%;
    }
    .section-flow {
        padding: 100px 0 50px;
    }
    .section-flow__tit{
        top: -2rem;
    }
    .flow-bg-text {
        font-size: 10rem;
        top: -76%;
    }
    .flow-step__left, .step-circle {
        width: 70px;
        height: 70px;
    }
    .step-num { font-size: 3.6rem; }
    .flow-step:not(:last-child)::before { left: 35px; top: 60px; }
    .step-title{
        font-size: 1.8rem;
    }
    .alliance-note{
        font-size: 1.6rem;
        text-align: left;
    }
    .alliance-note br{
        display: none;
    }
    .faq-box {
        padding: 30px 20px;
        border-radius: 20px;
    }
    .faq-q-text {
        font-size: 16px;
        padding-left: 40px;
    }
}
@media screen and (max-width: 480px) {
    .sp_only {
        display: block; /* スマホでは改行あり */
    }
    .alliance-list li {
        width: 31%; /* スマホで3列 */
    }
}