@charset "utf-8";

/* education common */
.education_page {
    --edu-navy: #1D4763;
    --edu-blue: #5FC1C7;
    --edu-blue-dark: #174968;
    --edu-blue-bg: #EFFAFC;
    --edu-green-bg: #F0F7E7;
    --edu-red: #C55E60;
    color: var(--edu-navy);
}
.education_page .section {
    padding: 72px 0;
}
.edu_section_head {
    margin-bottom: 48px;
    text-align: center;
}
.edu_section_head h2 {
    margin-bottom: 16px;
    font-weight: 500;
    font-size: 28px;
}
.edu_section_head h2:last-child {
    margin-bottom: 0;
}
.edu_section_head p {
    font-size: 14px;
    line-height: 2;
}
/* education commonここまで */

/* edu_hero */
.edu_hero.section {
    padding: 112px 0 80px;
}
.edu_hero_inner {
    display: flex;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}
.edu_hero_visual {
    width: 58%;
    padding-right: 64px;
    box-sizing: border-box;
}
.edu_hero_visual img {
    display: block;
    width: 100%;
    height: auto;
}
.edu_hero_text {
    width: 42%;
}
.edu_eyebrow {
    margin-bottom: 16px;
    letter-spacing: 0;
}
.edu_hero_text h1 {
    margin-bottom: 28px;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.65;
}
.edu_hero_text p:not(.edu_eyebrow) {
    font-weight: 400;
    font-size: 14px;
    line-height: 2.15;
}
/* edu_heroここまで */

/* edu_products */
.edu_products.section {
    padding-top: 48px;
    padding-bottom: 96px;
}
.edu_product_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
}
.edu_product_card {
    min-height: 380px;
    padding: 28px 24px;
    box-sizing: border-box;
    text-align: center;
    background-color: var(--edu-blue-bg);
}
.edu_product_img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 205px;
    margin-bottom: 22px;
}
.edu_product_img img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.edu_product_card h3 {
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 18px;
}
.edu_product_card p {
    font-size: 14px;
    line-height: 1.85;
    text-align: left;
}
/* edu_productsここまで */

/* edu_audiences */
.edu_audiences {
    background-color: var(--edu-green-bg);
}
.edu_audiences.section {
    padding: 80px 0 96px;
}
.edu_audience_inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
}
.edu_audience_visual img {
    display: block;
    width: 100%;
    height: auto;
}
.edu_audience_grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 40px;
}
.edu_audience_item h3 {
    position: relative;
    margin-bottom: 8px;
    padding-left: 24px;
    font-weight: 500;
    font-size: 19px;
    line-height: 1.5;
}
.edu_audience_item h3::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: var(--edu-navy);
    border-radius: 50%;
}
.edu_audience_item p {
    font-size: 13px;
    line-height: 1.85;
    word-break: keep-all;
}
/* edu_audiencesここまで */

/* edu_reasons */
.edu_reasons.section {
    padding: 104px 0 80px;
}
.edu_reason_grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 56px;
}
.edu_reason_item {
    text-align: center;
}
.edu_reason_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 210px;
    height: 210px;
    margin: 0 auto 32px;
}
.edu_reason_icon img {
    display: block;
    width: 100%;
    height: auto;
}
.edu_reason_item h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    margin-bottom: 14px;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
}
.edu_reason_item p {
    font-size: 13px;
    line-height: 1.85;
    text-align: left;
}
/* edu_reasonsここまで */

/* edu_faq */
.edu_faq.section {
    padding: 48px 0 104px;
}
.edu_faq_grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 40px;
}
.edu_faq_item dt,
.edu_faq_item dd {
    position: relative;
    min-height: 48px;
    padding-left: 64px;
    box-sizing: border-box;
}
.edu_faq_item dt {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    padding-top: 12px;
    padding-right: 48px;
    padding-bottom: 12px;
    color: #FFF;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    background-color: #7BC6CA;
    border-radius: 4px;
}
.edu_faq_item dd {
    padding-right: 16px;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.9;
}
.edu_faq_item dt span,
.edu_faq_item dd span {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #FFF;
    font-weight: 500;
    font-size: 18px;
}
.edu_faq_item dt span {
    background-color: var(--edu-blue-dark);
    border-radius: 4px;
}
.edu_faq_item dd span {
    background-color: var(--edu-red);
    border-radius: 4px;
}
/* edu_faqここまで */

/* responsive */
@media screen and (max-width: 959px) {
    .edu_hero_inner {
        max-width: 720px;
    }
    .edu_hero_visual {
        width: 52%;
        padding-right: 36px;
    }
    .edu_hero_text {
        width: 48%;
    }
    .edu_hero_text h1 {
        font-size: 28px;
    }
    .edu_product_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .edu_audience_inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .edu_audience_visual {
        max-width: 585px;
        margin: 0 auto;
    }
    .edu_reason_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 48px 40px;
    }
    .edu_faq_grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 599px) {
    .education_page .section {
        padding: 56px 0;
    }
    .edu_section_head {
        margin-bottom: 32px;
    }
    .edu_section_head h2 {
        font-size: 23px;
    }
    .edu_section_head p br {
        display: none;
    }
    .edu_hero.section {
        padding: 64px 0 48px;
    }
    .edu_hero_inner {
        display: block;
    }
    .edu_hero_visual {
        width: 100%;
        margin-bottom: 32px;
        padding-right: 0;
    }
    .edu_hero_text {
        width: 100%;
    }
    .edu_hero_text h1 {
        font-size: 27px;
    }
    .edu_hero_text h1 br,
    .edu_hero_text p br {
        display: none;
    }
    .edu_product_grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .edu_product_card {
        min-height: auto;
    }
    .edu_audiences.section {
        padding: 56px 0 64px;
    }
    .edu_audience_grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .edu_reason_grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .edu_reason_icon {
        width: 180px;
        height: 180px;
        margin-bottom: 24px;
    }
    .edu_reason_item h3 {
        min-height: 0;
    }
    .edu_reason_item p {
        text-align: center;
    }
    .edu_faq.section {
        padding-bottom: 72px;
    }
    .edu_faq_item dt,
    .edu_faq_item dd {
        padding-left: 52px;
    }
    .edu_faq_item dt {
        padding-right: 40px;
        font-size: 14px;
    }
    .edu_faq_item dt::after {
        right: 14px;
    }
    .edu_faq_item dt span,
    .edu_faq_item dd span {
        width: 40px;
        height: 48px;
    }
}
