:root {
	/* 가상 클래스를 이용해 변수를 선언하고 동일하게 적용 및 변경이 가능합니다. */
	/* color */
	--primary-color: #546e7a;
	--primary-color-dark: #29434e;
	--primary-color-light: #819ca9;
	--text-color: #333;
	--text-color-light: #999;
	--title-color: #263238;
	--border-color: #919ea1;
	--border-color-light: #ddd;
	--body-color: #fff;
	--body-color-deep: #eee;
	--white-color: #fff;
	--black-color: #000;
	--input-color: #f6f9f9;

	/* font & size - 폰트 사이트 계산은 https://nekocalc.com/px-to-rem-converter 참고해 변환 확인합니다. */
	--basic-font: "SF Pro Text","SF Pro Icons","Helvetica Neue","Helvetica","Arial",sans-serif,'Noto Sans KR', sans-serif;
	--en-font: 'Raleway', 'Noto Sans KR', sans-serif;
	--biggest-font-size: 1.5rem;
	/* 24px */
	--h1-font-size: 1.25rem;
	/* 20px */
	--h2-font-size: 1.125rem;
	/* 18px */
	--h3-font-size: 1rem;
	/* 16px */
	--normal-font-size: .9375rem;
	/* 15px */
	--small-font-size: .8125rem;
	/* 13px */
	--smaller-font-size: .75rem;
	/* 12px */
}

@media (min-width: 768px) {
	:root {
		--biggest-font-size: 2.5rem;
		/* 40px */
		--h1-font-size: 1.5rem;
		/* 24px */
		--h2-font-size: 1.25rem;
		/* 20px */
		--h3-font-size: 1rem;
		/* 16px */
		--normal-font-size: 1rem;
		/* 16px */
		--small-font-size: .875rem;
		/* 14px */
		--smaller-font-size: .8125rem;
		/* 13px */
	}
}

@media (min-width: 992px) {
	:root {
		--biggest-font-size: 4rem;
		/* 64px */
		--h1-font-size: 2.25rem;
		/* 36px */
		--h2-font-size: 1.75rem;
		/* 28px */
		--h3-font-size: 1.25rem;
		/* 20px */
	}
}

/* ========== base ========== */
html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-size: var(--normal-font-size);
	background-color: var(--body-color);
}

.en-font {
	font-family: var(--en-font);
}

body.modal-open {
	padding: 0 !important;
}

p,
li {
	word-break: keep-all;
}

ul {
	margin-bottom: 0;
}

strong {
	font-weight: 700;
}

a:hover {
	color: var(--primary-color);
}

.transition-03 {
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.color-primary {
	color: var(--primary-color);
}

/* 버튼 스타일 */
.btn-more a {
	position: relative;
	z-index: 1;
	display: inline-block;
	padding: 5px 20px;
	font-size: var(--smaller-font-size);
	color: var(--white-color);
	background-color: var(--black-color);
}

.btn-more a:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 3px solid var(--black-color);
	transition: 0.3s linear;
}

.btn-more a:hover:before {
	top: -6px;
	right: -6px;
	bottom: -6px;
	left: -6px;
}

.btn-more.btn-wht a {
	color: var(--black-color);
	background-color: var(--white-color)
}

.btn-more.btn-wht a:before {
	border-color: var(--white-color);
}

@media(min-width:992px) {
	.btn-more a {
		padding: 8px 25px;
	}
}

.offcanvas-backdrop {
	z-index: 1003;
}

/* 편집 버튼 */
.btn-edit-admin {
	position: fixed;
	top: 230px;
	right: -1px;
	width: 130px;
	padding: 5px 10px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 0 1px rgba(0, 0, 0, .7);
	z-index: 1100
}

/* ========== wrapper ========== */
#hd-h1 {
	position: absolute;
	font-size: 0;
	text-indent: -9999em;
	line-height: 0;
	overflow: hidden
}

.to-content a {
	z-index: 1000;
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	font-size: 0;
	line-height: 0;
	overflow: hidden
}

