@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    /* Color styles */
    --yellow100: #FCF4D0;
    --yellow200: #F3C615;
    --yellow300: #FFBB00;
    --blue: #175179;
    --red: #E22F32;
    --white: #FFFFFF;
    --black: #000000;
    --gray100: #E3E3E3;
    --gray200: #D0D0D0;
    --gray300: #888888;
    --gray400: #3A3A3A;

    /* Text-size styles */
    --text-scale: 1; /* 배율 지정 */

    /* 기존 기본값 */
    /* base size: static---body7 (16px) */
    --fs-h1-base: 3.44rem;
    --fs-h2-base: 2.5rem;
    --fs-h3-base: 2rem;
    --fs-h4-base: 1.75rem;
    --fs-h5-base: 1.62rem;
    --fs-biggest-base: 1.25rem;
    --fs-bigger-base: 1.12rem;
    --fs-normal-base: 1rem;
    --fs-small-base: 0.94rem;
    --fs-smallest-base: 0.88rem;
    --fs-tiny-base: 0.81rem;

    /* 최종 적용 값 */
    --fs-h1: calc(var(--fs-h1-base) * var(--text-scale));
    --fs-h2: calc(var(--fs-h2-base) * var(--text-scale));
    --fs-h3: calc(var(--fs-h3-base) * var(--text-scale));
    --fs-h4: calc(var(--fs-h4-base) * var(--text-scale));
    --fs-h5: calc(var(--fs-h5-base) * var(--text-scale));
    --fs-biggest: calc(var(--fs-biggest-base) * var(--text-scale));
    --fs-bigger: calc(var(--fs-bigger-base) * var(--text-scale));
    --fs-normal: calc(var(--fs-normal-base) * var(--text-scale));
    --fs-small: calc(var(--fs-small-base) * var(--text-scale));
    --fs-smallest: calc(var(--fs-smallest-base) * var(--text-scale));
    --fs-tiny: calc(var(--fs-tiny-base) * var(--text-scale));

    /* Effect styles */
    --shadow1:  0px 0px 10px rgba(0, 0, 0, 0.25);
    --shadow2:  0px 0px 15px rgba(0, 0, 0, 0.15);
    --shadow3:  5px 10px 50px rgba(0, 0, 0, 0.25);

    /*
        피그마 기준 변수
    */
    --static---h1: var(--fs-h1);
    --static---h2: var(--fs-h1);
    --static---h3: var(--fs-h2);
    --static---h4: var(--fs-h2);
    --static---h5: var(--fs-h2);
    --static---sub1: var(--fs-h3);
    --static---sub2: var(--fs-h4);
    --static---sub3: var(--fs-h5);
    --static---sub4: var(--fs-h5);
    --static---sub5: var(--fs-biggest);
    --static---sub6: var(--fs-biggest);
    --static---sub7: var(--fs-normal);
    --static---body1: var(--fs-biggest);
    --static---body2: var(--fs-biggest);
    --static---body3: var(--fs-biggest);
    --static---body4: var(--fs-bigger);
    --static---body5: var(--fs-bigger);
    --static---body6: var(--fs-normal);
    --static---body7: var(--fs-normal);
    --static---caption1: var(--fs-normal);
    --static---caption2: var(--fs-small);
    --static---caption3: var(--fs-smallest);
    --static---caption4: var(--fs-smallest);
    --static---caption5: var(--fs-tiny);

    --btn: var(--shadow1);
    --btn1: var(--shadow2);
    --btn2: var(--shadow3);

    --header-height: 100px;
    --padding-side: 0px; /* 사이드 패딩 공통값 */

    --font-family: 'Noto Sans KR', sans-serif;
}

html, body {
    font-size: clamp(1px, 0.8333vw, 16px);
}

@media (max-width: 1440px) {
    :root {
        --header-height: 60px;
        --padding-side: 3rem; /* 사이드 패딩 공통값 */
    }
}

@media (max-width: 768px) {
    :root {
        --base-width: 768;
        --base-font-size: calc(16 * (1 + (var(--base-width) / 1920)) * 1); /* 28px */

        --text-scale: 1; /* 배율 지정 */

        --header-height: 64px;
        --padding-side: 1.5rem; /* 사이드 패딩 공통값 */
    }

    html, body {
        /*
            Base Width: 768px
            Base Rem Font Size: 16px
            Font Calculation: 16 * (1 + (768 / 1920)) * 1.25 = 28px | VW: 28 / 768 * 100 = 3.6458vw
         */
        font-size: clamp(
            1px, 
            calc((var(--base-font-size) / var(--base-width)) * 100vw), 
            calc((var(--base-font-size) * 1px) * 0.65)
        );
    }
}

html, body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

