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

	/* font & size - 폰트 사이트 계산은 https://nekocalc.com/px-to-rem-converter 참고해 변환 확인합니다. */
	--basic-font: 'Noto Sans KR', sans-serif;
	--en-font: 'Raleway', 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;
}
.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;
    overflow: hidden;
    padding: 5px 20px;
	font-size: var(--smaller-font-size);
    color: var(--white-color);
    border-width: 1px;
    border-style: solid;
    border-color: var(--primary-color);
    background-color: var(--primary-color);
	border-radius: 15px;
	transition: .3s;
}
.btn-more a:hover {
    border-color: var(--primary-color-dark);
    background-color: var(--primary-color-dark);
}
.btn-more.btn-wht a {
    border-color: var(--white-color);
    background-color: var(--white-color);
    color: var(--title-color);
}
@media(min-width:992px) {
    .btn-more a {
        padding: 8px 25px;
		border-radius: 18px;
    }
}
.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 {
	padding-top: 60px;
	background-color: var(--body-color);
}

.wrapper-inner.box-layout {
	max-width: 1320px;
	margin: 0 auto;
}
@media (min-width:991px){
	.wrapper-inner {
		padding-top: 80px;
	}
}

/* ========== Header ========== */
.header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	background-color: var(--body-color);
	transition: .3s;
}
.header .header-inner {
	display: flex;
	flex-wrap: wrap;
}
#header-fixed.header {
	position: fixed;
}
#header-fixed.header.header-shadow, .header:hover {
	box-shadow: 0 3px 3px rgb(0 0 0 / 15%);
}
@media (min-width:992px){
	.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;
	max-height: 30px;
}
@media (min-width:992px){
	.header-logo {
		margin: 22px 0;
	}
	.header-logo a img {
		max-height: 36px;
	}
}

/* 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 {
		padding: 0 20px;
	}
	.gnb-wrap .gnb .gnb-nav > li > a {
		display: block;
		padding: 0 15px;
		line-height: 80px;
		font-size: var(--normal-font-size);
		color: var(--text-color);
	}
	.gnb-wrap .gnb .gnb-nav > li > a:hover, .gnb-wrap .gnb .gnb-nav > li.active > a {
		color:var(--primary-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: var(--body-color);
	    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(--text-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(--primary-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(--body-color-deep);
		background-color: var(--body-color);
	    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(--text-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(--primary-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: 30px;
	height: 30px;
	line-height: 30px;
	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 {
		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;
	border-top: 1px solid var(--border-color-light);
}

.footer-top .d-f {
	display: flex;
	justify-content: space-between;
}
.footer-top .footer-logo {
	position: relative;
}
.footer-top .footer-logo a img {
	max-height: 30px;
}
.footer-top .footer-menu {
	display: flex;
	justify-content: flex-start;
	margin: 10px 0 0;
	padding: 0;
	list-style: none;
}
.footer-top .footer-menu li {
	margin-right: 10px;
}
.footer-top .footer-menu li a {
	display: block;
	line-height: 20px;
	font-size: var(--small-font-size);
	color: var(--text-color-light);
}
.footer-top .footer-menu li a:hover {
	color: var(--primary-color);
}

.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 span {
	display: block;
}
.footer-btm .footer-info address a {
	opacity: .8;
	color: var(--primary-color);
	transition: .3s;
}
.footer-btm .footer-info address a:hover {
	opacity: 1;
}
.footer-btm .notification {
	margin-bottom: 0;
	font-size: var(--small-font-size);
	color: var(--text-color-light);
}
.footer-btm .sns-list {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 20px;
}
.footer-btm .sns-list li a {
	display: block;
	opacity: .8;
	width: 20px;
	height: 20px;
	line-height: 20px;
	font-size: var(--small-font-size);
	color: var(--primary-color);
	text-align: center;
	transition: .3s;
}
.footer-btm .sns-list li a:hover {
	opacity: 1;
}
.footer-btm .copyright {
	font-size: var(--smaller-font-size);
	color: var(--text-color-light);
}

@media (min-width:992px){
	.footer {
		padding: 30px 0;
	}
	.footer-top {
		padding-bottom: 20px;
	}
	.footer-top .footer-menu {
		justify-content: flex-end;
		margin: 0;
	}
	.footer-top .footer-menu li {
		margin: 0 0 0 10px;
	}
	.footer-top .footer-menu li a, .footer-btm .footer-info, .footer-btm .notification, .footer-btm .copyright {
		font-weight: 300;
	}
	.footer-top .footer-menu li a {
		line-height: 30px;
	}
	.footer-btm .footer-info, .footer-btm .footer-info address {
		margin: 0;
	}
	.footer-btm .sns-list {
		justify-content: flex-end;
		margin: 0 0 5px;
	}
	.footer-btm .copyright {
		text-align: right;
	}
}

/* back to top */
.back-to-top .scroll-up {
	display: block;
	position: fixed;
	z-index: 999;
	right: 1rem;
	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);
	transition: .3s;
}
.back-to-top .scroll-up:hover {
	background-color: var(--primary-color-light);
}
.back-to-top .scroll-up.show-scroll {
	bottom: 5rem;
}

