/* 박스 모델, 여백 초기화 */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* HTML / Body 기본 스타일 */
html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    /* 모바일 폰트 확대 방지 */
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
    line-height: 1.6;
    color: #222;
    background-color: #fff;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* 이미지, 비디오 반응형 */
img,
video {
    max-width: 100%;
    height: auto;
}

/* 리스트 / 링크 */
ul,
ol,
li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* 버튼 초기화 */
button {
    border: none;
    background: none;
    cursor: pointer;
    font: inherit;
    color: inherit;
}

/* 폼 요소 초기화 */
input,
textarea,
select {
    font: inherit;
    color: inherit;
    background: none;
    border: 1px solid #ccc;
    outline: none;
}

textarea {
    resize: vertical;
}

/* 테이블 초기화 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* 뷰포트 폭 제한 (선택사항) */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

/* 반응형 텍스트 사이즈 예시 */
h1 {
    font-size: clamp(24px, 5vw, 36px);
}

h2 {
    font-size: clamp(20px, 4vw, 30px);
}

p {
    font-size: clamp(14px, 2vw, 18px);
}

/* 공통 유틸 클래스 예시 */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

/* 컬러 변수 선언 */
:root {
    --main-color: #0055aa;
    --sub-color: #00bcd4;
    --text-color: #222;
    --gray-color: #999;
}

@media (max-width: 1200px) {
    html {
        font-size: 15px;
    }

    .container {
        padding: 0 16px;
    }
}