*, *::before, *::after {
    box-sizing: border-box;
    word-break: auto-phrase !important;
    text-wrap-style: auto;
}

h1, h2, h3, h4, h5, h6, p, div, span, strong, em, b, a, ul, ol, li, dl, dt, dd, button, input, textarea, select, label, table, tr, th, td, caption, figure, figcaption, blockquote, pre, code, small, article, section, header, footer, nav, main, aside, summary, details, address, article, time, mark, b {
    font-family: var(--font-family);
}

a {
    -webkit-tap-highlight-color: transparent;
}


#subContent {
    position: relative;
    width: 100%;
    max-width: 1424px;
    /* min-height: calc(100vh - var(--header-height)); */
    margin: 5rem auto 12.5rem;
    padding: 0 var(--padding-side);
    background: var(--white, #FFF);
}
.content-wrap {
    display: flex;
    flex-direction: column;
    gap: 7.5rem;
}
.content-wrap.view {
    gap: 3.75rem;
}
.content-wrap.form {
    gap: 2.5rem;
}
.content-wrap.form > .content-item {
    gap: 1.5rem;
}
.content-wrap > .content-item {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
    align-items: center;
}
.content-wrap > .content-item img {
    width: 100%;
    height:100%;
    object-fit: cover;
    border-radius: 25px;
}
.content-wrap > .content-item > h3 {
    display: inline-block;
    align-items: center;
    color: #000;
    font-size : var(--static---h5);
    font-family: Poppins;
    font-weight: 700;
    line-height: 3.125rem; /* 125% */
    letter-spacing: -0.05rem;
}
.content-wrap > .content-item > h3 > img {
    width: 2.5rem;
    margin-right: 1rem;
}
.content-wrap span.sub-title-underline {
    width: 5rem;
    height: 1px;
    background-color: #000;
}
.content-wrap > .content-item > .item-content > p{
    color: var(--gray400);
    font-size: var(--static---sub6);
    font-weight: 400;
    line-height: 2rem;
}
.content-wrap > .content-item > .item-content > p > span.bold {
    font-weight: 700;
    line-height: 1.625rem;
}

.content-wrap > .content-item + .content-item > .item-content {
    margin-top: 1rem;
}

ul.common-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
}
ul.common-list > li {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.875rem 2.5rem;
    box-shadow: var(--btn1);
    border-radius: 25px;
    align-items: flex-start;
    width: 20rem;
}
ul.common-list > li i {
    font-size: 4rem;
    color: var(--yellow200);
}
ul.common-list > li h4 {
    color: var(--gray400);
    font-size: var(--static---sub2);
    font-weight: 700;
    line-height: 2.125rem;
    letter-spacing: -0.035rem;
    text-align: left;
}

ul.common-list > li p {
    color: var(--gray400);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.875rem;
    letter-spacing: -0.025rem;
    text-align: start;
    word-break: keep-all;
}

ul.common-list > li ul {
    list-style: disc;
    text-align: left;
    padding-left: 1.5rem;
}

ul.common-list > li ul > li {
    color: var(--gray400, #3A3A3A);
    font-size: var(--fs-biggest-base);
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.025rem;
}

@media (max-width: 768px) {
    ul.common-list {
        flex-direction: column;
        gap: 2rem;
    }

    ul.common-list > li {
        flex-direction: row;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 0rem 1.5rem;
    }

    ul.common-list > li h4 {
        display: block;
        margin-top: 0.75rem;
    }

    ul.common-list > li h4 + * {
        display: block;
        width: 100%;
    }

    ul.common-list > li p {
        min-height: 3.785rem;
        padding-left: 5.5rem;
    }

    ul.common-list > li ul {
        padding-left: 7rem;
    }
}

/*
*/

.lebob-link-btn {
    position: relative;
    width: fit-content;
    min-width: 11.25rem;
    padding: 0.9375rem 1.8125rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    border-radius: 3.125rem;
    background: transparent;
    border: 1px solid var(--white, #FFF);
    color: var(--white, #FFF);
    font-size: var(--fs-normal);
    font-style: normal;
    font-weight: 500;
    line-height: 118.75%;
    letter-spacing: -0.02rem;
    overflow: hidden;
    pointer-events: auto;
    z-index: 1;
}

.lebob-link-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 0;
    height: 100%;
    background: #fff;
    z-index: -1;
    transition: all 0.3s;
}

@media(hover:hover) {
    .lebob-link-btn:hover {
        color: var(--gray400, #3A3A3A);
    }

    .lebob-link-btn:hover:before {
        width: 100%
    }
}

/*
*/
.d-mo {
    display: none;
}
@media (max-width: 768px) {
    .d-mo {
        display: inline-block;
    }
    .d-pc {
        display: none;
    }
}