/* ========== page Title % submenu ========== */
/* page title */
.page-title {
    position: relative;
	background: rgb(238,238,238);
	background: linear-gradient(180deg, rgba(238,238,238,0) 0%, rgba(255,235,238,1) 100%);
}
.page-title .page-title-inner {
	position: relative;
}
.page-title .page-title-caption {
	padding: 50px 0;
}
.page-title .page-title-caption h2 {
    position: relative;
    margin: 0 0 10px;
    font-size: var(--h1-font-size);
    font-weight: 300;
    color: var(--text-color);
    letter-spacing: 5px
}
.page-title .page-title-caption .breadcrumb {
    display: flex;
    margin: 0;
    padding: 0;
    background: none;
}
.page-title .page-title-caption .breadcrumb li {
	position: relative;
	padding-right: 30px;
}
.page-title .page-title-caption .breadcrumb li::after {
	content: "/";
	opacity: .7;
	position: absolute;
	right: 15px;
	color: var(--text-color);
}
.page-title .page-title-caption .breadcrumb li:last-child:after {
	display: none;
}
.page-title .page-title-caption .breadcrumb li,
.page-title .page-title-caption .breadcrumb a {
    font-size: var(--smaller-font-size);
	color: var(--text-color);
}
.page-title .page-title-caption .breadcrumb a:hover {
    color: var(--primary-color);
}
.page-title .page-title-image {
}
.page-title .page-title-image img {
	max-height: 100%;
	width: auto;
}

@media(max-width:991px) {
	.page-title .page-title-image {
		opacity: .7;
		position: absolute;
		right: 15px;
		top: 50%;
		transform: translateY(-50%);
		height: 100%;
		padding: 10px 0;
	}
}
@media(min-width:992px) {
	.page-title-inner {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
	.page-title .page-title-caption {
		flex: 0 0 auto;
		width: 50%;
		padding: 30px 0;
		text-align: right;
	}
	.page-title .page-title-caption .breadcrumb {
		justify-content: flex-end;
		margin-right: -20px;
	}
	.page-title .page-title-image {
		flex: 0 0 auto;
		width: 50%;
		height: 270px;
		padding: 15px;
	}
}
@media(min-width:1200px) {
	.page-title-image {
	}
}
/* 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;
}
@media (min-width:992px){
	.sub-basic-body {
		padding: 2.5rem 0;
	}
}

/* ========== index ========== */
.section-p-tb {
	padding: 3rem 0;
}
.section-bg {
	position: relative;
	padding: 50px 0;
	background: rgb(238,238,238);
	background: linear-gradient(180deg, rgba(238,238,238,1) 0%, rgba(255,235,238,1) 100%);
}
.shape-divider-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.shape-divider-top svg {
    position: relative;
    display: block;
    width: calc(108% + 1.3px);
    height: 48px;
}
.shape-divider-top .shape-fill {
    fill: var(--body-color);
}
.shape-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}
.shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(108% + 1.3px);
    height: 48px;
}
.shape-divider-bottom .shape-fill {
    fill: var(--body-color);
}
@media (min-width: 992px){
	.section-p-tb {
		padding: 4rem 0;
	}
	.section-bg {
		padding: 100px 0;
	}
	.shape-divider-top svg,
	.shape-divider-bottom svg {
		height: 98px;
	}
}
/* 페이지 로더 */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: var(--body-color);
}
.page-loader .logo-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}
.page-loader .logo-loader img {
    max-height: 40px;
    width: auto
}