.wrapper {
	position: relative;
	overflow: hidden;
}

.wrapper-inner {
	background-color: var(--body-color);
}

.wrapper-inner.box-layout {
	max-width: 1320px;
	margin: 0 auto;
}

/* ========== Header ========== */
.header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	padding: 0 15px;
	transition: .3s;
}

.header .header-inner {
	display: flex;
	flex-wrap: wrap;
}

#header-fixed.header {
	position: fixed;
}

#header-fixed.header.header-shadow,
.header.sub-header {
	background-color: rgba(0, 0, 0, .75);
	box-shadow: 0 3px 3px rgb(0 0 0 / 15%);
}

@media (min-width:992px) {
	.header {
		padding: 0 2rem;
	}

	.header:hover {
		background-color: rgba(0, 0, 0, .75);
	}

	.header .header-inner {
		justify-content: space-between;
	}
}

/* header logo */
.header-logo {
	position: relative;
	margin: 15px 0;
}

.header-logo a {
	display: block;
}

.header-logo a img {
	display: block;
	height: 25px;
	width: auto;
}

@media (min-width:992px) {
	.header-logo {
		margin: 25px 0;
	}

	.header-logo a img {
		height: 30px;
	}
}

/* nav-bar */
.gnb-wrap .gnb .gnb-nav {
	padding: 0;
	list-style: none;
}

