@charset "utf-8";

/* Section */
.section {
	padding: 144px 0;
}

/* Common Title */
.common_title {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	text-align: center;
}

.common_title .title {
	font-size: 36px;
	font-weight: 400;
	color: #000;
	line-height: 1.2;
}

.common_title .sub {
	font-size: 24px;
	font-weight: 600;
	color: #222;
	line-height: 1.3;
}

/* Main Visual */
.main_visual {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.main_visual .mv_swiper {
	width: 100%;
}

.main_visual .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	/* Figma 메인 비주얼은 1920x1080(16:9) 고정. 100vh로 두면 세로가 짧은 창에서
	   background cover가 상하를 잘라 확대돼 보이므로 16:9(=56.25vw) 높이를 고정한다. */
	height: 56.25vw;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	color: #fff;
}

.main_visual .mv_cont {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 60px;
	width: 100%;
	min-width: 0;
	text-align: center;
}

.main_visual .mv_logo {
	min-width: 0;
}

.main_visual .mv_logo img {
	width: 100%;
	max-width: 542px;
	height: auto;
}

.main_visual .mv_txt {
	display: flex;
	flex-direction: column;
	text-align: left;
	/* align-items: center; */
	gap: 40px;
	width: 100%;
	min-width: 0;
}

.main_visual .mv_desc {
	font-size: 28px;
	font-weight: 500;
	line-height: 1.5;
}

.main_visual .mv_title {
	font-size: 72px;
	font-weight: 700;
	line-height: 1.5;
}

.main_visual .mv_pagination {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 40px;
	z-index: 10;
	text-align: center;
}

.main_visual .mv_pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	margin: 0 6px;
	background: #fff;
	opacity: 0.5;
	transition: opacity 0.3s, width 0.3s;
}

.main_visual .mv_pagination .swiper-pagination-bullet-active {
	width: 30px;
	border-radius: 5px;
	opacity: 1;
}

.mv_line {
	height: 2px;
	max-width: 254px;
	width: 100%;
	background-color: #fff;
}

@keyframes mv_fade_up {
	0% {
		opacity: 0;
		transform: translateY(40px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.main_visual .mv_desc,
.main_visual .mv_line,
.main_visual .mv_title {
	opacity: 0;
	animation: mv_fade_up 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.main_visual .mv_desc {
	animation-delay: 0.3s;
}

.main_visual .mv_line {
	animation-delay: 0.6s;
}

.main_visual .mv_title {
	animation-delay: 0.85s;
}

@media all and (max-width: 1400px) {
	.main_visual .mv_cont {
		gap: 48px;
	}

	.main_visual .mv_txt {
		gap: 34px;
	}

	.main_visual .mv_desc {
		font-size: 24px;
	}

	.main_visual .mv_title {
		font-size: 62px;
	}
}

@media all and (max-width: 1024px) {
	.main_visual .swiper-slide {
		height: auto;
		min-height: 80vh;
	}

	.main_visual .mv_cont {
		gap: 36px;
	}

	.main_visual .mv_txt {
		gap: 28px;
	}

	.main_visual .mv_logo img {
		max-width: 400px;
	}

	.main_visual .mv_desc {
		font-size: 20px;
	}

	.main_visual .mv_title {
		font-size: 50px;
	}

	.main_visual .mv_pagination {
		bottom: 28px;
	}
}

@media all and (max-width: 640px) {
	.main_visual .swiper-slide {
		min-height: 70vh;
		/* 모바일에서 문구가 인물 얼굴을 가리지 않도록 하단 배치 */
		align-items: flex-end;
	}

	.main_visual .mv_cont {
		gap: 28px;
		padding-bottom: 20px;
	}

	.main_visual .mv_txt {
		gap: 18px;
	}

	.main_visual .mv_logo img {
		max-width: 260px;
	}

	.main_visual .mv_desc {
		font-size: 14px;
		line-height: 1.6;
	}

	.main_visual .mv_title {
		font-size: 34px;
	}

	.main_visual .mv_pagination {
		bottom: 20px;
	}

	.main_visual .mv_pagination .swiper-pagination-bullet {
		width: 8px;
		height: 8px;
		margin: 0 4px;
	}

	.main_visual .mv_pagination .swiper-pagination-bullet-active {
		width: 22px;
	}
}

/* Section Signature */
.section_signature .common_title {
	margin-bottom: 70px;
}

.section_signature .sig_swiper {
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	overflow: hidden;
	padding: 0 30px;
}

.section_signature .swiper-slide {
	height: auto;
	min-width: 0;
}

.section_signature .sig_card {
	display: block;
	position: relative;
	width: 100%;
	aspect-ratio: 323 / 437;
	border-radius: 20px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #fff;
	min-width: 0;
}

/* 이미지 위 오버레이 (아래=라벨·버튼 영역만 진하게, 위=얼굴 밝게) */
.section_signature .sig_card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.22) 50%, rgba(0, 0, 0, 0.04) 100%);
	z-index: 1;
	pointer-events: none;
}

.section_signature .sig_label,
.section_signature .sig_btn {
	z-index: 2;
}

.section_signature .sig_label {
	position: absolute;
	left: 12.4%;
	top: 51.7%;
	width: 60%;
	padding-top: 14px;
	/* border-top: 2.5px solid rgba(255, 255, 255, 0.6); */
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 0;
}

.sig_line {
	max-width: 150px;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.60);
	height: 2.5px;
	margin-bottom: 4px;
}

