@charset "utf-8";

/* font */
@font-face {
    font-family: 'Noto Sans KR';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('//bimg.mk.co.kr/2024/kpopstar/font/NotoSansKR-Light.ttf') format('truetype'),
}
@font-face {
    font-family: 'Noto Sans KR';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('//bimg.mk.co.kr/2024/kpopstar/font/NotoSansKR-Regular.ttf') format('truetype'),
}
@font-face {
    font-family: 'Noto Sans KR';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('//bimg.mk.co.kr/2024/kpopstar/font/NotoSansKR-Medium.ttf') format('truetype'),
}
@font-face {
    font-family: 'Noto Sans KR';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('//bimg.mk.co.kr/2025/menu/intro/font/NotoSansKR-SemiBold.ttf') format('truetype'),
}
@font-face {
    font-family: 'Noto Sans KR';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('//bimg.mk.co.kr/2024/kpopstar/font/NotoSansKR-Bold.ttf') format('truetype'),
}

/* reset */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,textarea,p,blockquote,th,td,input,select,button,figure{margin:0;padding:0;}
fieldset,img{border:0 none;}
dl,ul,ol,menu,li{list-style:none;}
blockquote,q{quotes:none;}
blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;}
input,select,textarea,button{border-radius:0;vertical-align:middle;}
input::-ms-clear{display:none;}
hr{display:none;}
button{border:0 none;background-color:transparent;cursor:pointer;}
button,input{border-radius:0;border:0;-webkit-border-radius:0;}
table{border-collapse:collapse;border-spacing:0;border:0;}
caption{display:none;}
body{direction:ltr;word-break:keep-all;word-wrap:break-word;-webkit-text-size-adjust:none;}
body,th,td,input,select,textarea,button{font-size:100%;font-family:"Noto Sans KR","Apple SD Gothic Neo",Arial,sans-serif;line-height:1;color:#242424;}
a{color:#212121;text-decoration:none;}
address,caption,cite,code,dfn,em,var{font-style:normal;font-weight:normal;}
img{vertical-align:middle;}
.is_blind{position:absolute;overflow:hidden;width:1px;height:1px;padding:0;margin:-1px;border:0;clip:rect(0, 0, 0, 0);white-space:nowrap;}
.clearfix::after {display:block;clear:both;content:"";}

/* common */
:root {
    --c-bg: #fff;
    --c-black: #000;
    --c-txt: #212121;
    --c-gray: #444;
    --c-gray-01: #777;
    --c-gray-02: #999;
    --c-gray-03: #888;
    --c-gray-04: #ccc;
    --c-line: #E1E1E1;
    --c-box: #F2F2F2;
    --c-point: #1CA673;
    --c-point-l: #EDFFF8;
    --c-yellow: #FFEDA7;
    --c-yellow-l: #FFFAE7;
    --c-yellow-d: #D27000;
}
html {
    scroll-behavior: smooth;
    font-size: 10px !important;
}
body {
    background-color: #fff;
    color: var(--c-txt);
}
body * {
    line-height: 1.4;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    transition: 0.3s ease;
}
a {display: block;}
img {width: 100%;}
.inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}
.txt_point {color: var(--c-point);}
.ly_mode {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}
.ly_mode::after {
    content: "";
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 200;
}

/* badge */
.badge {
    display: inline-block;
    margin: 0 auto;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 1.3rem;
    background-color: var(--c-bg);
    color: var(--c-point);
}
.badge.badge_round {
    border-radius: 100%;
}
.badge.badge_point {
    background-color: var(--c-point);
    color: var(--c-bg);
}
.badge.badge_yellow {
    background-color: var(--c-yellow-l);
    border: 1px solid var(--c-yellow);
    color: var(--c-yellow-d)
}

/* btn */
.btn {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    width: 100%;
    max-width: 260px;
    height: 50px;
    margin: 0 auto;
    padding: 0 15px;
    border: 1px solid var(--c-line);
    border-radius: 10px;
    background-color: var(--c-bg);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--c-gray);
}
.btn:hover {filter: brightness(0.9);}
.btn.btn_l {height: 55px;}
.btn.btn_m {
    height: 45px;
    font-size: 1.4rem;
}
.btn.btn_s {
    height: 35px;
    font-size: 1.3rem;
}
.btn.btn_xs {
    height: 30px;
    font-size: 1.2rem;
}
.btn.btn_r {border-radius: 50px;}
.btn.btn_shadow {box-shadow: 10px 10px 30px rgba(28, 116, 115, 0.3);}
.btn.btn_line {
    border: 1px solid var(--c-line);
    background-color: var(--c-bg);
    color: var(--c-gray);
}
.btn.btn_line:hover {
    filter: none;
    background-color: var(--c-box);
}
.btn.btn_point {
    border: 0;
    background-color: var(--c-point);
    color: var(--c-bg);
}
.btn.btn_point_line {
    border: 2px solid var(--c-point);
    background-color: var(--c-bg);
    color: var(--c-point);
}
.btn.btn_point_line:hover {
    filter: none;
    background-color: var(--c-point-l);
}
.btn.btn_link_r {
    max-width: 160px;
    background-color: var(--c-box);
    border-radius: 50px;
    font-weight: 400;
    color: var(--c-gray);
}
.btn.btn_disabled {
    background-color: var(--c-box);
    color: var(--c-gray-03);
}
.btn.btn_disabled.active {
    background-color: var(--c-bg);
    color: var(--c-point);
    border-color: var(--c-point);
}
.btn.btn_disabled.active .ic_arrow_right_gray {background-image: url(//bimg.mk.co.kr/2025/plant/images/ic_arrow_right_point.svg);}

/* icon */
.ic {
    display: block;
    width: 24px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.ic_s {
    width: 22px;
    height: 22px;
}
.ic_xs {
    width: 18px;
    height: 18px;
}
.ic.ic_arrow {background-image: url(//bimg.mk.co.kr/2025/plant/images/ic_arrow.svg);}
.ic.ic_arrow_gray {background-image: url(//bimg.mk.co.kr/2025/plant/images/ic_arrow_gray.svg);}
.ic.ic_arrow_right {background-image: url(//bimg.mk.co.kr/2025/plant/images/ic_arrow_right.svg);}
.ic.ic_arrow_right_point {background-image: url(//bimg.mk.co.kr/2025/plant/images/ic_arrow_right_point.svg);}
.ic.ic_arrow_right_gray {background-image: url(//bimg.mk.co.kr/2025/plant/images/ic_arrow_right_gray.svg);}
.ic.ic_arrow_w {
    margin-top: 3px;
    background-image: url(//bimg.mk.co.kr/2025/plant/images/ic_arrow_w.svg);
}
.ic.ic_check_off {background-image: url(//bimg.mk.co.kr/2025/plant/images/ic_check_off.svg);}
.ic.ic_check_on {background-image: url(//bimg.mk.co.kr/2025/plant/images/ic_check_on.svg);}
.ic.ic_check_w {background-image: url(//bimg.mk.co.kr/2025/plant/images/ic_check_w.svg);}
.ic.ic_help {background-image: url(//bimg.mk.co.kr/2025/plant/images/ic_help.svg);}
.ic.ic_info {background-image: url(//bimg.mk.co.kr/2025/plant/images/ic_info.svg);}
.ic.ic_info_w {background-image: url(//bimg.mk.co.kr/2025/plant/images/ic_info_w.svg);}
.ic.ic_open {background-image: url(//bimg.mk.co.kr/2025/plant/images/ic_open.svg);}
.ic.ic_top {background-image: url(//bimg.mk.co.kr/2025/menu/intro/images/ic_top.svg);}
.ic.ic_close {background-image: url(//bimg.mk.co.kr/2025/menu/intro/images/ic_close.svg);}

/* input */
input[type="text"],
input[type="password"] {
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 50px;
    padding: 8px 15px;
    background-color: var(--c-bg);
    border : 1px solid var(--c-line);
    border-radius: 10px;
    color: var(--c-gray);
    line-height: 1;
}
input[type="text"]:focus,
input[type="text"]:focus-visible,
input[type="text"]:active,
input[type="password"]:focus,
input[type="password"]:focus-visible,
input[type="password"]:active {outline-color: var(--c-point);}
input[type="text"]::placeholder,
input[type="password"]::placeholder {
    font-size: 1.3rem;
    color: var(--c-gray-02);
    line-height: 1;
}
input[type="text"]:disabled,
input[type="password"]:disabled {background-color: var(--c-box);}

/* check box */
.chk_wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.chk_wrap input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    width: 18px;
    height: 18px;
    margin: 0 0 6px 0;
    flex: 0 0 18px;
    background: transparent;
    border: 0;
}
.chk_wrap input[type="checkbox"]::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(//bimg.mk.co.kr/2025/plant/images/ic_check_off.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 85%;
    background-color: var(--c-bg);
    border: 1px solid var(--c-gray-04);
    border-radius: 5px;
}
.chk_wrap input[type="checkbox"]:checked::before {
    background-image: url(//bimg.mk.co.kr/2025/plant/images/ic_check_w.svg);
    background-color: var(--c-point);
    border-color: var(--c-point);
}
.chk_wrap input[type="checkbox"]+label {
    display: inline-block;
    position: relative;
    width: 100%;
    padding: 10px 8px 15px;
    font-size: 1.3rem;
    line-height: normal;
    text-align: left;
    color: var(--c-gray-01);
    cursor: pointer;
}
.chk_wrap input[type="checkbox"]:checked+label {color: var(--c-point);}
.chk_all .chk_wrap input[type="checkbox"]+label {font-weight: 500;}
.chk_wrap input[type="checkbox"]+label.info_agr_wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 85%;
    width: calc(100% - 60px);
    padding: 8px 10px;
    font-size: 1.4rem;
    color: var(--c-gray);
}
.chk_wrap .info_agr_poup {
    position: absolute;
    font-size: 1.2rem;
    color: var(--c-gray-03);
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 8px 0 8px 20px;
    z-index: 2;
}
.chk_wrap .info_agr_poup::after {
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--c-gray-03);
}
.chk_wrap.chk_noline input[type="checkbox"]::before {
    background-size: 100%;
    border: 0;
}
.chk_wrap.chk_noline input[type="checkbox"]:checked::before {
    background-image: url(//bimg.mk.co.kr/2025/plant/images/ic_check_on.svg);
    background-color: transparent;
}

/* dropdown box */
.dropdown_toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 0 8px;
}
.drop_txt_wrap {
    display: flex;
    align-items: flex-start;
    font-size: 1.3rem;
    color: var(--c-gray-01);
}
.drop_txt_wrap > span {text-align: left;}
.drop_txt_wrap .ic + span {margin-left: 5px;}
.drop_txt_wrap .ic {flex: 0 0 18px;}
.dropdown_toggle .ic.ic_arrow_gray {flex-basis: 24px;}
.dropdown_toggle.active .ic.ic_arrow_gray {transform: rotate(180deg);}
.dropdown_menu {
    display: none;
    visibility: hidden;
    height: 0;
}
.dropdown_toggle.active + .dropdown_menu {
    display: block;
    visibility: visible;
    height: 130px;
}
.dropdown_menu .txtbox {
    overflow: hidden;
    padding: 20px;
    background-color: var(--c-yellow-l);
    border: 1px solid var(--c-yellow);
    border-radius: 10px;
    color: var(--c-yellow-d);
    font-size: 1.3rem;
    text-align: left;
}
.infobox_wrap .info_data_wrap .dropdown_menu .txtbox li {
    position: relative;
    padding-left: 12px;
    margin-bottom: 5px;
    line-height: 1.6;
}
.infobox_wrap .info_data_wrap .dropdown_menu .txtbox li:last-child {margin-bottom: 0;}
.infobox_wrap .info_data_wrap .dropdown_menu .txtbox li::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 8px;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background-color: var(--c-yellow-d);
}

/* select box */
.inp_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
}
.inp_wrap .inp_select_wrap {
    position: relative;
    width: 35%;
    z-index: 1;
}
.inp_wrap .inp_cont {width: 65%;}
.inp_select_wrap .dropdown_toggle {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 50px;
    padding: 8px 10px 8px 15px;
    background-color: var(--c-bg);
    border: 1px solid var(--c-line);
    border-radius: 10px;
    color: var(--c-gray);
    line-height: 1;
    font-size: 1.4rem;
}
.inp_select_wrap .dropdown_toggle.active {border-color: var(--c-point);}
.inp_select_wrap .dropdown_toggle.active .ic.ic_arrow {transform: rotate(180deg);}
.inp_select_wrap .dropdown_toggle.active + .dropdown_menu {
    position: absolute;
    top: 50px;
    width: 100%;
    height: auto;
    overflow-y: auto;
    padding: 10px 0;
    background-color: var(--c-bg);
    box-shadow: 2px 2px 15px rgba(28, 166, 115, 0.3);
    border-radius: 10px;
    font-size: 1.4rem;
}
.infobox_wrap .info_data_wrap .ind_select .dropdown_menu li {margin-bottom: 0;}
.inp_select_wrap .dropdown_menu .menu_list {
    width: 100%;
    padding: 8px 15px;
    text-align: left;
    color: var(--c-gray);
}
.inp_select_wrap .dropdown_menu li:hover {background-color: var(--c-point-l);}
.inp_select_wrap .dropdown_menu li:hover .menu_list {color: var(--c-point);}
.dropdown_menu::-webkit-scrollbar {width: 6px;}
.dropdown_menu::-webkit-scrollbar-thumb {
  background-color: var(--c-point);
  border-radius: 8px;
}
.dropdown_menu::-webkit-scrollbar-track {background-color: var(--c-box);}

/* top btn */
.btn_totop {
    position: fixed;
    right: 2%;
    bottom: 2%;
    display: block;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--c-black);
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    z-index: 199;
}
.btn_totop .ic_top {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
}

/*-------------------------------------------------------------------
  ## header
-------------------------------------------------------------------*/
header {
    position: fixed;
    width: 100%;
    height: 60px;
    background-color: var(--c-bg);
    z-index: 100;
}
header::after {
    display: block;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: var(--c-line);
    z-index: 99;
}
header .inner {height: 100%;}
.main_logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.logo {
    width: 190px;
    height: 34px;
    margin-bottom: 10px;
    background: url(//bimg.mk.co.kr/2025/plant/images/l_main.svg) no-repeat center /contain;
}
.logo a {
    width: 100%;
    height: 100%;
}
.nav_login .btn_log {
    height: 100%;
    padding: 20px;
    padding-right: 0;
    font-weight: 500;
    font-size: 1.4rem;
}
.nav_login .btn_log:hover {opacity: 0.6;}

/*-------------------------------------------------------------------
  ## container
-------------------------------------------------------------------*/
main {
    overflow: hidden;
    position: relative;
    height: 100%;
}
.contents {padding-top: 60px;}
.contents section {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    min-height: calc(100dvh - 60px);
}

/* sec_top */
.contents section.sec_top {
    position: relative;
    align-items: flex-start;
    background: url(//bimg.mk.co.kr/2025/plant/images/im_bg.jpg) no-repeat center/cover;
}
.sec_top::after{
    content: "";
    display: block;
    position: absolute;
    right: 50%;
    bottom: -55px;
    transform: translateX(50%);
    width: 100%;
    max-width: 1200px;
    height: 500px;
    background-image: url(//bimg.mk.co.kr/2025/plant/images/im_top_paper.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1200px;
    z-index: 0;
}
.top_wrap {
    position: relative;
    height: 100%;
    min-height: calc(100dvh - 60px);
    padding: 90px 0;
    z-index: 1;
}
.top_wrap .top_txt .top_icon {
    width: 120px;
    height: 120px;
    margin: 0 auto;
}
.top_wrap .top_txt h2 {
    width: 40%;
    margin: 10px auto 15px;
    font-size: 3.5rem;
}
.top_wrap .top_txt h2 br {display: none;}
.top_wrap .top_txt p {
    font-size: 1.8rem;
    color: var(--c-gray);
    line-height: 1.8;
}
.top_wrap .top_txt .badge {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    max-width: 175px;
    margin-top: 20px;
    padding: 8px 20px;
}
.top_wrap .top_btn {
    position: absolute;
    width: 100%;
    bottom: 60px;
}
.top_btn .btn:first-child {margin-bottom: 15px;}
.top_btn .btn span {margin-left: 5px;}

/* sec_mid */
.contents section.sec_mid {flex-direction: column;}
.service {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 60px 0;
    min-height: calc(100dvh - 60px);
}
.service.serv_tint {background-color: var(--c-box);}
.service .inner {max-width: 100%;}
.cont_ttl_wrap {
    padding: 65px 20px;
    background-color: var(--c-point);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 30px;
}
.service.serv_01 .cont_ttl_wrap {background-image: url(//bimg.mk.co.kr/2025/plant/images/im_section_01.jpg);}
.service.serv_02 .cont_ttl_wrap {background-image: url(//bimg.mk.co.kr/2025/plant/images/im_section_02.jpg);}
.service.serv_03 .cont_ttl_wrap {background-image: url(//bimg.mk.co.kr/2025/plant/images/im_section_03.jpg);}
.service.serv_04 .cont_ttl_wrap {background-image: url(//bimg.mk.co.kr/2025/plant/images/im_section_04.jpg);}
.cont_ttl_wrap .badge {
    padding: 6px 20px;
    font-size: 1.6rem;
    font-weight: bold;
}
.cont_ttl_wrap .cont_ttl {
    margin: 5px 0;
    font-size: 3.5rem;
    color: var(--c-bg);
}
.cont_ttl_wrap .cont_ttl_sub {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--c-bg);
    opacity: 0.8;
}
.cont_wrap {
    width: 100%;
    max-width: 1200px;
    height: 100%;
    margin: 40px auto 0;
}
.service .cont_wrap .cont_img {
    min-height: 660px;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}
.service.serv_01 .cont_img {background-image: url(//bimg.mk.co.kr/2025/plant/images/im_section_paper_01.png);}
.service.serv_02 .cont_img {background-image: url(//bimg.mk.co.kr/2025/plant/images/im_section_paper_02.png);}
.service.serv_03 .cont_img {background-image: url(//bimg.mk.co.kr/2025/plant/images/im_section_paper_03.png);}
.service.serv_04 .cont_img {background-image: url(//bimg.mk.co.kr/2025/plant/images/im_section_paper_04.png);}

/* sec_apply */
.contents section.sec_apply {
    padding: 100px 0;
    background-color: var(--c-box);
}
.sec_apply .cont_ttl_wrap {
    padding: 0 0 50px 0;
    background-color: transparent;
}
.sec_apply .cont_ttl_wrap .badge {
    padding: 5px 35px 8px;
    background-color: var(--c-point);
    color: var(--c-bg);
}
.sec_apply .cont_ttl_wrap .cont_ttl {
    margin: 10px 0;
    color: var(--c-txt);
}
.sec_apply .cont_ttl_wrap .cont_ttl_sub {
    width: 35%;
    margin: 0 auto;
    font-weight: 500;
    color: var(--c-gray);
}
.form_box {
    max-width: 600px;
    margin: 0 auto 40px;
}
.infobox_wrap .infobox {
    padding: 35px 20px 50px;
    background-color: var(--c-bg);
    border-radius: 15px;
    border: 1px solid var(--c-line);
}
.infobox_wrap .info_ttl .badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    padding: 0;
    background-color: var(--c-point);
    font-size: 1.2rem;
    text-align: center;
    color: var(--c-bg);
}
.infobox_wrap .info_ttl p {
    margin-top: 5px;
    font-size: 2rem;
}
.infobox_wrap .info_data_wrap {
    max-width: 400px;
    margin: 30px auto 0;
}
.infobox_wrap li {margin-bottom: 5px;}
.infobox_wrap .info_data_wrap li {margin-bottom: 25px;}
.infobox_wrap li:last-child {margin-bottom: 0;}
.info_data {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 auto;
    font-size: 1.6rem;
}
.info_data label {
    display: block;
    width: 100%;
    margin-bottom: 5px;
    text-align: left;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--c-gray);
}
.info_data label span {
    position: relative;
    display: flex;
}
.info_data label span::after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    margin: 2px 0 0 5px;
    background-color: var(--c-point);
    border-radius: 100%;
}
.info_data label.no_dot span::after {content: none;}
.infobox_wrap .info_data_wrap li.ind_num {margin-bottom: 0;}
.infobox_wrap .info_data_wrap li.chk_wrap {margin-bottom: 20px;}
.infobox.inb_link .info_txt_sub {
    margin: 5px 0 10px;
    font-size: 1.4rem;
    color: var(--c-gray-01);
}
.infobox.inb_link .inb_txt_wrap {padding-bottom: 20px;}
.infobox.inb_link .btn.btn_link_r .ic.ic_open {
    width: 13px;
    height: 13px;
    margin-left: 2px;
}
.ind_select .ind_select_box {width: 100%;}
.ind_select .ind_select_box:first-child {
    margin-bottom: 30px;
    z-index: 2;
}
.ind_select .ind_select_box .inp_txt_wrap {margin-bottom: 8px;}
.inp_sub_wrap .inp_select_wrap .dropdown_toggle {height: 45px;}
.inp_sub_wrap .btn.btn_disabled {font-weight: 400;}
.inp_sub_wrap .btn.btn_disabled:hover {filter: brightness(1.0);}
.inp_sub_wrap .btn.btn_disabled.active:hover {background-color: var(--c-point-l);}
.infobox_wrap .inb_agree .info_data_wrap {margin-top: 10px;}
.infobox_wrap .inb_agree li {margin-bottom: 0;}
.infobox_wrap .inb_agree .chk_all {
    margin-bottom: 10px;
    border-bottom: 1px solid var(--c-line);
}
.infobox_wrap .inb_agree .chk_wrap input[type="checkbox"] {
    margin-bottom: 0;
    width: 20px;
    height: 20px;
    flex-basis: 20px;
}
.infobox_wrap .inb_agree .chk_wrap input[type="checkbox"].info_all:checked+label {color: var(--c-point);}
.infobox_wrap .inb_agree .chk_all .chk_wrap input[type="checkbox"]+label {
    padding: 15px 10px;
    font-size: 1.6rem;
    color: var(--c-gray);
}
.infobox_wrap .inb_agree .info_agr_txt .txt_point {font-weight: 400;}

/*-------------------------------------------------------------------
  ## popup
-------------------------------------------------------------------*/
.popup_wrap {
    overflow: hidden;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 410px;
    background-color: var(--c-bg);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 201;
}
.popup_wrap .inner {padding: 40px 25px;}
.popup {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
}
.popup .btn_close {
    position: absolute;
    top: 10px;
    right: 10px;
}
.btn_box .ic {
    width: 45px;
    height: 45px;
    background-size: 24px;
}
.popup .btn {
    max-width: 200px;
    padding: 10px;
    margin: 0 auto;
    box-shadow: none;
}
.popup .badge {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 65px;
    margin: 0 auto;
    padding: 6px 10px;
    background-color: var(--c-yellow-l);
    border: 1px solid var(--c-yellow);
    color: var(--c-yellow-d);
    font-size: 1.2rem;
}
.popup h3 {
    margin: 5px auto 15px;
    text-align: center;
    font-size: 1.9rem;
}
.popup .popup_subtxt {
    padding: 20px;
    margin-bottom: 35px;
    background-color: var(--c-box);
    border-radius: 10px;
    font-size: 1.4rem;
    color: var(--c-gray);
}
.popup .popup_subtxt>ul+p,
.popup .popup_subtxt>p+ul {margin-top: 30px;}
.popup .popup_subtxt>ul li {
    position: relative;
    margin-bottom: 2px;
    padding-left: 14px;
    line-height: 1.8;
}
.popup .popup_subtxt>ul li:last-child {margin-bottom: 0 !important;}
.popup .popup_subtxt>ul li::before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    position: absolute;
    top: 10px;
    left: 0;
    background-color: var(--c-gray);
    border-radius: 100%;
}
.popup .popup_subtxt>ul li b {margin-right: 5px;}
.popup .popup_subtxt p {line-height: 1.8;}
.popup .popup_txt.popup_v2 .popup_subtxt>p+ul {margin-top: 25px;}
.popup .popup_txt.popup_v2 .popup_subtxt>ul li {margin-bottom: 15px;}
.popup .popup_txt.popup_v2 .popup_subtxt>ul li::before {
    width: 5px;
    height: 1px;
    top: 12px;
}

/*-------------------------------------------------------------------
  ## footer
-------------------------------------------------------------------*/
footer {
    width: 100%;
    height: 80px;
    background-color: var(--c-gray);
    text-align: center;
    font-size: 1.3rem;
    color: var(--c-gray-02);
}
footer .inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/*-------------------------------------------------------------------
  ## Media queries
-------------------------------------------------------------------*/
/* labtop */
@media only screen and (max-width: 1210px) {
    /* header */
    header {height: 50px;}
    .logo {
        width: 150px;
        height: 30px;
    }
    
    /* popup */
    .popup_wrap {width: 90%;}
    .popup_wrap .inner {padding: 30px 20px;}
    .popup .popup_subtxt {
        padding: 15px;
        margin-bottom: 30px;
    }
    .popup .btn_close {
        top: 5px;
        right: 5px;
    }
    .popup .btn {max-width: 160px;}
    .popup .badge {padding: 4px 5px;}

    /* footer */
    footer {
        height: 70px;
        font-size: 1.2rem;
    }

    /* top btn */
    .btn_totop {
        width: 40px;
        height: 40px;
    }
    .btn_totop .ic_top {
        width: 20px;
        height: 20px;
    }

    /* badge */
    .badge {font-size: 1.2rem;}

    /* btn */
    .btn {
        max-width: 240px;
        font-size: 1.4rem;
    }
    .btn.btn_l {height: 50px;}

    /* icon */
    .ic {
        width: 22px;
        height: 22px;
    }
    .ic_s {
        width: 20px;
        height: 20px;
    }
    .ic_xs {
        width: 16px;
        height: 16px;
    }
   
    /* font size */
    .top_wrap .top_txt h2 {font-size: 2.6rem;}
    .cont_ttl_wrap .cont_ttl {font-size: 2.4rem;}
    .infobox_wrap .info_ttl p {font-size: 1.9rem;}
    .top_wrap .top_txt p,
    .info_data label,
    .apply_submit .btn {font-size: 1.5rem;}
    .cont_ttl_wrap .cont_ttl_sub {font-size: 1.4rem;}
    .cont_ttl_wrap .badge {font-size: 1.2rem;}

    /* contents */
    .contents {padding-top: 50px;}
    .sec_top::after {
        bottom: -170px;
        background-size: 1100px;
    }
    .top_wrap {padding: 40px 0;}
    .top_wrap .top_btn {bottom: 40px;}
    .top_wrap .top_txt .top_icon {
        width: 90px;
        height: 90px;
    }
    .top_wrap .top_txt h2 {
        width: 100%;
        margin: 5px auto 10px;
    }
    .top_wrap .top_txt h2 br {display: block;}
    .top_wrap .top_txt p {line-height: 1.6;}
    .top_wrap .top_txt .badge {
        margin-top: 15px;
        max-width: 165px;
    }
    .top_btn .btn:first-child {margin-bottom: 10px;}
    .cont_ttl_wrap {padding: 45px 20px;}
    .cont_ttl_wrap .cont_ttl {margin: 8px 0;}
    .cont_ttl_wrap .cont_ttl_sub {
        width: 75%;
        margin: 0 auto;
    }
    .service {
        padding: 40px 0;
        min-height: calc(100dvh - 40px);
    }
    .sec_apply .cont_ttl_wrap .cont_ttl {margin: 10px 0 5px;}
    .sec_apply .cont_ttl_wrap .cont_ttl_sub {
        width: 100%;
        line-height: 1.6;
    }
    .contents section.sec_apply {padding: 60px 0;}
    .sec_apply .cont_ttl_wrap {padding-bottom: 30px;}
    .infobox_wrap .infobox {padding: 30px 20px 40px;}
    .info_data label {margin-bottom: 8px;}
    .info_data label span::after {
        width: 5px;
        height: 5px;
    }
    .infobox_wrap .info_data_wrap li.chk_wrap {margin-bottom: 10px;}
    .drop_txt_wrap .ic {
        flex-basis: 16px;
        margin-top: 1px;
    }
    .dropdown_toggle.active + .dropdown_menu {height: auto;}
    .inp_select_wrap .dropdown_toggle.active + .dropdown_menu {height: 160px;}
    .inp_wrap {flex-direction: column;}
    .inp_wrap .inp_select_wrap,
    .inp_wrap .inp_cont {width: 100%;}
    .ind_select .ind_select_box:first-child {margin-bottom: 40px;}
    .inp_sub_wrap .btn.btn_disabled {max-width: 100%;}
    .service .cont_wrap .cont_img {background-size: contain;}
}

/* tablet */
@media only screen and (max-width: 768px) {
    .cont_wrap {margin-top: 15px;}
    .service .cont_wrap .cont_img {min-height: 490px;}
    .service.serv_01 .cont_img {background-image: url(//bimg.mk.co.kr/2025/plant/images/im_section_paper_01_m.png);}
    .service.serv_02 .cont_img {background-image: url(//bimg.mk.co.kr/2025/plant/images/im_section_paper_02_m.png);}
    .service.serv_03 .cont_img {background-image: url(//bimg.mk.co.kr/2025/plant/images/im_section_paper_03_m.png);}
    .service.serv_04 .cont_img {background-image: url(//bimg.mk.co.kr/2025/plant/images/im_section_paper_04_m.png);}
}

/* mobile - s */
@media only screen and (max-width: 320px) {}