@import url("base.css");
@import url("header.css");
@import url("footer.css");


/* ==============================
    Layout
============================== */
#sContainer {
    position: relative;
    margin-bottom: 200px;
}


/* ==============================
    Sub Visual
============================== */
.sub_visual {
    width: 100%;
    margin-bottom: 50px;
    padding: 0;
}

.sub_visual_bg {
    position: relative;
    width: 100%;
    height: 620px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    background: url('/img/sub/bg_01.png') center center / cover no-repeat;
}

.sub_visual_bg::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;

    background: rgba(0, 0, 0, 0.48);
}

.sub_visual_inner {
    max-width: 1520px;
    width: calc(100% - 40px);
    margin: 0 auto;
}

.sub_visual_text {
    position: relative;
    z-index: 2;

    text-align: center;
    color: #fff;
}

.sub_visual_text .plus {
    font-family: 'Pretendard_SB';
    font-size: 40px;
    line-height: 1;
}

.sub_visual_text h2 {
    margin: 10px 0;

    font-family: 'Pretendard_SB';
    font-size: 48px;
}

.sub_visual_text p {
    margin: 0;

    font-size: 20px;
    color: #eee;
}


/* ==============================
    Sub Title
============================== */
.sub_title {
    margin-bottom: 80px;
    text-align: center;
}

.sub_title span {
    display: block;
    margin-bottom: 16px;

    font-size: 16px;
    font-weight: 700;
    color: #1459aa;
    letter-spacing: 0.16em;
}

.sub_title h2 {
    margin-bottom: 24px;

    font-size: 48px;
    font-weight: 800;
    color: #111;
}

.sub_title p {
    font-size: 22px;
    line-height: 1.6;
    color: #444;
}


.admission_container {
    width: 100%;
    background: #fff;
}

.admission_inner {
    max-width: 1520px;
    width: calc(100% - 40px);
    margin: 0 auto;
    /* padding: 100px 0 140px; */
}

.sub_title {
    text-align: center;
    margin-bottom: 80px;
}

.sub_title span {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #1459aa;
    letter-spacing: 0.16em;
    margin-bottom: 16px;
}

.sub_title h2 {
    font-size: 48px;
    font-weight: 800;
    color: #111;
    margin-bottom: 24px;
}

.sub_title p {
    font-size: 22px;
    line-height: 1.6;
    color: #444;
}

.admission_section {
    margin-bottom: 90px;
}

.section_head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 35px;
}

.section_head span {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #1459aa;
    color: #fff;
    font-size: 19px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section_head h3 {
    font-size: 36px;
    font-weight: 800;
    color: #111;
}

.info_box {
    padding: 38px 44px;
    border: 1px solid #e5e8ef;
    border-radius: 22px;
    background: #fff;
    margin-bottom: 22px;
}

.info_box h4 {
    position: relative;
    font-size: 24px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    padding-left: 20px;
}

.info_box h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1459aa;
}

.info_box p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.dot_list li {
    position: relative;
    padding-left: 18px;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.dot_list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #1459aa;
}

.info_box.blue {
    background: #f5f8fc;
    border-color: #dce7f5;
}

.discharge {
    margin-bottom: 0;
}

@media screen and (max-width: 1600px) {
    .admission_inner {
        width: calc(100% - 40px);
    }
}

@media screen and (max-width: 1024px) {
    .admission_inner {
        padding: 70px 0 100px;
    }

    .sub_title h2 {
        font-size: 38px;
    }

    .sub_title p {
        font-size: 18px;
    }

    .section_head h3 {
        font-size: 30px;
    }

    .info_box {
        padding: 32px 28px;
    }
}

@media screen and (max-width: 640px) {
    .sub_title {
        margin-bottom: 50px;
    }

    .sub_title h2 {
        font-size: 31px;
    }

    .section_head {
        gap: 12px;
    }

    .section_head span {
        width: 46px;
        height: 46px;
        font-size: 16px;
    }

    .section_head h3 {
        font-size: 26px;
    }

    .info_box {
        padding: 28px 22px;
        border-radius: 18px;
    }

    .info_box h4 {
        font-size: 21px;
    }

    .info_box p,
    .dot_list li {
        font-size: 16px;
    }
}