.section_signature .sig_label .en {
	font-size: 24px;
	font-weight: 500;
	line-height: 1.1;
	text-transform: uppercase;
}

.section_signature .sig_label .kr {
	font-size: 30px;
	font-weight: 700;
	line-height: 1.3;
}

.section_signature .sig_btn {
	position: absolute;
	right: -1px;
	bottom: -1px;
	width: 56%;
	height: 41.2%;
}

.section_signature .sig_btn_bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
}

.section_signature .sig_btn .arrow {
	position: absolute;
	right: 9.9%;
	bottom: 11%;
	width: 38.6%;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	background: #001C4A;
	display: flex;
	align-items: center;
	justify-content: center;
}

.section_signature .sig_btn .arrow svg {
	display: block;
	width: 34%;
	height: auto;
}

.section_signature .sig_progress {
	position: relative;
	width: 100%;
	height: 30px;
	margin-top: 60px;
}

.section_signature .sig_progress::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 1px;
	background: #dfe3ea;
	transform: translateY(-50%);
}

.section_signature .sig_progress_fill {
	position: absolute;
	top: 50%;
	left: 0;
	width: 0;
	height: 3px;
	background: #B8C4D4;
	transform: translateY(-50%);
	transition: width 0.4s ease;
}

.section_signature .sig_indicator {
	position: absolute;
	top: 50%;
	left: 0;
	width: 30px;
	height: 30px;
	transform: translate(-50%, -50%);
	transition: left 0.4s ease;
	pointer-events: none;
}

.section_signature .sig_indicator svg {
	display: block;
	width: 100%;
	height: 100%;
}

/* Section Philosophy */
.section_philosophy .common_title {
	margin-bottom: 100px;
}

.section_philosophy .common_title .title {
	text-transform: uppercase;
}

.section_philosophy .ph_visual {
	position: relative;
	width: 100%;
	aspect-ratio: 1920 / 800;
	overflow: hidden;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-bottom: 10%;
}

.section_philosophy .ph_content {
	display: flex;
	flex-direction: column;
	gap: 28px;
	min-width: 0;
}

.section_philosophy .ph_brand {
	display: flex;
	align-items: center;
	gap: 16px;
	min-width: 0;
}

.section_philosophy .ph_symbol {
	height: 60px;
	width: auto;
	flex-shrink: 0;
}

.section_philosophy .ph_brand_txt {
	font-size: 54px;
	font-weight: 300;
	line-height: 1.1;
	text-transform: capitalize;
}

.section_philosophy .ph_desc {
	max-width: 1077px;
	font-size: 28px;
	font-weight: 300;
	line-height: 1.5;
	color: #eeeeee;
	min-width: 0;
}

