@charset "UTF-8";

/* ===== RESET ===== */
img { max-width: 100%; }

/* ===== HEADER ===== */
.header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10002;
    padding: 0px;
    background: rgba(255, 255, 255, 0.95);
}

/* 사이트맵 열린 상태일 때 헤더 배경 투명화 */
body.sitemap-open .header {
    background: transparent;
}

body.sitemap-open .logo-text .ko,
body.sitemap-open .logo-text .en {
    color: #fff;
}

body.sitemap-open .gnb-menu > li > a {
    color: #fff;
}

/* 사이트맵 열린 상태일 때 로고 이미지를 흰색으로 변환 */
body.sitemap-open .logo-icon img {
    filter: brightness(0) invert(1);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    /* 로고 이미지를 넣을 자리 */
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .ko {
    font-size: 1em; /* 18px */
    font-weight: 700;
    color: #222;
    letter-spacing: -0.03em;
}

.logo-text .en {
    font-size: 0.5em; /* 9px */
    color: #888;
    letter-spacing: 0.1em;
    margin-top: 2px;
}

/* ===== GNB (드롭다운) ===== */
.gnb {
    display: flex;
    align-items: center;
    gap: 50px;
}

.gnb-menu {
    display: flex;
    gap: 50px;
}

.gnb-menu > li {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    height: 90px;
}

.gnb-menu > li > a {
    font-size: 1.1em;
    font-weight: 500;
    color: #222;
    transition: color 0.3s;
    display: block;
}

.gnb-menu > li:hover > a {
    color: #b89968;
}

/* 드롭다운 서브메뉴 */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.98);
    min-width: 160px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 2px solid #b89968;
}

.gnb-menu > li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}

.sub-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.95em;
    color: #555;
    text-align: center;
    transition: all 0.2s;
    white-space: nowrap;
}

.sub-menu li a:hover {
    color: #b89968;
    background: #faf7f1;
}

/* 메뉴 버튼 */
.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    z-index: 10001;
    position: relative;
}

.menu-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background: #222;
    transition: all 0.3s;
}

.menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: #fff;
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: #fff;
}

/* ===== 전체메뉴 (사이트맵) ===== */
.sitemap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(20, 20, 25, 0.97);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

.sitemap.active {
    opacity: 1;
    visibility: visible;
}

.sitemap-inner {
    max-width: 1400px;
    width: 100%;
    padding: 0 60px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    color: #fff;
}

.sitemap-col h4 {
    font-size: 1.4em;
    font-weight: 700;
    color: #d4b88a;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 184, 138, 0.3);
}

.sitemap-col ul li {
    margin-bottom: 15px;
}

.sitemap-col ul li a {
    color: #ccc;
    transition: all 0.2s;
    display: inline-block;
}

.sitemap-col ul li a:hover {
    color: #d4b88a;
    transform: translateX(5px);
}