/* gnb - mobile */
@media (max-width:991px) {
	.gnb-wrap .gnb {
		position: fixed;
		top: 0;
		right: -100%;
		z-index: 2;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		width: 85%;
		height: 100vh;
		background-color: var(--body-color);
		box-shadow: 1px 3px 6px rgb(0 0 0 / 32%);
		transition: .3s ease-out;
	}

	.gnb-wrap .gnb.act {
		right: 0;
	}

	.gnb-wrap .gnb .mobile-box {
		padding: 20px 30px 10px;
	}

	.gnb-wrap .gnb .mobile-box .mobile-nav-trigger {
		position: absolute;
		top: 15px;
		right: 20px;
	}

	.gnb-wrap .gnb .mobile-box .mobile-nav-trigger a {
		display: block;
		width: 30px;
		height: 30px;
		line-height: 30px;
		font-size: var(--h2-font-size);
		text-align: center;
	}

	.gnb-wrap .gnb .mobile-box .mobile-nav-trigger img {
		width: 24px;
	}

	.gnb-wrap .gnb .mobile-box .login-box ul {
		display: flex;
		flex-wrap: wrap;
		padding: 0 30px 10px 0;
		list-style: none;
	}

	.gnb-wrap .gnb .mobile-box .login-box ul li {
		margin-right: 20px;
	}

	.gnb-wrap .gnb .mobile-box .login-box ul li:last-child {
		margin-right: 0;
	}

	.gnb-wrap .gnb .mobile-box .login-box ul li a {
		display: block;
		position: relative;
		font-size: var(--smaller-font-size);
	}

	.gnb-wrap .gnb .mobile-box .login-box ul li a:after {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		right: -10px;
		width: 1px;
		height: 10px;
		margin-top: -5px;
		background-color: var(--body-color-deep);
	}

	.gnb-wrap .gnb .mobile-box .login-box ul li:last-child a:after {
		display: none;
	}

	.gnb-wrap .gnb .mobile-box .search-box input[type="text"] {
		width: 100%;
		height: 45px;
		padding: 6px;
		font-size: var(--smaller-font-size);
		color: var(--text-color-light);
		border: 0 none !important;
		border-bottom: 2px solid var(--primary-color) !important;
	}

	.gnb-wrap .gnb .mobile-box .search-box .button {
		position: absolute;
		right: 1px;
		top: 0;
		padding: 0 5px;
		height: 45px;
		line-height: 45px;
		font-size: var(--normal-font-size);
		color: var(--primary-color);
		background: none;
		border: 0 none;
	}

	.gnb-wrap .gnb .mobile-box .search-box .button input {
		position: absolute;
		top: 0;
		right: 0;
		padding: 0;
		font-size: var(--smaller-font-size);
		line-height: 40px;
		opacity: 0;
		cursor: pointer;
	}

	.gnb-wrap .gnb .mobile-box .search-box .button img {
		width: 20px;
		vertical-align: sub;
	}

	.gnb-wrap .gnb .gnb-nav {
		padding: 0 30px;
	}

	.gnb-wrap .gnb .gnb-nav>li:last-child {
		border-bottom: 0 none;
	}

	.gnb-wrap .gnb .gnb-nav>li>a {
		display: block;
		padding: 8px 0;
		font-size: var(--h3-font-size);
		font-weight: 700;
		color: var(--text-color);
	}

	.gnb-wrap .gnb .gnb-nav>li>a:after {
		display: none;
	}

	.gnb-wrap .gnb .gnb-nav>li.active>a {
		color: var(--primary-color);
		background: none;
	}

	.gnb-wrap .gnb .gnb-nav>li>.cate-dropdown-open {
		position: absolute;
		top: 1px;
		right: 0;
		width: 30px;
		height: 38px;
		line-height: 38px;
		margin: 0;
		padding: 0;
		text-align: center;
		border: 0 none;
		z-index: 9;
	}

	.gnb-wrap .gnb .gnb-nav>li>.cate-dropdown-open:before {
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		background-image: url("../image/icons/add-line.png");
		background-repeat: no-repeat;
		background-position: center;
	}

	.gnb-wrap .gnb .gnb-nav>li>ul {
		float: none;
		position: relative !important;
		transform: translate(0, 0) !important;
		width: 100%;
		margin: 0;
		padding: 0;
		border: 0 none;
		box-shadow: none;
		background-color: var(--body-color-deep);
	}

	.gnb-wrap .gnb .gnb-nav>li>ul>li {
		border-bottom: 1px solid var(--white-color);
	}

	.gnb-wrap .gnb .gnb-nav>li>ul>li:last-child {
		border-bottom: 0 none;
	}

	.gnb-wrap .gnb .gnb-nav>li>ul>li>a {
		padding: 10px 20px;
		font-size: var(--smaller-font-size);
		color: var(--text-color);
	}

	.gnb-wrap .gnb .gnb-nav>li>ul>li>a:hover {
		background: none;
	}

	.gnb-wrap .gnb .gnb-nav>li>ul>li.active>a {
		color: var(--primary-color);
		background: none;
	}

	.gnb-wrap .gnb .gnb-nav>li>ul>li>ul {
		display: block !important;
		float: none;
		position: relative;
		width: 100%;
		padding: 0 20px 10px;
		margin: 0;
		border: 0 none;
		box-shadow: none;
		background: none;
	}

	.gnb-wrap .gnb .gnb-nav>li>ul>li>ul>li>a {
		position: relative;
		padding: 3px 10px 3px 15px;
		font-size: var(--smaller-font-size);
		color: var(--text-color);
	}

	.gnb-wrap .gnb .gnb-nav>li>ul>li>ul>li>a:after {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		left: 2px;
		transform: translateY(-50%);
		width: 7px;
		height: 7px;
		border-left: 1px solid var(--border-color);
		border-bottom: 1px solid var(--border-color);
	}

	.gnb-wrap .gnb .gnb-nav>li>ul>li>ul>li>a:hover,
	.gnb-wrap .gnb .gnb-nav>li>ul>li>ul>li.active>a {
		color: var(--primary-color);
		background: none;
	}
}