@media all and (max-width: 1400px) {
	.section {
		padding: 120px 0;
	}

	.common_title .title {
		font-size: 32px;
	}

	.common_title .sub {
		font-size: 22px;
	}

	.section_signature .common_title {
		margin-bottom: 56px;
	}

	.section_philosophy .common_title {
		margin-bottom: 70px;
	}

	.section_philosophy .ph_visual {
		padding-bottom: 10%;
	}

	.section_philosophy .ph_content {
		gap: 22px;
	}

	.section_philosophy .ph_symbol {
		height: 48px;
	}

	.section_philosophy .ph_brand_txt {
		font-size: 42px;
	}

	.section_philosophy .ph_desc {
		font-size: 22px;
	}

	.section_signature .sig_swiper {
		padding: 0 5px;
	}
}

@media all and (max-width: 1024px) {
	.section {
		padding: 100px 0;
	}

	.common_title .title {
		font-size: 28px;
	}

	.common_title .sub {
		font-size: 20px;
	}

	.section_signature .common_title {
		margin-bottom: 44px;
	}

	.section_signature .sig_label .en {
		font-size: 20px;
	}

	.section_signature .sig_label .kr {
		font-size: 24px;
	}

	.section_signature .sig_progress {
		margin-top: 44px;
	}

	.section_signature .sig_indicator {
		width: 24px;
		height: 24px;
	}

	.section_philosophy .common_title {
		margin-bottom: 56px;
	}

	.section_philosophy .ph_visual {
		aspect-ratio: 16 / 11;
		padding-bottom: 8%;
	}

	.section_philosophy .ph_content {
		gap: 18px;
	}

	.section_philosophy .ph_brand {
		gap: 12px;
	}

	.section_philosophy .ph_symbol {
		height: 36px;
	}

	.section_philosophy .ph_brand_txt {
		font-size: 32px;
	}

	.section_philosophy .ph_desc {
		font-size: 18px;
	}
}

@media all and (max-width: 640px) {
	.section {
		padding: 60px 0;
	}

	.common_title {
		gap: 10px;
	}

	.common_title .title {
		font-size: 22px;
	}

	.common_title .sub {
		font-size: 16px;
	}

	.section_signature .common_title {
		margin-bottom: 32px;
	}

	.section_signature .sig_label {
		padding-top: 10px;
		border-top-width: 2px;
	}

	.section_signature .sig_label .en {
		font-size: 16px;
	}

	.section_signature .sig_label .kr {
		font-size: 20px;
	}

	.section_signature .sig_progress {
		margin-top: 30px;
		height: 20px;
	}

	.section_signature .sig_indicator {
		width: 20px;
		height: 20px;
	}

	.section_philosophy .common_title {
		margin-bottom: 36px;
	}

	.section_philosophy .ph_visual {
		aspect-ratio: 4 / 5;
		padding-bottom: 32px;
	}

	.section_philosophy .ph_content {
		gap: 12px;
	}

	.section_philosophy .ph_brand {
		gap: 10px;
	}

	.section_philosophy .ph_symbol {
		height: 22px;
	}

	.section_philosophy .ph_brand_txt {
		font-size: 20px;
	}

	.section_philosophy .ph_desc {
		font-size: 14px;
		line-height: 1.6;
	}
}



/* Section Facilities */
.section_facilities {
	position: relative;
	overflow: hidden;
	color: #222;
	background: #fff;
}

.section_facilities .section_bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	z-index: 0;
}

.section_facilities .facilities_ring {
	position: absolute;
	left: -10vw;
	bottom: -10vw;
	width: 46vw;
	height: 46vw;
	max-width: 886px;
	max-height: 886px;
	object-fit: contain;
	pointer-events: none;
	animation: facilities_ring_spin 40s linear infinite;
	z-index: 1;
}

@keyframes facilities_ring_spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(-360deg);
	}
}

.section_facilities .inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 70px;
	min-width: 0;
}

.section_facilities .facilities_header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	text-align: center;
	min-width: 0;
}

.section_facilities .common_title_brand_svg path {
	fill: #C3DAED;
	fill-opacity: 0.7;
}

.section_facilities .facilities_slider {
	position: relative;
	min-width: 0;
}

