@charset "utf-8";


/*
	** 레이아웃
*/

/* ## common ## */
.container {
	max-width: 1540px;
	padding: 0 20px;
	margin: 0 auto;
}
.sub-contents {
	min-height: 400px;
}
.sub-contents .container {
	width: 100%;
	max-width: 1340px;
	padding: 0 20px;
	margin: 0 auto;
}
.board-wrap {
	margin: 80px 0 100px;
}
@media all and (max-width: 1023px) {
	.board-wrap {
		margin: 60px 0 90px;
	}
}
@media all and (max-width: 767px) {
	.container {
		padding:0 15px;
	}
	.board-wrap {
		margin: 50px 0 80px;
	}
}


/* ## header ## */
.header {
	border-bottom: 1px solid #e4e4e4;
}
.header-box {
	display: flex;
	align-items: center;
	height: 100px;
}
.header-logo {
	flex: 0 0 300px;
}
.gnb {
	flex: 1 1 0;
	height: 100%;
	margin-right: 5%;
}
.gnb-list {
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 0 60px;
	height: 100%;
}
.gnb-list>li {
	position: relative;
	height: 100%;
}
.gnb-lnk {
	font-size: var(--font-size-18);
	font-weight: 600;
	padding: 0 10px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	white-space: nowrap;
}
.gnb-lnk::after {
	content: "";
	position: absolute;
	bottom: 0;
	width: 100px;
	height: 3px;
	background: var(--secondary-color);
	border-radius: 10px;
	transform: scale(0);
	transition: var(--transition);
}
.gnb-lnk.active::after {
	transform: scale(1);
}
.gnb-lnk.link::before,
.gnb-2depth-list>li>a.link::after,
.gnb-3depth-list>li>a.link::after {
	content: "\f08e";
	font-family: "Font Awesome 6 Pro";
	font-weight: 900;
	position: absolute;
	right: -10px;
	font-size: 14px;
	color: #b6b6b6;
}
.gnb-2depth {
	position: absolute;
	top: 85%;
	left: 50%;
	transform: translateX(-50%);
	width: 190px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 10px;
	z-index: 50;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
}
.gnb-2depth.active {
	top: 100%;
	opacity: 1;
	visibility: visible;
}
.gnb-2depth-list {
	padding: 5px;
}
.gnb-2depth-list>li {
	border-radius: 10px;
	transition: var(--transition);
}
.gnb-2depth-list>li:hover {
	background: #f3f3f3;
}
.gnb-2depth-list>li>a {
	position: relative;
	display: block;
	font-size: var(--font-size-14);
	font-weight: 500;
	color: #222;
	padding: 10px 12px;
}
.gnb-2depth-list>li>a::after {
	content: "";
	position: absolute;
	transform: translateX(4px);
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--secondary-color);
	opacity: 0;
	transition: var(--transition);
}
.gnb-2depth-list>li:hover>a::after {
	opacity: 1;
}
.gnb-2depth-list>li>a.link::after {
	opacity: 1;
	position: unset;
    display: inline-block;
    background-color: transparent;
}
.gnb-3depth-list {
	padding-bottom: 5px;
}
.gnb-3depth-list>li>a {
	display: block;
	font-size: var(--font-size-15);
	font-weight: 500;
	color: #888;
	padding: 3px 8px 3px 15px;
	word-break: keep-all;
	transition: var(--transition);
}
.gnb-3depth-list>li>a.link::after {
	position: unset;
    display: inline-block;
	margin-left: 5px;
	font-size: 12px;
}
.gnb-3depth-list>li>a:hover {
	color: var(--secondary-color);
}
.header-gnb-btn {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 30px;
	height: 22px;
	transition: var(--transition);
}
.header-gnb-btn .bar {
	position: absolute;
	left: 0;
	width: 100%;
	height: 4px;
	background: #000;
	border-radius: 10px;
	transition: var(--transition);
}
.header-gnb-btn .bar1 {
	top: 0;
}
.header-gnb-btn .bar2 {
	top: 9px;
}
.header-gnb-btn .bar3 {
	bottom: 0;
	width: 70%;
}
.header-gnb-btn.close {
	width: 30px;
	height: 24px;
}
.header-gnb-btn.close .bar {
	height: 3px;
}
.header-gnb-btn.close .bar1 {
	transform: rotate(45deg);
	transform-origin: top left;
	left: 2px;
}
.header-gnb-btn.close .bar2 {
	transform: translateX(-20px);
	opacity: 0;
}
.header-gnb-btn.close .bar3 {
	width: 100%;
	transform: rotate(-45deg);
	transform-origin: top left;
}
.search {
	font-weight: 800;
	font-size: var(--font-size-20);
	color: #232323;
	margin-left: auto;
	margin-right: 30px;
}
.lang:hover {
	text-decoration: underline;
	text-underline-offset: 4px;
}
.header.active .lang {
	z-index: 9999;
}
@media screen and (max-width: 1199px) {
	.header-logo {
		flex: 0 0 240px;
	}
	.gnb-list {
		gap: 0 20px;
	}
	.gnb-lnk {
		font-size: var(--font-size-16);
	}
}
@media screen and (max-width: 1023px) {
	.header-box {
		height: 80px;
	}
	.gnb {
		display: none;
	}
}
@media screen and (max-width: 767px) {
	.header-box {
		height: 65px;
	}
	.header-logo {
		flex: 0 0 210px;
	}
	.header-gnb-btn {
		transform: scale(0.85);
		height: 21px;
	}
	.header-gnb-btn .bar {
		height: 3px;
	}
	.lang {
		margin-right: 15px;
		font-size: var(--font-size-14);
	}
}