/* gnb - pc */
@media (min-width:992px) {
	.gnb-wrap {
		display: flex;
		flex-wrap: wrap;
	}

	.gnb-wrap .mobile-box {
		display: none;
	}

	.gnb-wrap .gnb .gnb-nav {
		display: flex;
		flex-wrap: wrap;
	}

	.gnb-wrap .gnb .gnb-nav>li {
		position: relative;
		padding: 0 20px;
	}

	.gnb-wrap .gnb .gnb-nav>li::before {
		content: "";
		display: block;
		opacity: 0;
		position: absolute;
		bottom: 20px;
		left: 50%;
		transform: translateY(-50%);
		width: 2px;
		height: 10px;
		margin-left: -1px;
		background-color: var(--white-color);
		transition: .3s linear;
	}

	.gnb-wrap .gnb .gnb-nav>li:hover::before,
	.gnb-wrap .gnb .gnb-nav>li.active::before {
		opacity: 1;
		bottom: 0px;
	}

	.gnb-wrap .gnb .gnb-nav>li>a {
		display: block;
		position: relative;
		padding: 0 15px;
		line-height: 80px;
		font-size: var(--normal-font-size);
		color: var(--white-color);
	}

	.gnb-wrap .gnb .gnb-nav>li>a::after {
		display: none;
	}

	.gnb-wrap .gnb .gnb-nav>li>ul {
		display: block;
		left: 50%;
		opacity: 0;
		visibility: hidden;
		min-width: 150px;
		padding: 5px 30px;
		margin: 0 0 0 -75px;
		background-color: rgba(0, 0, 0, .75);
		border: 0 none;
		box-shadow: 0 3px 3px rgb(0 0 0 / 15%);
		-webkit-transform: translateY(20px);
		-moz-transform: translateY(20px);
		-o-transform: translateY(20px);
		-ms-transform: translateY(20px);
		transform: translateY(20px);
		-webkit-transition: all 0.25s ease;
		-moz-transition: all 0.25s ease;
		-o-transition: all 0.25s ease;
		-ms-transition: all 0.25s ease;
		transition: all 0.25s ease
	}

	.gnb-wrap .gnb .gnb-nav>li:hover>ul {
		opacity: 1;
		visibility: visible;
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-o-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}

	.gnb-wrap .gnb .gnb-nav>li>ul>li {
		position: relative
	}

	.gnb-wrap .gnb .gnb-nav>li>ul>li>a {
		padding: 10px 0;
		font-size: var(--small-font-size);
		color: var(--border-color);
		background: none;
	}

	.gnb-wrap .gnb .gnb-nav>li>ul>li:last-child>a {
		border: 0 none;
	}

	.gnb-wrap .gnb .gnb-nav>li>ul>li>a:hover,
	.gnb-wrap .gnb .gnb-nav>li>ul>li.active>a {
		color: var(--white-color);
		background: none;
	}

	.gnb-wrap .gnb .gnb-nav>li>ul>li>a .sub-caret {
		position: absolute;
		right: 10px;
		top: 50%;
		transform: translateY(-50%);
		color: var(--text-color-light);
	}

	.gnb-wrap .gnb .gnb-nav>li>ul>li>ul {
		display: block !important;
		position: relative;
		top: inherit;
		left: inherit;
		min-width: 100%;
		padding: 0 10px 5px;
		margin-bottom: 10px;
		border: 0 none;
		border-left: 1px solid var(--border-color);
		background: none;
		box-shadow: 0 0 0 var(--white-color);
	}

	.gnb-wrap .gnb .gnb-nav>li>ul>li>ul>li>a {
		padding: 5px 0 0;
		font-size: var(--smaller-font-size);
		color: var(--border-color);
		background: none;
	}

	.gnb-wrap .gnb .gnb-nav>li>ul>li>ul>li:last-child>a {
		border-bottom: 0 none;
	}

	.gnb-wrap .gnb .gnb-nav>li>ul>li>ul>li>a:hover,
	.gnb-wrap .gnb .gnb-nav>li>ul>li>ul>li.active>a {
		background: none;
		color: var(--white-color);
	}
}

/* top bar */
.top-bar {
	margin-left: auto;
}

.top-bar .top-bar-list {
	display: flex;
	flex-wrap: wrap;
	margin-top: 15px;
}