.section_facilities .facilities_swiper {
	overflow: visible;
	min-width: 0;
}

.section_facilities .facilities_swiper .swiper-slide {
	width: 1270px;
	max-width: 70vw;
	min-width: 0;
	height: auto;
}

.section_facilities .facilities_card {
	position: relative;
	width: 100%;
	aspect-ratio: 1270 / 610;
	background-color: #eee;
	background-size: cover;
	background-position: center;
	border-radius: 20px;
	overflow: hidden;
}

.section_facilities .facilities_swiper .facilities_card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	transition: opacity 0.4s ease;
	pointer-events: none;
	z-index: 1;
}

.section_facilities .facilities_swiper .swiper-slide-active .facilities_card::after {
	opacity: 0;
}


.section_facilities .caption_desc strong {
	font-weight: 800;
	color: #222;
}

.section_facilities .facilities_nav {
	position: absolute;
	top: 50%;
	width: 50px;
	height: 50px;
	padding: 0;
	border: 1.5px solid #B8C4D4;
	border-radius: 50%;
	background: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
	transition: opacity 0.3s ease;
}

.section_facilities .facilities_nav svg {
	width: 10px;
	height: auto;
}

.section_facilities .facilities_nav_prev {
	left: calc(50% - 635px + 20px);
	transform: translateY(-50%);
}

.section_facilities .facilities_nav_prev svg {
	transform: rotate(180deg);
}

.section_facilities .facilities_nav_next {
	right: calc(50% - 635px + 20px);
	transform: translateY(-50%);
}

.section_facilities .facilities_nav.is_disabled {
	opacity: 0;
	pointer-events: none;
}

.section_facilities .facilities_thumbs {
	min-width: 0;
}

.section_facilities .facilities_thumbs_swiper {
	overflow: visible;
	min-width: 0;
}

.section_facilities .facilities_thumbs_swiper .swiper-slide {
	min-width: 0;
	height: auto;
}

.section_facilities .facilities_thumb {
	display: block;
	width: 100%;
	aspect-ratio: 306 / 174;
	object-fit: cover;
	border-radius: 14px;
	background: #eee;
	cursor: pointer;
	opacity: 0.5;
	transition: opacity 0.3s ease, outline-color 0.3s ease;
	outline: 2.5px solid transparent;
	outline-offset: -2px;
}

.section_facilities .facilities_thumbs_swiper .swiper-slide-thumb-active .facilities_thumb,
.section_facilities .facilities_thumb:hover {
	opacity: 1;
	outline-color: #B8C4D4;
}


@media all and (max-width: 768px) {
	.section_facilities .facilities_card {
		aspect-ratio: 1270 / 810;
	}
}

@media all and (max-width: 1024px) {
	.section_facilities .inner {
		gap: 40px;
	}

	.section_facilities .common_title_deco {
		width: 100px;
		height: 50px;
		outline-width: 6px;
		outline-offset: -3px;
	}

	.section_facilities .facilities_swiper .swiper-slide {
		max-width: 85vw;
	}


	.section_facilities .facilities_nav {
		width: 40px;
		height: 40px;
	}

	.section_facilities .facilities_nav_prev {
		left: 10px;
	}

	.section_facilities .facilities_nav_next {
		right: 10px;
	}

	.section_facilities .facilities_ring {
		width: 50vw;
		height: 50vw;
		max-width: 500px;
		max-height: 500px;
		left: -18vw;
		bottom: -18vw;
	}
}

@media all and (max-width: 768px) {
	.section_facilities .facilities_nav {
		width: 36px;
		height: 36px;
	}

	.section_facilities .facilities_ring {
		max-width: 360px;
		max-height: 360px;
	}
}

/* Youtube Banner */
.youtube_banner {
	position: relative;
	width: 100%;
	min-height: 320px;
	background-color: #989898;
	color: #fff;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.youtube_banner .yt_wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
	padding: 40px 0;
	min-width: 0;
}

.youtube_banner .yt_left {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
}

.youtube_banner .yt_logo {
	display: inline-flex;
	width: 46px;
	height: 46px;
	flex-shrink: 0;
}

