/** font **/
@import url("/Css/Fontawesome/js/all.js?ver=1.01");
@import url("/Css/Fontawesome/webfonts/Pretendard.css");
@import url("/Css/Fontawesome/webfonts/NotoSansKR.css");

/* Reset */
*,
::after,
::before {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
:focus {outline: 0;}
:root {
	-webkit-tap-highlight-color:transparent;
	-webkit-text-size-adjust:100%;
	text-size-adjust:100%;
	cursor:default;
	line-height:1.5;
	overflow-wrap:break-word;
	word-break:break-word;
	tab-size:4;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {display: block;}
nav, main, footer, header, article, section, aside {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {height: 100%;	line-height: 1.15; -webkit-text-size-adjust: 100%;}
body {
    font-family: "Pretendard","NotoSansKR", "돋움", dotum, Helvetica, Arial, Tahoma, sans-serif;
    background: #fff;
    width: 100%;
    height: 100%;
    line-height: 1;
}
a {background-color: transparent; text-decoration: none; color: inherit;}
ol, ul, li {list-style: none;}
table {border-collapse: collapse; border-spacing: 0;}
input, button, textarea, select {font-family: inherit; font-size: 100%; line-height: 1.15; margin: 0;}
button {border: none; background: none; cursor: pointer;}
img, video {max-width: 100%; height: auto; vertical-align: middle;}
h1, h2, h3, h4, h5, h6 {font-size: inherit; font-weight: inherit;}

input[type='text']:disabled {background:#fafafa;}
input[type='text']:read-only {background:#fafafa;}
/* input 오류 색상 */
input[type=text].Error {outline: 1px solid #ff3300;}

/* 1920px, 1680px 해상도에서 80% 스케일 적용 */
@media screen and (width: 1920px), screen and (width: 1680px) {
	:root {zoom: 0.8;}
	@-moz-document url-prefix() {
		body {transform: scale(0.8); transform-origin: top center; min-height: 125vh;}
		.nav-item {transform: scale(1.0); transform-origin: top center; min-height: 100vh;}
		.quick-banner {transform: scale(1.0); transform-origin: top center; min-height: 100vh;}
	}
	@supports (-webkit-touch-callout: none) {
		body {-webkit-transform: scale(0.8); -webkit-transform-origin: top center; min-height: 125vh;}
		.nav-item {-webkit-transform: scale(1.0); -webkit-transform-origin: top center; min-height: 100vh;}
		.quick-banner {-webkit-transform: scale(1.0); -webkit-transform-origin: top center; min-height: 100vh;}
	}
}

/* header */
header {width: 100%; background: #fff;}
.top-bar {width: 100%; border-bottom: 1px solid #eee;}
.top-bar-inner {max-width: 1540px; margin: 0 auto; padding: 30px 50px; display: flex; justify-content: space-between;}
.top-bar a {color: #000; text-decoration: none; font-size: 15px; font-weight: 500; display: flex; align-items: center; gap: 5px;}
.top-right {display: flex; gap: 20px;}
.top-left {display: flex; gap: 20px;}
.icon-text {margin-left: 5px;}
.header {
    width: 100%; 
    margin: 0 auto; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    padding: 15px 50px; 
    border-bottom: 1px solid #eee; 
    position: relative;
}
.mobile-left {display: none; position: absolute; left: 50px;}
.mobile-icons {display: none; position: absolute; right: 50px;}
.mobile-login {display: none; z-index: 1001;}
.mobile-login-icon {font-size: 20px; color: #333; cursor: pointer; padding: 10px; position: relative; z-index: 1001;}
.mobile-login-icon i {display: block; padding: 5px;}
.mobile-login-menu {
    display: none; 
    position: absolute; 
    top: 100%; 
    right: 0; 
    background: white; 
    border: none; 
    box-shadow: 2px 4px 0 rgba(0, 0, 0, 0.1); 
    border-radius: 10px; 
    overflow: hidden; 
    z-index: 1001; 
    min-width: 150px; 
    padding: 8px 0;
}
.nav {display: flex; position: relative; justify-content: center;}
.nav-item {position: relative; padding: 15px 45px; cursor: pointer; font-size: 20px; font-weight: 600; color: #333; transition: all 0.25s ease; letter-spacing: -0.02em;}
.nav-item:hover {color: #229c00;}
.nav-item:after {content: ""; position: absolute; bottom: 10px; left: 25px; width: 0; height: 2px; background-color: #229c00; transition: width 0.3s ease;}
.nav-item:hover:after {width: calc(100% - 50px);}
.nav-item .arrow-icon {display: none;}
.nav-item:hover .submenu {display: block;}
.submenu {
    display: none; 
    position: absolute; 
    top: 100%; 
    left: 50%; 
    transform: translateX(-50%); 
    background: white; 
    border-radius: 12px; 
    border: none; 
    box-shadow: 2px 4px 0 rgba(0, 0, 0, 0.1); 
    width: auto; 
    min-width: 180px; 
    white-space: nowrap; 
    z-index: 1000; 
    padding: 8px 0; 
    backdrop-filter: blur(10px); 
    background-color: rgba(255, 255, 255, 0.98);
}
.submenu a {
    display: block; 
    padding: 12px 16px; 
    border-radius: 8px; 
    color: #333; 
    font-size: 17px; 
    font-weight: 500; 
    text-decoration: none; 
    white-space: nowrap; 
    transition: all 0.2s ease; 
    margin: 4px 8px;
}
.submenu a .subbullet {display: none;}
.submenu a:hover {background: #effdef; color: #268100; transform: translateX(4px);}
.mobile-menu {display: none; font-size: 24px; cursor: pointer;}
@media (max-width: 1430px) {
    .nav-item {padding: 15px 28px;}
}
@media (max-width: 1280px) {
    .nav-item {padding: 15px 18px;}
}
@media (max-width: 1024px) {
    .top-bar {display: none;}
    .header {position: relative; padding: 45px 20px;}
    .mobile-left {display: block; position: absolute; left: 20px;}
    .mobile-left .logo img {max-width: 150px; height: auto;}
    .mobile-icons {display: flex; align-items: center; gap: 12px; position: absolute; right: 20px;}
    .mobile-login {display: flex; align-items: center; position: relative;}
    .mobile-login-icon {
        display: flex; 
        align-items: center; 
        justify-content: center; 
        width: 48px; 
        height: 48px; 
        border-radius: 50%; 
        background: #f5f5f5; 
        color: #333; 
        font-size: 20px; 
        cursor: pointer; 
        transition: all 0.3s ease;
    }
    .mobile-login-menu {
        display: none;
        position: absolute; 
        top: 50px; 
        right: 0; 
        background: white; 
        border: none; 
        border-radius: 16px; 
        box-shadow: 2px 4px 0 rgba(0, 0, 0, 0.1); 
        min-width: 200px; 
        overflow: hidden; 
        z-index: 1001; 
        padding: 8px 0;
    }
    .mobile-login-menu a:last-child {border-bottom: none;}
    .mobile-login-menu a i {margin-right: 10px; color: #229c00; font-size: 16px; transition: all 0.2s ease;}
    .mobile-login-menu a:hover {background: rgba(220, 9, 18, 0.08); color: #229c00; transform: translateX(4px);}
    .mobile-login-menu a:hover i {color: #229c00; transform: scale(1.1);}
    .mobile-login.active .mobile-login-menu {display: block; animation: fadeIn 0.3s ease;}
    .mobile-login-menu a {display: flex; align-items: center; padding: 12px 16px; color: #333; text-decoration: none; font-size: 14px; transition: all 0.2s ease; margin: 2px 6px; border-radius: 8px;}
    .mobile-menu {
        display: flex; 
        align-items: center; 
        justify-content: center; 
        width: 48px; 
        height: 48px; 
        border-radius: 50%; 
        background: #229c00; 
        color: #fff; 
        font-size: 20px; 
        cursor: pointer; 
        transition: all 0.3s ease;
    }
    .mobile-login-icon:hover {background: #e8e8e8; transform: scale(1.05);}
    .mobile-menu:hover {background: #229c00; transform: scale(1.05);}
    .nav {
        display: none; 
        position: absolute; 
        top: 100%; 
        left: -100%; 
        width: 100%; 
        min-height: calc(100vh - 100%); 
        background: white; 
        flex-direction: column; 
        z-index: 9999; 
        transition: left 0.3s ease; 
        justify-content: flex-start;
        padding-top: 0;
        overflow-y: auto;
        border-top: 1px solid #eee;
    }
    .nav.active {display: flex; left: 0;}
    .nav-item {width: 100%; border-bottom: 1px solid #eee; padding: 20px 25px; background: #fff; font-size: 18px; cursor: pointer;}
    .nav-item:after {display: none;}
    .nav-item .arrow-icon {display: none; margin-left: 10px; transition: transform 0.3s ease;}
    .nav-item.active .arrow-icon {transform: rotate(90deg);}
    .submenu {
        position: static; 
        width: 100%; 
        box-shadow: none; 
        border: none; 
        border-radius: 0; 
        transform: none; 
        margin-top: 0; 
        display: none; 
        background: #f8f9fa; 
        backdrop-filter: none;
        padding: 0;
    }
    .nav-item:hover .submenu {display: none;}
    .nav-item.active .submenu {display: block;}
    .submenu a {
        display: block; 
        padding: 18px 40px; 
        color: #555; 
        text-decoration: none; 
        font-size: 16px; 
        border-bottom: 1px solid #eee; 
        transition: all 0.2s ease;
    }
    .submenu a:hover {background: #e9ecef; color: #229c00; padding-left: 45px;}
    .submenu a:last-child {border-bottom: none;}
}
@media (max-width: 768px) {
    .header {padding: 37px 15px;}
    .mobile-left {left: 15px;}
    .mobile-left .logo img {max-width: 130px;}
    .mobile-icons {gap: 10px; right: 15px;}
    .mobile-login-icon {width: 44px; height: 44px; font-size: 18px;}
    .mobile-menu {width: 44px; height: 44px; font-size: 18px;}
    .nav-item {font-size: 16px; padding: 18px 20px;}
    .submenu a {padding: 16px 35px; font-size: 15px;}
}
@media (max-width: 480px) {
    .header {padding: 35px 12px;}
    .mobile-left {left: 12px;}
    .mobile-left .logo img {max-width: 130px;}
    .mobile-icons {gap: 8px; right: 12px;}
    .mobile-login-icon {width: 40px; height: 40px; font-size: 16px;}
    .mobile-menu {width: 40px; height: 40px; font-size: 16px;}
    .nav-item {font-size: 15px; padding: 16px 15px;}
    .submenu a {padding: 14px 30px; font-size: 14px;}
    .mobile-login-menu {min-width: 180px;}
    .mobile-login-menu a {font-size: 13px; padding: 10px 14px;}
}

/* 서브페이지 네비 */
.breadcrumb {display: flex; align-items: center; position: absolute; left: 20px; bottom: 0px;}
.breadcrumb .home {display: flex; align-items: center; color: #999; font-size: 15px; font-weight: 500;}
.breadcrumb .arr {margin: 0 8px; color: #999; font-size: 16px;}
.breadcrumb .path {color: #999; font-size: 16px; font-weight: 500;}
.breadcrumb .path.last {position: relative; cursor: pointer; display: inline-block;}
.breadcrumb .path.last .current {color: #222; font-weight: 600; display: inline-block; transition: all 0.2s ease;}
.breadcrumb .path.last .current:hover {color: #229c00;}
.breadcrumb .path.last .subnav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 150px;
    max-width: max-content;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.98);
    border: none;
    border-radius: 12px;
    padding: 8px 0;
    margin-top: 5px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    z-index: 100;
    backdrop-filter: blur(10px);
}
.breadcrumb .path.last .subnav-menu a {
    white-space: nowrap;
    display: block;
    padding: 7px 14px;
    color: #666;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.2s;
    margin: 3px 6px;
    border-radius: 6px;
}
.breadcrumb .path.last .subnav-menu a:hover {background: #effdef; color: #229c00; transform: translateX(3px);}
.breadcrumb .path.last .current i {font-size: 12px; margin-left: 5px; transition: transform 0.3s ease;}
.breadcrumb .path.last .current.active i {transform: rotate(180deg);}
@media (max-width: 768px) {
    .breadcrumb {left: 15px; bottom: 0px;}
    .breadcrumb .path, 
    .breadcrumb .path.last .current {font-size: 13px;}
    .breadcrumb .path.last .subnav-menu {min-width: 120px;}
    .breadcrumb .path.last .subnav-menu a {padding: 6px 12px; font-size: 13px;}
}

/* footer */
footer {width: 100%;}
.footer-menu {
    width: 100%; 
    max-width: 1000px; 
    margin: 0 auto; 
    background: #fff; 
    padding: 25px 100px; 
    border: 1px solid #666; 
    border-radius: 50px; 
    position: relative; 
    z-index: 10; 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}
.footer-menu-left ul {display: flex; list-style: none; gap: 50px; margin: 0; padding: 0;}
.footer-menu-left a {color: #000; text-decoration: none; font-size: 20px; font-weight: 600;}
.footer-menu-right {display: flex; align-items: center;}
.footer-exchange {display: flex; gap: 30px; align-items: center;}
.exchange-item {display: flex; align-items: center; gap: 10px;}
.exchange-icon {width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;}
.exchange-icon img {width: 100%; height: 100%; object-fit: contain;}
.exchange-text {display: flex; flex-direction: column;}
.exchange-label {font-size: 12px; color: #666; font-weight: 500; line-height: 1.2;}
.exchange-value {font-size: 22px; color: #03a94d; font-weight: bold; line-height: 1.2;}
.footer-info {
    width: 100%; 
    margin: -40px auto 0; 
    padding: 100px 20px 60px; 
    background: #fff; 
    position: relative; 
    z-index: 9; 
    display: flex; 
    justify-content: center;
}
.footer-infoItem {max-width: 1540px; display: flex; align-items: center; position: relative; margin-top: 40px; gap: 100px;}
.footer-infoItem::before {
    content: ""; 
    position: absolute; 
    left: 35%; 
    top: 20px; 
    bottom: 20px; 
    width: 1px; 
    background-color: #bcbcbc; 
    transform: translateX(-50%);
}
.footer-company {width: 280px;}
.footer-company .footer-logo {display: flex; align-items: center; gap: 5px; margin-bottom: 10px;}
.footer-company .footer-logo img {width: 100%; height: auto;}
.footer-company .copyright {font-size: 13px; font-weight: 500; color: #666; margin: 0;}
.footer-company .footer-rights {font-size: 14px; color: #666; margin: 2px 0 0 0;}
.footer-txt {flex: 1;}
.footer-txt p {font-size: 15px; font-weight: 600; color: #000; margin: 0 0 5px 0; line-height: 1.5;}
@media (max-width: 1024px) {
    footer {padding: 0 30px 30px;}
    .footer-menu {flex-direction: column; gap: 50px; padding: 25px 30px; align-items: center; border-radius: 20px;}
    .footer-menu-left {width: 100%; padding-bottom: 20px; border-bottom: 1px solid #ddd;}
    .footer-menu-left ul {justify-content: center;}
    .footer-menu-right {padding-top: 20px;}
    .footer-exchange {justify-content: center; gap: 40px; position: relative;}
    .exchange-item:first-child::after {content: ""; position: absolute; left: 50%; top: 10%; bottom: 10%; width: 1px; background-color: #ddd; transform: translateX(-50%);}
}
@media (max-width: 768px) {
    footer {padding: 0 30px 30px;}
    .footer-menu {padding: 20px 20px; flex-direction: column; gap: 20px; align-items: center; border-radius: 15px;}
    .footer-menu-left {width: 100%; padding-bottom: 15px; border-bottom: 1px solid #ddd;}
    .footer-menu-left ul {gap: 15px; justify-content: center;}
    .footer-menu-left a {font-size: 14px;}
    .footer-menu-right {padding-top: 15px;}
    .footer-exchange {gap: 30px; justify-content: center; position: relative;}
    .exchange-item:first-child::after {content: ""; position: absolute; left: 50%; top: 10%; bottom: 10%; width: 1px; background-color: #ddd; transform: translateX(-50%);}
    .exchange-icon {width: 30px; height: 30px;}
    .exchange-label {font-size: 11px;}
    .exchange-value {font-size: 16px;}
    .footer-infoItem {flex-direction: column; align-items: flex-start; gap: 15px;}
    .footer-infoItem::before {display: none;}
    .footer-info {padding: 50px 15px 40px; border-bottom: 10px solid #f5f5f5;}
    .footer-company {width: 120px; margin-bottom: 10px; padding: 0 10px;}
    .footer-company .footer-logo {width: 120px;}
    .footer-company .footer-logo img {width: 100%;}
    .footer-company .copyright {font-size: 13px; white-space: nowrap;}
    .footer-company .footer-rights {font-size: 14px;}
    .footer-txt {padding: 20px 10px; border-top: 1px solid #eee; width: 100%; margin-top: 10px; padding-top: 20px;}
    .footer-txt p {font-size: 15px; line-height: 1.2; margin-bottom: 8px;}
}
@media (max-width: 480px) {
    footer {padding: 0 10px 20px;}
    .footer-menu {padding: 15px 15px; border-radius: 10px;}
    .footer-menu-left {padding-bottom: 12px;}
    .footer-menu-left ul {gap: 20px;}
    .footer-menu-left a {font-size: 14px;}
    .footer-menu-right {padding-top: 12px;}
    .footer-exchange {gap: 40px; justify-content: center; position: relative;}
    .exchange-item:first-child::after {content: ""; position: absolute; left: 50%; top: 10%; bottom: 10%; width: 1px; background-color: #ddd; transform: translateX(-50%);}
    .exchange-icon {width: 25px; height: 25px;}
    .exchange-label {font-size: 12px;}
    .exchange-value {font-size: 14px;}
    .footer-info {padding: 45px 10px 5px; border-bottom: 8px solid #f5f5f5;}
    .footer-company {width: 100px; padding: 0 5px;}
    .footer-company .footer-logo {width: 120px;}
    .footer-company .copyright {white-space: nowrap;}
    .footer-company .footer-rights {white-space: nowrap;}
    .footer-txt {padding: 15px 5px; margin-top: 5px; padding-top: 15px;}
    .footer-txt p {font-size: 14px; font-weight: 500; line-height: 1.6;}
}

/* 레이어 팝업 로그인/아이디 찾기 / 비밀번호 재발급 등 */
.layer-popup-overlay {position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(255, 255, 255, 1); z-index: 9999;}
.layer-popup-container {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; padding: 2rem;}
.layer-popup-wrap {
    border: 1px solid #e9eaeb;
    border-radius: 1rem;
    background-color: #fff;
    padding: 2rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    margin: 0 auto;
}
.layer-popup-title {text-align: center; font-size: 1.5rem; font-weight: bold; color: #333; margin-bottom: 2rem;}
.layer-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    background: none;
    border: none;
    padding: 10px;
}
.layer-popup-form-group {margin-bottom: 1rem;}
.layer-popup-input {width: 100%; padding: 0.75rem 1rem; border: 1px solid #e5e7eb; border-radius: 0.5rem; outline: none; transition: all 0.2s;}
.layer-popup-input:focus {border-color: #229c00; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);}
.layer-popup-submit {
    width: 100%;
    padding: 0.75rem;
    background-color: #229c00;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 1rem;
}
.layer-popup-submit:hover {background-color: #229c00;}
.layer-popup-button-wrap {width: 100%;}

/* 로그인 팝업 전용 스타일 */
.layer-login-remember-forgot {display: flex; align-items: center; margin-bottom: 1.5rem;}
.layer-login-remember {display: flex; align-items: center;}
.layer-login-checkbox {width: 1rem; height: 1rem; margin-right: 0.5rem;}
.layer-login-forgot {margin-left: auto; color: #6b7280; text-decoration: none; font-size: 0.875rem;}
.layer-login-forgot:hover {text-decoration: underline;}
.layer-login-divider {
    text-align: center;
    margin: 2rem 0;
    color: #6b7280;
    font-size: 0.875rem;
    position: relative;
}
.layer-login-divider::before, .layer-login-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background-color: #e5e7eb;
}
.layer-login-divider::before {left: 0;}
.layer-login-divider::after {right: 0;}
.layer-login-social {display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem;}
.layer-login-social-button {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    background-color: #f8fafc;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
    font-size: 0.875rem;
}
.layer-login-social-button:hover {background-color: #f3f4f6;}
.layer-login-signup {text-align: center;}
.layer-login-signup-link {color: #6b7280; text-decoration: none; font-size: 0.875rem;}
.layer-login-signup-link:hover {text-decoration: underline;}

/* 아이디 찾기 결과 */
.find-id-result-area {display: none;}
.find-id-result-message {text-align: center; color: #333; margin-bottom: 1.5rem;}
.find-id-result-id {text-align: center; font-size: 1.5rem; font-weight: bold; color: #333; margin-bottom: 2rem;}
.password-reset-info {text-align: center; color: #333; margin: 2rem 0; line-height: 1.6;}
.password-reset-info p {margin: 0.5rem 0; font-size: 0.95rem;}
.login-btn {margin-top: 0;}
@media screen and (min-width: 1023px) {
    .layer-popup-container.w50 {max-width: 70%;}
    .layer-popup-wrap {padding: 1.5rem;}
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .layer-popup-container {max-width: 24rem;}
    .layer-popup-wrap {padding: 1.5rem;}
}
@media screen and (max-width: 767px) {
    .layer-popup-container {padding: 0.7rem;}
    .layer-popup-wrap {padding: 1.25rem; border-radius: 0.75rem;}
    .layer-popup-title {font-size: 1.25rem; margin-bottom: 1.5rem;}
    .layer-popup-close {top: 10px; right: 10px; font-size: 20px;}
    .layer-login-remember-forgot {flex-direction: column; align-items: center; gap: 0.75rem;}
    .layer-login-remember {justify-content: center;}
    .layer-login-forgot {margin-left: 0; text-decoration: underline;}
    .password-reset-info {margin: 1.5rem 0; font-size: 0.9rem;}
}

/* 라디오버튼 스타일 */
.nomalRadio-label {
    display: inline-flex; 
    align-items: center; 
    cursor: pointer;
    padding: 2px 0;
    position: relative;
    transition: transform 0.2s ease;
	margin-right: 15px;
}
.nomalRadio-label:hover {transform: translateY(-1px); font-weight: 700;}
.nomalRadio-input {position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0;}
.nomalRadio-text {position: relative; padding-left: 26px; font-size: 16px; font-weight: 600; color: #555;}
.nomalRadio-text:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 50%;
    background-color: #fff;
    transition: all 0.2s;
}
.nomalRadio-input:checked + .nomalRadio-text {color: #229c00; font-weight: 600;}
.nomalRadio-input:checked + .nomalRadio-text:before {border-color: #229c00; background-color: #229c00;}
.nomalRadio-input:checked + .nomalRadio-text:after {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: white;
}

/* 셀렉트 박스 */
.nomal-Select {
	padding: 10px 40px 10px 15px; 
    font-size: 15px;
	font-weight: 500;
    border: 1px solid #000;
    border-radius: 3px;
	height: 40px;
	/*min-width: fit-content;*/
    width: auto;
    appearance: none;
    -webkit-appearance: none;
    background: white url("../Image/form-icon.png") no-repeat;
    background-position: right 15px center; 
    cursor: pointer;
    color: #000;
}
.nomal-Select:focus {outline: none; border-color: #000;}
.custom-select-wrapper {
  position: relative;
  user-select: none;
  width: 100%;
  max-width: 550px; /* 약간 줄임 */
  font-family: 'Noto Sans KR', sans-serif;
}

.custom-select {
  position: relative;
  display: flex;
  flex-direction: column;
}

.custom-select__trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  font-size: 15px;
  font-weight: 400;
  color: #333;
  height: 40px;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.custom-select__trigger:hover {
  border-color: #bdbdbd;
}

.custom-select.open .custom-select__trigger {
  border-color: #4a90e2;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.custom-select__trigger .selected-display {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: calc(100% - 20px);
}

.custom-options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #e0e0e0;
  border-top: 0;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 2;
  max-height: 250px;
  overflow-y: auto;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  margin-top: 2px;
}

.custom-select.open .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.custom-option {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap; /* 줄바꿈 방지 */
}

.custom-option:hover {
  background-color: #f7f9fc;
}

.custom-option.selected {
  background-color: #f0f7ff;
}

/* 화살표 디자인 */
.arrow {position: relative; height: 10px; width: 10px;}
.arrow::before, .arrow::after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 7px;
  height: 2px;
  background-color: #757575;
  transition: all 0.3s;
}
.arrow::before {left: -2px; transform: rotate(45deg);}
.arrow::after {left: 2px; transform: rotate(-45deg);}
.open .arrow::before {transform: rotate(-45deg);}
.open .arrow::after {transform: rotate(45deg);}

/* 각 요소 스타일링 - 간격 조정 */
.option-number {display: inline-block; min-width: 20px; text-align: right; color: #757575; font-weight: 500; margin-right: 8px;}
.option-title {flex: 0 0 auto; color: #333; margin-right: 10px; width: 100px;}
.option-price {color: #229c00; font-weight: 500; margin: 0 10px; width: 80px; text-align: right;}
.option-date {color: #757575; font-size: 14px; margin-left: 10px; width: 160px; text-align: right;}

/* 스크롤바 디자인 */
.custom-options::-webkit-scrollbar {width: 6px;}
.custom-options::-webkit-scrollbar-track {background: #f1f1f1; border-radius: 3px;}
.custom-options::-webkit-scrollbar-thumb {background: #ddd; border-radius: 3px;}
.custom-options::-webkit-scrollbar-thumb:hover {background: #ccc;}

/* 체크박스 */
.Ani-checkbox {display: flex; align-items: center;}
.Ani-checkbox .cbx {display: flex; align-items: center; gap: 5px;}
.Ani-checkbox input[type="checkbox"] {display: none; visibility: hidden;}
.Ani-checkbox .cbx {display: flex; flex-wrap: wrap; align-items: flex-start;}
.Ani-checkbox .cbx span {display: inline-block; vertical-align: middle; transform: translate3d(0, 0, 0); line-height: 20px;}
.Ani-checkbox .cbx span:first-child {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    transform: scale(1);
    vertical-align: middle;
    border: 1px solid #9098a9;
    transition: all 0.2s ease;
    margin-right: 8px;
    margin-top: 1px;
}
.Ani-checkbox .cbx span:nth-child(2) {flex: 1; margin-top: 0;}
.Ani-checkbox .cbx span:nth-child(3) {width: 100%; margin-top: 3px; margin-left: 26px; color: #666; font-size: 13px; line-height: 16px;}
.Ani-checkbox .cbx span:first-child svg {
    position: absolute;
    top: 3px;
    left: 2px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
}
.Ani-checkbox .cbx span:first-child:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #506eec;
    display: block;
    transform: scale(0);
    opacity: 1;
    border-radius: 50%;
}
.Ani-checkbox .cbx:hover span:first-child {border-color: #229c00;}
.Ani-checkbox .inp-cbx:checked + .cbx span:first-child {background: #229c00; border-color: #229c00; animation: wave-46 0.4s ease;}
.Ani-checkbox .inp-cbx:checked + .cbx span:first-child svg {stroke-dashoffset: 0;}
.Ani-checkbox .inp-cbx:checked + .cbx span:first-child:before {transform: scale(3.5); opacity: 0; transition: all 0.6s ease;}
/* 비활성화(disabled) 스타일 추가 */
.Ani-checkbox .inp-cbx:disabled + .cbx {opacity: 0.7;}
.Ani-checkbox .inp-cbx:disabled + .cbx span:first-child {background-color: #e9e9e9; border-color: #cccccc;}
.Ani-checkbox .inp-cbx:disabled + .cbx:hover span:first-child {border-color: #cccccc;}
.Ani-checkbox .inp-cbx:checked:disabled + .cbx span:first-child {background-color: #f9dae9; border-color: #a8b1dc;}
.Ani-checkbox .inp-cbx:disabled + .cbx span:nth-child(2),
.Ani-checkbox .inp-cbx:disabled + .cbx span:nth-child(3) {color: #999;}
.Ani-checkbox .inp-cbx:disabled + .cbx span:first-child:before {display: none;}


/* 체크박스2 */
.checkbox-Form {position: relative; display: inline-flex; margin-left: 5px; width: 70px; height: 22px; margin-top: -5px; }
.checkbox-Form input {
    width: 100%;
	height: 22px;
    padding: 2px 6px;
    border: 2px solid #d0c9f9;
    border-radius: 3px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    text-align: center;
	justify-content: center;
}
.checkbox-Form input:focus {border-color: #a24b3f;}
.checkbox-Form label {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    color: #666;
    pointer-events: none;
    transition: all 0.2s ease;
}
.checkbox-Form input:focus + label,
.checkbox-Form input:not(:placeholder-shown) + label {top: -10px; left: 5px; font-size: 14px; background: #fff; padding: 0 4px;}
.checkbox-Form input::-webkit-outer-spin-button,
.checkbox-Form input::-webkit-inner-spin-button {-webkit-appearance: none; margin: 0;}
.checkbox-Form input[type=number] {-moz-appearance: textfield;}

/* 필수항목/일반항목 폼 소타일 */
.EssentialForm {display: flex; flex-direction: column; width: 100%;}
.Essential-form,.standardForm {position: relative; width: 100%; z-index: 1;}
.Essential-form label,.standardForm label {
	font-size: 13px;
	color: #c4c4c4;
	position: absolute;
	font-weight: 500;
	top: -20px;
	left: 20px;
	background-color: #fff;
	transition: all .3s ease;
	align-items: center;
	gap: 4px;
	z-index: 0;
	pointer-events: none;
}
.Essential-form input,.standardForm input {
	padding: 10px;
	border-radius: 3px;
	border: 1px solid rgba(0, 0, 0, 0.07);
	outline: 0;
	width: 100%;
	background-color: #fff;
	z-index: 1;
}
.Essential-form input:placeholder-shown+ label {top: 0;	background-color: transparent; z-index: 0;}
.Essential-form input:focus {border-color: #d1e6fa;}
.Essential-form input:focus+ label,
.Essential-form input:not(:placeholder-shown)+ label {
	top: -2px;
	left: 20px;
	background-color: #fff;
	color: #aaa;
	font-weight: 400;
	font-size: 13px;
	transform: translateY(-50%);
	z-index: 2;
	line-height:1em;
}
.Essential-form input:not(:placeholder-shown) + label .bigBulet {color: #red;}
.standardForm input {height: 40px;}
.standardForm input:placeholder-shown+ label {top: 13px; background-color: transparent;	z-index: 0;}
.standardForm input:focus {border-color: #d1e6fa;}
.standardForm input:focus+ label,
.standardForm input:not(:placeholder-shown)+ label {
	top: 0px;
	left: 20px;
	background-color: #fff;
	color: #aaa;
	font-weight: 400;
	font-size: 13px;
	transform: translateY(-50%);
	z-index: 2;
	line-height:1em;
}
.checkbox-Form input {height: 30px;}
.checkbox-Form input:placeholder-shown+ label {top: 13px; background-color: transparent; z-index: 0;}
.checkbox-Form input:focus {border-color: #d1e6fa;}
.checkbox-Form input:focus+ label,
.checkbox-Form input:not(:placeholder-shown)+ label {
	top: 0px;
	left: 20px;
	background-color: #fff;
	color: #000;
	font-weight: 400;
	font-size: 13px;
	transform: translateY(-50%);
	z-index: 2;
	line-height:1em;
}
.bigBulet {display: inline-block; transform: translateY(4px); font-weight: 900; font-size: 29px; color:#ed6262;}

/* 버튼 스타일 */
.formBtm-Btns {display: flex; gap: 15px; padding: 0 20px 30px; margin: 0 auto; justify-content: center;}
.formBtm-style1 {
	width: 100%;
	background-color: #229c00;
	color: #fff;
	border: none;
	border-radius: 3px;
	padding: 10px;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
}
.formBtm-style1:hover {background-color: #229c00;}
.formBtm-style2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 120px;
    height: 40px;
	font-weight: 600px;
	font-size: 16px;
    line-height: 38px;
    margin-top: 1px;
    padding: 0 16px;
    background-color: white;
    color: #010101;
    border: 1px solid #000;
    border-radius: 3px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}
.formBtm-style2::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border: solid #000;
    border-width: 0 1px 1px 0;
    transform: rotate(135deg);
}
.formBtm-style2:hover {background-color: #229c00; border: 1px solid #229c00; color: #fff;}
.formBtm-style2:hover::before {border-color: #fff;}
.formBtm-style3 {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 40px;
    padding: 8px 16px;
    background-color: white;
    border: 1px solid #b9b9b9;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 500;
    color: #010101;
    cursor: pointer;
    transition: all 0.3s ease;
}
.formBtm-style3-gray {
	position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 40px;
    padding: 8px 16px;
    border: 1px solid #b9b9b9;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
	background-color: white; 
    color: #ababab;
}
.formBtm-style3:hover {background-color: #27408b; border: 1px solid #27408b; color: #fff;}
.formBtm-style3 i {font-size: 14px;}
.formBtm-style3 .tooltip {
    position: absolute;
    bottom: 120%; /* 버튼 위에 배치 */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.formBtm-style3 .tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
}
.formBtm-style3:hover .tooltip {visibility: visible; opacity: 1;}
.formBtm-style4 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
	height: 70px;
    padding: 24px 80px;
    background-color: #229c00;
    border-radius: 8px;
    font-size: 25px;
	font-weight: 500;
	text-align: center;
    color: #fff;
    cursor: pointer;
	transition: all 0.3s ease;
}
.formBtm-style4:hover {background-color: #229c00; color:#fff;}
.formBtm-style5 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
	height: 70px;
    padding: 24px 50px;
    background-color: #fff;
    border-radius: 8px;
	border: 1px solid #000;
    font-size: 22px;
	font-weight: 500;
    color: #000;
    cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
}
.formBtm-style5:hover {background-color: #f2f2f2; color:#000; border: 1px solid #000;}
.formBtm-style6 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
	height: 26px;
    padding: 10px 15px;
    background-color: #fff;
    border-radius: 3px;
	border: 1px solid #333;
    font-size: 14px;
	font-weight: 500;
    color: #000;
    cursor: pointer;
	transition: all 0.3s ease;
}
.formBtm-style6:hover {background-color: #229c00; border: 1px solid #229c00; color:#fff;}
/* 아이콘 들어간 버튼 */
.formBtm-style7 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
	height: 40px;
    padding: 8px 16px;
    background-color: white;
    border: 1px solid #b9b9b9;
	justify-content: space-between;
    border-radius: 3px;
    font-size: 14px;
	font-weight: 500;
    color: #010101;
    cursor: pointer;
	transition: all 0.3s ease;
}
.formBtm-style7:hover {background-color: #229c00; border: 1px solid #229c00; color:#fff;}
.formBtm-style7 i {font-size: 14px;}
.formBtm-style8 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
	height: 50px;
    padding: 18px 50px;
    background-color: #229c00;
    border-radius: 5px;
    font-size: 20px;
	font-weight: 500;
    color: #fff;
    cursor: pointer;
	transition: all 0.3s ease;
	justify-content: center;
}
.formBtm-style8:hover {background-color: #229c00; color:#fff;}
.formBtm-style8 i {font-size: 22px;}
.formBtm-style9 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background-color: #229c00;
    border-radius: 5px;
    font-size: 16px;
	font-weight: 500;
    color: #fff;
    cursor: pointer;
	transition: all 0.3s ease;
	justify-content: center;
}
.formBtm-style9:hover {background-color: #229c00; color:#fff;}
.formBtm-style9 i {font-size: 18px;}
@media (max-width: 768px) {
    .formBtm-style4,.formBtm-style5,.formBtm-style8 {height: 50px; padding: 0 40px; font-size: 18px;}
}
@media (max-width: 480px) {
    .formBtm-style4,.formBtm-style5,.formBtm-style8 {height: 45px; padding: 0 20px; font-size: 16px; width: 100%; justify-content: center;}
}
@media (max-width: 768px) {
	.marginBottom {margin-bottom: 30px;}
}

/* 페이징 */
.pagination-section {display: flex; flex-direction: column; align-items: center; gap: 20px; margin-top: 30px;}
.pagination-wrap {display: flex; align-items: center; gap: 20px;}
.pagination-list {display: flex; align-items: center; gap: 5px;}
.pagination-arrow {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    background: #fff;
    cursor: pointer;
}
.pagination-arrow:hover {background: #f5f5f5;}
.pagination-item {
    min-width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    background: #fff;
    font-size: 14px;
    cursor: pointer;
}
.pagination-item:hover {background: #f5f5f5;}
.pagination-item.active {background: #229c00; color: #fff; border-color: #229c00;}
.bottomBtn-wrap {display: flex; gap: 5px; justify-content: center;}
@media (max-width: 768px) {
    .pagination-section {margin-top: 20px; gap: 15px;}
    .pagination-wrap {gap: 15px;}
    .pagination-arrow {width: 28px; height: 28px;}
    .pagination-item {min-width: 28px; height: 28px; font-size: 13px;}
}

/* 약관 및 주의사항 */
.terms-box {background: #ffffff; border-radius: 30px; border: 1px solid #e9eaeb; padding: 20px; box-shadow: 0 4px 0 rgba(0, 0, 0, 0.03);}
.terms-text {height: 100px; overflow: hidden; transition: height 0.3s ease;}
.terms-text.expanded {height: auto;}
.terms-text p {margin: 0; padding: 4px 0; font-size: 16px; font-weight: 300; line-height: 1.5; color: #010101;}
.termsMore-btn {
    width: 100%;
    background: #ffffff;
	border-top: 1px solid #dddddd;
    color: #229c00;
    font-size: 18px;
	font-weight: 500;
    padding: 8px 0 0 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
	flex-direction: column;
    gap: 10px;
}
.termsMore-btn::before {
    content: '';
    display: inline-block;
	width: 15px;
    height: 15px;
    border-right: 3px solid #666;
    border-bottom: 3px solid #666;
    transform: rotate(45deg);
    margin-left: 8px;
    transition: transform 0.3s ease;
	margin-top: 10px;
}
.termsMore-btn.expanded::before {transform: rotate(-135deg);}
@media (max-width: 768px) {
    .terms-box {border-radius: 30px; padding: 15px;}
    .terms-text {height: 80px;}
    .terms-text p {font-size: 14px; padding: 3px 0;}
    .termsMore-btn {font-size: 16px; padding: 6px 0 0 0; gap: 8px;}
    .termsMore-btn::before {width: 12px; height: 12px; border-right: 2px solid #666; border-bottom: 2px solid #666; margin-top: 8px;}
}
@media (max-width: 480px) {
    .terms-box {border-radius: 10px; padding: 12px;}
    .terms-text {height: 70px;}
    .terms-text p {font-size: 13px; padding: 2px 0;}
    .termsMore-btn {font-size: 15px; padding: 5px 0 0 0; gap: 6px;}
    .termsMore-btn::before {width: 10px; height: 10px; margin-top: 6px;}
}

/* 퀵 배너 */
.quick-banner {position: fixed; right: 30px; top: 52%; transform: translateY(-60%); z-index: 100; transition: all 0.3s ease;}
.quick-menu {
	background: #fff;
	width: 110px;
	height: auto;
	padding: 25px 8px 35px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	border-radius: 62px;
	position: relative;
	transition: all 0.3s ease;
}
.quick-menu:hover {box-shadow: 0 8px 20px rgba(0,0,0,0.12); transform: translateY(-5px);}
.quick-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	padding: 10px 5px;
	width: 90%;
	position: relative;
	z-index: 1;
	transition: all 0.2s ease;
	border-radius: 5px;
	text-align: center;
}
.quick-btn.talk {position: relative;}
.quick-btn.yellow {background-color: #FFD700; color: #000; font-weight: 600; padding: 12px 5px; margin-top: -5px;}
.quick-btn.purple {background: #8A2BE2; color: #fff; font-weight: 600; padding: 12px 5px; margin-bottom: 2px;}
.quick-btn span {font-size: 14px; font-weight: 600; text-align: center; word-break: keep-all;}
.quick-btn.location {background-color: #f0f8ff; border: 1px solid #d0e6f7; padding: 12px 5px; position: relative;}
.location-icon {
	display: inline-block;
	width: 10px;
	height: 14px;
	background-color: #0078d4;
	position: relative;
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
	margin-bottom: 5px;
}
.location-icon::after {
	content: '';
	width: 5px;
	height: 5px;
	background-color: white;
	position: absolute;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.quick-btn.location span {color: #0078d4; display: block;}
.quick-btn.location .phone {margin-top: 5px; font-size: 11px; line-height: 1.3;}
/* TOP 버튼 스타일 - 기존 스타일 유지 */
.top-btn {
	width: 60px;
	height: 60px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 15px auto 0;
	text-decoration: none;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	position: relative;
	z-index: 2;
	cursor: pointer;
	transition: all 0.3s ease;
}
.top-btn:hover {background: #f8f8f8; transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.12);}
.top-btn i {width: 20px; height: 20px; transition: transform 0.3s ease;}
.top-btn:hover i {transform: translateY(-2px);}
@media (max-width: 1600px) {
	.quick-banner {display: none;}
}
@media (max-width: 768px) {
	.quick-banner {right: 15px;}
	.quick-menu {width: 90px; padding: 25px 5px 45px; gap: 5px;}
	.quick-btn {padding: 8px 5px;}
	.quick-btn span {font-size: 11px;}
}.quick-banner {position: fixed; right: 30px; top: 52%; transform: translateY(-60%); z-index: 100; transition: all 0.3s ease;}
.quick-menu {
	background: #fff;
	width: 110px;
	height: auto;
	padding: 25px 8px 35px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	border-radius: 62px;
	position: relative;
	transition: all 0.3s ease;
}
.quick-menu:hover {box-shadow: 0 8px 20px rgba(0,0,0,0.12); transform: translateY(-5px);}
.kakao3 {display: flex; flex-direction: column;	align-items: center; padding: 10px 5px;	width: 90%;	position: relative;}
.quick-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	padding: 10px 5px;
	width: 90%;
	position: relative;
	z-index: 1;
	transition: all 0.3s ease;
	border-radius: 5px;
	text-align: center;
}
.quick-btn:hover {transform: translateY(-3px); box-shadow: 0 5px 10px rgba(0,0,0,0.05);}
.quick-btn.talk {position: relative;}
.quick-btn.yellow {
	background-color: #FFD700; 
	color: #000; 
	font-weight: 600; 
	padding: 12px 5px; 
	margin-top: -5px;
	transition: all 0.3s ease;
}
.quick-btn.yellow:hover {background-color: #FFE44D; transform: translateY(-3px) scale(1.03);}
.quick-btn.purple {
	background: #8A2BE2; 
	color: #fff; 
	font-weight: 600; 
	padding: 12px 5px; 
	margin-bottom: 2px;
	transition: all 0.3s ease;
}
.quick-btn.purple:hover {background: #9B4EE3; color: #fff; transform: translateY(-3px) scale(1.03);}
.quick-btn span {
	font-size: 14px; 
	font-weight: 600; 
	text-align: center; 
	word-break: keep-all;
	transition: all 0.3s ease; 
}
.quick-btn.location {
	background-color: #f0f8ff; 
	border: 1px solid #d0e6f7; 
	padding: 12px 5px; 
	position: relative;
	transition: all 0.3s ease; 
}
.quick-btn.location:hover {background-color: #e6f4ff; border-color: #b8dcf5; transform: translateY(-3px) scale(1.03);}
.location-icon {
	display: inline-block;
	width: 14px;
	height: 14px;
	background-color: #0078d4;
	position: relative;
	border-radius: 50% 50% 50% 50%;
	transform: rotate(-45deg);
	margin-bottom: 5px;
	transition: all 0.3s ease;
}
.quick-btn:hover .location-icon {background-color: #0066b8; transform: rotate(-45deg) scale(1.1);} /* 호버 시 아이콘 색상 및 크기 변경 */
.quick-btn.location span {color: #0078d4; display: block;}
.quick-btn.location:hover span {color: #0066b8;}
.quick-btn.location .phone {margin-top: 5px; font-size: 11px; line-height: 1.3;}
/* TOP 버튼 스타일 - 기존 스타일 유지에 애니메이션 추가 */
.top-btn {
	width: 60px;
	height: 60px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 15px auto 0;
	text-decoration: none;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	position: relative;
	z-index: 2;
	cursor: pointer;
	transition: all 0.3s ease;
}
.top-btn:hover {background: #f8f8f8; transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.12);}
.top-btn i {width: 20px; height: 20px; transition: transform 0.3s ease;}
.top-btn:hover i {transform: translateY(-2px);}
.top-btn img {transition: all 0.3s ease;} /* 이미지 애니메이션 추가 */
.top-btn:hover img {transform: translateY(-3px);} /* 호버 시 이미지 위로 이동 */
@media (max-width: 1600px) {
	.quick-banner {display: none;}
}
@media (max-width: 768px) {
	.quick-banner {right: 15px;}
	.quick-menu {width: 90px; padding: 25px 5px 45px; gap: 5px;}
	.quick-btn {padding: 8px 5px;}
	.quick-btn span {font-size: 11px;}
}

/* 모바일에서만 보이는 탑이동 버튼 */
.btn-top {display: none;}
@media (max-width: 1024px) {
    .btn-top {
        position: fixed;
        right: 15px;
        bottom: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
        width: 40px;
        height: 40px;
        background: rgba(0, 0, 0, 0.6);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        z-index: 100;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    .btn-top.show {opacity: 1; visibility: visible;}
    .btn-top .arrow {
        display: block;
        width: 8px;
        height: 8px;
        margin-top: 12px;
        border: solid #fff;
        border-width: 2px 2px 0 0;
        transform: rotate(-45deg);
        transition: all 0.3s ease; /* 애니메이션 추가 */
    }
    .btn-top:hover .arrow {transform: rotate(-45deg) translateY(-3px);} 
    .btn-top i {color: #fff; margin-top: 5px;}
    .btn-top .text {color: #fff; font-size: 11px; line-height: 1; margin-top: -3px; font-weight: 500;}
}
@media (max-width: 480px) {
    .btn-top {right: 10px; bottom: 15px;}
}
/* 로그인 섹션 */
.login-section-page {background: #fff; padding: 0; width: 100%; max-width: 600px; height: 432px; flex-shrink: 0; margin-left: auto; margin-right: auto; border: 1px solid #eee; margin-bottom: 50px;}
.login-section-page h3 {
    width: 100%;
    height: 73px;
    background: url("/Image/index/index-loginBG.png") no-repeat;
    margin: 0;
    padding: 0 30px;
    display: flex;
    align-items: center;
    font-size: 20px;
    color: #fff;
}
.login-section {background: #fff; padding: 0; width: 414px; height: 432px; flex-shrink: 0;}
.login-section h3 {
    width: 414px;
    height: 73px;
    background: url("/Image/index/index-loginBG.png") no-repeat;
    margin: 0;
    padding: 0 30px;
    display: flex;
    align-items: center;
    font-size: 20px;
    color: #fff;
}
.login-form {margin-top: 20px; padding: 0 30px;}
.input-group {margin-bottom: 15px;}
.input-group label {display: block; color: #333; margin-bottom: 5px; font-weight: 600;}
.input-group input {width: 100%; padding: 20px; border: 1px solid #ddd; height: 46px;}
.save-id {display: flex; align-items: center; margin-bottom: 20px; color: #666; font-size: 14px;}
.save-id input {font-size: 14px;}
.forgot-link {margin-left: auto; color: #666; cursor: pointer;}
.button-group {display: flex; gap: 8px; margin-bottom: 12px;}
.button-group button {border: none; cursor: pointer;}
.button-group button:active {transform: translateY(1px);}
.button-group button:disabled {opacity: 0.6; cursor: not-allowed;}
.login-btn {
    height: 70px;
    background: #7b10dd;
    color: white;
    font-size: 19px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 2;
}
.login-btn img {width: auto;}
.register-btn {height: 40px; display: flex; align-items: center; justify-content: center; background: #f1f5f9; color: #333; font-size: 18px; flex: 1;}
.register-btn img {max-width: 100%; height: auto; padding: 8px;}
.login-info {padding: 20px 30px;}
.user-welcome {
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-bottom: 20px;
    padding-top: 5px;
    border-bottom: 1px solid #eee;
}
.user-welcome i {color: #3858e9; margin-right: 0;}
.user-stats {padding: 5px 0; border-bottom: 1px solid #eee;}
.stat-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background: #f8fafc;
    padding: 15px;
    color: #000;
    border-radius: 3px;
}
.stat-item i {color: #3858e9; margin-right: 0;}
.stat-row {display: flex; gap: 10px;}
.stat-row .stat-item {flex: 1;}
.stat-item .label {color: #333; margin-right: 10px;}
.stat-item .value {font-weight: 600; color: #000;}
.stat-item span.label {margin-left: 10px;}
.user-buttons {display: flex; gap: 8px; margin-top: 20px;}
.mypage-btn {
    flex: 1;
    background: #7b10dd;
    color: white;
    border: none;
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}
.logout-btn {
    flex: 1;
    background: #f1f5f9;
    color: #333;
    border: none;
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

@media (max-width: 480px) {
    .login-info {padding: 15px 10px;}
    .stat-item {padding: 10px;}
    .stat-item i {margin-right: 0; font-size: 14px;}
    .stat-item .label {font-size: 14px; margin-right: 3px;}
    .stat-item .value {font-size: 14px;}
    .stat-row {gap: 3px;}
    .user-buttons {gap: 5px;}
    .mypage-btn, .logout-btn {padding: 25px 10px; font-size: 16px;}
}

