.top-bar .top-bar-list li {
	margin-left: 3px;
}

.top-bar .top-bar-list li a,
.top-bar .top-bar-list li span {
	display: block;
	width: 25px;
	height: 25px;
	line-height: 25px;
	text-align: center;
	transition: .3s ease-out;
}

.top-bar .top-bar-list li img {
	width: 24px;
}

.top-bar .top-bar-list li.btn-live-mov a {
	background-color: var(--primary-color);
}

.top-bar .top-bar-list li.btn-live-mov a:hover {
	background-color: var(--primary-color-2);
}

.top-bar .top-bar-list li a span {
	display: none;
}

@media (min-width:992px) {
	.top-bar {
		margin-left: 0;
	}

	.top-bar .top-bar-list {
		margin-top: 25px;
	}

	.top-bar .top-bar-list li.mobile-nav-trigger {
		display: none;
	}

	.top-bar .top-bar-list li a,
	.top-bar .top-bar-list li span {
		width: 30px;
		height: 30px;
		line-height: 30px
	}

	.top-bar .top-bar-list li a {
		font-size: var(--h3-font-size);
	}

	.top-bar .top-bar-list li img {
		width: 21px;
		opacity: .8;
		transition: .3s;
	}

	.top-bar .top-bar-list li a:hover img {
		opacity: 1;
	}
}

/*---------- Modal ----------*/
.contents-modal .modal-box .modal-content {
	position: relative;
	padding: 15px;
	background-color: var(--body-color-deep);
	box-shadow: 0 0 0 var(--white-color);
}

.contents-modal .modal-box .modal-content h4 {
	position: relative;
	margin: 0 0 20px;
	font-size: var(--normal-font-size);
	text-align: center;
	color: var(--text-color);
}

/* --- 검색 모달 --- */
/* 입력창 */
.contents-modal .input-button {
	position: relative;
}

.contents-modal .input-button input[type="text"] {
	width: 100%;
	padding: 6px 12px;
	font-size: var(--smaller-font-size);
	color: var(--text-color-light);
	background-color: var(--body-color);
	border: 0 none !important;
	border-bottom: 1px solid var(--input-color) !important;
	border-radius: 5px;
}

.contents-modal .input-button .button {
	position: absolute;
	right: 0;
	top: 0;
	padding: 0 10px;
	height: 38px;
	line-height: 38px;
	background: none;
	border: 0 none;
}

.contents-modal .input-button .button input {
	position: absolute;
	top: 0;
	right: 0;
	padding: 0;
	opacity: 0;
	cursor: pointer
}

.contents-modal .input-button .button img {
	max-width: 20px;
	vertical-align: sub;
}

/* bottom */
.contents-modal .modal-box .contnets-bottom {
	margin-top: 20px;
	text-align: center;
}

.contents-modal .modal-box .contnets-bottom button {
	border: 0 none;
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding: 5px 20px;
	letter-spacing: 2px;
	font-size: var(--smaller-font-size);
	color: var(--text-color);
	background: none;
	border-width: 1px;
	border-style: solid;
	border-color: var(--text-color);
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	transition: all 0.5s ease
}

.contents-modal .modal-box .contnets-bottom button span {
	position: relative;
	z-index: 1;
}

.contents-modal .modal-box .contnets-bottom button:hover {
	color: var(--white-color);
	background-color: var(--text-color);
}

@media(max-width:767px) {
	.contents-modal .modal-box {
		width: 300px;
	}

	.contents-modal .modal-box .modal-content {
		padding: 10px;
	}

	.contents-modal .modal-box .modal-content h4 {
		margin-bottom: 10px;
		font-size: var(--h3-font-size);
		line-height: 30px;
	}

	.contents-modal .input-button input[type="text"] {
		height: 50px;
		font-size: var(--normal-font-size);
	}

	.contents-modal .input-button .button {
		font-size: var(--h3-font-size);
	}

	.contents-modal .modal-box .contnets-bottom {
		margin-top: 20px;
	}
}