.youtube_banner .yt_logo svg {
	width: 100%;
	height: 100%;
}

.youtube_banner .yt_brand {
	font-size: 32px;
	font-weight: 300;
	line-height: 1.1;
	text-transform: capitalize;
}

.youtube_banner .yt_right {
	display: flex;
	align-items: center;
	gap: 48px;
	min-width: 0;
}

.youtube_banner .yt_thumb {
	flex-shrink: 0;
}

.youtube_banner .yt_thumb img {
	display: block;
	width: 292px;
	max-width: 100%;
	border-radius: 4px;
	aspect-ratio: 16 / 9;
}

.youtube_banner .yt_info {
	display: flex;
	flex-direction: column;
	gap: 22px;
	min-width: 0;
}

.youtube_banner .yt_txt {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.youtube_banner .yt_title {
	font-size: 24px;
	font-weight: 600;
	line-height: 1.3;
	text-transform: capitalize;
}

.youtube_banner .yt_desc {
	font-size: 22px;
	font-weight: 400;
	line-height: 1.3;
	text-transform: capitalize;
}

.youtube_banner .yt_cta {
	display: flex;
	align-items: center;
	gap: 8px;
}

.youtube_banner .yt_btn {
	display: inline-flex;
	align-items: center;
	padding: 14px 20px;
	background: #B8C4D4;
	border-radius: 40px;
	color: #fff;
	font-size: 22px;
	font-weight: 400;
	line-height: 1;
	text-transform: capitalize;
}

.youtube_banner .yt_arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: #B8C4D4;
	flex-shrink: 0;
}

.youtube_banner .yt_arrow svg {
	width: 32px;
	height: 32px;
}

@media all and (max-width: 1200px) {
	.youtube_banner .yt_right {
		gap: 32px;
	}

	.youtube_banner .yt_brand {
		font-size: 26px;
	}

	/* .youtube_banner .yt_thumb img {
		width: 220px;
	} */

	.youtube_banner .yt_title {
		font-size: 20px;
	}

	.youtube_banner .yt_desc {
		font-size: 18px;
	}

	.youtube_banner .yt_btn {
		font-size: 18px;
		padding: 12px 18px;
	}

	.youtube_banner .yt_arrow {
		width: 46px;
		height: 46px;
	}

	.youtube_banner .yt_arrow svg {
		width: 26px;
		height: 26px;
	}
}

@media all and (max-width: 1024px) {
	.youtube_banner {
		min-height: 0;
	}

	.youtube_banner .yt_wrap {
		flex-direction: column;
		align-items: flex-start;
		gap: 28px;
		padding: 50px 0;
	}

	.youtube_banner .yt_right {
		width: 100%;
	}
}

@media all and (max-width: 640px) {
	.youtube_banner .yt_wrap {
		padding: 36px 0;
		gap: 20px;
	}

	.youtube_banner .yt_left {
		gap: 12px;
	}

	.youtube_banner .yt_logo {
		width: 32px;
		height: 32px;
	}

	.youtube_banner .yt_brand {
		font-size: 20px;
	}

	.youtube_banner .yt_right {
		flex-direction: column;
		align-items: center;
		gap: 18px;
	}

	.youtube_banner .yt_thumb img {
		width: 100%;
		max-width: 320px;
	}

	.youtube_banner .yt_info {
		gap: 14px;
		width: 100%;
	}

	.youtube_banner .yt_title {
		font-size: 16px;
	}

	.youtube_banner .yt_desc {
		font-size: 14px;
	}

	.youtube_banner .yt_btn {
		font-size: 14px;
		padding: 10px 16px;
	}

	.youtube_banner .yt_arrow {
		width: 40px;
		height: 40px;
	}

	.youtube_banner .yt_arrow svg {
		width: 22px;
		height: 22px;
	}
}

/* Section Location */
.section_location {
	overflow-x: hidden;
}

.section_location .loc_wrap {
	display: flex;
	gap: 74px;
	align-items: center;
	min-width: 0;
}

