html, body {margin:0; padding:0; overflow-x:hidden; font-family: 'Poppins', 'Pretendard', sans-serif; color: #0c0c0c; cursor: default;}


/******************* animation *******************/
@keyframes fade  {
	0% {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fadeInUp  {
	0% {
		opacity: 0;
		transform: translate3d(0, 80%, 0);
	}
	to {
		opacity: 1;
		transform: translateZ(0);
	}
}

@keyframes scaleUp  {
	0% {
		opacity: 0;
		transform: scale(0);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes zoomIn  {
	0% {
		width: 100%;
		border-radius: 0px;
		transform: scale(1.1);
	}
	to {
		width: 95%;
		border-radius: 30px;
		transform: scale(1);
	}
}
/******************* animation *******************/


/****************** Çì´õ ******************/
header.header {
	position: fixed;
	width: 100%;
    height: 100px;
    margin: 0 auto;
    background: #fff;
    z-index: 10;
}
header.header::before {
    content: '';
    display: inline-block;
    width: 100%;
    opacity: 0.1;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}
header.header.hover::before {
    height: 380px;
}
.header .inner {
    position: relative;
    margin: 0 auto;
    padding: 20px 0;
    height: 100px;
}
.s-gnb {
	position: absolute;
    left: 2.5%;
    top: 50%;
    transform: translateY(-50%);
}
.logo {	
	display: inline-block;
    width: 200px;
    vertical-align: middle;
}
.logo a {	
    display: block;
    width: 142px;
    height: 48px;
    background: url("../img/main/logo.png") no-repeat left center / 100%;
    text-indent: -9000px;
}
#gnb {
	display: inline-block;
    vertical-align: middle;
}
#gnb li {
	position: relative;
    display: inline-block;
    margin-right: 38px;
    font-size: 16px;
	text-transform: uppercase;
    cursor: pointer;
}
#gnb li a {
	color: #0c0c0c;
}
#gnb .mMenu > li.active > a {
	font-weight: bold;
	color: #00adec;
}
.gnb-2depth {
	position: absolute;
    width: 100%;
    background: #f9f9f9;
}
#gnb .mMenu .clearfix {
	display: none;
	position: absolute;
    top: 62px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    background: #00adec;
    overflow-x: hidden;
    padding: 15px 20px;
    margin: 0 auto;
	border-radius: 15px;
}
#gnb .mMenu .clearfix.active {
	display: block;
}
#gnb .mMenu .clearfix .item {
	margin-bottom: 5px;
}
#gnb .mMenu .clearfix .item:last-child {
	margin-bottom: 0;
}
#gnb .mMenu .clearfix .item a {
	color: #fff;
    font-size: 15px;
    line-height: 30px;
}
#gnb .mMenu .clearfix a:hover {
	font-weight: bold;
}
.header-right {
	display: flex;
	align-items: center;
	float: right;
	margin: 11px 2.5% 0 0;
	list-style:none
}
.login, .header-right li {	
	display: block;
	margin-right:20px;
	font-size: 14px;
	font-weight: 500;
	color: #0c0c0c;
	cursor: pointer;
}
.login > img {
	margin-right: 8px;
}
.reser-btn a {
	display: block;
	padding: 8px 18px;
	margin-right: 5px;
	font-size: 14px;
	font-weight: 500;
	color: #00adec;
	text-align: center;
	border: 1px solid #00adec;
	border-radius: 50px;
}
.reser-btn a span:first-child {
	margin-right: 6px;
}
.reser-box.active .arrow {
	transform: rotate(0deg);
	transition: all .2s ease-in;
}
.reser-box.active .arrow {
	transform: translateY(-2px) rotate(180deg);
}
.inner:after {
	content: "";
	display: block;
	clear: both;
}
/****************** Çì´õ ******************/

