@charset "utf-8";

/*
	** LAYOUT CSS
*/

.container {
	max-width: 1440px;
	padding: 0 20px;
	margin: 0 auto;
}



/* ## header ## */
.header {
	position: absolute;
	left:0;
	top:0;
	width: 100%;
	z-index: 500;
}
.header.active {
	background: #fff;
}
.header-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap:0 20px;
	height: 85px;
	position: relative;
}
.header-logo {
	position: relative;
	z-index: 1;
}
.gnb {
	position: absolute;
	left:0;
	top:0;
	width: 100%;
	height: 100%;
}
.gnb-list {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	gap:0 5%;
}
.gnb-item {
	height: 100%;
}
.gnb-lnk {
	font-size: var(--font-size-20);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-weight: 500;
	border-bottom: 3px solid transparent;
}
.gnb-item a:hover,
.gnb-item a:hover .icon-window,
.gnb-lnk.active {
	color: var(--primary-color);
}
.gnb-lnk.active {
	border-color: var(--primary-color);
}
.gnb-menu {
	position: absolute;
	left:0;
	top:85px;
	width: 100%;
	align-items: center;
	justify-content: center;
	gap:0 30px;
	padding:20px 20px;
	background:#fff;
	display: none;
	border-top:1px solid #eee;
}
.gnb-menu.active {
	display: flex;
}
.gnb-menu.active::after {
	display: block;
	content:"";
	width: 200%;
	height: 100%;
	background:#fff;
	position: absolute;
	left:50%;
	top:-1px;
	transform:translateX(-50%);
	z-index: -1;
	border-top:1px solid #eee;
	box-shadow: 0 2px 2px rgba(0,0,0,0.05);
}
.gnb-menu a {
	color: #474747;
	font-size: var(--font-size-17);
}
.icon-window {
	margin-left: 5px;
	font-size: var(--font-size-14);
	color: #a5a5a5;
}
.header-util {
	display: flex;
	align-items: center;
	gap:0 5px;
	position: relative;
	z-index: 1;
}
.header-util .lnk {
	font-weight: 300;
}
.header-util .lnk.member:not(:first-child)::before {
	display: inline-flex;
	align-items: center;
	content:"·";
	margin-right: 5px;
}
.header-util .lnk.reserve {
	margin-left:20px;
}
.mob-logo,
.gnb-open,
.gnb-close {
	display: none;
}
@media all and (max-width: 1023px) {
	.gnb-open,
	.gnb-close {
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top:50%;
		transform:translateY(-50%);
		font-size: var(--font-size-30);
		z-index: 10;
	}
	.gnb-open {
		right:0;
	}
	.gnb-close {
		right: 20px;
		color: #fff;
	}
	.gnb {
		position: fixed;
		left: auto;
		right:-100%;
		top:0;
		width: 100%;
		background:#fff;
		overflow-y: auto;
		z-index: 99;
		transition: 0.3s ease-in-out;
	}
	.gnb.active {
		right: 0;
	}
	.mob-logo {
		display: flex;
		align-items: center;
		height: 85px;
		background:var(--secondary-color);
		padding:0 30px;
		position: sticky;
		left: 0;
		top:0;
		z-index: 1;
	}
	.mob-logo img {
		filter: brightness(0) saturate(100%) invert(27%) sepia(11%) saturate(1216%) hue-rotate(185deg) brightness(102%) contrast(87%);
	}
	.header-util {
		padding-right: 60px;
	}
	.gnb-list {
		display: block;
		height: auto;
	}
	.gnb-item {
		padding:20px 30px;
	}
	.gnb-item {
		border-top:10px solid #f3f3f3;
	}
	.gnb-lnk {
		display: inline-block;
		width: auto;
		text-align: left;
		margin-bottom:10px;
		position: relative;
		font-weight: 600;
		border:none;
	}
	.gnb-lnk::after {
		display: block;
		content: "";
		width: 100%;
		height: 7px;
		background: linear-gradient(to right, #9eedf1, #fff);
		position: absolute;
		left: 0;
		bottom: 3px;
		z-index: -1;
	}
	.gnb-menu {
		display: block;
		position: static;
		left: auto;
		top: auto;
		border-top:none;
		padding:0;
	}
	.gnb-menu a {
		display: block;
		padding:5px 0;
		font-size: var(--font-size-18);
		color: #535353;
	}
}
@media all and (max-width: 767px) {
	.header-box {
		height: 75px;
	}
	.header-logo img {
		max-width: 100px;
	}
	.header-util {
		padding-right: 40px;
	}
	.header-util .lnk {
		font-size: var(--font-size-15);
	}
	.header-util .lnk.reserve {
		display: none;
	}
	.gnb-open,
	.gnb-close {
		font-size: var(--font-size-26);
	}
	.mob-logo {
		height: 75px;
		padding:0 20px;
	}
	.mob-logo img {
		max-width: 100px;
	}
	.gnb-item {
		border-top-width: 6px;
		padding:15px 20px;
	}
	.gnb-lnk {
		font-size: var(--font-size-16);
		margin-bottom:5px;
	}
	.gnb-menu a {
		padding:3px 0;
	}
}





/* ## footer ## */
.footer {
	background:var(--secondary-color);
}
.footer .color-primary {
	color: #4df6ff;
}
.footer-util {
	padding:30px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom:1px solid #38466d;
}
.footer-related {
	position: relative;
	font-size: var(--font-size-15);
}
.footer-related .btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--height);
	border:2px solid #202e55;
	color: #fff;
	background: #131d39;
	padding:0 20px;
	min-width: 400px;
	border-radius: 0;
	font-size: var(--font-size-15);
}
.footer-related .btn::after {
	display: block;
	content: "\f2ec";
	font-family: "Font Awesome 6 Sharp";
	font-weight: 900;
	transform:scaleY(-1);
	font-size: 0.7em;
	color: #d3d3d3;
	transition: var(--transition);
}
.footer-related .btn.active::after {
	transform:scaleY(1);
}
.footer-related .list-box {
	position: absolute;
	left:0;
	bottom:0;
	z-index: 1;
	background:#131d39;
	width: 100%;
	border:1px solid #202e55;
	padding:10px 0;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
}
.footer-related .list-box.active {
	bottom:calc(var(--height) + 5px);
	opacity: 1;
	visibility: visible;
}
.footer-related .list-box a {
	display: block;
	padding:8px 20px;
	color: #fff;
}
.footer-contact {
	display: inline-flex;
	align-items: center;
	gap:0 10px;
	color: #949494;
}
.footer-contact .strong {
	font-size: var(--font-size-30);
}
.footer-info {
	padding:30px 0;
	position: relative;
}
.footer-info::after {
	display: block;
	content: "";
	background:url("../img/layout/logo.png") no-repeat left top;
	width: 112px;
	height: 33px;
	position: absolute;
	right:0;
	top:50%;
	transform:translateY(-50%);
	filter: brightness(0) saturate(100%) invert(27%) sepia(11%) saturate(1216%) hue-rotate(185deg) brightness(102%) contrast(87%);
}
.footer-lnk .lnk {
	color: #fff;
	display: inline-flex;
	align-items: center;
}
.footer-lnk .lnk:hover {
	text-decoration: underline;
}
.footer-lnk .lnk:not(:last-child)::after {
	display: block;
	content:"";
	width: 1px;
	height: 14px;
	background:#38466e;
	margin:0 15px 0 20px;
	transform:rotate(25deg);
}
.footer-addr {
	font-style: normal;
	color: #d7d7d7;
	margin-top:20px;
	font-weight: 300;
}
@media all and (max-width: 1023px) {
	.footer-util {
		flex-direction: column;
		align-items: flex-start;
		gap:10px 0;
	}
	.footer-info::after {
		top:auto;
		bottom:30px;
		transform:none;
	}
}
@media all and (max-width: 767px) {
	.footer {
		font-size: var(--font-size-15);
	}
	.footer-util {
		padding:20px 0;
		gap:5px 0;
	}
	.footer-related {
		width: 100%;
	}
	.footer-related .btn {
		min-width: auto;
		width: 100%;
	}
	.footer-contact {
		flex-wrap: wrap;
	}
	.footer-contact .strong {
		font-size: var(--font-size-24);
	}
	.footer-info {
		padding:20px 0;
	}
	.footer-info::after {
		position: relative;
		right: auto;
		top:auto;
		bottom: auto;
		margin-top:10px;
		background-size: 100px;
	}
	.footer-lnk {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap:2px 15px;
	}
	.footer-lnk .lnk:not(:last-child)::after {
		display: none;
	}
	.footer-addr {
		margin-top:10px;
	}
}


