@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_02.jpg') 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;
}


/* ==============================
   Layout
================================ */
.nk_page {
    width: 100%;
    overflow: hidden;
    background: #fff;
}

.content_inner {
    max-width: 1520px;
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 80px 0 150px;
}

/* ==============================
   Title
================================ */
.section_title {
    margin-bottom: 60px;
    text-align: center;
}

.section_title span {
    display: block;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 800;
    color: #0f4c8a;
    letter-spacing: 0.14em;
}

.section_title h2 {
    margin-bottom: 12px;
    font-size: 42px;
    font-weight: 800;
    color: #111;
    line-height: 1.35;
    letter-spacing: -0.05em;
}

.section_title strong {
    display: block;
    font-size: 46px;
    font-weight: 900;
    color: #0f4c8a;
    line-height: 1.3;
    letter-spacing: -0.05em;
}

/* ==============================
   Intro
================================ */
.nk_intro {
    margin-bottom: 140px;
}

.intro_content {
    display: grid;
    grid-template-columns: 670px 1fr;
    align-items: center;
    gap: 80px;
}

.intro_img {
    width: 100%;
    height: 500px;
    overflow: hidden;
    /* background: #f2f2f2; */
    border-radius: 0 90px 0 0;
}

.intro_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro_text h3 {
    margin-bottom: 28px;
    font-size: 34px;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.05em;
}

.intro_text p {
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 400;
    color: #555;
    line-height: 1.85;
    letter-spacing: -0.04em;
    word-break: keep-all;
}

.intro_text p:last-child {
    margin-bottom: 0;
}

/* ==============================
   Target
================================ */
.target_section {
    margin-bottom: 140px;
    padding: 100px 90px;
    background: #f5f9fc;
}

.target_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.target_list li {
    min-height: 230px;
    padding: 48px 42px;
    background: #fff;
    border: 1px solid #e2eaf2;
    transition: 0.35s;
}

.target_list li:hover {
    transform: translateY(-10px);
    border-color: #0f4c8a;
    box-shadow: 0 20px 42px rgba(15, 76, 138, 0.12);
}

.target_list li span {
    display: block;
    margin-bottom: 36px;
    font-size: 42px;
    font-weight: 900;
    color: #0f4c8a;
    line-height: 1;
}

.target_list li p {
    font-size: 23px;
    font-weight: 800;
    color: #222;
    line-height: 1.5;
    letter-spacing: -0.05em;
    word-break: keep-all;
}

/* ==============================
   Advantage
================================ */
.advantage_section {
    margin-bottom: 140px;
}

.advantage_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.advantage_card {
    position: relative;
    min-height: 330px;
    padding: 52px 42px 48px;
    border: 1px solid #e5e5e5;
    background: #fff;
    overflow: hidden;
    transition: 0.35s;
}

.advantage_card::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: #edf5fc;
    z-index: 0;
}

.advantage_card:hover {
    transform: translateY(-10px);
    border-color: #0f4c8a;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.1);
}

.advantage_card .num {
    position: relative;
    z-index: 1;
    margin-bottom: 34px;
    font-size: 44px;
    font-weight: 900;
    color: #0f4c8a;
    line-height: 1;
}

.advantage_card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 22px;
    font-size: 25px;
    font-weight: 800;
    color: #111;
    line-height: 1.4;
    letter-spacing: -0.05em;
}

.advantage_card p {
    position: relative;
    z-index: 1;
    font-size: 17px;
    font-weight: 400;
    color: #666;
    line-height: 1.75;
    letter-spacing: -0.04em;
    word-break: keep-all;
}

/* ==============================
   Caution
================================ */
.caution_section {
    padding: 105px 90px 115px;
    background: #f7f7f7;
}

.caution_wrap {
    width: 1000px;
    margin: 0 auto;
}

.caution_box {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    padding: 34px 40px;
    margin-bottom: 22px;
    background: #fff;
    border-left: 5px solid #0f4c8a;
}

.caution_box:last-child {
    margin-bottom: 0;
}

.caution_box > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #0f4c8a;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
}

.caution_box h3 {
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.04em;
}

.caution_box p {
    font-size: 16px;
    font-weight: 400;
    color: #555;
    line-height: 1.75;
    letter-spacing: -0.04em;
    word-break: keep-all;
}

.notice_text {
    width: 1000px;
    margin: 45px auto 0;
    padding: 18px 24px;
    background: #fff5d8;
    color: #ff8a00;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    word-break: keep-all;
}

.notice_text::before {
    content: "!";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-right: 8px;
    border-radius: 50%;
    background: #ff8a00;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
}

.s02_sm_wrap {
    width: 100%;
    padding: 6px 10px 8px;
    background: #f5f6fd;
    margin-bottom: 100px;
}