.top_banner {background: #2e56cb;height: 45px;line-height: 45px;position: fixed;top: 0;width: 100%;z-index: 999;}
.top_banner h3 {display: block;text-align: center;font-size: 15px;color: #fff;font-weight: normal;letter-spacing: 3px;}
.top_banner h3 > strong {color: #ffeb00;}
.section input[id*="slide"] {display: none;}
.section .slidewrap {max-width: 100%;height: 800px;}
.section .slidelist {white-space: nowrap;font-size: 0;overflow: hidden;position: relative;}
.section .slidelist > li {display: inline-block;vertical-align: middle;width: 100%;transition: all .5s;background-position: bottom;}
.section .slidelist > li > a {display: block;position: relative;width: 100%;height: 800px;}
.section .slidelist > li:nth-of-type(1) {background: url(/bizking/images/main01.jpg) no-repeat bottom / cover fixed;}
.section .slidelist > li:nth-of-type(2) {background: url(/bizking/images/main02.jpg) no-repeat center / cover fixed;}
.section .slidelist > li:nth-of-type(3) {background: url(/bizking/images/main03.jpg) no-repeat center / cover fixed;}
.section .slidelist > li > a img {width: 100%;}
.section .slidelist label {position: absolute;z-index: 10;top: 50%;transform: translateY(-50%);padding: 50px;cursor: pointer;}
.section .slidelist .textbox {position: absolute;z-index: 1;top: 50%;left: 50%;transform: translate(-50%, -50%);line-height: 1.6;text-align: center;}
.section .slidelist .textbox h3 {font-size: 60px;color: #fff;transform: translateY(30px);transition: all .5s;text-shadow: 0px 0px 5px #000;letter-spacing: -1px;}
.section .slidelist .textbox p {font-size: 20px;color: #fff;opacity: 0;transform: translateY(30px);transition: all .5s;letter-spacing: -1px;text-shadow: 0px 0px 5px #000;font-weight: 500;}
.section .slidelist .textbox .main_bt {display: inline-block;padding: 15px 30px;font-size: 17px;background: #2e56cb;color: #fff;margin-top: 20px;border-radius: 10px;}


/* input에 체크되면 슬라이드 효과 */
.section input[id="slide01"]:checked ~ .slidewrap .slidelist > li {transform: translateX(0%);}
.section input[id="slide02"]:checked ~ .slidewrap .slidelist > li {transform: translateX(-100%);}
.section input[id="slide03"]:checked ~ .slidewrap .slidelist > li {transform: translateX(-200%);}

/* input에 체크되면 텍스트 효과 */
.section input[id="slide01"]:checked ~ .slidewrap li:nth-child(1) .textbox h3 {opacity: 1;transform: translateY(0);transition-delay: .2s;}
.section input[id="slide01"]:checked ~ .slidewrap li:nth-child(1) .textbox p {opacity: 1;transform: translateY(0);transition-delay: .4s;}
.section input[id="slide02"]:checked ~ .slidewrap li:nth-child(2) .textbox h3 {opacity: 1;transform: translateY(0);transition-delay: .2s;}
.section input[id="slide02"]:checked ~ .slidewrap li:nth-child(2) .textbox p {opacity: 1;transform: translateY(0);transition-delay: .4s;}
.section input[id="slide03"]:checked ~ .slidewrap li:nth-child(3) .textbox h3 {opacity: 1;transform: translateY(0);transition-delay: .2s;}
.section input[id="slide03"]:checked ~ .slidewrap li:nth-child(3) .textbox p {opacity: 1;transform: translateY(0);transition-delay: .4s;}

/* 좌,우 슬라이드 버튼 */
.slide-control > div {display: none;}
.section .left {left: 30px;background: url('/bizking/images/left.png') center center / 100% no-repeat;}
.section .right {right: 30px;background: url('/bizking/images/right.png') center center / 100% no-repeat;}
.section input[id="slide01"]:checked ~ .slidewrap .slide-control > div:nth-child(1) {display: block;}
.section input[id="slide02"]:checked ~ .slidewrap .slide-control > div:nth-child(2) {display: block;}
.section input[id="slide03"]:checked ~ .slidewrap .slide-control > div:nth-child(3) {display: block;}

/* 페이징 */
.slide-pagelist {text-align: center;position: relative;bottom: 50px}
.slide-pagelist > li {display: inline-block;vertical-align: middle;}
.slide-pagelist > li > label {display: block;padding: 5px;border-radius: 50%;margin: 20px 5px;cursor: pointer;border: 2px solid #fff;}
.section input[id="slide01"]:checked ~ .slidewrap .slide-pagelist > li:nth-child(1) > label {background: #fff;}
.section input[id="slide02"]:checked ~ .slidewrap .slide-pagelist > li:nth-child(2) > label {background: #fff;}
.section input[id="slide03"]:checked ~ .slidewrap .slide-pagelist > li:nth-child(3) > label {background: #fff;}

/***** 메뉴 *****/
header {position: fixed;background: white;height: 70px;width: 100%;z-index: 999;top: 45px;border-bottom: 1px solid #ddd;}
header .container {display: flex;justify-content: space-between;align-items: center;}
.logo a {font-size: 25px;font-weight: bold;color: #0055aa;letter-spacing: -1px;}
.logo a > small {font-weight: 500;font-size: 16px;}
.location-select {margin-left: 10px;}

/* PC 메뉴 */
nav {display: flex;align-items: center;}
nav ul {display: flex;gap: 10px;}
nav ul li {position: relative;font-size: 16px;cursor: pointer;}
nav ul li.menu a {display: block;padding: 20px;}
nav ul li.menu a:hover {color: #2e56cb;font-weight: 500;}
nav ul li .submenu {display: none;position: absolute;top: 55px;left: -25px;background: white;border: 1px solid #ddd;opacity: 0;transform: translateY(-10px);transition: opacity 0.3s ease, transform 0.3s ease;z-index: 100;padding: 0;}
nav ul li .submenu a {padding: 10px 15px;font-size: 14px;text-align: center;}
nav ul li .submenu a:hover {background: #EBF0FF;}
.nav_right ul {display: flex;gap: 30px;font-size: 13px;color: #555;}

/* 서브메뉴 */
.submenu {position: absolute;top: 40px;left: 0;background: white;border: 1px solid #ddd;padding: 10px 20px;display: none;opacity: 0;transform: translateY(-10px);transition: opacity 0.3s ease, transform 0.3s ease;white-space: nowrap;z-index: 100;}
nav ul li.has-dropdown:hover .submenu {display: block;opacity: 1;transform: translateY(0);}
nav ul li:hover .submenu,
nav ul li:focus-within .submenu {display: block;opacity: 1;transform: translateY(0);}

/* 햄버거 버튼 */
.hamburger {display: none;flex-direction: column;gap: 5px;cursor: pointer;width: 30px;height: 25px;justify-content: center;position: relative;right: 5px;}
.hamburger span {width: 100%;height: 3px;background: #333;transition: all 0.3s;}
.hamburger.open span:nth-child(1) {transform: rotate(45deg) translateX(10px);}
.hamburger.open span:nth-child(2) {opacity: 0;}
.hamburger.open span:nth-child(3) {transform: rotate(-45deg) translateX(10px);}

/* 모바일 메뉴 */
.mobile-menu {position: fixed;top: 0;right: -100%;width: 300px;height: 100%;background: #fff;box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);transition: right 0.3s ease;z-index: 1000;display: flex;flex-direction: column;justify-content: space-between;background: #f8f8f8;}
.mobile-menu.active {right: 0;}
.menu-header {display: flex;justify-content: flex-end;align-items: center;font-weight: bold;padding: 15px 15px 0;background: #fff;}
.close-btn {font-size: 20px;line-height: 20px;cursor: pointer;}
.login-info {display: flex;align-items: center;gap: 0.5rem;padding: 20px;font-size: 15px;border-bottom: 1px solid #ddd;color: #555;background: #fff;}
.region-select {padding: 1rem;background: #fff;margin: 15px;}
.region-select select {width: 100%;padding: 0.5rem;margin-top: 10px;border-radius: 5px;}
.menu-body {padding: 0 1rem;flex-grow: 1;overflow-y: auto;background: #fff;margin: 15px;}
.menu-section {border-bottom: 1px solid #eee;padding: 1rem 0;}
.menu-section a {margin: 0;font-size: 16px;cursor: pointer;}
.submenu {margin-top: 0.5rem;padding-left: 1rem;display: none;}
.submenu a {display: block;text-decoration: none;color: #333;font-size: 14px;}
.menu-footer {padding: 1rem;border-top: 1px solid #ddd;text-align: center;background: #fff;}
.menu-footer button {padding: 0;font-size: 14px;cursor: pointer;}
.mobile-menu .has-sub {position: relative;}
.mobile-menu .has-sub p {display: flex;justify-content: space-between;align-items: center;padding-right: 10px;font-size: 16px;}
.mobile-menu .dropdown {display: none;font-size: 14px;color: #444;}
.mobile-menu .has-sub.open .dropdown {display: block;background: #f8f8f8;padding: 10px;margin-top: 4px;}
.mobile-menu .has-sub.open .dropdown a {font-size: 14px;}


/* 메인배너 */
.main_wrap {margin-top: 115px;}

.section01,
.section02,
.section03 {margin: 80px 0 100px;}

.section01 h2,
.section02 h2,
.section03 h2 {display: block;text-align: center;letter-spacing: -1px;font-size: 40px;line-height: 50px;font-weight: 500;}

.section01 h2 > strong,
.section02 h2 > strong,
.section03 h2 > strong {color: #2e56cb;}

.section01 .point_box {display: flex;gap: 30px;margin: 30px 0;}
.section01 .point_box .box {text-align: center;width: 100%;border: 1px solid #ddd;padding: 30px;}
.section01 .point_box .box .icon {}
.section01 .point_box .box .txt {letter-spacing: -1px;}
.section01 .point_box .box .txt h3 {font-size: 23px;margin: 10px;}
.section01 .point_box .box .txt p {font-size: 16px;}

.section02 {background: #f8f8f8;padding: 80px 0;}
.section02 .center {margin: 30px 0;}
.section02 .center .listing {border: 1px solid #ddd;border-radius: 20px;margin: 10px;}
.section02 .center .listing .img {display: block;}
.section02 .center .listing .img > img {border-radius: 20px 20px 0 0;}
.section02 .center .listing .info {padding: 0 20px 20px;background: #fff;border-radius: 0 0 20px 20px;}
.section02 .center .listing .info h3 {font-size: 15px;font-weight: normal;color: #aaa;height: 40px;line-height: 40px;}
.section02 .center .listing .info h3 .like_heart {display: inline-block;width: 24px;height: 40px;background: url('/bizking/images/like_iconL.png') no-repeat right center;float: right;cursor: pointer;transition: 0.2s;-moz-transition: 0.2s;-webkit-transition: 0.2s;-o-transition: 0.2s;-ms-transition: 0.2s;}
.section02 .center .listing .info h2 {font-size: 23px;line-height: 30px;letter-spacing: -1px;color: #1a3888;text-align: left;}
.section02 .center .listing .info .txt1 {font-size: 14px;padding: 10px 0;color: #555;}
.section02 .center .listing .info .txt2 {color: #aaa;font-size: 13px;line-height: 13px;}
.section02 .center .listing .info .tag {margin: 15px 0;}
.section02 .center .listing .info .tag ul {display: flex;gap: 5px;}
.section02 .center .listing .info .tag ul li {background: #eee;padding: 5px 10px;font-size: 12px;border-radius: 5px;}
.section02 .center .listing .info .apply {}
.section02 .center .listing .info .apply span {font-size: 14px;color: #1a3888;}

.slick-slide {transition: transform 0.3s ease, box-shadow 0.3s ease;}
.slick-center {box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);}
.section03 {}
.section03 .banner_wrap {display: flex;gap: 50px;align-items: center;}
.section03 .banner_wrap .img {}
.section03 .banner_wrap .txt {}
.section03 .banner_wrap .txt h2 {text-align: left;font-size: 30px;line-height: 1.3em;margin-bottom: 20px;}
.section03 .banner_wrap .txt p {margin-bottom: 40px;}
.section03 .banner_wrap .txt .banner_bt {}
.section03 .banner_wrap .txt .banner_bt a {background: #2e56cb;color: #fff;padding: 20px;font-size: 15px;display: inline-block;border-radius: 10px;}



/* sub */
.sub-container {margin-top: 115px;}
.sub-container .title {padding: 80px 0 0; text-align: center;}
.sub-container .title h2 {font-size: 35px; line-height: 40px;}
.sub-container .title .middle_cate {padding: 30px 0; border-bottom: 1px solid #ddd;}
.sub-container .title .middle_cate ul {display: flex; justify-content: center; gap: 30px; letter-spacing: -1px;}
.sub-container .title .middle_cate ul li.active a {color: #2e56cb; font-weight: 600;}
.sub-container .title .middle_cate ul li a {color: #888; font-size: 20px;}

.sub2_1 {margin-bottom: 100px;}
.sub2_1 .wrap .filter {display: none;}
.sub2_1 .wrap {display: flex; gap: 20px;}
.sub2_1 .wrap .left {background: #f7f8fa; padding: 30px; flex: 1;}
.sub2_1 .wrap .filter-section {border-radius: 8px;}
.sub2_1 .wrap .accordion {margin-bottom: 20px;}
.sub2_1 .wrap .accordion-header {cursor: pointer; padding: 5px 0; margin-bottom: 20px; display: flex; justify-content: space-between; border-bottom: 1px solid #333; font-size: 16px;}
.sub2_1 .wrap .accordion-body {display: block; padding-left: 5px;}
.sub2_1 .wrap .accordion-body.hidden {display: none;}
.sub2_1 .wrap label {display: flex; align-items: center; margin-bottom: 8px;}
.sub2_1 .wrap input[type="checkbox"],
.sub2_1 .wrap input[type="radio"] {margin-right: 8px;}
.sub2_1 .wrap .chk_box {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.sub2_1 .wrap .chk_box input[type="checkbox"] {display: none;}
.sub2_1 .wrap .on {width: 22px; height: 22px; position: absolute; top: 0; left: 0;}
.chk_box input[type="checkbox"]:checked + .on {background: #fff; border: 1px solid #2e56cb; border-radius: 2px;}
.sub2_1 .wrap .on:after {content: ""; position: absolute; display: none;}
.sub2_1 .wrap .chk_box input[type="checkbox"]:checked + .on:after {display: block;}
.sub2_1 .wrap .on:after {
    width: 6px;
    height: 10px;
    border: solid #2e56cb;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    left: 7px;
    top: 3px;
}
.sub2_1 .wrap .slider-container {margin-top: 20px;}
.sub2_1 .wrap .range-labels {display: flex; justify-content: space-between; font-size: 12px; color: #666;}
.sub2_1 .wrap .range-values {font-weight: bold; margin-top: 8px;}
.sub2_1 .wrap .slider {width: 100%;}

.radio_box {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    position: relative;
    padding-left: 30px;
    margin-right: 10px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.sub2_1 .radio_box input[type="radio"] {display: none;}
.sub2_1 .radio_box .on {width: 20px; height: 20px; background: #fff; border-radius: 50%; position: absolute; top: 0; left: 0; border: 1px solid #2e56cb;}
.sub2_1 .radio_box input[type="radio"]:checked + .on {background: #fff; border: 1px solid #2e56cb;}
.sub2_1 .radio_box .on:after {content: ""; position: absolute; display: none;}
.sub2_1 .radio_box input[type="radio"]:checked + .on:after {display: block; width: 8px; height: 8px; left: 6px; top: 6px; border: 0; background: #2e56cb;}
.sub2_1 .radio_box .on:after {width: 10px; height: 10px; background: #fff; border-radius: 50%; position: absolute; left: 5px; top: 5px;}
.sub2_1 .wrap .right {flex: 4; padding: 30px;}
.sub2_1 .wrap .right .small_cate {}
.sub2_1 .wrap .right .small_cate ul {display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px;}
.sub2_1 .wrap .right .small_cate ul li a {background: #f7f8fa; color: #333; width: 100%; display: block; text-align: center; border-radius: 30px; padding: 5px; font-size: 15px}
.sub2_1 .wrap .right .small_cate ul li.active a {background: #2e56cb; color: #fff;}

.product_wrap {}
.product_wrap .list_order {display: flex; align-items: center; justify-content: space-between; margin: 30px 0;}
.product_wrap .list_order h4 {font-size: 13px; font-weight: normal;}
.product_wrap .list_order .location-select {background: #fff; width: 100px; padding: 5px;}
.product_wrap .product {display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; align-items: center; border: 1px solid #ddd; padding: 30px; border-radius: 10px; margin-bottom: 30px;}
.product_wrap .product .thumb img {border-radius: 10px; width: 100%;}
.product_wrap .product .info {letter-spacing: -1px;}
.product_wrap .product .info h3 {font-size: 14px; font-weight: normal; color: #aaa; height: 40px;}
.product_wrap .product .info h2 {font-size: 23px; line-height: 30px; letter-spacing: -1px; color: #2e56cb; text-align: left; margin: 10px 0;}
.product_wrap .product .info .like_heart {
    display: inline-block;
    width: 24px;
    height: 40px;
    background: url('/bizking/images/like_iconL.png') no-repeat right center;
    float: right;
    cursor: pointer;
    transition: 0.2s;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    -ms-transition: 0.2s;
}
.product_wrap .product .title {margin: 0; text-align: left; font-weight: bold; color: #333; font-size: 20px; padding: 0;}
.product_wrap .product .txt1 {font-size: 15px;}
.product_wrap .product .txt2 {color: #aaa; font-size: 13px; line-height: 13px; margin: 15px 0;}
.product_wrap .product .tag {}
.product_wrap .product .tag ul {display: flex; gap: 5px; margin: 10px 0;}
.product_wrap .product .tag ul li a {background: #eee; padding: 5px 10px; font-size: 12px; border-radius: 5px;}
.product_wrap .product .apply {font-size: 14px; color: #2e56cb;}
.product_wrap .product .product_bt {display: flex; gap: 5px; margin-top: 20px;}
.product_wrap .product .detail,
.product_wrap .product .inquiry,
.product_wrap .product .end {flex: 1;}
.product_wrap .product .detail a {display: block; background: #666; color: #f5f5f5; text-align: center; height: 50px; line-height: 50px; border-radius: 5px; font-size: 15px;}
.product_wrap .product .inquiry a {display: block; background: #2e56cb; color: #f5f5f5; text-align: center; padding: 10px 40px; border-radius: 5px; font-size: 15px;}
.product_wrap .product .end a {display: block; background: #eee; color: #999; text-align: center; padding: 10px 40px; border-radius: 5px; font-size: 15px;}

.sub2_1 .state_image {transition: .2s all; background: salmon; width: 40px; height: 40px; text-indent: 100%; white-space: nowrap; overflow: hidden;}
.sub2_1 .emotion_state.bad .state_image {background: skyblue;}
.sub2_1 .emotion_state.good .state_image {background: palevioletred;}
.sub2_1 .emotion_state.joy .state_image {background: rebeccapurple;}
.sub2_1 .emotion_state.soso .state_image {background: khaki;}
.sub2_1 input[type=range] {
    display: block;
    -webkit-appearance: none;
    background-color: #bdc3c7;
    width: 100%;
    height: 10px;
    border-radius: 5px;
    margin: 0 auto;
    outline: 0;
}
.sub2_1 input[type="range"]::-webkit-slider-thumb {
    position: relative;
    z-index: 1;
    -webkit-appearance: none;
    background-color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border: 2px solid white;
    cursor: pointer;
    transition: .3s ease-in-out;
}
.sub2_1 input[type="range"]::-webkit-slider-thumb:hover {
    background-color: red;
}

.sub2_1 input[type="range"]::-webkit-slider-thumb:active {
    transform: scale(1.6);
}
.sub2_1 .state_text {text-align: center;}
.sub2_1 .state_text.active {transform: scale(1.2); transform-origin: center; transition: all .2s;}
.sub2_1 .range_wrap {position: relative; width: 400px; height: 10px;}
.sub2_1 .range_fill {background: blue; height: 100%; position: absolute; border-radius: 10px;}

.product_wrap .product .slick-prev,
.product_wrap .product .slick-next {z-index: 99;}
.product_wrap .product .slick-prev:before {content: ''; position: absolute; z-index: 10; top: 0; transform: translateY(-50%); padding: 50px; cursor: pointer; left: 0; background: url(/bizking/images/left.png) center center / 70% no-repeat;}
.product_wrap .product .slick-next:before {content: ''; position: absolute; z-index: 10; top: 50%; transform: translateY(-50%); padding: 50px; cursor: pointer; left: -75px; background: url(/bizking/images/right.png) center center / 70% no-repeat;}

.board_pagetab {text-align: center; display: flex; justify-content: center; gap: 5px;}
.board_pagetab a {font: 12px verdana; color: #555; padding: 0 3px 0 3px; border: 1px solid #ddd; display: block; width: 30px; height: 30px; line-height: 30px;}
.board_pagetab a:hover {background: #f8f8f8}
.board_pagetab .on a {color: #2e56cb; border: 1px solid #2e56cb; background: #fff;}

.sub3_1 .el_ttl {font-size: 18px; font-weight: bold;}
.sub3_1 .el_result {height: 20px;}
.sub3_1 .el_btn {display: inline-flex; align-items: center; justify-content: center; outline: unset; border: unset; padding: 10px; background: #333; border-radius: 5px; letter-spacing: -0.04em; text-align: left; width: fit-content; height: 37px; font-size: 14px; font-weight: 400; line-height: 17px; text-align: left; word-break: keep-all;}
.sub3_1 .el_btn--outline {background: unset; border: 1px solid #333; color: #333; font-size: 14px; font-weight: 400; line-height: 17px; letter-spacing: -0.04em; text-align: left; background-color: #fff; height: 48px; margin-top: 5px;}
.sub3_1 .el_input {padding: 10px; /* max-width: 320px;  */width: 100%; height: 37px; border: 1px solid #ddd; border-radius: 5px; color: #333; background-color: unset; font-family: Noto Sans KR; font-size: 12px; font-weight: 300; line-height: 17px; letter-spacing: -0.04em; text-align: left;}
.sub3_1 .el_input::placeholder {color: #ddd;}
.sub3_1 .el_input:disabled {background-color: #f0f0f0;}
.sub3_1 .bl_stack {display: flex; flex-direction: column; gap: 10px;}
.sub3_1 .bl_stack--row {flex-direction: row;}
.sub3_1 .form {margin-bottom: 20px; height: fit-content;}
.sub3_1 .hp_shrink-0 {flex-shrink: 0;}

.modal-btn-box {display: block; width: 100%; text-align: center; flex: 1;}
.modal-btn-box button {display: inline-block; width: 100%; height: 50px; line-height: 50px; cursor: pointer; background: #2e56cb; color: #fff; text-align: center; border-radius: 5px; font-size: 15px;}

.popup-wrap {display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5);}
.popup-content {background: #fff; margin: 10% auto; padding: 20px; border-radius: 8px; width: 90%; max-width: 600px; position: relative;}
.popup-close {position: absolute; top: 10px; right: 15px; font-size: 24px; font-weight: bold; cursor: pointer;}
.popup-body {max-height: 400px; overflow-y: auto; margin-top: 10px;}

.inquiry-wrap {display: block; background-color: rgba(0, 0, 0, .3); justify-content: center; align-items: center; position: fixed; top: 0; left: 0; right: 0; bottom: 0; display: none; padding: 15px; z-index: 999;}
.inquiry-wrap .inquiry {width: 100%; max-width: 600px; background-color: #fff; border-radius: 10px; overflow: hidden; background-color: #333; box-shadow: 5px 10px 10px 1px rgba(0, 0, 0, .3);}
.inquiry-wrap .inquiry-head {width: 100%; height: 45px; line-height: 45px; display: flex; justify-content: space-between; padding: 0 20px;}
.inquiry-wrap .head-title {font-size: 15px; letter-spacing: -1px; text-align: center; color: #fff;}
.inquiry-wrap .inquiry-body {width: 100%; background-color: #fff;}
.inquiry-wrap .body-content {width: 100%; padding: 20px;}
.inquiry-wrap .body-titlebox {text-align: center; width: 100%; height: 40px; margin-bottom: 10px;}
.inquiry-wrap .body-contentbox {word-break: break-word; overflow-y: auto; min-height: 100px; max-height: 800px;}
.inquiry-wrap .body-contentbox .reset {display: flex; justify-content: flex-end; margin-bottom: 10px;}
.inquiry-wrap .body-contentbox .reset button {display: block; background: #333; color: #fff; padding: 10px 20px; font-size: 12px; border-radius: 5px;}
.inquiry-wrap .inquiry-foot {width: 100%; height: 50px;}
.inquiry-wrap .pop-btn {height: 100%; color: #fff;}
.inquiry-wrap .body-contentbox .contact h2 {font-size: 25px; letter-spacing: -1px;}
.inquiry-wrap .body-contentbox .contact h4 {font-size: 16px; font-weight: normal; letter-spacing: 0;}
.inquiry-wrap .body-contentbox .contact .info-box {margin: 10px 0 0; padding: 15px; background: #f4ffef; color: #276a20; letter-spacing: -1px; font-size: 13px;}
.inquiry-wrap .body-contentbox .contact .submit-btn {display: inline-block; width: 100%; height: 50px; line-height: 50px; cursor: pointer; background: #2e56cb; color: #fff; text-align: center; border-radius: 5px; font-size: 15px; margin-top: 10px;}


/* mypage */
.mypage_bt ul {display: flex; margin: 40px 0 30px;}
.mypage_bt ul li {flex: 1; border-bottom: 1px solid #ddd;}
.mypage_bt ul li.active {border-bottom: 2px solid #2e56cb; color: #2e56cb; background: #f6f8ff;}
.mypage_bt ul li a {padding: 10px; display: block;}
.management_detail .list table tbody tr:hover {background: #f8f8f8;}
.management_detail .list table thead tr th {text-align: center}
.management_detail .list table tbody tr td {text-align: center; text-overflow: ellipsis; white-space: nowrap; overflow: hidden;}
.management_detail .list table tbody tr td.before {color: #ff2f2f;}
.management_detail .list table tbody tr td.during {color: #2e56cb;}
.management_detail .list table tbody tr td.after {color: #888;}
.management_detail .list table {width: 100%; border-collapse: collapse; background-color: #fff; font-size: 14px; border: 1px solid #eee; margin-bottom: 30px; table-layout: fixed;}
.management_detail .list th,
.management_detail .list td {padding: 14px 12px; border-bottom: 1px solid #eee; text-align: left;}
.management_detail .list th {background-color: #f6f8ff; color: #333; font-weight: 600;}
.management_detail .list tr:last-child td {border-bottom: none;}

.chat-modal {width: 100%; max-width: 600px; margin: 30px auto; background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); display: flex; flex-direction: column;}
.chat-header {padding: 10px; background: #444; color: #fff; position: relative}
.chat-header h2 {text-align: center; font-size: 15px; font-weight: normal}
.chat-close {font-size: 24px; background: none; border: none; color: #fff; cursor: pointer; position: absolute; top: 10px; right: 20px}
.chat-info {display: block; padding: 20px; border-bottom: 1px solid #ddd; text-align: center}
.chat-thumb {width: 100px; height: 100px; border-radius: 50%; object-fit: cover}
.chat-title {letter-spacing: -1px}
.chat-title p {font-size: 15px}
.chat-title .type {}
.chat-title .price {color: #1d4ed8}
.subtitle {font-size: 18px}
.detail-btn {background: #444; border: none; padding: 10px 20px; font-size: 14px; cursor: pointer; border-radius: 5px; margin-top: 10px; color: #fff}
.chat-body {padding: 20px; flex: 1; overflow-y: auto; max-height: 400px}
.chat-bubble {margin-bottom: 20px;}
.chat-bubble.left .bubble-name {font-size: 13px; line-height: 18px; color: #333; margin-bottom: 5px;}
.bubble-text {background: #1d4ed8; color: #fff; padding: 12px; max-width: 70%; font-size: 14px; position: relative; word-break: break-word;}
.chat-bubble.left .bubble-text {border-radius: 20px 20px 20px 0;}
.chat-bubble.right .bubble-text {background: #e5f0ff; color: #000; border-radius: 20px 20px 0 20px;}
.chat-bubble.right {text-align: right; display: flex; flex-direction: column; align-items: flex-end;}
.bubble-time {font-size: 11px; color: #aaa; margin-top: 4px;}
.edit-tools {position: relative; font-size: 13px;}
.edit-tools button {background: none; border: none; cursor: pointer; margin-left: 4px;}
.chat-reply {width: 70%; padding: 15px;}
.chat-reply textarea {width: 100%; height: 60px; padding: 0; font-size: 13px; resize: none; border: 0; flex: 1;}
.reply-actions {margin-top: 5px; text-align: right; display: flex; align-items: center; gap: 10px; border: 1px solid #ddd; padding: 10px; border-radius: 10px}
.btn-edit {background: #e5f0ff; border: nonepadding: 5px 10px; cursor: pointer; border-radius: 5px; width: 60px; height: 60px; font-size: 15px}
.chat-input {display: flex; gap: 10px; padding: 15px; border-top: 1px solid #eee;}
.chat-input textarea {flex: 1; padding: 10px; font-size: 14px; resize: none; height: 50pxborder: 1px solid #ddd;}
.btn-send {background: #1d4ed8; color: #fff; border: none; padding: 0 20px; border-radius: 8px; cursor: pointer; font-size: 15px;}
.chat-footer {padding: 10px 15px; border-top: 1px solid #eee; text-align: center;}
.btn-close {background: #fff; border: 1px solid #ccc; padding: 8px 20px; border-radius: 6px; cursor: pointer; font-size: 14px;}
.btn-complete {background: #333; border: 1px solid #333; color: #fff; padding: 8px 20px; border-radius: 6px; cursor: pointer; font-size: 14px;}


/* footer */
.footer {background-color: #f9f9f9; color: #666; font-family: 'Pretendard', sans-serif; font-size: 14px; padding: 40px 20px; text-align: center; margin-top: 100px;}
.footer-inner {max-width: 1000px; margin: 0 auto;}
.footer-logo {font-size: 23px; font-weight: bold; color: #bbb; margin-bottom: 15px;}
.footer-logo span {font-weight: normal; font-size: 15px;}
.footer-info ul {display: flex; gap: 30px; justify-content: center;}
.footer-info p {margin: 4px 0; line-height: 1.6; font-size: 13px;}
.footer-info p > span {color: #888}
.footer-links {display: flex; gap: 10px; justify-content: center; margin: 30px 0 10px;}
.footer-links a {color: #666; margin: 0 8px; text-decoration: none;}
.footer-links a strong {color: #000;}
.footer-copy {font-size: 13px; color: #999;}
.footer .modal {display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100vw; height: 100vh; background: rgba(0, 0, 0, 0.5); justify-content: center; align-items: center;}
.footer .modal-content {background: white; border-radius: 10px; width: 90%; height: 80%; max-width: 600px; position: relative;}
.footer .modal-body {max-height: 100vh; overflow: auto; height: 100%; padding: 30px;}
.footer .modal-body p {font-size: 14px; margin-top: 60px; text-align: left;}
.footer .modal .close {position: absolute; top: 15px; right: 20px; font-size: 24px; cursor: pointer;}


@media (max-width: 1200px) {
    header {line-height: 70px;}
    nav,.location-select,.nav_right {display: none;}
    .hamburger {display: flex;}
    
    .sub-container .title {margin: 30px 0;}
    .sub-container .title h2 {font-size: 25px; line-height: 30px;}
    .sub-container .title .middle_cate {padding: 20px 0;}
    .sub-container .title .middle_cate ul li a {font-size: 16px;}
    .sub2_1 .wrap {display: block;}
    .product_wrap .product {display: block;}
    .sub2_1 .wrap .right {padding: 30px 0;}
    .product_wrap .product {padding: 20px;}
}

@media (max-width: 768px) {
    .sub-container .title .middle_cate ul {display: grid; grid-template-columns: repeat(5, 1fr); gap: 5px;}
    .sub2_1 .wrap .right {padding: 0;}
    .sub2_1 .wrap .right .small_cate {display: none;}
    .sub2_1 .wrap .right .small_cate ul {grid-template-columns: repeat(3, 1fr); gap: 5px;}
    .sub2_1 .wrap .left {display: none;}
    .sub2_1 .wrap .filter {display: block;}
    .product_wrap .list_order {margin: 10px 0;}
    .product_wrap .product .info {margin-top: 20px;}
    .product_wrap .product .info h3 {height: auto;}
    .sub3_1 .bl_stack {gap: 0;}
    .sub3_1 .el_btn--outline {height: auto; margin-left: 5px;}.radio_box{padding-left: 0;}    
    .chat-reply {width: 100%;}
    .chat-reply textarea {line-height: 18px; padding-right: 10px;}
    .bubble-text {max-width: 80%; font-size: 13px; line-height: 17px;}
    .sub-container .title {padding: 50px 0 0;}
    .slide-control {display: none;}
    .section .slidelist .textbox {width: 100%;}
    .section .slidelist .textbox h3 {font-size: 30px;}
    .section .slidelist .textbox p {font-size: 15px; word-break: keep-all; white-space: normal; overflow-wrap: break-word; max-width: 100%; padding: 0 30px;}
    .section .slidewrap {height: 500px;}
    .section .slidelist > li > a {height: 500px;}
    .section01,.section02,.section03 {margin: 80px 0;}
    .section01 h2,.section02 h2,.section03 h2 {font-size: 23px; line-height: 35px; letter-spacing: -2px}
    .section01 .point_box {display: block;}
    .section01 .point_box {margin: 20px 0;}
    .section01 .point_box .box {margin-bottom: 15px;}
    .section02 {padding: 50px 0;}
    .section02 .center {margin: 0;}
    .section02 .center .listing .info h3 {font-size: 11px;}
    .section02 .center .listing .info h2 {font-size: 18px; line-height: 20px;}
    .section02 .center .listing .info .txt1 {font-size: 12px; line-height: 15px;}
    .section02 .center .listing .info .tag ul {display: grid; gap: 5px; grid-template-columns: repeat(3, 1fr);}
    .section02 .center .listing .info .tag ul li {text-align: center;}
    .section02 .center .listing .info .apply span {font-size: 12px;}
    .section03 .banner_wrap {display: block;}
    .section03 .banner_wrap .txt {margin: 20px 0; text-align: center;}
    .section03 .banner_wrap .txt h2 {text-align: center; font-size: 23px; margin-bottom: 10px;}
    .section03 .banner_wrap .txt p {margin-bottom: 30px;}
    .section03 .banner_wrap .txt .banner_bt a {padding: 15px 20px; font-size: 13px;}
    .mypage_bt ul li a {padding: 10px 0; font-size: 12px;}
}

@media (max-width: 600px) {
    .management_detail .list table {table-layout: auto;}
    .footer {font-size: 13px; margin-top: 30px; padding: 40px 10px;}
    .footer-info ul {display: block}
    .footer-info p {font-size: 12px; letter-spacing: -1px;}
    .footer-links a {display: inline-block; margin: 0; font-size: 12px;}
}