.header.active .header-logo {
	position: relative;
	z-index: 9999;
}
.header.active .header-gnb-btn {
	z-index: 9999;
}
.gnb.active {
	display: none;
}
.all-gnb-wrap {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 9990;
	width: 100%;
	height: 100vh;
	padding-bottom: 60px;
	overflow: hidden;
	background: #f4f8ff;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
}
.all-gnb-wrap.active {
	opacity: 1;
	visibility: visible;
}
.all-gnb-wrap .container {
	height: 100%;
}
.all-gnb {
	height: 100%;
	padding-top: 100px;
}
.all-gnb-list {
	height: 100%;
	overflow-y: auto;
}
.all-gnb-list>li {
	display: flex;
	align-items: flex-start;
	padding: 60px 0;
	border-bottom: 1px solid #e4e4e4;
}
.all-gnb-lnk {
	display: inline-block;
	flex: 0 0 250px;
	padding-right: 30px;
	font-size: var(--font-size-24);
	font-weight: 700;
	color: var(--secondary-color);
	line-height: 1.5;
}
.all-gnb .link::after {
	content: "\f08e";
	font-family: "Font Awesome 6 Pro";
	font-weight: 900;
	font-size: 14px;
	color: #b6b6b6;
	margin-left: 10px;
}
.all-gnb-2depth {
	flex: 1 1 0;
}
.all-gnb-2depth-list {
	display: flex;
	flex-wrap: wrap;
	flex-grow: 1;
	gap: 20px 0;
	padding-left: 20px;
}
.all-gnb-2depth-list>li {
	width: 25%;
}
.all-gnb-2depth-lnk {
	display: inline-block;
	font-size: var(--font-size-20);
	font-weight: 500;
	color: #484848;
}
.all-gnb-3depth-list {
	margin-top: 25px;
}
.all-gnb-3depth-list>li:not(:last-child) {
	margin-bottom: 10px;
}
.all-gnb-3depth-list>li>a {
	display: inline-flex;
	font-weight: 500;
	color: #888;
	word-break: keep-all;
	transition: var(--transition);
}
.all-gnb-3depth-list>li>a::before {
	content: "-";
	display: inline-block;
	margin-right: 6px;
}
.all-gnb-3depth-list>li>a:hover {
	color: var(--secondary-color);
}
@media screen and (max-width: 1199px) {
	.all-gnb-lnk {
		font-size: var(--font-size-22);
	}
	.all-gnb-2depth-lnk {
		font-size: var(--font-size-18);
	}
	.all-gnb-3depth-list>li>a {
		font-size: var(--font-size-15);
	}
}
@media screen and (max-width: 1023px) {
	.all-gnb {
		height: 100%;
		padding-top: 80px;
	}
	.all-gnb-list>li {
		padding: 50px 0;
	}
	.all-gnb-lnk {
		font-size: var(--font-size-18);
		flex: 0 0 110px;
		padding-right: 20px;
	}
	.all-gnb-2depth-list {
		gap: 30px 0;
		padding-left: 30px;
	}
	.all-gnb-2depth-lnk {
		font-size: var(--font-size-16);
	}
	.all-gnb-3depth-list {
		margin-top: 20px;
	}
	.all-gnb-3depth-list>li>a::before {
		margin-right: 4px;
	}
}
@media screen and (max-width: 767px) {
	.all-gnb-wrap {
		background: #fff;
	}
	.all-gnb {
		padding-top: 65px;
		padding-bottom: 50px;
	}
	.all-gnb-list>li {
		flex-direction: column;
		padding: 0;
	}
	.all-gnb-lnk {
		flex: 0 0 100%;
		width: 100%;
		padding: 15px 10px;
		color: #484848;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.all-gnb-lnk:has(+ .all-gnb-2depth)::after {
		font-family: "Font Awesome 6 Pro";
		content: "\2b";
		font-weight: 900;
		transition: var(--transition);
	}
	.all-gnb-lnk.active {
		color: var(--secondary-color);
	}
	.all-gnb-lnk.active:has(+ .all-gnb-2depth)::after {
		content: "\f068";
		transform: rotate(180deg);
	}
	.all-gnb-2depth {
		width: 100%;
		display: none;
	}
	.all-gnb-2depth.active {
		display: block;
	}
	.all-gnb-2depth-list {
		flex-direction: column;
		gap: 0;
		padding: 0 0 10px;
	}
	.all-gnb-2depth-list>li {
		width: 100%;
	}
	.all-gnb-2depth-lnk {
		width: 100%;
		padding: 10px 15px;
	}
	.all-gnb-3depth-list {
		margin-top: 0;
	}
	.all-gnb-3depth-list>li:not(:last-child) {
		margin-bottom: 0;
	}
	.all-gnb-3depth-list>li>a {
		width: 100%;
		padding: 8px 15px;
	}
}


