/*
    이미지 크기는 vw로 해서 반응형으로 만들것
    계산식 x / viewport * 100 = y
    ex) 1920크기에서 596px의 이미지 일 경우
    596 / 1920 = 33vw(correct 33.04~)
*/

@keyframes marquee_scroll_vertical {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-50%);
    }
}

@keyframes marquee_scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes number_scroll_down_animation {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(calc(clamp(30px, 5.42vw, 104px) * 3));
    }
}

@keyframes number_scroll_down_one_animation {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(calc(clamp(14px, 5.41vw, 104px) * 1.5));
    }
}

/*}*/
@keyframes number_scroll_up_animation {
    0% {
        transform: translateY(calc(clamp(14px, 5.41vw, 104px) * 3));
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes pop_up_animation {
    from {
        width: 0%;
        height: 0%;
    }
    to {
        width: 100%;
        height: 100%;
    }
}

.hc_deco {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.hc_deco img {
    width: 100%;
    height: 100%;
    animation: pop_up_animation 3s ease-in-out;
    animation-fill-mode: forwards;
}

.number_scroll_box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}


.number_scroll_one {
    animation: 1s number_scroll_down_one_animation forwards ease-out;
}

.number_scroll {
    animation: 1.5s number_scroll_down_animation forwards cubic-bezier(0.2, 0.3, 0.4, 0.99);
}

.number_scroll.is-active {
    animation-play-state: running;
}

.number_scroll {
    animation-play-state: paused;
}

.number_scroll_wrapper {
    overflow: hidden;
    height: clamp(30px, calc(104 * var(--vw)), 104px);
    display: flex;
    flex-direction: row;
}


.hero_container .main_crown {
    z-index: 11;
    position: absolute;
    height: 100%;
    display: flex;
    /*bottom: clamp(-60px, -3.4vw, -40px);*/
    top: 0;
    flex-direction: row;
    justify-content: center;
}

.hero_container .main_crown_box {

    img {
        min-width: 395px;
        width: 92vw;
        max-width: 1784px;
    }
}

.hc_box .hc_box_black_text {
    margin-top: clamp(calc(22 * var(--mobile-divide) * 1px), calc(22 * var(--vw)), 22px);
    font-family: Noto Serif KR;
    font-weight: 700;
    font-size: clamp(6px, calc(24 * var(--vw)), 24px);
    line-height: 100%;
    text-align: center;
    letter-spacing: 0.22rem;
    color: #2E2316;
}

.hc_box .hc_box_log {
    margin-top: clamp(calc(35.5 * var(--mobile-divide) * 1px), calc(35.5 * var(--vw)), 35.5px);
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;

    img {
        width: 31vw;
        max-width: 596px;
    }
}

.hc_box .hc_box_63years {
    margin-top: clamp(calc(34 * var(--mobile-divide) * 1px), calc(34 * var(--vw)), 34px);

    img {
        min-width: 264px;
        max-width: 928px;
        width: 48vw;
    }
}

.hc_box .hc_box_20years {
    img {
        min-width: 244px;
        max-width: 1024px;
        width: 53vw;
    }
}

.hc_box .hc_box_small_title {
    margin-top: clamp(7px, calc(71 * var(--vw)), 71px);

    img {
        min-width: 294px;
        max-width: 1227px;
        width: 63vw;
    }
}

.hc_box .hc_box_star {
    margin-top: clamp(calc(39 * var(--mobile-divide) * 1px), calc(39 * var(--vw)), 39px);

    img {
        min-width: 69.77px;
        max-width: 306px;
        width: 15vw;
    }
}

.hc_box .hc_center_box {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero_container .main_section_02 {
    height: clamp(calc(640 * var(--mobile-divide) * 1px), calc(640 * var(--vw)), 640px);
    width: 100%;
    background: radial-gradient(50.7% 50.7% at 51.2% 84.45%, #4A4034 36.91%, #1C1C1C 100%);
}

.hero_container .mask-text-gradation {
    background-image: linear-gradient(107.94deg, #F2BB82 4.8%, #BB8753 51.34%, #F7C786 97.55%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main_section_02 .main_section_02_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.main_section_02 .main_section_02_text {
    line-height: 100%;
    font-family: Noto Serif KR;
    text-align: center;
    position: relative;
    font-weight: 900;
    font-size: clamp(28px, calc(96 * var(--vw)), 96px);
    color: #fff;
}

.main_section_02 .main_section_02_big_text {
    font-family: Noto Serif KR;
    line-height: 100%;
    font-weight: 700;
    font-size: clamp(30px, calc(104 * var(--vw)), 104px);
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    position: relative;
}

.main_section_02 .main_section_02_medium_text {
    line-height: 100%;
    position: relative;
    font-family: Noto Serif KR;
    font-weight: 900;
    font-size: clamp(calc(96 * var(--mobile-divide) * 1px), calc(96 * var(--vw)), 96px);
    text-align: center;
    color: #D9A063;
}

.main_section_02 .main_section_02_percent {
    line-height: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    font-family: Pretendard;
    font-weight: 700;
    position: relative;
    font-size: clamp(calc(96 * var(--mobile-divide) * 1px), calc(96 * var(--vw)), 96px);
    text-align: center;
    color: #D9A063;
    height: clamp(calc(110 * var(--mobile-divide) * 1px), calc(110 * var(--vw)), 110px);

}

.main_section_box_02 {
    position: relative;
    height: clamp(30px, calc(104 * var(--vw)), 104px);
}

.main_section_02_blur_percent {
    position: absolute;
    left: 0;
    top: 35%;
    transform: translateY(8px) scaleY(-0.6);
    color: #000000;
    filter: blur(16px);
}

.main_section_02_blur_text {
    position: absolute;
    left: 0;
    top: 75%;
    transform: translateY(4px) scaleY(-0.4);
    color: #000000;
    filter: blur(10px);
}

.main_section_02_blur_big_text {
    position: absolute;
    left: 0;
    top: 60%;
    transform: translateY(10px) scaleY(-0.4);
    color: #000000;
    filter: blur(10px);
}

.main_section_02_z_index {
    position: relative;
    z-index: 2;
}

.main_section_03 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: clamp(204px, calc(648 * var(--vw)), 648px);
    background: linear-gradient(180deg, #FFFFFF 63.32%, #EEE7DF 72.42%, #D3C7BE 80.52%, #AE9788 91.27%, #9A8473 95.86%, #8F7867 100%);
}

.main_section_03_box {
    display: flex;
    flex-direction: column;
    margin-bottom: clamp(0px, calc(116 * var(--vw)), 116px);
}

.main_section_03_logo_box {
    pointer-events: none;
    position: absolute;

    img {
        min-width: 179px;
        width: clamp(calc(547 * var(--mobile-divide) * 1px), calc(547 * var(--vw)), 547px);
    }
}

.main_section_03_title {
    font-family: Noto Sans KR;
    font-weight: 700;
    font-size: clamp(20px, calc(48 * var(--vw)), 48px);
    line-height: 100%;
    letter-spacing: -3%;
    text-align: center;
}

.main_section_03_sub_title_box {
    gap: clamp(calc(8 * var(--mobile-divide) * 1px), calc(8 * var(--vw)), 8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: clamp(calc(40 * var(--mobile-divide) * 1px), calc(40 * var(--vw)), 40px);
}

.main_section_03_sub_title {
    font-family: Noto Sans KR;
    font-weight: 500;
    font-size: clamp(14px, calc(32 * var(--vw)), 32px);
    line-height: 150%;
    letter-spacing: -2%;
    text-align: center;
}

.main_section_03_highlight_box {
    display: flex;
    padding-inline: clamp(calc(8 * var(--mobile-divide) * 1px), calc(8 * var(--vw)), 8px);
    margin-inline: clamp(calc(8 * var(--mobile-divide) * 1px), calc(8 * var(--vw)), 8px);
    background-color: #DAA54880;
}

.main_section_03_highlight_text {
    font-family: Noto Sans KR;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -2%;
    text-align: center;
    font-size: clamp(14px, calc(32 * var(--vw)), 32px);
}

.main_section_04 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: clamp(56px, calc(115 * var(--vw)), 115px);
    background: linear-gradient(180deg, #8F7867 0%, #3C342E 100%);
    height: clamp(266px, calc(640 * var(--vw)), 640px);
    padding-inline: 10px;
}

.main_section_04_title {
    font-family: Noto Sans KR;
    font-weight: 700;
    font-size: clamp(20px, calc(48 * var(--vw)), 48px);
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #fff;
}

.main_section_04_sub_title {
    color: #fff;
    font-family: Noto Sans KR;
    font-weight: 300;
    font-size: clamp(14px, calc(32 * var(--vw)), 32px);
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
}

.main_section_04_highlight_box {
    display: flex;
    padding-block: 4px;
    padding-inline: clamp(10px, calc(24 * var(--vw)), 24px);
    margin-top: clamp(40px, calc(80 * var(--vw)), 80px);
    background-color: #FFD677;
}

.main_section_04_highlight_text {
    font-family: Noto Serif KR;
    font-weight: 700;
    font-size: clamp(14px, calc(40 * var(--vw)), 40px);
    line-height: 150%;
    letter-spacing: -3%;
    text-align: center;
    color: #5B3920;
}

.main_section04_box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main_section_04_title_box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main_section_04_sub_title_box {
    text-align: center;
    margin-top: clamp(calc(24 * var(--mobile-divide) * 1px), calc(24 * var(--vw)), 24px);
}

.main_section_05 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #3C342E 0%, #1C1816 100%);
    padding-top: clamp(56px, calc(165.5 * var(--vw)), 165.5px);
    padding-bottom: clamp(56px, calc(265 * var(--vw)), 265px);
}

.main_section_05_title {
    font-family: Noto Sans KR;
    font-weight: 700;
    font-size: clamp(20px, calc(48 * var(--vw)), 48px);

    line-height: 180%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFD678C2;

}

.main_section_05_title_02 {
    font-family: Noto Sans KR;
    font-weight: 700;
    font-size: clamp(20px, calc(48 * var(--vw)), 48px);
    line-height: 180%;
    letter-spacing: 0%;
    text-align: center;
    color: #fff;
}

.main_section_05_title_box {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.main_section_05_line_box {
    position: absolute;
    bottom: 0.2vw;
    left: 50%;
    transform: translate(-50%, -50%);
}

.main_section_05_line_01_img_box {
    width: clamp(53px, calc(130 * var(--vw)), 130px);
}

.main_section_05_line_02_img_box {
    width: clamp(49px, calc(121 * var(--vw)), 121px);
    margin-left: clamp(calc(8 * var(--mobile-divide) * 1px), calc(8 * var(--vw)), 8px);
}

.main_section_05_dot_box {
    position: absolute;
    top: 3px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 clamp(8px, calc(20 * var(--vw)), 20px);
}

.main_section_05_dot {
    width: clamp(calc(8 * var(--mobile-divide) * 1px), calc(8 * var(--vw)), 8px);
    height: clamp(calc(8 * var(--mobile-divide) * 1px), calc(8 * var(--vw)), 8px);
    border-radius: 100%;
    background-color: #fff;
}

.main_section_05_card_box {
    margin-top: clamp(calc(64 * var(--mobile-divide) * 1px), calc(64 * var(--vw)), 64px);
    gap: 4.16vw 5.6vw;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1500px;
}

.main_section_05_card_header_absolute {
    position: absolute;
    bottom: clamp(76px, calc(144 * var(--vw)), 144px);
    right: clamp(218px, calc(445 * var(--vw)), 445px);
}

.main_section_05_card_header_text {
    font-family: Noto Sans KR;
    font-weight: 700;
    font-size: clamp(12px, calc(24 * var(--vw)), 24px);
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #67584C;
}

.main_section_05_card_header_circle_box {
    margin-left: clamp(5px, calc(10 * var(--vw)), 10px);
    width: clamp(12px, calc(24 * var(--vw)), 24px);
    height: clamp(12px, calc(24 * var(--vw)), 24px);
    border-radius: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-family: Noto Sans KR;
    font-weight: 700;
    font-size: clamp(10px, calc(20 * var(--vw)), 20px);
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;

}

.main_section_05_card_header {
    width: clamp(98px, calc(186 * var(--vw)), 186px);
    height: clamp(19px, calc(39 * var(--vw)), 39px);
    background-color: #FFD677;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.main_section_05_card_header_triangle {
    width: 0;
    height: 0;
    border-top: clamp(6px, calc(12 * var(--vw)), 12px) solid #C79354;
    border-left: clamp(11px, calc(22 * var(--vw)), 22px) solid transparent;
}

.main_section_05_card_content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: clamp(305px, calc(610 * var(--vw)), 610px);
    height: clamp(90px, calc(180 * var(--vw)), 180px);
    border-radius: clamp(8px, calc(16 * var(--vw)), 16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 62.98%);

}

.main_section_05_card_content_yellow {
    font-family: Noto Sans KR;
    font-weight: 700;
    font-size: clamp(14px, calc(32 * var(--vw)), 32px);
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFE29D;

}

.main_section_05_card_content_text {
    font-family: Noto Sans KR;
    font-weight: 500;
    font-size: clamp(14px, calc(32 * var(--vw)), 32px);
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #eee;
}

.main_section_05_chain_box {
    margin: 0 clamp(calc(10 * var(--mobile-divide) * 1px), calc(10 * var(--vw)), 10px);
    width: clamp(calc(35 * var(--mobile-divide) * 1px), calc(35 * var(--vw)), 35px);
}

.main_section_06 {
    /*height: clamp(calc(960 * var(--mobile-divide) * 1px), calc(960 * var(--vw)), 960px);*/
    padding-top: clamp(calc(74 * var(--mobile-divide) * 1px), calc(74 * var(--vw)), 74px);
    padding-bottom: clamp(calc(150 * var(--mobile-divide) * 1px), calc(150 * var(--vw)), 150px);
    background-color: #1C1816;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main_section_06_header_text {
    font-family: Noto Sans KR;
    font-weight: 700;
    font-size: clamp(20px, calc(40 * var(--vw)), 40px);
    line-height: 100%;
    letter-spacing: -3%;
    text-align: center;
    color: #BFA06F;
}

.main_section_06_sub_box {
    margin-top: clamp(calc(116 * var(--mobile-divide) * 1px), calc(116 * var(--vw)), 116px);
    margin-bottom: clamp(calc(304 * var(--mobile-divide) * 1px), calc(304 * var(--vw)), 304px);
    gap: clamp(calc(8 * var(--mobile-divide) * 1px), calc(8 * var(--vw)), 8px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main_section_06_sub_text {
    font-family: Noto Sans KR;
    font-weight: 400;
    font-size: clamp(14px, calc(32 * var(--vw)), 32px);
    line-height: 150%;
    letter-spacing: -2%;
    text-align: center;
    color: #AEAEAE;
}

.main_section_06_sub_yellow {
    margin: 0 7.5px;
    padding: 12px clamp(8px, calc(40 * var(--vw)), 40px);
    color: #FFDB64;
    font-family: Noto Serif KR;
    font-weight: 700;
    font-size: clamp(18px, calc(40 * var(--vw)), 40px);
    line-height: 150%;
    letter-spacing: -2%;
    text-align: center;
    background-color: rgba(195, 184, 167, 0.13);
    border-radius: 8px;
}

.main_section_06_comma {
    text-align: center;
    margin: 0 clamp(calc(16 * var(--mobile-divide) * 1px), calc(16 * var(--vw)), 16px);
}

.main_section_06_comma_wrapper {
    margin: 0 10px;
}

.main_section_06_comma_box {
    font-family: Noto Serif KR;
    font-weight: 900;
    font-size: clamp(56px, calc(72 * var(--vw)), 72px);
    line-height: 90%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFCE65;
    height: clamp(calc(65 * var(--mobile-divide) * 1px), calc(65 * var(--vw)), 65px);
}

.main_section_06_bottom_text {
    font-family: Noto Sans KR;
    font-weight: 700;
    font-size: clamp(20px, calc(40 * var(--vw)), 40px);
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
}

.main_section_07 {
    position: relative;
    overflow: hidden;
}
.main_section_07 svg {
    display: block;
    transform: translateZ(0);
}

.main_section_07_white_box {
    width: 100vw;
    height: 5px;
    background-color: #fff;
}

.main_section_07_black_box {
    width: 100vw;
    height: 5px;
    background-color: #1C1816;
}



.background_white {
    background-color: #fff;
}

.main_section_07_title_box {
    position: absolute;
    top: clamp(110px, calc(388 * var(--vw)), 388px);
    text-align: center;
}


.main_section_07_header_text {
    font-family: Noto Sans KR;
    font-weight: 700;
    font-size: clamp(16px, calc(48 * var(--vw)), 48px);
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFF1AA;
}

.main_section_07_header_big_text {
    color: #FFE771;

}

.main_section_07_left_bracket {
    width: clamp(8px, calc(24 * var(--vw)), 24px);
    height: clamp(39px, calc(72 * var(--vw)), 72px);
    border-top: clamp(2px, calc(6 * var(--vw)), 6px) solid #FFE771;
    border-left: clamp(2px, calc(6 * var(--vw)), 6px) solid #FFE771;
    border-bottom: clamp(2px, calc(6 * var(--vw)), 6px) solid #FFE771;
}

.main_section_07_right_bracket {
    width: clamp(8px, calc(24 * var(--vw)), 24px);
    height: clamp(39px, calc(72 * var(--vw)), 72px);
    border-top: clamp(2px, calc(6 * var(--vw)), 6px) solid #FFE771;
    border-right: clamp(2px, calc(6 * var(--vw)), 6px) solid #FFE771;
    border-bottom: clamp(2px, calc(6 * var(--vw)), 6px) solid #FFE771;
}


.main_section_07_graph_box_pc {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    width: 100%;
    overflow: hidden;
}

.main_section_07_graph_box_mobile {
    display: none;
}


.main_section_07_yellow_graph {
    display: flex;
    width: 100%;
}

.main_section_07_graph_02 {
    position: absolute;
    width: clamp(calc(127 * var(--mobile-divide) * 1px), calc(127 * var(--vw)), 127px);
    top: clamp(calc(157.75 * var(--mobile-divide) * 1px), calc(157.75 * var(--vw)), 157.75px);
    left: clamp(calc(805.38 * var(--mobile-divide) * 1px), calc(805.38 * var(--vw)), 805.38px);
    font-family: Noto Sans KR;
    font-weight: 500;
    background-color: #fff;
    font-size: clamp(8px, calc(22 * var(--vw)), 22px);
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    color: #fff;
}

.main_section_07_graph_03 {

    width: clamp(calc(143.75 * var(--mobile-divide) * 1px), calc(143.75 * var(--vw)), 143.75px);
    top: clamp(calc(252.5 * var(--mobile-divide) * 1px), calc(252.5 * var(--vw)), 252.5px);
    left: clamp(calc(1021 * var(--mobile-divide) * 1px), calc(1021 * var(--vw)), 1021px);
    position: absolute;
    font-family: Noto Sans KR;
    font-weight: 500;
    font-size: clamp(8px, calc(20 * var(--vw)), 20px);
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    color: #fff;
}

.main_section_07_graph_04 {
    position: absolute;

    width: clamp(calc(152 * var(--mobile-divide) * 1px), calc(152 * var(--vw)), 152px);
    top: clamp(calc(355.5 * var(--mobile-divide) * 1px), calc(355.5 * var(--vw)), 355.5px);
    left: clamp(calc(1214.38 * var(--mobile-divide) * 1px), calc(1214.38 * var(--vw)), 1214.38px);
    font-family: Noto Sans KR;
    font-weight: 500;
    font-size: clamp(8px, calc(20 * var(--vw)), 20px);
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    color: #fff;
}


.main_section_07_info_text {
    font-family: Noto Sans KR;
    font-weight: 700;
    font-size: clamp(14px, calc(40 * var(--vw)), 40px);
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;

    color: #C4824D;
}

.main_section_07_brown_box {
    display: flex;
    margin: 0.83vw 0;
}

.main_section_07_brown {
    font-family: Noto Sans KR;
    font-weight: 700;
    font-size: clamp(16px, calc(48 * var(--vw)), 48px);
    letter-spacing: 0%;
    text-align: center;
    color: #7B5639;
}

.main_section_07_dot_wrapper {
    position: absolute;
    bottom: clamp(6px, calc(83 * var(--vw)), 83px);
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.main_section_07_dot_box {
    gap: clamp(8px, calc(24 * var(--vw)), 24px);
    margin-top: clamp(4px, calc(16 * var(--vw)), 16px);
}

.main_section_07_dot {
    width: clamp(4px, calc(12 * var(--vw)), 12px);
    height: clamp(4px, calc(12 * var(--vw)), 12px);
    background-color: #7B5639;
    border-radius: 100%;
}


.main_section_08 {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    height: clamp(calc(640 * var(--mobile-divide) * 1px), calc(640 * var(--vw)), 640px);
}
.main_section_08_hide_line {
    position: absolute;
    top: -3px;
    width: 100%;
    background-color: #fff;
    height: 10px;
}

.main_section_08_book {
    img {
        min-width: 270px;
        width: calc(576 * var(--vw));
        max-width: 576px;
    }
}

.main_section_08_info_box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: 5vw;
}

.main_section_08_yellow {
    font-family: Noto Sans KR;
    font-weight: 700;
    font-size: clamp(12px, calc(24 * var(--vw)), 24px);
    line-height: 100%;
    letter-spacing: 0%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 4px clamp(4px, 0.83vw, 16px);
    background-color: #DAA54880;
    color: #5A492C;
}

.main_section_08_big_text_box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin: 0.83vw 0;
}

.main_section_08_big_text {
    font-family: Noto Sans KR;
    font-weight: 900;
    font-size: clamp(22px, calc(48 * var(--vw)), 48px);
    line-height: 125%;
    letter-spacing: -3%;
    text-align: right;
    text-transform: uppercase;

    color: #625C56;
}

.main_section_08_brown {
    color: #AC8563;
}

.main_section_08_small_box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.main_section_08_small {
    font-family: Noto Sans KR;
    font-weight: 700;
    font-size: clamp(14px, calc(24 * var(--vw)), 24px);
    line-height: 125%;
    letter-spacing: 0%;
    text-align: right;
    color: #444444;
}

.main_section_09 .marquee {
    --item-size: 11;
    --time: calc(var(--item-size) * 2s);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    min-width: 100%;
    animation: marquee_scroll linear infinite normal;
    animation-duration: var(--time);
    gap: clamp(14px, calc(32 * var(--vw)), 32px);
}

.marquee_box {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    overflow: hidden;
    user-select: none;
    flex: 1;
}

.marquee_item_box {
    border-radius: 16px;
    border: 1px solid #DDD6D2;
}


.main_section_09 {
    padding: clamp(calc(48 * var(--mobile-divide) * 1px), calc(48 * var(--vw)), 48px);
    background-color: #F0E7DD;
}

.main_section_09_info_box {
    gap: clamp(calc(16 * var(--mobile-divide) * 1px), calc(16 * var(--vw)), 16px);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: clamp(calc(40 * var(--mobile-divide) * 1px), calc(40 * var(--vw)), 40px);
}

.main_section_09_logo_box img {
    height: clamp(62px, calc(83 * var(--vw)), 83px);
}

.main_section_09_text_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(calc(16 * var(--mobile-divide) * 1px), calc(16 * var(--vw)), 16px);
}

.main_section_09_gray {
    text-align: center;
    font-family: Noto Sans KR;
    font-weight: 900;
    font-size: clamp(22px, calc(48 * var(--vw)), 48px);
    line-height: 110%;
    letter-spacing: -3%;
    text-transform: uppercase;
    color: #625C56;
}

.main_section_09_small_text {
    font-family: Noto Sans KR;
    font-weight: 700;
    font-size: clamp(14px, calc(24 * var(--vw)), 24px);
    line-height: 125%;
    letter-spacing: 0%;
    text-align: right;
    text-transform: uppercase;
    color: #444444;
}

.main_section_10 {
    height: clamp(320px, 45.8vw, 880px);
    background-position: top;
    background-size: 100% 100%;
}

.main_section_10 img {
    width: 100%;
    height: 100%;
}

.swiper_tc_english {
    display: none;
}

.swiper-wrapper .swiper-slide.lang {
    width: clamp(312px, calc(797 * var(--vw)), 797px);
    height: 100%;
    border-radius: 16px;
    background-color: #887A6A;
    padding: clamp(calc(16 * var(--mobile-divide) * 1px), calc(16 * var(--vw)), 16px) clamp(calc(19 * var(--mobile-divide) * 1px), calc(19 * var(--vw)), 19px) clamp(calc(30 * var(--mobile-divide) * 1px), calc(30 * var(--vw)), 30px) clamp(calc(24 * var(--mobile-divide) * 1px), calc(24 * var(--vw)), 24px);
}

.swiper-wrapper .swiper-slide.math {
    margin-top: clamp(calc(40 * var(--mobile-divide) * 1px), calc(40 * var(--vw)), 40px);
    width: clamp(312px, calc(797 * var(--vw)), 797px);
    max-height: 396px;
    height: 100%;
    border-radius: 16px;
    background-color: #6A7188;
    padding: clamp(calc(16 * var(--mobile-divide) * 1px), calc(16 * var(--vw)), 16px) clamp(calc(19 * var(--mobile-divide) * 1px), calc(19 * var(--vw)), 19px) clamp(calc(30 * var(--mobile-divide) * 1px), calc(30 * var(--vw)), 30px) clamp(calc(24 * var(--mobile-divide) * 1px), calc(24 * var(--vw)), 24px);

}

.swiper-wrapper .swiper-slide-active {
    z-index: 2;
}

.swiper-wrapper .tc_img {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    width: clamp(calc(241 * var(--mobile-divide) * 1px), calc(241 * var(--vw)), 241px);
    height: clamp(calc(288 * var(--mobile-divide) * 1px), calc(288 * var(--vw)), 288px);
    background-color: #fff;
    overflow: hidden;
    border-radius: 8px;
}

.swiper-wrapper .tc_img img {
    width: 100%;
}

.swiper-slide .swiper_title_box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: clamp(calc(22 * var(--mobile-divide) * 1px), calc(22 * var(--vw)), 22px);
}

.swiper-wrapper .swiper_title {
    font-family: Noto Sans KR;
    font-weight: 700;
    font-size: clamp(20px, calc(32 * var(--vw)), 32px);
    line-height: 125%;
    letter-spacing: -1%;
    text-align: center;
    color: #FFE986;
    margin-left: clamp(calc(8 * var(--mobile-divide) * 1px), calc(8 * var(--vw)), 8px);
}

.swiper-wrapper .swiper_tc_name {
    font-family: Noto Sans KR;
    font-weight: 700;
    font-size: clamp(14px, calc(32 * var(--vw)), 32px);
    line-height: 125%;
    letter-spacing: -1%;
    text-align: right;
    color: #fff;
}

.swiper-wrapper .swiper_tc_small_name {
    font-family: Noto Sans KR;
    font-weight: 700;
    font-size: clamp(calc(20 * var(--mobile-divide) * 1px), calc(20 * var(--vw)), 20px);
    line-height: 125%;
    letter-spacing: -1%;
    text-align: right;
    color: #fff;
}

.swiper-wrapper .tc_info {
    padding-left: clamp(calc(16 * var(--mobile-divide) * 1px), calc(16 * var(--vw)), 16px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    flex: 1;
    border-radius: clamp(calc(16 * var(--mobile-divide) * 1px), calc(16 * var(--vw)), 16px);
    margin-left: clamp(calc(13 * var(--mobile-divide) * 1px), calc(13 * var(--vw)), 13px);
    overflow: hidden;
}

.swiper-wrapper .tc_info_text {
    font-family: Noto Sans KR;
    font-weight: 400;
    font-size: clamp(calc(16 * var(--mobile-divide) * 1px), calc(16 * var(--vw)), 16px);
    line-height: 150%;
    letter-spacing: -1%;
    color: #fff;
}

.main_section_11 {
    background: linear-gradient(180deg, #1D1D1D 0%, #3B3430 31.25%, #302925 61.54%, #453B35 95.19%);
    padding-top: 8.75vw;
    padding-bottom: 4.7vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.main_section_11_content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main_section_11_deco_top {
    position: absolute;
}

.main_section_15_deco_box {
    width: 100%;
    background-color: red;
}

.main_section_11_deco_bottom {
    left: 0;
    position: absolute;
    bottom: 0;
}

.main_section_11_title {
    width: clamp(256px, calc(546 * var(--vw)), 546px);
    margin-bottom: clamp(calc(72 * var(--mobile-divide) * 1px), calc(72 * var(--vw)), 72px);

}

.main_section_11_title img {
    width: clamp(256px, calc(1148 * var(--vw)), 1148px);
}

.main_section_11_count_box {
    display: flex;
    flex-direction: column;
    gap: clamp(calc(16 * var(--mobile-divide) * 1px), calc(16 * var(--vw)), 16px);
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: clamp(calc(16 * var(--mobile-divide) * 1px), calc(16 * var(--vw)), 16px);
    padding: clamp(calc(54 * var(--mobile-divide) * 1px), calc(54 * var(--vw)), 54px) clamp(calc(16 * var(--mobile-divide) * 1px), calc(16 * var(--vw)), 16px);
    width: 100%;
}

.main_section_11_count_item_box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.main_section_11_count_box .wing_item {
    min-width: 300px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 2vw 1.6vw;
}

.main_section_11_count_box .wing_left {
    width: clamp(40px, calc(70 * var(--vw)), 70px);
}

.main_section_11_count_box .wing_right {
    width: clamp(40px, calc(70 * var(--vw)), 70px);
}

.main_section_11_count_box .wing_content {
    margin: 0 4px;
    font-family: Pretendard;
    font-weight: 900;
    font-size: clamp(48px, calc(56 * var(--vw)), 56px);
    line-height: 100%;
    text-align: center;
    color: #FFF0B4;
    width: clamp(200px, calc(234 * var(--vw)), 234px);
    white-space: nowrap;
}

.main_section_11_count_box .wing_box {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: clamp(58px, calc(104 * var(--vw)), 104px);
    line-height: 100%;
}

.main_section_11_count_box .wing_content_big {
    margin: clamp(calc(25 * var(--mobile-divide) * 1px), calc(25 * var(--vw)), 25px) clamp(calc(4 * var(--mobile-divide) * 1px), calc(4 * var(--vw)), 4px) 0;
    font-family: Pretendard;
    font-weight: 900;
    font-size: 56px;
    line-height: 100%;
    text-align: center;
    color: #FFF0B4;
    width: clamp(200px, calc(234 * var(--vw)), 234px);
    white-space: nowrap;
}

.main_section_11_count_box .big_count {
    font-size: clamp(56px, calc(72 * var(--vw)), 72px);
}

.main_section_11_count_box .plus {
    font-family: Pretendard;
    font-weight: 900;
    width: clamp(32px, calc(56 * var(--vw)), 56px);
    line-height: 100%;
    text-align: center;
    color: #E8B062;
}

.main_section_11_count_box .small_plus {
    font-family: Pretendard;
    font-weight: 900;
    font-size: clamp(32px, calc(40 * var(--vw)), 40px);
    line-height: 100%;
    text-align: center;
    color: #E8B062;
}

.main_section_11_count_box .info_text {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: clamp(8px, calc(16 * var(--vw)), 16px);
    font-family: Noto Sans KR;
    font-weight: 700;
    font-size: clamp(18px, calc(24 * var(--vw)), 24px);
    text-align: center;
    line-height: 100%;
    color: #DDDDDD;
}

.main_section_11_school {
    margin-top: clamp(calc(120 * var(--mobile-divide) * 1px), calc(120 * var(--vw)), 120px);
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: clamp(calc(24 * var(--mobile-divide) * 1px), calc(24 * var(--vw)), 24px);
}

.main_section_11_school_item {
    width: clamp(calc(520 * var(--mobile-divide) * 1px), calc(520 * var(--vw)), 520px);
    margin-bottom: 1.25vw;

}

.main_section_11_school_title {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: clamp(calc(24 * var(--mobile-divide) * 1px), calc(24 * var(--vw)), 24px);
}

.main_section_11_school_content {
    padding: clamp(calc(24 * var(--mobile-divide) * 1px), calc(24 * var(--vw)), 24px) 0;
    overflow: hidden;
    height: 320px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
}

.vertical_marquee {
    display: flex;
    flex-direction: column;
    align-items: center;
    user-select: none;
    --item-size: 5;
    --time: calc(var(--item-size) * 30s);

    animation: marquee_scroll_vertical linear infinite normal;
    animation-duration: var(--time);
}

.vertical_marquee_slow {
    display: flex;
    flex-direction: column;
    align-items: center;
    user-select: none;
    --item-size: 10;
    --time: calc(var(--item-size) * 30s);

    animation: marquee_scroll_vertical linear infinite normal;
    animation-duration: var(--time);
}

.vertical_marquee_fast {
    display: flex;
    flex-direction: column;
    align-items: center;
    user-select: none;
    --item-size: 2;
    --time: calc(var(--item-size) * 30s);

    animation: marquee_scroll_vertical linear infinite normal;
    animation-duration: var(--time);
}

.kakao_vertical_marquee {
    display: flex;
    flex-direction: column;
    align-items: center;
    user-select: none;
    --item-size: 2;
    --time: calc(var(--item-size) * 10s);

    animation: marquee_scroll_vertical linear infinite normal;
    animation-duration: var(--time);
}

.kakao_marquee_item {
    display: flex;
    align-items: center;
    padding-top: clamp(calc(16 * var(--mobile-divide) * 1px), calc(16 * var(--vw)), 16px);
    gap: 30px;
}

.main_section_11_school_content_title {
    padding-block: 4px;
    padding-inline: 16px;
    background-color: #B18954;
    font-family: Pretendard;
    font-weight: 800;
    font-size: 24px;
    line-height: 100%;
    text-align: center;
    margin-bottom: 16px;
    color: #fff;
}

.main_section_11_school_content_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Pretendard;
    font-weight: 700;
    font-size: 18px;
    line-height: 200%;
    color: #FFFFFF;
    text-align: center;
}

.main_section_11_footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 40px;
}

.main_section_11_footer_text {
    font-family: Noto Sans KR;
    font-weight: 700;
    font-size: clamp(14px, calc(26 * var(--vw)), 26px);
    line-height: 100%;
    text-align: center;
    color: #fff;

}

.main_section_11_footer_yellow {
    font-family: Noto Sans KR;
    font-weight: 600;
    font-size: clamp(14px, calc(26 * var(--vw)), 26px);
    line-height: 100%;
    text-align: center;
    color: #FDE39C;
}

.main_section_12 {
    padding: clamp(calc(140 * var(--mobile-divide) * 1px), calc(140 * var(--vw)), 140px) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
}

.main_section_12_title {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Noto Sans KR;
    font-weight: 900;
    font-size: clamp(22px, calc(48 * var(--vw)), 48px);
    line-height: 110.00000000000001%;
    letter-spacing: -2%;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 40px;
}

.main_section_12_sub_title {
    margin-top: 16px;
    font-family: Noto Sans KR;
    font-weight: 700;
    font-size: clamp(14px, calc(24 * var(--vw)), 24px);
    line-height: 125%;
    letter-spacing: 0%;
    text-transform: uppercase;

    color: #444444;
}

.main_section_12_bold_title {
    font-family: Noto Sans KR;
    font-weight: 700;
    font-size: clamp(14px, calc(24 * var(--vw)), 24px);
    line-height: 125%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #C08E68;
}

.main_section_12_kakao {
    mask-image: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, rgba(197, 197, 197, 0.82) 13.46%, #B3B3B3 22.6%, #A2A2A2 67.31%, rgba(139, 139, 139, 0.77) 82.21%, rgba(115, 115, 115, 0) 100%);
    height: clamp(720px, calc(1024 * var(--vw)), 1024px);
    overflow: hidden;
}

.main_section_14 {
    text-align: center;
    padding: clamp(calc(56 * var(--mobile-divide) * 1px), calc(56 * var(--vw)), 56px) 0 clamp(calc(46 * var(--mobile-divide) * 1px), calc(46 * var(--vw)), 46px);
    background-color: #F1EBE5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main_section_14_title {
    font-family: Noto Sans KR;
    font-weight: 900;
    font-size: clamp(20px, calc(48 * var(--vw)), 48px);
    line-height: 100%;
    letter-spacing: 0%;
    color: #A88758;
}

.main_section_14_sub_title {
    margin-top: clamp(calc(8 * var(--mobile-divide) * 1px), calc(8 * var(--vw)), 8px);
    font-family: Noto Sans KR;
    font-weight: 700;
    font-size: clamp(14px, calc(24 * var(--vw)), 24px);
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #444444;
}

.main_section_14_map {
    position: relative;
    width: clamp(calc(1500 * var(--mobile-divide) * 1px), calc(1500 * var(--vw)), 1500px);
    margin-top: clamp(calc(13 * var(--mobile-divide) * 1px), calc(13 * var(--vw)), 13px);
}

.main_section_13 {
    padding: clamp(calc(56 * var(--mobile-divide) * 1px), calc(56 * var(--vw)), 56px) 0;
    background-color: #fff;
}

.main_section_13_title {
    font-family: Noto Sans KR;
    font-weight: 900;
    font-size: clamp(20px, calc(48 * var(--vw)), 48px);
    line-height: 100%;
    letter-spacing: -2%;
    text-align: center;
    color: #303234;
}

.main_section_13_sub_title {
    margin-top: clamp(8px, calc(16 * var(--vw)), 16px);
    font-family: Noto Sans KR;
    font-weight: 700;
    font-size: clamp(14px, calc(24 * var(--vw)), 24px);;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;

    padding: 8px clamp(4px, calc(24 * var(--vw)), 24px);;
    background-color: #DAA54880;
    color: #5A492C;
}

.main_section_13_bottom {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: clamp(342px, calc(1204 * var(--vw)), 1204px);
}

.main_section_13_carousel {
    margin: clamp(calc(40 * var(--mobile-divide) * 1px), calc(40 * var(--vw)), 40px) 0;
}

.main_section_15 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 320px;
    background-image: url("/assets/images/img_main_section_15_bg.png");
}

.main_section_15_content_box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.main_section_15_content {
    width: 62.5vw;
}

.main_section_15_title_box {
    margin-bottom: clamp(calc(24 * var(--mobile-divide) * 1px), calc(24 * var(--vw)), 24px);;
}

.main_section_15_title {
    font-family: Noto Sans KR;
    font-weight: 700;
    font-size: clamp(20px, calc(24 * var(--vw)), 24px);
);
    line-height: 125%;
    text-align: right;
    color: #fff;
}

.main_section_15_sub_title {
    margin-top: clamp(4px, calc(8 * var(--vw)), 8px);
    font-family: Noto Sans KR;
    font-weight: 500;
    font-size: clamp(14px, calc(16 * var(--vw)), 16px);
    line-height: 125%;
    text-transform: uppercase;
    text-align: right;
    color: #fff;
}

.main_section_15_kakao_btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0 clamp(16px, calc(24 * var(--vw)), 24px);
    border-radius: 52vw;
    background-color: #FFDE4D;
    min-height: 40px;
    height: 2.08vw;
    color: #5F482F;
    font-family: Noto Sans;
    font-weight: 700;
    line-height: 100%;
    font-size: 16px;
}

.main_section_15_service {
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.main_section_15_img_box {
    max-width: 480px;
    min-width: 240px;
    width: 25vw;
}


.temp_footer {
    background-color: #564A3E;
    height: clamp(calc(286 * var(--mobile-divide) * 1px), calc(286 * var(--vw)), 286px);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.temp_footer .information_box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.temp_footer .footer_text {
    font-family: Noto Sans KR;
    font-weight: 300;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: -1%;
    color: #eeeeee;
}

.temp_footer .phone_text {
    font-family: Noto Sans KR;
    font-weight: 300;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: -1%;
    color: #eeeeee;
}

.footer_use {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.temp_footer .footer_bar {
    width: 1px;
    height: 12px;
    margin: 0 12px;
    background-color: #EEEEEE;
}

.temp_footer .footer_company {
    display: flex;
    flex-direction: row;
    white-space: wrap;
}

.footer_box {
    width: 62.5vw;
}

.fixed_bottom_btn {
    font-size: clamp(16px, calc(24 * var(--vw)), 24px);;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 4px 0px #00000040;
    background: #E38B10;
    left: 50%;
    transform: translateX(-50%);
    z-index: 111;
    position: fixed;
    bottom: 30px;
    width: 600px;
    height: 72px;
    font-family: Inter;
    font-weight: 700;
    line-height: 100%;
    color: #fff;
    border-radius: 88px;
}


.remote {
    display: flex;
    flex-direction: column;
    gap: clamp(calc(24 * var(--mobile-divide) * 1px), calc(24 * var(--vw)), 24px);;
    z-index: 999999;
    position: fixed;
    right: 80px;
    top: 243px;
}

.remote_bar {
    padding: 56px 16px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 99px;
}

.remote_split {
    margin: 8px 0;
    width: 100%;
    height: 1px;
    background-color: #444444;
}

.remote_text {
    font-family: Noto Sans KR;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: -1%;
    color: #CCCCCC;
}

.remote_text_small {
    white-space: nowrap;
    font-family: Noto Sans KR;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: -1%;

    color: #CCCCCC;
}


.remote_bar_item {
    height: 64px;
    width: 59px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.remote_top {
    font-family: Pretendard;
    font-weight: 500;
    font-size: clamp(calc(24 * var(--mobile-divide) * 1px), calc(24 * var(--vw)), 24px);
    line-height: 125%;
    letter-spacing: -1%;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 99px;
    width: 91px;
    height: 88px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: #CCCCCC;
}

.mobile_swiper_tc_name {
    display: none;
}

.mobile_world_map {
    width: 100%;
}

@media (max-width: 1239px) {
    .fixed_bottom_btn {
        bottom: 111px;
    }

    .main_section_11_count_box {
        display: flex;
        flex-direction: column;
        border-radius: 24px;
    }

    .main_section_11_count_item_box {
        display: flex;
        flex-direction: column;
    }

    .main_section_11_school {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 56px;
    }

    .remote {
        display: none;
    }

    .main_section_03_box {
        margin-bottom: 0;
    }

    .main_section_03_logo_box {
        margin-top: 40px;
    }

    .main_section_04_sub_title_box {
        width: 95%;
    }

    .main_section_05_title_box {
        margin-bottom: 24px;
    }

    .main_section_05_card_box {
        gap: 32px;
    }

    .swiper-wrapper .tc_info {
        display: none;
    }

    .swiper-wrapper .tc_img {
        width: 280px;
        height: 288px;
        margin: 0 16px;
    }

    .swiper_tc_name {
        display: none;
    }

    .swiper-wrapper .swiper-slide.lang {
        width: 312px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .swiper-wrapper .swiper-slide.math {
        width: 312px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mobile_swiper_tc_name {
        margin-top: 8px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        font-family: Noto Sans KR;
        font-weight: 700;
        font-size: 22px;
        line-height: 125%;
        letter-spacing: -1%;
        text-align: right;
        color: #fff;
    }

    .temp_footer {
        height: auto;
        margin-bottom: 0;
    }

    .temp_footer .information_box {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .temp_footer .footer_company {
        display: flex;
        flex-direction: column;
        margin-top: 24px;
        margin-bottom: 16px;
    }

    .footer_box {
        padding: 30px 16px;
        width: 100%;
    }

    .extra_information {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin-top: 24px;
    }

    .temp_footer .phone_text {
        font-family: Noto Sans KR;
        font-weight: 700;
        font-size: 22px;
        line-height: 150%;
        letter-spacing: -1%;
    }

    .work_time_box {
        text-align: right;
    }
}


@media (max-width: 719px) {
    .main_section_07_graph_box_pc {
        display: none;
    }
    .main_section_07_graph_box_mobile {
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        width: 100%;
        overflow: hidden;
    }
    .hc_box .hc_box_black_text {
        position: absolute;
        top: -20px;
        letter-spacing: 0.22em;
    }

    .main_section_12_kakao {
        width: 100%;
        padding: 0 27px;
    }

    .kakao_vertical_marquee {
        width: 100%;
        animation-duration: 80s;
    }

    .kakao_marquee_item {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .main_section_15_service {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .main_section_15_sub_title {
        text-align: center;
        margin-bottom: 16px;
    }

    .main_section_15_content {
        width: 100%;
    }

    .main_section_15_content_box {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
    }

    .main_section_14_map {
        width: 100%;
    }

    .main_section_04_highlight_box {
        width: 253px;
    }

    .main_section_06_sub_box {
        gap: 8px;
        margin: 96px 0;
    }

    .main_section_07_title_box {
        width: 290px;
    }

    .main_section_07_brown_box {
        margin: 0;
    }

    .main_section_08 {
        height: 475px;
        flex-direction: column;
        gap: 24px;
    }

    .main_section_08_info_box {
        align-items: center;
    }

    .main_section_08_big_text {
        text-align: center;
    }

    .main_section_08_big_text_box {
        align-items: center;
    }

    .main_section_08_small_box {
        align-items: center;
    }

    .main_section_09 {
        padding: 56px 0;
    }

    .main_section_09_small_text {
        text-align: center;
        width: 80%;
    }

    .main_section_10 {
        width: 100%;
        height: 100%;
    }

    .main_section_11_content {
        padding: 56px 0;
        width: 100%;
    }

    .main_section_11 {
        padding: 0 8px;
    }

    .main_section_11_count_box .wing_content_big {
        font-size: 48px;
    }

    .main_section_11_school_item {
        width: 100%;
    }

    .main_section_11_school {
        gap: 32px;
    }

    .wing_item {
        height: 184px;
    }

    .main_section_12_sub_title {
        margin-top: 0;
    }

    .main_section_11_footer_text {
        width: 80%;
        line-height: 150%;
    }

    .main_section_13 {
        display: flex;
        flex-direction: column;
        gap: 40px;
        padding: 56px 0;
    }


    .swiper-wrapper .swiper_title_box {
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin-top: 16px;
        margin-bottom: 16px;
    }



    .mobile_swiper_tc_small_name {
        margin-left: 4px;
        font-family: Noto Sans KR;
        font-weight: 700;
        font-size: 14px;
        line-height: 125%;
        letter-spacing: -1%;
        text-align: right;
        color: #fff;
    }

    .fixed_bottom_btn {
        border-radius: 0;
        width: 100%;
        bottom: 0;
    }


}