/* ## quick ## */
.quick-menu {
	position: fixed;
	right:20px;
	bottom:0;
	display: flex;
	flex-direction: column;
	gap:8px 0;
	z-index: 50;
	opacity: 0;
	visibility: hidden;
	transition: 0.5s ease-in-out;
}
.quick-menu.active {
	opacity: 1;
	visibility: visible;
	bottom:20px;
}
.quick-menu .lnk {
	width: 64px;
	height: 64px;
	border-radius: 100%;
	border:1px solid transparent;
	overflow: hidden;
	perspective: 1000px;
	position: relative;
}
.quick-menu .lnk .front,
.quick-menu .lnk .back {
	position: absolute;
	left:0;
	top:0;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.4s ease-in-out;
}
.quick-menu .lnk .front {
	transform: rotateY(0deg);
}
.quick-menu .lnk .back {
	transform: rotateY(-180deg);
}
.quick-menu .lnk:hover .front {
	transform: rotateY(180deg);
}
.quick-menu .lnk:hover .back {
	transform: rotateY(0);
}
.quick-menu .lnk.top {
	border-color: #d9dbe1;
	background-color: #fff;
	color: #555;
	font-size: var(--font-size-24);
}
.quick-menu .lnk.top .back {
	font-size: 0.7em;
}
.quick-menu .lnk.vr {
	border-color: #0a85be;
	background-color: #0a85be;
	color: #fff;
	font-size: var(--font-size-18);
	font-weight: 300;
}
.quick-menu .lnk.vr .back {
	font-size: var(--font-size-20);
}
.quick-menu .lnk.event {
	border-color: var(--primary-color);
	background-color: var(--primary-color);
	color: #fff;
	font-size: var(--font-size-20);
}
.quick-menu .lnk.event .back {
	font-size: var(--font-size-13);
}
.quick-menu .lnk.chat {
	border-color: var(--secondary-color);
	background: var(--secondary-color);
}
.quick-menu .lnk.chat .front {
	background: url("../img/layout/icon-chatbot.png") no-repeat center center;
}
.quick-menu .lnk.chat .back {
	color: #fff;
	font-size: var(--font-size-15);
}
@media all and (max-width: 767px) {
	.quick-menu {
		right: 10px;
		gap:5px 0;
	}
	.quick-menu.active {
		bottom:10px;
	}
	.quick-menu .lnk {
		width: 55px;
		height: 55px;
	}
	.quick-menu .lnk.top {
		font-size: var(--font-size-20);
	}
	.quick-menu .lnk.vr {
		font-size: var(--font-size-16);
	}
	.quick-menu .lnk.event {
		font-size: var(--font-size-18);
	}
	.quick-menu .lnk.chat .front {
		background-size: 24px;
	}
}