/* --- 멤버 모달 --- */
.contents-modal .modal-box .member-list {
	display: flex;
	justify-content: center;
}

.contents-modal .modal-box .member-list li {
	margin: 0 10px;
	text-align: center;
}

.contents-modal .modal-box .member-list li a {
	display: block;
	width: 70px;
	padding: 12px 0;
	background-color: var(--body-color);
	border-radius: 5px;
	transition: .3s;
}

.contents-modal .modal-box .member-list li a:hover {
	box-shadow: 3px 3px 7px rgba(0, 0, 0, .2);
}

.contents-modal .modal-box .member-list li a img {
	display: block;
	width: 20px;
	margin: 0 auto;
	opacity: .85;
	transition: 0.3s;
}

.contents-modal .modal-box .member-list li a span {
	font-size: .75rem;
	color: var(--text-color)
}

.contents-modal .modal-box .member-list li a:hover img {
	opacity: 1;
}

@media(max-width:767px) {
	.contents-modal .modal-box .member-list li a {
		width: 70px;
	}
}

/* ========== footer ========== */
.footer {
	padding: 30px 0;
	background-color: var(--black-color);
}

.footer-top .footer-logo {
	position: relative;
	margin-bottom: 20px;
}

.footer-top .footer-logo a img {
	height: 25px;
	width: auto;
}

.footer-top .footer-menu {
	display: flex;
	justify-content: flex-start;
}

.footer-top .footer-menu li {
	position: relative;
	margin-right: 20px;
}

.footer-top .footer-menu li a {
	display: block;
	line-height: 20px;
	font-size: var(--small-font-size);
	font-weight: 700;
	color: var(--white-color);
	transition: .3s;
}

.footer-top .footer-menu li a:hover {
	color: var(--primary-color-light);
}

.footer-top .footer-menu li:after {
	content: "";
	position: absolute;
	right: -10px;
	top: 50%;
	width: 1px;
	height: 12px;
	margin-top: -6px;
	background-color: var(--border-color);
}

.footer-top .footer-menu li:last-child:after {
	display: none;
}

.footer-top .footer-link {
	display: flex;
}

.footer-top .footer-link li:first-child {
	margin-right: 15px;
}

.footer-top .footer-link li a {
	display: block;
	position: relative;
	padding: 10px 30px 10px 20px;
	font-size: var(--normal-font-size);
	color: var(--white-color);
	border: 1px solid var(--white-color);
}

.footer-top .footer-link li a small {
	display: block;
	margin-top: 5px;
	font-size: .7em;
	color: var(--border-color-light);
}

.footer-top .footer-link li a img {
	position: absolute;
	top: 50%;
	right: 25px;
	transform: translateY(-50%);
	height: 20px;
	width: auto;
	transition: .3s;
}

.footer-top .footer-link li a:hover img {
	right: 20px;
}

.footer-btm .footer-info {
	position: relative;
	margin: 1.25rem 0;
	font-size: var(--small-font-size);
	color: var(--text-color-light);
}

.footer-btm .footer-info address {
	font-size: var(--small-font-size);
}

.footer-btm .footer-info address a {
	opacity: .8;
	color: var(--white-color);
	transition: .3s;
}

.footer-btm .footer-info address a:hover {
	color: var(--primary-color-light);
}

.footer-btm .copyright {
	margin-top: 10px;
	font-size: var(--small-font-size);
	color: var(--text-color-light);
}

@media (max-width:991px) {
	.footer-top .footer-menu {
		margin-bottom: 20px;
	}
}

@media (max-width:767px) {
	.footer-top .footer-link li {
		flex: 0 0 auto;
		width: 150px;
	}

	.footer-top .footer-link li a {
		font-size: var(--small-font-size);
	}

	.footer-top .footer-link li a small {
		display: none;
	}
}