/* ===== MAIN VISUAL ===== */
.main-visual {
    position: relative;
    width: 100%;
    height: 620px;
    background: url('../image/main/main_vis01.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    /* 메인 배경 이미지를 넣을 자리 */
}

.main-visual-content {
    text-align: center;
    color: #fff;
}

.main-visual-content h2 {
    font-size: 1.5556em; /* 28px */
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: -0.018em;
}

.main-visual-content h1 {
    font-size: 3.8em;
    font-weight: 200;
    margin-bottom: 30px;
    white-space: nowrap;
}

.main-visual-content h1 .accent {
    /* color: #d4b88a; */
    font-weight: 900;
}

.main-visual-content p {
    font-size: 1.2em;
    line-height: 1.8;
    font-weight: 200;
    opacity: 0.7;
    letter-spacing: 0.025em;
}

/* ===== INFO SECTION (width 100%) ===== */
.info-section {
    position: relative;
    z-index: 10;
    display: flex;
    width: 100%;
}

.customer-center {
    background: #3d3830;
	border-radius: 0 30px 0 0;
    padding: 40px 45px;
    color: #fff;
    width: 480px;
    flex-shrink: 0;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
	margin-top: -100px;
}

.customer-center .label {
    color: #d4b88a;
    font-size: 0.7222em; /* 13px */
    letter-spacing: 0.15em;
    font-weight: 600;
    margin-bottom: 10px;
}

.customer-center .title {
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.customer-center .title .sub {
    font-weight: 400;
    color: #d4d4d4;
    margin-left: 4px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 40px;
    padding: 0px 30px;
    font-size: 0.9em;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 500px;
}

.contact-list li .region {
    color: #c9a050;
    font-weight: 700;
    min-width: 35px;
    letter-spacing: 0.3em;
}

.contact-list li .tel {
    color: #c9a050;
    font-weight: 700;
}

.contact-list li a {
    color: #c9a050;
    font-weight: 700;
}

.quick-services {
    background: #121212;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 35px 30px;
    min-height: 200px;
}

.quick-item {
	position: relative;
	flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    opacity: 0.5;
    transition: transform 0.3s;
}

.quick-item:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.quick-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* 아이콘 이미지를 넣을 자리 */
}

.quick-icon img {
    max-width: 100%;
    max-height: 100%;
}

.quick-item .name {
    color: #fff;
    font-size: 1.1em;
    font-weight: 500;
}






/* ===== PARTNER SECTION (width 100%) ===== */
.partner-section {
    width: 100%;
	text-align: center;
}


/* ===== INTRO SECTION (width 100%) ===== */
.intro-section {
    padding: 120px 0;
    width: 100%;
}

.intro-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.intro-image {
    width: 100%;
    height: 600px;
    background: #ddd;
    /* 악수 이미지를 넣을 자리 */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.intro-image img {
	display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-text {
    padding-right: 60px;
}

.intro-text h3 {
    font-size: 2em;
    font-weight: 700;
    color: #222;
    margin-bottom: 35px;
    letter-spacing: -0.023em;
    word-break: keep-all;
}

.intro-text h3 .accent {
    color: #b89968;
}

.intro-text p {
    color: #666;
	font-size: 1.1em;
    line-height: 1.9;
    margin-bottom: 20px;
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 15px 25px;
    border: 1px solid #ccc;
	border-radius: 3px;
    background: #fff;
    color: #333;
    font-weight: 500;
    margin-top: 50px;
    transition: all 0.3s;
    cursor: pointer;
	text-decoration: none;     /* a 태그 기본 밑줄 제거 */
	font-family: inherit;      /* 부모 폰트 상속 */
	font-size: inherit;        /* 부모 폰트 사이즈 상속 */
}

.btn-arrow:hover {
    background: #4a3d2e;
    color: #fff;
    border-color: #4a3d2e;
}

.btn-arrow .arrow {
    font-size: 1.143em; /* 16px (14px 기준) */
}

/* ===== CONSULTATION SECTION ===== */
.consultation-section {
    position: relative;
    padding: 130px 60px;
    background: url('../image/main/consultation_bg01.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
}

.consultation-section .label {
    color: #d4b88a;
    font-size: 0.7778em; /* 14px */
    letter-spacing: 0.28em;
    font-weight: 600;
    margin-bottom: 25px;
}

.consultation-section h2 {
    font-size: 2em; /* 34px */
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 50px;
    letter-spacing: -0.015em;
}

.consultation-section h2 .accent {
    color: #d4b88a;
}


/* ===== PARTNERS SECTION ===== */
.partners-section {
    position: relative;
    padding: 130px 60px;
    background: url('../image/main/consultation_bg01.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
}

.consultation-section .label {
    color: #d4b88a;
    font-size: 0.7778em; /* 14px */
    letter-spacing: 0.28em;
    font-weight: 600;
    margin-bottom: 25px;
}

.consultation-section h2 {
    font-size: 2em; /* 34px */
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 50px;
    letter-spacing: -0.015em;
}

.consultation-section h2 .accent {
    color: #d4b88a;
}




.btn-consultation {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 16px 35px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-consultation:hover {
    background: #4a3d2e;
    color: #fff;
    border-color: #4a3d2e;
}

/* ===== LOCATION SECTION ===== */
.location-section {
    display: flex;
    width: 100%;
    min-height: 750px;
}

.location-map {
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
    background: #e8e8e8;
    min-height: 750px;
    position: relative;
    overflow: hidden;
}

/* 지도 컨테이너 (탭별 전환) */
.map-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    background: #e8e8e8;
    font-size: 0.7778em;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.3s;
}

.map-container.active {
    visibility: visible;
    opacity: 1;
    z-index: 2;
}

.map-container .root_daum_roughmap,
.map-container .root_daum_roughmap_landing {
    width: 100% !important;
    height: 100% !important;
    min-height: 750px !important;
}

.map-container .root_daum_roughmap .wrap_map,
.map-container .root_daum_roughmap_landing .wrap_map {
    width: 100% !important;
    height: 100% !important;
    min-height: 750px !important;
}

.map-container .root_daum_roughmap iframe,
.map-container .root_daum_roughmap_landing iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 750px !important;
}

.root_daum_roughmap { max-width: 100% !important; }
.root_daum_roughmap .cont { display: none !important; }

.location-info {
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
    min-width: 0;
    padding: 200px 80px 70px;
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    box-sizing: border-box;
}

.location-tabs {
    display: flex;
	flex-wrap: wrap;
    gap: 28px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 80px;
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #b89968 transparent;
}

.location-tabs::-webkit-scrollbar {
    height: 3px;
}

.location-tabs::-webkit-scrollbar-thumb {
    background: #b89968;
    border-radius: 3px;
}

.location-tabs::-webkit-scrollbar-track {
    background: transparent;
}

.location-tab {
    font-size: 1.2em;
    color: #888;
    cursor: pointer;
    position: relative;
    padding-bottom: 20px;
    transition: color 0.3s;
    white-space: nowrap;
}

.location-tab.active {
    color: #222;
    font-weight: 600;
    border-bottom: 2px solid #b89968;
}

.location-tab:hover {
    color: #222;
}

/* 지점 정보 (탭별 전환) */
.branch-info {
    display: none;
    width: 100%;
}

.branch-info.active {
    display: block;
}

.branch-info h3 {
    font-size: 2em;
    font-weight: 700;
    color: #222;
    margin-bottom: 40px;
    letter-spacing: -0.019em;
}

.branch-info h3 .accent {
    color: #b89968;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-detail-item {
    display: flex;
    align-items: center;
    gap: 30px;
	font-size: 1.1em;
}

.location-detail-item .icon {
    width: 45px;
    height: 45px;
    background: #3d3830;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-detail-item .icon img {
    object-fit: contain;
    /* PNG 아이콘은 흰색 버전으로 준비. 필요 시 아래 filter 활성화로 검정 아이콘을 흰색으로 변환 가능 */
    /* filter: brightness(0) invert(1); */
}

.location-detail-item .label {
    color: #222;
    font-weight: 500;
	min-width: 60px;
}

.location-detail-item .value {
    color: #333;
	font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
    background: #1a1a1a;
    color: #999;
    padding: 50px 0px 30px;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
	color: #fff;
    font-weight: 600;
}

.footer-top .company { }
.footer-top .divider {
    color: #444;
	font-weight: 400;
}

.footer-info {
    font-size: 0.85em;
    line-height: 1.6;
    color: #888;
}

.footer-info .label {
    color: #aaa;
    font-weight: 500;
}

.footer-bottom {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #2a2a2a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85em;
}

.footer-bottom .copyright {
    color: #666;
}

.footer-bottom .links {
    display: flex;
    gap: 30px;
}

.footer-bottom .links a {
    color: #aaa;
}

.footer-bottom .links a:hover {
    color: #fff;
}