@charset "utf-8";
/* CSS Document */

/* ===============================
	benefits_top
 =============================== */
#benefits_top {
    padding-bottom: 40px;
}
#benefits_top h2 {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.833333333333333;
    letter-spacing: 0.05em;
    color: var(--C-blue);
    margin-bottom: 10.5px;
}
#benefits_top p {
    font-size: 15px;
    line-height: 1.666666666666667;
    letter-spacing: 0.02em;
    color: var(--C-blue);
}

/* ===============================
	benefits
 =============================== */
#benefits {
    padding-bottom: 26px;
}
#benefits .benefits_list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
#benefits .benefits_list li {
    width: 318px;
    border: 1px solid var(--C-yellow) ;
    text-align: center;
}
#benefits .benefits_list li .benefit_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 38px 35px 65px 35px;
}
#benefits .benefits_list li h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.090909090909091;
    color: var(--C-blue);
    margin-bottom: 35px;
}
#benefits .benefits_list li:nth-of-type(3) h3,
#benefits .benefits_list li:nth-of-type(7) h3 {
    margin-bottom: 10px;
}
#benefits .benefits_list li:not(:nth-of-type(3)) h3 br {
    display: none;
}
#benefits .benefits_list li p {
    font-size: 15px;
    line-height: 1.666666666666667;
    color: var(--C-blue);
    text-align: justify;
}

@media screen and (max-width: 640px) {
    #benefits {
        padding-bottom: 4.0625vw;
    }
    #benefits .benefits_list {
        gap: 3.125vw;
    }
    #benefits .benefits_list li {
        width: calc((100% - 3.125vw) / 2);
    }
    #benefits .benefits_list li .benefit_inner {
        padding: 5.9375vw 5.46875vw 10.15625vw 5.46875vw;
    }
    #benefits .benefits_list li h3 {
        font-size: 3.4375vw;
        margin-bottom: 5.46875vw;
    }
    #benefits .benefits_list li:nth-of-type(3) h3 {
        font-size: 3.2375vw;
    }
    #benefits .benefits_list li:nth-of-type(n+3):nth-of-type(-n+7) h3 {
        margin-bottom: 1.5625vw;
    }
    #benefits .benefits_list li h3 br {
        display: block !important;
    }
    #benefits .benefits_list li p {
        font-size: 3.125vw;
    }
}