/****************** ¸ð¹ÙÀÏ ¸Þ´º ******************/
.menuWrap {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    padding: 80px 6% 0;
    background-color: #fff;
    transition: right 0.3s ease-in-out;
    box-sizing: border-box;
	overflow-y: scroll;
    z-index: 10;
}
.menuWrap.show {
	right: 0;
}
.moItem {
	width: 100%;
    height: 100%;
    padding: 20px 0;
    border-bottom: 1px solid #ededed;
	cursor: pointer;
}
.moItem:first-child {
	padding-top: 0;
}
.moItem a {
	display: block;
	padding: 0;
	font-size: 18px;
	line-height: initial;
	color: #333;
}
.moItem > a {
	font-size: 24px;
	font-weight: 600;
}
.menu-title {
	text-align: center;
}
.moItem > a .mArrow, .moSub a .mArrow {
	float: right;
	margin-top: 12px;
	vertical-align: bottom;
	transition: all .4s ease-in;
}
.moItem > a.active .mArrow {
	transform: rotate(180deg);
}
.moItem > a.active {
	color: #00adec;
}
.moItem span:first-child {
	display: block;
	float: left;
	font-size: 26px;
	font-weight: 500;
}
.moItem span:last-child {
	display: block;
	float: right;
	font-size: 30px;
	font-weight: 400;
	transform: rotate(0deg);
	transition: all .3s ease-in;
}
.moItem:hover span:last-child {
	transform: rotate(360deg);
}
.moItem:after {
	content: "";
	display: block;
	clear: both;
}
.moSub {
	display: none;
	position: relative;
    margin: 0 auto;
    padding: 0 0 15px;
}
.moSub li {
	width: 100%;
	display: block;
}
.moSub a {
	margin: 14px 0;
}
.moSub li:last-child a {
	margin-bottom: 0;
}
.moSubIn a {
	margin: 0;
	padding: 5px 18px;
}
.moSub .add > a {
	padding: 10px 0 4px;
    margin: 0;
}
.moSubIn {
	padding-bottom: 14px;
	opacity: 0.75;
}
.add .moSubIn a {
	font-size: 16px;
}
.add:last-child .moSubIn {
	padding-bottom: 0;
}
.moItem > a:after, .moSub a .mArrow:after {
	content: "";
	display: block;
	clear: both;
}
/****************** ¸ð¹ÙÀÏ ¸Þ´º ******************/

/****************** ÇÜ¹ö°Å ¸Þ´º ******************/
.menuBtn {
	display: none;
	position: absolute;
	top: 50%;
    right: 5%;
	transform: translateY(-50%);
    z-index: 99;
}
.menuBtn.exposure {
	display: block;
}
.hamBtn {
	position: relative;
}
.hamBtn.active .mTrigger span {
	background: #000013;
}
.mTrigger, .closeBtn {
	display: block;
	position: relative;
	width: 28px;
    height: 22px;
	cursor: pointer;
}
.closeBtn, .closeBtn span {
	display: inline-block;
	box-sizing: border-box;
}
.mTrigger span, .closeBtn span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #0c0c0c;
	border-radius: 4px;
}
.mTrigger.active.revers span {
	background: #fff;
}
header.active .mTrigger span, .header:hover .mTrigger span, .closeBtn span {
	background: #333;
}
.mTrigger span:nth-of-type(1), .closeBtn span:nth-of-type(1) {
	top: 0;
}
.mTrigger span:nth-of-type(2), .closeBtn span:nth-of-type(2) {
	top: 10px;
}
.mTrigger span:nth-of-type(3), .closeBtn span:nth-of-type(3) {
	bottom: 0;
}
.mTrigger.active span:nth-of-type(1), .closeBtn span:nth-of-type(1) {
	-webkit-transform: translateY (10px) rotate (-45deg);
	transform: translateY(10px) rotate(-45deg);
}
.mTrigger.active span:nth-of-type(2), .closeBtn span:nth-of-type(2) {
	opacity: 0;
}
.mTrigger.active span:nth-of-type(3), .closeBtn span:nth-of-type(3) {
	-webkit-transform: translateY(-10px) rotate(45deg);
	transform: translateY(-10px) rotate(45deg);
}

.closeBtnWrap {
	position: absolute;
	top: 33px;
    right: 5%;
    z-index: 99;
}
/****************** ÇÜ¹ö°Å ¸Þ´º ******************/


/****************** ÇªÅÍ ******************/
#footer {
	border-top: 1px solid #eeeeee;
}
#footer .section-in {
	padding: 60px 0;
	width: 1400px;
	margin: auto;
}
.ft-top .left, .ft-bottom .left {
	float: left;
}
.ft-bottom .left div {
	display: inline-block;
}
.ft-top .left span {
	display: block;
	font-size: 18px;
}
.ft-top .left a {
	font-size: 30px;
	font-weight: 900;
}
.ft-top .left .tel-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
}
.ft-top .left p {
	font-size: 15px;
}
.ft-top .right, .ft-bottom .right {
	display: flex;
	float: right;
}
.ft-top .right a {
	display: block;
	margin-left: 8px;
	width: 120px;
	padding: 10px 0;
	background: #05a1f2;
	font-size: 14px;
	color: #fff;
	text-align: center;
	border-radius: 50px;
}
.ft-top:after {
	content: "";
	display: block;
	clear: both;
}
.f-line {
	width: 100%;
	height: 1px;
	background: #eaeaea;
	margin: 30px 0;
}
.ft-bottom {
	font-size: 18px;
	line-height: 1.6;
	opacity: 0.8;
}
.ft-bottom .left strong {
	font-weight: 800;
}
.ft-bottom .left li strong {
	margin-right: 10px;
}
.ft-bottom .left li span {
	margin-right: 20px;
}
.ft-bottom .left p {
	margin-top: 20px;
	font-weight: 400;
	opacity: 0.5;
}
.ft-bottom .right a {
	display: block;
	width: 62px;
	height: 62px;
	line-height: 62px;
	background: #f0f0f0;
	border-radius: 100%;
	text-align: center;
}
.ft-top:after, .ft-bottom:after {
	content: "";
	display: block;
	clear: both;
}
/****************** ÇªÅÍ ******************/