.section_location .loc_map {
	flex: 0 0 auto;
	width: calc(63% + (100vw - 100%) / 2);
	margin-left: calc((100% - 100vw) / 2);
	aspect-ratio: 1221 / 800;
	overflow: hidden;
	background: #e8e8e8;
	min-width: 0;
}

.section_location .loc_map iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.section_location .loc_info {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	gap: 60px;
	min-width: 0;
}

.section_location .loc_item {
	display: flex;
	align-items: center;
	gap: 33px;
	min-width: 0;
}

.section_location .loc_item_hours {
	align-items: flex-start;
}

.section_location .loc_head {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
	min-width: 124px;
}

.section_location .loc_icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	flex-shrink: 0;
}

.section_location .loc_icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.section_location .loc_label {
	font-size: 22px;
	font-weight: 600;
	color: #222;
	line-height: 1.2;
}

.section_location .loc_body {
	font-size: 18px;
	font-weight: 400;
	color: #222;
	line-height: 1.5;
	min-width: 0;
}

.section_location .loc_hours {
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-width: 0;
}

.section_location .loc_day {
	display: flex;
	align-items: baseline;
	gap: 40px;
}

.section_location .loc_day .label {
	width: 120px;
	flex-shrink: 0;
	font-size: 18px;
	font-weight: 400;
	color: #222;
}

.section_location .loc_day .time {
	font-size: 18px;
	font-weight: 400;
	color: #222;
}

@media all and (max-width: 1400px) {
	.section_location .loc_wrap {
		gap: 48px;
	}

	.section_location .loc_info {
		gap: 48px;
	}

	.section_location .loc_item {
		flex-direction: column;
		gap: 12px;
		align-items: unset;
	}

}

@media all and (max-width: 1024px) {
	.section_location .loc_wrap {
		flex-direction: column;
		gap: 48px;
		align-items: stretch;
	}

	.section_location .loc_map {
		width: 100%;
		margin-left: 0;
		aspect-ratio: 16 / 9;
	}

	.section_location .loc_info {
		gap: 36px;
	}

	.section_location .loc_label {
		font-size: 20px;
	}
}

@media all and (max-width: 640px) {
	.section_location .loc_wrap {
		gap: 32px;
	}

	.section_location .loc_map {
		aspect-ratio: 4 / 3;
	}

	.section_location .loc_info {
		gap: 28px;
	}

	.section_location .loc_item {
		gap: 16px;
	}

	.section_location .loc_item_hours {
		flex-direction: column;
		gap: 12px;
		align-items: flex-start;
	}

	.section_location .loc_head {
		min-width: 0;
		gap: 8px;
	}

	.section_location .loc_icon {
		width: 24px;
		height: 24px;
	}

	.section_location .loc_label {
		font-size: 16px;
	}

	.section_location .loc_body {
		font-size: 14px;
	}

	.section_location .loc_hours {
		gap: 8px;
	}

	.section_location .loc_day {
		gap: 16px;
	}

	.section_location .loc_day .label {
		width: 80px;
		font-size: 14px;
	}

	.section_location .loc_day .time {
		font-size: 14px;
	}
}



/* Section Consult */
.section_consult {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 50;
	padding: 20px 0;
	color: #fff;
	transition: transform 0.1s linear;
	box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.08);
}

.section_consult .consult_wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	min-width: 0;
	flex-wrap: wrap;
}

.section_consult .consult_inputs {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	flex-wrap: wrap;
}

.section_consult .consult_field {
	flex: 1 1 220px;
	min-width: 0;
}

.section_consult .consult_input,
.section_consult .consult_select {
	width: 100%;
	height: 60px;
	padding: 0 20px;
	background: #fff;
	border: 0;
	border-radius: 6px;
	outline: 2px solid #C3DAED;
	outline-offset: -2px;
	font-size: 18px;
	font-weight: 400;
	color: #666;
	box-sizing: border-box;
	font-family: inherit;
}

.section_consult .consult_input::placeholder {
	color: #666;
}

.section_consult .consult_input:focus,
.section_consult .consult_select:focus {
	outline-color: #001C4A;
}

.section_consult .consult_select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	cursor: pointer;
	padding-right: 50px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 20px center;
}

.section_consult .consult_agree {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
	cursor: pointer;
}