/* ## footer ## */
.footer {
	background: #071420;
	color: #d6d6d6;
	padding:50px 0;
	font-size: var(--font-size-14);
	position: relative;
}
.footer-box {
	display: flex;
	position: relative;
    align-items: center;
	gap:0 40px;
}
.footer-box::before {
	display: block;
	content:"";
	flex:0 0 288px;
	height: 55px ;
	background:url("../img/layout/footer-logo.png") no-repeat left top / contain;
}
.footer-cont {
	flex:1 1 auto;
	text-align:right;
}
.footer-lnk {
	display: flex;
	align-items: center;
	justify-content: right;
	gap:0 10px;
	margin-bottom:40px;
}
.footer-lnk li {
	display: inline-flex;
	align-items: center;
	gap:0 10px;
}
.footer-lnk li:not(:last-child)::after {
	display: block;
	content:"";
	width: 1px;
	height: 12px;
	background: #d6d6d6;
}
.footer-lnk .btn {
	color: #d6d6d6;
}
.footer-title {
	font-weight: 600;
	margin-bottom: var(--space-xs);
	color: #fff;
}
.footer-addr {
	color: #8a8a8a;
	font-style: normal;
}
.footer-info {
	display: flex;
	align-items: center;
	justify-content: right;
	flex-wrap: wrap;
	gap:0 20px;
	color: #8a8a8a;
	margin-top:4px;
}
.footer-info a {
	color: #8a8a8a;
}
.footer-copyright {
	margin-top:40px;
	color: #595959;
}
@media all and (max-width: 1023px) {
	.footer {
		padding:30px 0;
	}
	.footer-box {
		display: block;
	}
	.footer-box::before {
		height: 40px;
	}
	.footer-cont {
		margin:20px 0 0;
		text-align:left;
	}
	.footer-lnk {
		gap:0 15px;
		margin-bottom:15px;
		justify-content: left
	}
	.footer-info {
		justify-content: left;
		gap:0 15px;
	}
	.footer-copyright {
		margin-top:15px;
		font-size: var(--font-size-13);
	}
}
@media all and (max-width: 767px) {
	.footer {
		padding:25px 0;
		font-size: var(--font-size-13);
	}
}