/******************* °øÅë *******************/
.sub-top {
	position: relative;
	width: 95%;
	height: 530px;
	margin: 100px auto 0;
	border-radius: 30px;
	z-index: 1;
	transform: scale(1);
	animation: zoomIn 0.8s forwards;
}
.sub-top-txt {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 1400px;
}
.sub-top-txt strong {
	font-size: 66px;
	font-weight: 900;
	color: #fff;
}
.sub-top-txt p {
	font-size: 28px;
	font-weight: 400;
	color: #fff;
	word-break: keep-all;
}
.sub-tit {
	font-size: 34px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	letter-spacing: -0.5px;
	word-break: keep-all;
}
.sub-txt {
	font-size: 26px;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
	word-break: keep-all;
}
.sub-txt strong {
	font-weight: 900;
}
/******************* °øÅë *******************/


/******************* °øÁö»çÇ× *******************/
#bo_list {padding: 120px 0;}
#community .sub-top {
	background: url("../img/sub/subtop_06.png") no-repeat center / cover;
}
/******************* °øÁö»çÇ× *******************/



@media all and (max-width:1551px){
	.section-in, #footer .section-in, .sub-top-txt {width: 80%;}
}

@media all and (max-width:1281px){
	.section-in, #footer .section-in, .sub-top-txt {width: 90%;}
}

@media all and (max-width:1201px){
	header.header, .header .inner {height: 90px;}
	.logo a {width: 120px;}
	#gnb, .header-right {display: none;}
	.menuBtn {display: block;}

	.m-login {margin-bottom: 30px; font-size: 16px;	}
	.m-login li {display: inline-block; list-style: none;}
	.m-login a {display: inline-block; margin-right: 5px; padding-right: 10px; font-size: 14px; border-right: 1px solid #ccc;}
	.login {display: inline-block; margin-right: 5px;}

	.ft-bottom {font-size: 16px;}

	.sub-top {height: 500px; margin: 90px auto 0;}
	.sub-top-txt strong {font-size: 66px;}
	.sub-top-txt p {font-size: 24px;}

	#bo_list {padding: 100px 0;}
}

@media all and (max-width:1025px){
	.ft-bottom {font-size: 14px;}

	#bo_list {padding: 80px 0;}
}

@media all and (max-width:877px){
	.ft-top .left span {font-size: 16px;}
	.ft-top .left a {font-size: 26px;}

	.ft-bottom .left, .ft-bottom .right {float: none;}
	.ft-bottom {display: flex; flex-direction: column-reverse;}
	.ft-bottom .left {margin-top: 15px;}
	.ft-top .left, .ft-top .right {float: none;}
	.ft-top .right {margin-top: 12px;}
	.ft-bottom .right a {width: 56px; height: 56px; line-height: 56px;}
	.ft-bottom .right a:first-child img {width: 24px;}
	.ft-bottom .right a:last-child img {width: 24px;}
	.ft-top .right > a {float: left; width: 110px; max-height: 41px; margin-left: 0; margin-right: 8px;}

	.sub-top {height: 400px;}
	.sub-top-txt strong {font-size: 52px;}
	.sub-top-txt p {font-size: 20px; line-height: 1.3;}
}

@media all and (max-width:641px){
	.ft-top .left > span {margin-top: 20px;}
	.ft-top .right a:first-child {margin-bottom: 8px;}
	.ft-bottom .left p {margin-top: 15px; font-size: 13px;}

	.sub-top {height: 350px; border-radius: 20px;}
	.sub-top-txt strong {font-size: 44px;}
	.sub-top-txt p {font-size: 18px;}
}

@media all and (max-width:481px){
	header.header, .header .inner {height: 84px;}
	.logo a {width: 110px;}
	.mTrigger, .closeBtn {width: 24px; height: 18px;}
	.mTrigger span:nth-of-type(2), .closeBtn span:nth-of-type(2) {top: 8px;}
	.closeBtn span:nth-of-type(1) {top: -4px;}

	.moItem {padding: 14px 0;}
	.moItem span:first-child {padding-top: 8px; font-size: 20px;}
	.moItem a {font-size: 15px;}
	.m-login {font-size: 14px;}

	.f-line {margin: 20px 0;}

	#footer .section-in {padding: 40px 0;}
	.ft-top, .ft-top .right {display: block;}
	.ft-top .right > a img {width: 14px;}
	.ft-top .left .tel-wrap {flex-direction: column; gap: 0; align-items: baseline;}
	.ft-top .left .tel-wrap span {display: none;}

	.sub-top {height: 300px; margin-top: 84px; border-radius: 15px;}
	.sub-top-txt strong {font-size: 32px;}
	.sub-top-txt p {font-size: 15px;}
}