/** font **/
@import url("/Css/Fontawesome/js/all.js?ver=1.02");
@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;}
	/* Firefox */
	@-moz-document url-prefix() {
		body {transform: scale(0.8); transform-origin: top center; min-height: 125vh;}
	}
	/* Safari */
	@supports (-webkit-touch-callout: none) {
		body {-webkit-transform: scale(0.8); -webkit-transform-origin: top center; min-height: 125vh;}
	}
}

/* header */
/* 헤더 전체 스타일 */
header {width: 100%; background: #fff; position: relative; z-index: 1000;}
.headerMenu {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 160px;
}
.logo {flex-shrink: 0;}
.logo a {display: block;}
.logo img {width: auto;}
.gnb {flex: 1; margin: 0 40px;}
.gnb-list {display: flex; align-items: center; justify-content: center; gap: 40px; list-style: none;}
.gnb-item {position: relative;}
.member-area {font-size: 15px; font-weight: 600; color: #ff4000; align-items: center; justify-content: center;}
.gnb-link {
    display: block;
    font-size: 19px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    padding: 30px 0;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
}
/* 1차 메뉴 선택 및 호버 효과 */
.gnb-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b);
    border-radius: 2px;
    transition: transform 0.3s ease;
}
.gnb-link:hover::after,
.gnb-item:hover .gnb-link::after,
.gnb-item.active .gnb-link::after {transform: translateX(-50%) scaleX(1);}
.gnb-link:hover,
.gnb-item:hover .gnb-link,
.gnb-item.active .gnb-link {color: #ff6b35;}
/* 2차 메뉴 */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    list-style: none;
    padding: 20px 0;
    margin-top: 15px;
}
.gnb-item:hover .sub-menu {opacity: 1; visibility: visible; margin-top: 5px;}
.sub-menu li {padding: 0;}
.sub-menu a {
    display: block;
    padding: 15px 25px;
    color: #666;
    text-decoration: none;
    font-size: 16px;
	font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}