.section_consult .consult_radio {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 20px;
	height: 20px;
	margin: 0;
	border: 1.5px solid #fff;
	border-radius: 50%;
	background: transparent;
	position: relative;
	cursor: pointer;
	flex-shrink: 0;
}

.section_consult .consult_radio:checked::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 12px;
	background: #fff;
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.section_consult .consult_agree_label {
	font-size: 20px;
	font-weight: 400;
	color: #fff;
	line-height: 1.3;
}

.section_consult .consult_btn {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 200px;
	height: 70px;
	padding: 0 30px;
	background: #fff;
	border-radius: 80px;
	outline: 2px solid #fff;
	outline-offset: -2px;
	font-size: 22px;
	font-weight: 700;
	color: #000;
	text-decoration: none;
	transition: background 0.3s ease;
}

.section_consult .consult_btn:hover {
	background: #f7f7f7;
}

@media all and (max-width: 1400px) {
	.section_consult .consult_inputs {
		flex: 1 1 100%;
	}
}

@media all and (max-width: 1024px) {
	.section_consult {
		padding: 12px 0;
	}

	.section_consult .consult_wrap {
		gap: 12px;
	}

	.section_consult .consult_inputs {
		gap: 8px;
	}

	.section_consult .consult_field {
		flex: 1 1 calc((100% - 8px * 3) / 4);
	}

	.section_consult .consult_input,
	.section_consult .consult_select {
		height: 44px;
		padding: 0 12px;
		font-size: 14px;
	}

	.section_consult .consult_select {
		padding-right: 32px;
		background-position: right 12px center;
	}

	.section_consult .consult_agree {
		gap: 8px;
	}

	.section_consult .consult_radio {
		width: 16px;
		height: 16px;
	}

	.section_consult .consult_radio:checked::after {
		width: 9px;
		height: 9px;
	}

	.section_consult .consult_agree_label {
		font-size: 14px;
	}

	.section_consult .consult_btn {
		min-width: 0;
		height: 44px;
		padding: 0 20px;
		font-size: 15px;
		border-radius: 60px;
	}
}

@media all and (max-width: 640px) {
	.section_consult {
		padding: 10px 0;
	}

	.section_consult .consult_wrap {
		gap: 8px;
	}

	.section_consult .consult_field {
		flex: 1 1 calc((100% - 6px) / 2);
	}

	.section_consult .consult_inputs {
		gap: 6px;
	}

	.section_consult .consult_input,
	.section_consult .consult_select {
		height: 38px;
		padding: 0 10px;
		font-size: 13px;
	}

	.section_consult .consult_select {
		padding-right: 26px;
		background-position: right 10px center;
	}

	.section_consult .consult_agree_label {
		font-size: 13px;
	}

	.section_consult .consult_btn {
		height: 40px;
		padding: 0 16px;
		font-size: 14px;
	}
}

/* 상담폼: Figma 디자인대로 넓은 화면(inner 최대폭 도달, ≥1760px)에서 한 행 배치.
   입력영역을 축소 가능하게(flex 축소) 하고 동의문구는 한 줄 유지 →
   국·일·중 공통으로 이름/연락처/항목/내용/동의/상담예약버튼이 한 줄에 정렬됨.
   (일·중은 동의문구가 길어 기본값에선 버튼이 2행으로 밀렸던 문제 해결) */
@media all and (min-width: 1760px) {
	.section_consult .consult_wrap {
		flex-wrap: nowrap;
	}

	.section_consult .consult_inputs {
		flex: 1 1 auto;
		min-width: 0;
	}

	.section_consult .consult_field {
		min-width: 0;
	}

	.section_consult .consult_agree {
		flex-shrink: 0;
	}

	.section_consult .consult_agree_label {
		white-space: nowrap;
	}
}



input[type="checkbox"]:checked {
	background-color: unset;
	background: unset;
	border-color: #fff;
	outline: unset;
}

input[type="checkbox"]:hover,
input[type="radio"]:hover {
	border-color: #fff;
}

input[type="checkbox"]:focus,
input[type="radio"]:focus {
	outline: unset;
}