@media (min-width:992px) {
	.footer {
		padding: 60px 0;
	}

	.footer-top {
		padding-bottom: 30px;
	}

	.footer-top .footer-logo {
		margin-bottom: 25px;
	}

	.footer-top .footer-logo a img {
		height: 30px;
	}

	.footer-top .footer-link {
		justify-content: flex-end;
	}

	.footer-top .footer-link li a {
		padding: 13px 30px 13px 20px;
		min-width: 240px;
	}

	.footer-btm .footer-info,
	.footer-btm .footer-info address {
		margin: 0;
	}
}

/* back to top */
.back-to-top .scroll-up {
	display: block;
	position: fixed;
	z-index: 999;
	right: 15px;
	bottom: -20%;
	width: 2rem;
	height: 2rem;
	line-height: 2rem;
	font-size: var(--small-font-size);
	text-align: center;
	color: var(--white-color);
	background-color: var(--primary-color);
	box-shadow: 2px 2px 4px rgba(0, 0, 0, .35);
	transition: .3s;
}

.back-to-top .scroll-up:hover {
	background-color: var(--primary-color-light);
}

.back-to-top .scroll-up.show-scroll {
	bottom: 15px;
}

/* ========== page Title % submenu ========== */
/* page title */
.page-title {
	position: relative;
}

.page-title-image {
	position: relative;
	width: 100%;
	height: 200px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.page-title-caption {
	position: absolute;
	top: 50%;
	width: 100%;
}

.page-title-caption h2 {
	position: relative;
	margin: 0 0 10px;
	font-size: var(--h1-font-size);
	font-weight: 300;
	color: var(--white-color);
	letter-spacing: 5px;
}

.page-title-caption .breadcrumb {
	display: flex;
	margin: 0;
	padding: 0;
	background: none;
	color: var(--body-color-deep);
}

.page-title-caption .breadcrumb li {
	position: relative;
	padding-right: 30px;
}

.page-title-caption .breadcrumb li::after {
	content: "/";
	opacity: .7;
	position: absolute;
	right: 14px;
	color: var(--body-color-deep);
}

.page-title-caption .breadcrumb li:last-child:after {
	display: none;
}

.page-title-caption .breadcrumb li,
.page-title-caption .breadcrumb a {
	font-size: 13px;
	color: var(--body-color-deep);
}

.page-title-caption .breadcrumb a:hover {
	color: var(--primary-color);
}

@media(min-width:992px) {
	.page-title-image {
		height: 300px;
	}

	.page-title-caption h2 {
		font-size: var(--h1-font-size);
	}
}

/* submenu */
.submenu {
	position: relative;
	padding-left: 45px;
	margin-bottom: 40px;
	border: 1px solid var(--border-color);
	background-color: var(--body-color);
}

.submenu .sub-home-link a {
	display: block;
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	font-size: var(--small-font-size);
	background: var(--primary-color);
	color: var(--white-color);
}

.submenu .sub-home-link a:hover {
	background-color: var(--primary-color-dark);
}

.submenu .submenu-title {
	position: relative;
	min-width: 200px;
	padding: 0 20px;
	cursor: pointer;
}

.submenu .submenu-title:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 100%;
	background-color: var(--border-color);
}

.submenu .submenu-title:after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%) rotate(45deg);
	width: 10px;
	height: 10px;
	border-bottom: 1px solid var(--border-color);
	border-right: 1px solid var(--border-color);
}

.submenu .submenu-title h2 {
	margin: 0;
	height: 45px;
	line-height: 45px;
	font-size: var(--normal-font-size);
}

.submenu .list-submenu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1;
	width: 100%;
	border: 1px solid var(--border-color);
	background-color: var(--body-color);
}

.submenu .list-submenu li {
	margin: 0;
}

.submenu .list-submenu li a {
	display: block;
	padding: 10px 20px;
}

.submenu .list-submenu li a:hover {
	color: var(--primary-color);
}

