@charset "utf-8";
/* 
	common.css : 헤더, 푸터, 레이아웃 정의
*/

*{
	word-break: keep-all	;
}

html {
	scrollbar-gutter: stable;
	font-family: 'pretendard', sans-serif;
	scrollbar-width: thin;
	scrollbar-color: rgba(12, 13, 17, 0.35) transparent;
}

html::-webkit-scrollbar {
	width: 8px;
}

html::-webkit-scrollbar-track {
	background: transparent;
}

html::-webkit-scrollbar-thumb {
	background: rgba(12, 13, 17, 0.35);
	border-radius: 4px;
}

html::-webkit-scrollbar-thumb:hover {
	background: rgba(12, 13, 17, 0.5);
}


.mo-only-br {
	display: none;
}

.pc-only-br {
	display: block;
}

@media (max-width: 560px) {
	.mo-only-br {
		display: block;
	}

	.pc-only-br {
		display: none;
	}
}


/******************************************************************************
 header { ******************************************************************************* */

 .header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 82px;
	z-index: 999;
	background: transparent;
 }

.header.scrolled{
	background-color: rgba(20, 20, 25, 0.55);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

 .header__inner{
	width: 95%;
	height: 100%;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	column-gap: 16px;
	box-sizing: border-box;
 }

 .header__left{
	justify-self: start;
	min-width: 0;
 }

 .header__logo{
	justify-self: center;
	grid-column: 2;
 }

 .header__logo img{
	display: block;
	max-width: 100%;
	height: auto;
 }

 .header__right{
	justify-self: end;
	grid-column: 3;
	min-width: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 24px;
 }

 .header__left .header__nav .header__nav__ul{
	 display: flex;
	 flex-direction: row;
	 flex-wrap: nowrap;
	 align-content: center;
	 justify-content: flex-start;
	 align-items: center;
	 gap: 24px;
	}
	
	.header__left .header__nav .header__nav__ul .header__nav__li .header__nav__a{
	 font-family: 'Montserrat', sans-serif;
	display: block;
	font-size: 16px;
	font-weight: 400;
	color: #fff;
	text-decoration: none;
 }

 .header__right__contact a{
	display: block;
	padding: 6px 17px;
	border-radius: 21px;
	border: 2px solid #FFF;
	background: rgba(255, 255, 255, 0.00);
	color: #FFF;
	text-align: center;
	font-family: Montserrat;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 22px; /* 157.143% */
	text-transform: uppercase;
 }

 .btn__ham{
	display: none;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	line-height: 0;
 }

 .btn__ham img{
	display: block;
	width: 24px;
	height: auto;
 }

 .header__right__lang{
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 16px;
}

.header__right__lang::after{
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 1px;
	height: 12px;
	background: #FFF;
	pointer-events: none;
}

.header__right__lang__btn,
.header__right__lang__btn.is-active{
	display: block;
	color: #FFF;
	font-family: Montserrat;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 22px; /* 157.143% */
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.3;
}

.header__right__lang__btn.is-active{
	color: #FFF;
	opacity: 1;
	font-weight: 600;
}

@media (max-width: 1440px) {
	.header__inner{
		width: 95%;
		max-width: 1680px;
		margin-left: auto;
		margin-right: auto;
		grid-template-columns: auto 1fr;
		column-gap: 16px;
	}

	.header__left{
		display: none;
	}

	.header__logo{
		justify-self: start;
		grid-column: 1;
	}

	.header__right{
		justify-self: end;
		grid-column: 2;
	}

	.btn__ham{display:block;}
	.header__right__contact{display:none;}
	.header__right__lang{display:none;}
}

@media (max-width: 570px){
	.header{height:57px;}
	.header__inner{width:90%;}
	.header__logo img{max-width: 180px;}
}


/* } header *****************************************************************************
***************************************************************************************/



/******************************************************************************
side menu { ******************************************************************************* */

.side-menu{
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1001;
	pointer-events: none;
	visibility: hidden;
	overflow: hidden;
	transition: visibility 0s linear 0.4s;
}

.side-menu[hidden]{
	display: none !important;
}

.side-menu.is-open{
	pointer-events: auto;
	visibility: visible;
	transition: visibility 0s;
}

.side-menu__overlay{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(12, 13, 17, 0.45);
	opacity: 0;
	transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.side-menu.is-open .side-menu__overlay{
	opacity: 1;
}

.side-menu__panel{
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	max-width: 375px;
	height: 100vh;
	height: 100dvh;
	background: #e5e4e2;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	-webkit-transform: translate3d(100%, 0, 0);
	transform: translate3d(100%, 0, 0);
	visibility: hidden;
	transition: -webkit-transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.4s;
	box-shadow: -8px 0 32px rgba(12, 13, 17, 0.12);
	will-change: transform;
}

.side-menu.is-open .side-menu__panel{
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	visibility: visible;
	transition: -webkit-transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s;
}

body.side-menu-open,
body:has(.side-menu.is-open){
	overflow: hidden;
}

.side-menu__head{
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	height: 82px;
	min-height: 82px;
	padding: 0 20px;
	box-sizing: border-box;
}

.side-menu__logo{
	display: block;
	line-height: 0;
}

.side-menu__logo img{
	display: block;
	width: 182px;
	max-width: 100%;
	height: 14px;
	object-fit: contain;
	object-position: left center;
}

/* 닫기(X): 패널 밖 fixed — 실제 좌표는 JS가 햄버거 rect로 동기화 */
.side-menu__close{
	position: fixed;
	top: 24px;
	right: 24px;
	left: auto;
	z-index: 1002;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	box-sizing: border-box;
}

.side-menu:not(.is-open) .side-menu__close{
	visibility: hidden;
	pointer-events: none;
}

.side-menu__close__icon{
	position: relative;
	display: block;
	width: 24px;
	height: 24px;
}

.side-menu__close__icon::before,
.side-menu__close__icon::after{
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 11px;
	width: 100%;
	height: 2px;
	background: #fff;
	border-radius: 1px;
	transform-origin: 50% 50%;
}

.side-menu__close__icon::before{
	transform: rotate(45deg);
}

.side-menu__close__icon::after{
	transform: rotate(-45deg);
}

.side-menu__body{
	flex: 1 1 auto;
	min-height: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 40px 20px 60px;
	box-sizing: border-box;
}

.side-menu__body::after{
	content: "";
	display: block;
	flex: 1 1 auto;
	min-height: 0;
	width: 100%;
}

.side-menu__lang{
	position: relative;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 40px;
}

.side-menu__lang::after{
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 1px;
	height: 12px;
	background: #0c0d11;
	opacity: 0.25;
	pointer-events: none;
}

.side-menu__nav{
	flex: 0 0 auto;
	width: 100%;
	max-height: none;
	overflow: visible;
}

.side-menu__lang__btn,
a.side-menu__lang__btn{
	padding: 0;
	border: 0;
	background: transparent;
	text-decoration: none;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
	color: rgba(12, 13, 17, 0.3);
	text-transform: uppercase;
	cursor: pointer;
}

.side-menu__lang__btn.is-active{
	font-weight: 600;
	color: #0c0d11;
}

.side-menu__lang__btn:disabled{
	cursor: default;
}

.side-menu__nav__ul{
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.side-menu__nav__a{
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 24px;
	color: #0c0d11;
	text-decoration: none;
	text-transform: uppercase;
}

.side-menu__contact{
	flex-shrink: 0;
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 102px;
	max-width: 102px;
	height: 34px;
	margin-top: 40px;
	padding: 0;
	box-sizing: border-box;
	border: 2px solid #0c0d11;
	border-radius: 21px;
	background: rgba(255, 255, 255, 0);
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 22px;
	color: #0c0d11;
	text-decoration: none;
	text-transform: uppercase;
}

.side-menu__footer{
	flex-shrink: 0;
	padding: 40px 20px;
	border-top: 1px solid #ddd;
	box-sizing: border-box;
}

.side-menu__footer__inner{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px 16px;
}

.side-menu__footer__left{
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.side-menu__footer__email,
.side-menu__footer__address{
	margin: 0;
	font-family: 'Pretendard', 'Montserrat', sans-serif;
	font-size: 10px;
	font-weight: 400;
	line-height: 1.1;
	color: #14161b;
}

.side-menu__footer__email a{
	color: inherit;
	text-decoration: none;
}

.side-menu__footer__right{
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: flex-start;
}

.side-menu__footer__policy{
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 10px;
	font-weight: 400;
	line-height: 22px;
	color: #0c0d11;
}

.side-menu__footer__policy a{
	color: inherit;
	text-decoration: none;
}

.side-menu__footer__copy{
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 10px;
	font-weight: 400;
	line-height: 22px;
	color: #0c0d11;
}

@media (max-width: 570px){
	.side-menu__panel{
		max-width: none;
		width: 100%;
		box-shadow: none;
	}

	.side-menu__overlay{
		opacity: 0 !important;
		pointer-events: none;
	}

	.side-menu__head{
		height: 57px;
		min-height: 57px;
	}

	.side-menu__logo img{
		width: 180px;
		max-width: 100%;
		height: 14px;
	}
}

/* } side menu *****************************************************************************
***************************************************************************************/




/******************************************************************************
footer { ******************************************************************************* */

.footer{
	background: #ddd;
	position: relative;
	z-index: 20;
	overflow: visible;
}

.footer .inner__cen1680{
	padding: 80px 0 80px;
	overflow: visible;
}

.footer__top{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 24px;
	margin-bottom: 24px;
	border-bottom: 1px solid rgba(12, 13, 17, 0.12);
}

.footer__logo{
	font-size: 34px;
	font-weight: 500;
	color: #0c0d11;
	text-decoration: none;
}

.footer__logo img{
	max-width:234px;
	width: 100%;
	height: 22px;
	object-fit: contain;
}

.footer__familysite{
	position: relative;
	z-index: 30;
}

.footer__familysite__btn{
	position: relative;
	padding-right: 18px;
	font-size: 18px;
	font-weight: 600;
	color: #0c0d11;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.footer__familysite__btn::after{
	content: "";
	position: absolute;
	top: 50%;
	right: 2px;
	width: 6px;
	height: 6px;
	border-right: 1px solid #0c0d11;
	border-bottom: 1px solid #0c0d11;
	transform: translateY(-70%) rotate(45deg);
	transition: transform .2s ease;
}

.footer__familysite__list{
	position: absolute;
	bottom: calc(100% + 8px);
	right: 0;
	min-width: 240px;
	padding: 10px 12px;
	margin: 0;
	list-style: none;
	background: #fff;
	border: 1px solid rgba(12, 13, 17, 0.12);
	opacity: 0;
	visibility: hidden;
	transition: opacity .2s ease, visibility .2s ease;
	z-index: 50;
}

.footer__familysite.is-open .footer__familysite__list{
	opacity: 1;
	visibility: visible;
}

.footer__familysite.is-open .footer__familysite__btn::after{
	transform: translateY(-20%) rotate(-135deg);
}

.footer__familysite__list li{
	padding: 6px 0;
	font-size: 13px;
	color: rgba(12, 13, 17, 0.8);
}

.footer__familysite__list a{
	color: inherit;
	text-decoration: none;
}
.footer__bottom{position:relative;}
.footer__bottom__info{}
.ft__info__tit{font-size:14px; font-weight:400; color:#505050; margin-top:24px;}
.ft__info__tit:first-child{margin-top:0;}
.ft__info__text{font-size:14px; font-weight:600; color:#14161B; margin-top:8px; display: flex; gap: 20px;}
.ft__info__text a{color:#14161B;}

.footer__bottom__right{position:absolute; right:0;bottom:0; display: flex; flex-direction: column; align-items: flex-end;}
.footer__copy{
	margin-top: 10px;
	font-size: 12px;
	color: rgba(12, 13, 17, 0.55);
}

.footer__links{
	display: flex;
	align-items: center;
	gap: 16px;
}

.footer__links a{
	font-size: 12px;
	color: rgba(12, 13, 17, 0.55);
	text-decoration: none;
}
@media (max-width: 1440px){
	.footer .inner__cen1680{padding: 60px 0 60px;}
}
@media (max-width: 1024px){
}
@media (max-width: 768px){
	.footer__bottom{
		display: flex;
		flex-direction: column;
		gap: 30px;
	}
	.footer__bottom__right{
		position: static;
		align-items: flex-start;
		width: 100%;
	}
	.ft__info__text{flex-wrap: wrap; gap: 12px 20px;}
	.footer__copy{margin-top: 6px;}
}
@media (max-width: 570px){
	.footer .inner__cen1680{padding: 30px 0 30px;}
	.footer__top{flex-direction: column; gap:20px; padding-bottom:30px; align-items: flex-start;}
	.footer__logo img{max-width:200px;}
	.footer__familysite__btn{font-size:14px;}
	
	.ft__info__tit{margin-top:20px; font-size:13px;}
	.ft__info__text{font-size:13px; gap: 8px 16px;}
	
	.footer__bottom{gap: 24px;}
	.footer__links{gap: 10px;}
	.footer__links a{font-size: 11px;}
	.footer__copy{font-size: 11px; line-height: 1.5;}

	.footer__familysite__list {
		right: -140px;
	}
}

/* } footer *****************************************************************************
***************************************************************************************/
/* #52463A */

/* #372C24 */