.btn-top {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #071420;
	border: 1px solid rgba(255, 255, 255, 0.2);
	position: fixed;
	right: 45px;
	bottom: 45px;
	z-index: 50;
	font-size: var(--font-size-15);
	font-weight: 500;
	line-height: 1;
	color: #fff;
	box-shadow: 2px 2px 7px rgba(0,0,0,0.15);
	transition: var(--transition);
	opacity: 0;
	visibility: hidden;
}
.btn-top.active {
	opacity: 1;
	visibility: visible;
}
@media all and (max-width: 1023px) {
	.btn-top {
		position: fixed;
		right: 25px;
		bottom: 30px;
	}
}
@media all and (max-width: 767px) {
	.btn-top {
		width: 50px;
		height: 50px;
		right: 15px;
		bottom: 20px;
	}
}

/* ## sub ## */
.sub-visual-wrap {
	position: relative;
	height: 250px;
	background: center center / cover no-repeat;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.sub-visual-wrap .container {
	position: relative;
	width: 100%;
	max-width: 1340px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.sub-visual-wrap h1 {
	font-size: 2.8em;
	font-weight: 900;
	color: #fff;
	text-align: center;
}
.sub-visual-wrap .location {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 30px;
	color: #fff;
	font-size: var(--font-size-14);
}
.location li {
	position: relative;
	white-space: nowrap;
}
.location li::before {
	content: "";
	width:1px;
	height: 12px;
	background: rgba(255, 255, 255, 0.7);
	position: absolute;
	left: -15px;
	top: 50%;
	transform: translateY(-50%);
}
.location li.home a {
	color: #fff;
}
.location li.home::before {
	display: none;
}
.sub-title {
	position: relative;
	font-size: 2.3em;
	font-weight: 700;
	text-align: center;
	margin: 80px 0;
}
.lnb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    column-gap: 30px;
}
.lnb-list .lnk {
    display: block;
    padding: 15px 10px;
    border-radius: 99px;
    font-weight: 500;
    color: #484848;
    white-space: nowrap;
    transition: var(--transition);
}
.lnb-list .lnk.active {
    padding: 15px 30px;
    background: var(--primary-color);
    color: #fff;
}
@media screen and (max-width: 1023px) {
	.sub-visual-wrap {
		height: 200px;
	}
	.sub-visual-wrap h1 {
		font-size: 2.2em;
		font-weight: 700;
	}
	.sub-title {
		font-size: 2em;
		margin: 60px 0;
	}
    .lnb-list {
        gap: 3px 20px;
    }
    .lnb-list .lnk {
        padding: 10px 10px;
        font-size: var(--font-size-15);
    }
    .lnb-list .lnk.active {
        padding: 10px 20px;
    }
}
@media screen and (max-width: 767px) {
	.sub-visual-wrap {
		height: 140px;
	}
	.sub-visual-wrap h1 {
		font-size: 1.6em;
	}
	.sub-title {
		font-size: 1.6em;
		margin: 40px 0;
	}
    .lnb {
        display: none;
    }
}
@media screen and (max-width: 520px) {
	.sub-visual-wrap .container {
		flex-direction: column;
		gap: 10px 0;
	}
}