@media(max-width:767px) {
	.submenu {
		border-width: 1px 1px 0 0;
	}

	.submenu .sub-home-link {
		position: absolute;
		top: 0;
		left: 0;
	}

	.submenu .submenu-title {
		border-bottom: 1px solid var(--border-color);
	}

	.submenu .submenu-title:before {
		left: 0;
	}
}

@media(min-width:768px) {
	.submenu {
		display: flex;
		padding-left: 0;
	}

	.submenu .sub-home-link a {
		width: 60px;
		height: 60px;
		line-height: 60px;
	}

	.submenu .submenu-title:before {
		right: 0;
	}

	.submenu .submenu-title.submenu-title-second {
		margin-left: -1px;
	}

	.submenu .submenu-title h2 {
		height: 60px;
		line-height: 60px;
	}

	.submenu .list-submenu li a {
		padding: 15px 20px;
	}
}

/* basic body */
.sub-basic-body {
	padding: 1.25rem 0 1.5rem;
}

@media (min-width:992px) {
	.sub-basic-body {
		padding: 2.5rem 0 3.125rem;
	}
}

/* ========== index ========== */
#mainVideo {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100vh;
	background: #000;
}

#mainVideo video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#mainVideo .video-text {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	z-index: 10;
	background: rgba(0, 0, 0, 0.3);
}

#mainVideo .video-text h2 {
	font-size: 6rem;
	font-weight: 900;
	margin-bottom: 30px;
	color: #fff;
	letter-spacing: -4px;
	line-height: 130%;
}

#mainVideo .video-text .video-btn {
	display: inline-block;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	padding: 14px 25px;
	border-radius: 100px;
	font-size: 1.55rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
	/* border: 1px solid rgba(255, 255, 255, 0.3); */
	margin-top: 10px;
	letter-spacing: -0.5px;
}

#mainVideo .video-text .video-btn:hover {
	background: rgba(0, 0, 0, 0.9);
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width:991px) {
	#mainVideo {
		height: 60vh;
		min-height: 300px;
	}

	#mainVideo .video-text h2 {
		font-size: 2.5rem;
		margin-bottom: 20px;
	}

	#mainVideo .video-text .video-btn {
		padding: 12px 30px;
		font-size: 1.125rem;
	}
}



.section {
	position: relative;
}

.section-p-tb {
	padding: 3.125rem 0;
	/* 50px*/
}

.section-m-tb {
	margin: 3.125rem 0;
}

.section-bg-img {
	background-image: url('../image/bg_image.jpg');
	background-repeat: no-repeat;
	background-size: cover;
}

.section .bar-left {
	border-bottom: 1px solid var(--body-color-deep);
}

@media (min-width: 992px) {
	.section-p-tb {
		padding: 5rem 0;
		/* 80px*/
	}

	.section-m-tb {
		margin: 5rem 0;
	}

	.section-bg-img {
		margin-left: 2rem;
		margin-right: 2rem;
	}

	.section-m {
		margin: 15px 0 20px;
	}

	.section .bar-left {
		border-bottom: 0 none;
		border-right: 1px solid var(--body-color-deep);
	}
}

/* 페이지 로더 */
.page-loader {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
	height: 100%;
	background: var(--black-color);
}

.page-loader .logo-loader {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.page-loader .logo-loader img {
	height: 40px;
	width: auto;
}

/*---------- Counsel Btn ----------*/
.counsel-btn {
	display: block;
	position: fixed;
	bottom: 60px;
	right: 0px;
	width: 140px;
	/* 기본 크기 */
	z-index: 1000;
	transition: all 0.3s ease;
}

.counsel-btn img {
	width: 100%;
	height: auto;
	display: block;
}

.counsel-btn .img-02 {
	display: none;
}

.counsel-btn:hover .img-01 {
	display: none;
}

.counsel-btn:hover .img-02 {
	display: block;
}

.counsel-btn:hover {
	transform: translateY(-5px);
}

@media (max-width:991px) {
	.counsel-btn {
		bottom: 20px;
		right: 20px;
		width: 70px;
		/* 모바일 크기 */
	}
}