.s02_sm {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.s02_sm li {
    height: 55px;
}

.s02_sm li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #fff;
    color: #111;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.04em;
    text-decoration: none;
    transition: 0.25s;
}

.s02_sm li.active a,
.s02_sm li a:hover {
    background: #2d85c5;
    color: #fff;
    font-weight: 700;
}


/* ==============================
   Responsive - NK Page
============================== */

/* 1600px 이하 */
@media (max-width: 1600px) {
    .content_inner {
        width: calc(100% - 60px);
        max-width: 1520px;
    }

    .intro_content {
        grid-template-columns: 600px 1fr;
        gap: 60px;
    }

    .target_section,
    .caution_section {
        padding-left: 70px;
        padding-right: 70px;
    }

    .target_list,
    .advantage_grid {
        gap: 28px;
    }

    .advantage_card {
        padding: 48px 36px 44px;
    }

    .caution_wrap,
    .notice_text {
        width: 900px;
    }
}


/* 1280px 이하 */
@media (max-width: 1280px) {
    #sContainer {
        margin-bottom: 140px;
    }

    .sub_visual_bg {
        height: 520px;
    }

    .sub_visual_text h2 {
        font-size: 42px;
    }

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

    .content_inner {
        padding: 70px 0 130px;
    }

    .s02_sm_wrap {
        margin-bottom: 80px;
    }

    .s02_sm li a {
        font-size: 15px;
    }

    .section_title {
        margin-bottom: 50px;
    }

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

    .section_title strong {
        font-size: 42px;
    }

    .intro_content {
        grid-template-columns: 520px 1fr;
        gap: 45px;
    }

    .intro_img {
        height: 440px;
        border-radius: 0 70px 0 0;
    }

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

    .intro_text p {
        font-size: 17px;
        line-height: 1.75;
    }

    .nk_intro,
    .target_section,
    .advantage_section {
        margin-bottom: 110px;
    }

    .target_section {
        padding: 80px 55px;
    }

    .target_list,
    .advantage_grid {
        gap: 24px;
    }

    .target_list li {
        min-height: 210px;
        padding: 40px 32px;
    }

    .target_list li span {
        margin-bottom: 24px;
        font-size: 36px;
    }

    .target_list li p {
        font-size: 20px;
    }

    .advantage_card {
        min-height: 310px;
        padding: 44px 32px;
    }

    .advantage_card .num {
        font-size: 38px;
    }

    .advantage_card h3 {
        font-size: 22px;
    }

    .advantage_card p {
        font-size: 16px;
    }

    .caution_section {
        padding: 85px 55px 95px;
    }

    .caution_wrap,
    .notice_text {
        width: 100%;
        max-width: 900px;
    }
}