/* ## sub ## */
.sub-wrapper {
	padding-top:85px;
	padding-bottom:150px;
}
.sub-wrapper:has(.bg-wrapper) {
	padding-bottom: 0;
}
@media all and (max-width: 767px) {
	.sub-wrapper {
		padding-top:75px;
		padding-bottom:100px;
	}
	body:has(.sub-top) .sub-wrapper {
		padding-top:40px;
	}
}

.sub-top {
	margin:85px 0 0;
	border-top:1px solid #eee;
}
.breadcrumb {
	padding:20px 0;
	display: flex;
	align-items: center;
	color: #999;
	gap:0 15px;
}
.breadcrumb li {
	display: flex;
	align-items: center;
}
.breadcrumb li:not(:first-child)::before {
	display: block;
	content:"";
	width: 2px;
	height: 8px;
	background:#e5e5e5;
	margin-right: 15px;
}
.breadcrumb .active {
	color: var(--secondary-color);
}
.sub-title {
	font-size: 2.6em;
	font-weight: 600;
	text-align: center;
	color: var(--secondary-color);
}
.sub-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top:50px;
	gap:0 10px;
}
.sub-menu .lnk {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding:0 20px;
	height: 52px;
	border-radius: 10px;
	min-width: 150px;
	background:#d8eaef;
	color: var(--secondary-color);
	font-size: var(--font-size-20);
}
.sub-menu .lnk.active {
	background:var(--secondary-color);
	color: #fff;
}
@media all and (max-width: 1023px) {
	.sub-menu {
		overflow-x: auto;
		overflow-y: hidden;
	}
	.sub-menu .lnk {
		white-space: nowrap;
	}
}
@media all and (max-width: 767px) {
	.sub-top {
		margin-top:75px;
	}
	.breadcrumb {
		padding:15px 0 20px;
		gap:0 10px;
		font-size: var(--font-size-15);
	}
	.breadcrumb li:not(:first-child)::before {
		margin-right: 10px;
	}
	.sub-title {
		font-size: var(--font-size-30);
	}
	.sub-menu {
		margin-top:25px;
		gap: 0 5px;
	}
	.sub-menu .lnk {
		height: 42px;
		min-width: auto;
		padding:0 20px;
		font-size: var(--font-size-16);
	}
}


/* ## cms popup ## */
.pop-up {
	position: absolute;
	z-index: 9980;
	background: #fff;
	box-shadow: 2px 2px 10px rgba(0,0,0,0.25);
	width: 500px;
	left: 40px;
	top:100px;
}
.pop-up .pop-up-body {
	width: 100%;
	height: 100%;
	cursor: pointer;
}
.pop-up .pop-up-body img {
	width: 100%;
	height: 100%;
}
.pop-up .pop-up-footer {
	width: 100%;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-left: 12px;
	background: #555;
	color: #fff;
	font-weight: 300;
	font-size: var(--font-size-14);
	box-shadow: 2px 2px 10px rgba(0,0,0,0.25);
}
.pop-up .pop-up-close {
	background: #333;
	padding: 0 12px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 6px;
	color: #fff;
	font-weight: 400;
	border-radius: 0;
	font-size: var(--font-size-16);
}
.pop-up .pop-up-close::before {
	display: block;
	content:"\f00d";
	font-family: "Font Awesome 6 Pro";
	font-weight: 400;
	font-size: var(--font-size-20);
}
.pop-up.pop_window {
	width: 100% !important;
	height: auto !important;
	left: 0 !important;
	margin-left: 0;
	top: 0 !important;
}
@media all and (max-width:767px) {
	.pop-up {
		width: 90% !important;
		height: auto !important;
		left: 50% !important;
		transform: translateX(-50%);
	}
	.pop-up .pop-up-footer {
		height: 34px;
	}
}