.sub-menu a:hover {color: #ff6b35; background: linear-gradient(90deg, #fef8f5, transparent);}
/* 우측 메뉴 영역 */
.right-menu {display: flex; align-items: center; gap: 10px; flex-shrink: 0;}
/* 회원 버튼 영역 */
.member-area {display: flex; gap: 10px;}
.btn-member {
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.btn-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}
.btn-member:hover::before {left: 100%;}
.btn-member.join {background: #ff4000; color: #fff; font-weight: 600; border: 1px solid #ff6b35;}
.btn-member.join:hover {transform: translateY(-2px); box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);}
.btn-member.login {background: #ffc100; color: #fff; font-weight: 600; border: 1px solid #ffc107;}
.btn-member.login:hover {
    background: #e6ac00;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}
/* 모바일 사용자 메뉴 */
.mobile-user-menu {display: none; position: relative;}
.mobile-user-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ff6b35;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #fff;
    transition: all 0.3s ease;
}
.mobile-user-btn:hover {transform: scale(1.05); box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);}
.mobile-user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 140px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 10px 0;
    margin-top: 10px;
}
.mobile-user-menu.active .mobile-user-dropdown {opacity: 1; visibility: visible; transform: translateY(0); margin-top: 5px;}
.mobile-user-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}
.mobile-user-dropdown a i {
    width: 14px;
    font-size: 12px;
}
.mobile-user-dropdown a:hover {color: #ff6b35; background: #fef8f5;}
.mobile-user-dropdown .join {color: #ff6b35; font-weight: 500;}
.mobile-user-dropdown .join i {color: #ff6b35;}
/* 모바일 메뉴 버튼 */
.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ff6b35;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}
.mobile-menu-btn:hover {transform: scale(1.05); box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);}
.mobile-menu-btn span {
    position: absolute;
    width: 16px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    transition: all 0.3s ease;
}
.mobile-menu-btn span:nth-child(1) {transform: translateY(-4px);}
.mobile-menu-btn span:nth-child(2) {transform: translateY(0);}
.mobile-menu-btn span:nth-child(3) {transform: translateY(4px);}
/* 모바일 메뉴 버튼 활성화시 애니메이션 */
.mobile-menu-btn.active span:nth-child(1) {transform: rotate(45deg);}
.mobile-menu-btn.active span:nth-child(2) {opacity: 0;}
.mobile-menu-btn.active span:nth-child(3) {transform: rotate(-45deg);}
@media (max-width: 1300px) {
    .gnb-list {gap: 30px;}
    .gnb-link {font-size: 20px;}
}

@media (max-width: 1240px) {
    .headerMenu {height: 60px; padding: 0 15px;}
    .logo img {height: 32px;}
    .member-area {display: none;}
    .mobile-user-menu {display: block;}
    .mobile-menu-btn {display: flex;}
    .gnb {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        border-top: 1px solid #e5e5e5;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .gnb.active {display: block; max-height: none;}
    .gnb-list {flex-direction: column; gap: 0; padding: 20px 0;}
    .gnb-item {width: 100%; border-bottom: 1px solid #f5f5f5;}
    .gnb-item:last-child {border-bottom: none;}
    .gnb-link {
        padding: 15px 20px;
        font-size: 21px;
        position: relative;
    }
    .gnb-link::after {display: none;}
    /* 모바일에서 화살표 아이콘 추가 */
    .gnb-link::before {
        content: '▼';
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 14px;
        color: #999;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    /* 서브메뉴가 활성화된 1차 메뉴 스타일 */
    .gnb-item.active .gnb-link {
        background: linear-gradient(90deg, #fef8f5, transparent);
        color: #ff6b35;
    }
    .gnb-item.active .gnb-link::before {
        transform: translateY(-50%) rotate(180deg);
        color: #ff6b35;
    }
    /* 모바일 서브메뉴 부드러운 애니메이션 */
    .sub-menu {
        position: static;
		transform: none;
		opacity: 0;
		visibility: hidden;
		margin: 0;
		border: none;
		box-shadow: none;
		background: #f9f9f9;
		border-radius: 0;
		padding: 0;
		max-height: 0;

		transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .gnb-item.active .sub-menu {
        opacity: 1;
        visibility: visible;
        max-height: none;
    }
    .sub-menu a {
        padding: 12px 40px;
        background: none;
        font-size: 18px;
        transform: translateX(-15px);
        opacity: 0;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
    }
    /* 2차 메뉴 순차적 부드러운 애니메이션 */
    .gnb-item.active .sub-menu a {
        transform: translateX(0);
        opacity: 1;
    }
    .gnb-item.active .sub-menu a:nth-child(1) {transition-delay: 0.1s;}
    .gnb-item.active .sub-menu a:nth-child(2) {transition-delay: 0.15s;}
    .gnb-item.active .sub-menu a:nth-child(3) {transition-delay: 0.2s;}
    .gnb-item.active .sub-menu a:nth-child(4) {transition-delay: 0.25s;}
    /* 2차 메뉴 아이템 좌측 포인트 효과 제거 */
    .sub-menu a:hover {
        padding-left: 50px;
        background: linear-gradient(90deg, #fff5f0, #f9f9f9);
        color: #ff6b35;
        transform: translateX(8px);
        border-radius: 0 25px 25px 0;
    }
    .sub-menu a.active {
        color: #ff6b35;
        background: linear-gradient(90deg, #fff5f0, #f9f9f9);
        position: relative;
    }
    .sub-menu a.active::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 3px;
        background: linear-gradient(90deg, #ff6b35, #e55a2b);
        border-radius: 2px 2px 0 0;
    }
}
/* 서브페이지 네비 */
.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: #3858e9;}
.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: rgba(56, 88, 233, 0.08); color: #3858e9; 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%; background: #f2f4f6; border-top: 1px solid #E1E1E1;}
.footer-menu {width: 100%; background: #fff; padding: 25px 0; border-bottom: 1px solid #E1E1E1;}
.footer-menu ul {display: flex; justify-content: center; list-style: none; gap: 50px; margin: 0; padding: 0;}
.footer-menu a {color: #000; text-decoration: none; font-size: 18px;}
.footer-info {max-width: 1200px; margin: 0 auto; padding: 100px 20px; display: flex;}
.footer-company {width: 300px;}
.footer-company .footer-logo {display: flex; align-items: center; gap: 5px; margin-bottom: 15px;}
.footer-company .footer-logo img {width: 100%; height: auto;}
.footer-company .copyright {font-size: 13px; color: #666; margin: 0;}
.footer-company .footer-rights {font-size: 13px; font-weight: 500; color: #666; margin: 3px 0 0 0;}
.footer-txt {flex: 1; padding-left: 100px;}
.footer-txt p {font-size: 16px; font-weight: 500; color: #000; margin: 0 0 5px 0; line-height: 1.5;}
/* TOP 버튼 */
.btn-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	background: rgba(0, 0, 0, 0.7);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all 0.3s ease;
}
.btn-top.show {opacity: 1; visibility: visible; transform: translateY(0);}
.btn-top:hover {background: rgba(0, 0, 0, 0.9); transform: translateY(-2px);}
.btn-top i {font-size: 16px; margin-bottom: 2px;}
.btn-top .text {line-height: 1;}
@media (max-width: 1400px) {
	.footer-info {padding: 100px 20px;}
}
@media (max-width: 768px) {
	.footer-menu {padding: 15px 20px;}
	.footer-menu ul {display: flex; justify-content: space-between; gap: 8px;}
	.footer-menu li {flex: 1; background: rgba(255,255,255,0.15); border-radius: 5px; transition: all 0.3s ease;}
	.footer-menu li:hover {background: rgba(255,255,255,0.3);}
	.footer-menu a {display: flex; align-items: center; justify-content: center; padding: 12px 5px; font-size: 13px; white-space: nowrap; letter-spacing: -0.5px;}
	.footer-info {flex-direction: column; padding: 50px 20px;}
	.footer-company {width: auto; margin-bottom: 30px;}
	.footer-company .footer-logo {width: 160px;}
	.footer-company .footer-logo img {width: 100%;}
	.footer-company .copyright {font-size: 13px; white-space: nowrap;}
	.footer-company .footer-rights {font-size: 13px;}
	.footer-txt {padding: 0;}
	.footer-txt p {font-size: 15px; line-height: 1.2; margin-bottom: 8px;}
	.btn-top {bottom: 20px;	right: 20px; width: 50px; height: 50px; font-size: 11px;}
	.btn-top i {font-size: 14px;}
}
@media (max-width: 480px) {
	.footer-menu {padding: 10px 20px;}
	.footer-menu ul {gap: 6px;}
	.footer-menu a {padding: 10px 2px; font-size: 13px; letter-spacing: -1px;}
	.footer-info {padding: 40px 20px;}
	.footer-company {width: auto;}
	.footer-txt p {font-size: 14px; line-height: 1.6;}
	.btn-top {bottom: 15px; right: 15px; width: 45px; height: 45px; font-size: 10px;}
	.btn-top i {font-size: 12px;}
}

/* 레이어 팝업 로그인/아이디 찾기 / 비밀번호 재발급 등 */
.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: #3b82f6; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);}
.layer-popup-submit {
    width: 100%;
    padding: 0.75rem;
    background-color: #3b82f6;
    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: #2563eb;}
.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: #ff622c; font-weight: 600;}
.nomalRadio-input:checked + .nomalRadio-text:before {border-color: #ff622c; background-color: #ff622c;}
.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: #4a90e2; 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: #ff622c;
    display: block;
    transform: scale(0);
    opacity: 1;
    border-radius: 50%;
}
.Ani-checkbox .cbx:hover span:first-child {border-color: #ff622c;}
.Ani-checkbox .inp-cbx:checked + .cbx span:first-child {background: #ff622c; border-color: #ff622c; 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: #f9caba; border-color: #f9caba;}
.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: #473fa2;}
.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: #ff622c;
	color: #fff;
	border: none;
	border-radius: 3px;
	padding: 10px;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
}
.formBtm-style1:hover {background-color: #ed4d16;}
.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: #27408b; border: 1px solid #27408b; 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.Red {color: red;}
.formBtm-style3:hover {background-color: #f37a37; border: 1px solid #e16622; 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: #ff622c;
    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: #ed4d16; 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: #27408b; border: 1px solid #ff622c; 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: #ff622c; border: 1px solid #ff622c; 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: #473fa2;
    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: #ff622c; color:#fff;}
.formBtm-style8 i {font-size: 22px;}
.formBtm-style9 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background-color: #ff622c;
    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: #ed4d16; 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: #ff4021; color: #fff; border-color: #f93515;}
.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: #e95a5a;
    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 {display: none; 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 .text {color: #fff; font-size: 10px; line-height: 1;}
}
@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;}
}

