/* 1024px 이하 - 태블릿 */
@media (max-width: 1024px) {
    .content_inner {
        width: calc(100% - 40px);
        padding: 70px 0 110px;
    }

    /* 보조메뉴 가로 스크롤 */
    .s02_sm_wrap {
        margin-bottom: 65px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .s02_sm_wrap::-webkit-scrollbar {
        height: 4px;
    }

    .s02_sm_wrap::-webkit-scrollbar-thumb {
        background: #2d85c5;
        border-radius: 10px;
    }

    .s02_sm {
        display: flex;
        width: max-content;
        min-width: 100%;
    }

    .s02_sm li {
        flex: 0 0 170px;
        height: 52px;
    }

    .intro_content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .intro_img {
        height: auto;
        aspect-ratio: 16 / 9;
        border-radius: 0 55px 0 0;
    }

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

    .target_section {
        padding: 65px 40px;
    }

    .target_list {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .target_list li {
        min-height: 180px;
        padding: 34px 28px;
    }

    .advantage_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .advantage_card {
        min-height: auto;
        padding: 38px 34px;
    }

    .caution_section {
        padding: 70px 40px 80px;
    }

    .caution_box {
        padding: 30px 32px;
    }

    .notice_text {
        margin-top: 35px;
    }
}


/* 768px 이하 - 모바일 */
@media (max-width: 768px) {
    #sContainer {
        margin-bottom: 100px;
    }

    .sub_visual {
        margin-bottom: 40px;
    }

    .sub_visual_bg {
        height: 360px;
    }

    .sub_visual_text .plus {
        font-size: 28px;
    }

    .sub_visual_text h2 {
        font-size: 34px;
    }

    .sub_visual_text p {
        font-size: 16px;
        line-height: 1.5;
    }

    .sub_visual_text p br {
        display: none;
    }

    .content_inner {
        width: calc(100% - 30px);
        padding: 60px 0 90px;
    }

    .s02_sm_wrap {
        margin-bottom: 50px;
        padding: 6px;
    }

    .s02_sm {
        gap: 6px;
    }

    .s02_sm li {
        flex: 0 0 145px;
        height: 48px;
    }

    .s02_sm li a {
        font-size: 14px;
    }

    .section_title {
        margin-bottom: 38px;
    }

    .section_title span {
        margin-bottom: 10px;
        font-size: 12px;
        letter-spacing: 0.1em;
    }

    .section_title h2 {
        font-size: 30px;
        line-height: 1.35;
    }

    .section_title strong {
        font-size: 34px;
    }

    .nk_intro {
        margin-bottom: 75px;
    }

    .intro_content {
        gap: 28px;
    }

    .intro_img {
        aspect-ratio: 4 / 3;
        border-radius: 0 38px 0 0;
    }

    .intro_text h3 {
        margin-bottom: 20px;
        font-size: 26px;
    }

    .intro_text p {
        margin-bottom: 14px;
        font-size: 16px;
        line-height: 1.7;
    }

    .target_section {
        margin-bottom: 75px;
        padding: 45px 24px;
    }

    .target_list {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .target_list li {
        min-height: auto;
        padding: 26px 22px;
    }

    .target_list li:hover,
    .advantage_card:hover {
        transform: none;
    }

    .target_list li span {
        margin-bottom: 12px;
        font-size: 28px;
    }

    .target_list li p {
        font-size: 18px;
        line-height: 1.5;
    }

    .advantage_section {
        margin-bottom: 75px;
    }

    .advantage_grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .advantage_card {
        padding: 30px 24px;
    }

    .advantage_card::after {
        right: -90px;
        bottom: -90px;
    }

    .advantage_card .num {
        margin-bottom: 20px;
        font-size: 30px;
    }

    .advantage_card h3 {
        margin-bottom: 14px;
        font-size: 20px;
    }

    .advantage_card p {
        font-size: 15.5px;
        line-height: 1.65;
    }

    .caution_section {
        padding: 50px 24px 60px;
    }

    .caution_box {
        display: block;
        padding: 26px 22px;
        margin-bottom: 16px;
        border-left-width: 4px;
    }

    .caution_box > span {
        width: 48px;
        height: 48px;
        margin-bottom: 18px;
        font-size: 15px;
    }

    .caution_box h3 {
        margin-bottom: 10px;
        font-size: 20px;
    }

    .caution_box p {
        font-size: 15px;
        line-height: 1.65;
    }

    .notice_text {
        margin-top: 28px;
        padding: 16px 18px;
        font-size: 14.5px;
        text-align: left;
    }

    .notice_text::before {
        width: 20px;
        height: 20px;
        margin-right: 6px;
        font-size: 13px;
    }
}


/* 480px 이하 - 작은 모바일 */
@media (max-width: 480px) {
    .sub_visual_bg {
        height: 300px;
    }

    .sub_visual_text .plus {
        font-size: 24px;
    }

    .sub_visual_text h2 {
        font-size: 29px;
    }

    .sub_visual_text p {
        font-size: 15px;
    }

    .content_inner {
        width: calc(100% - 24px);
        padding: 50px 0 80px;
    }

    .s02_sm li {
        flex: 0 0 132px;
        height: 45px;
    }

    .s02_sm li a {
        font-size: 13px;
    }

    .section_title h2 {
        font-size: 26px;
    }

    .section_title strong {
        font-size: 30px;
    }

    .intro_text h3 {
        font-size: 23px;
    }

    .intro_text p {
        font-size: 15px;
    }

    .target_section {
        padding: 38px 18px;
    }

    .target_list li {
        padding: 24px 18px;
    }

    .target_list li span {
        font-size: 25px;
    }

    .target_list li p {
        font-size: 16.5px;
    }

    .advantage_card {
        padding: 26px 20px;
    }

    .advantage_card .num {
        font-size: 27px;
    }

    .advantage_card h3 {
        font-size: 18px;
    }

    .advantage_card p {
        font-size: 14.5px;
    }

    .caution_section {
        padding: 42px 18px 50px;
    }

    .caution_box {
        padding: 24px 18px;
    }

    .caution_box > span {
        width: 44px;
        height: 44px;
    }

    .caution_box h3 {
        font-size: 18px;
    }

    .caution_box p {
        font-size: 14.5px;
    }

    .notice_text {
        padding: 15px 16px;
        font-size: 13.5px;
    }
}

/* @media (max-width: 1024px) {
    .s02_sm_wrap::after {
        content: "좌우로 스크롤";
        display: block;
        margin-top: 6px;
        font-size: 12px;
        color: #777;
        text-align: right;
    }
} */