/* 스크롤 */
/*
.scroll-a {
	overflow:overlay;
	overflow-x: hidden;
}
.scroll-a::-webkit-scrollbar {
	width:5px;
}
.scroll-a::-webkit-scrollbar-thumb {
	height: 20%;
	background-color: rgba(255,255,255,0.2);
	border-radius: 20px;  
}
.scroll-a::-webkit-scrollbar-track {
	background-color: transparent;
}
*/

#header {}
.head {}

#header .head .tel_inq {
	line-height:1.5rem;
}
#header .head .tel_inq h3{
	font-family: 'dabangu', sans-serif;
	font-weight:400;
	font-size:1.5rem;
	color:#ff3368;
}
#header .head .tel_inq p {
	font-family: 'dabangu', sans-serif;
	font-weight:400;
	font-size:2.1rem;
}
#header .head > ul {
	display:flex;
	align-items: flex-end;
	width:1000px;
	margin:20px auto;
}
#header .head > ul li {
	flex: 0 0 33.3%;
}
#header .head > ul li:nth-child(3) {
	text-align:right;
}

#header .head .logo {
	background:url('../img/logo.png') no-repeat;
	width:100px;
	height:100px;
	margin:0 auto;
	display:table;
	font-size:0;
	text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}
#header .head .btn_sns {}
#header .head .btn_sns > a {
	border:1px solid rgba(0,0,0,0.1);
	border-radius:100%;
	width:40px;
	height:40px;
	display:inline-block;
	text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
	transition: all 0.2s ease-in-out;
}
#header .head .btn_sns > a._01 {
	background:url('../img/icon_sns_blog.jpg') center center no-repeat;
}
#header .head .btn_sns > a._02 {
	background:url('../img/icon_sns_facebook.jpg') center center no-repeat;
}
#header .head .btn_sns > a._03 {
	background:url('../img/icon_sns_instargram.jpg') center center no-repeat;
}
#header .head .btn_sns > a._04 {
	background:url('../img/icon_sns_youtube.jpg') center center no-repeat;
}
#header .head .btn_sns > a:hover {
	border:1px solid rgba(0,0,0,0.3);
}


#header > .menu {
	background:#ff3368;
	position: relative;
}
#header > .menu > div {
	display:flex;
	align-items: center;
	justify-content: space-between;
	width:1000px;
	margin:0 auto;
}
#header > .menu > div > a {
	color:#FFF;
	font-family: 'dabangu', sans-serif;
	font-weight:400;
	font-size:1.8rem;
	padding:15px 0 8px 0;
	transition: all 0.3s ease-in-out;
	position:relative;
}
#header > .menu > div > a:hover {
	color:#fff000;
	transform: translate(-10px, 0px);
}
#header > .menu > div > a::after {
	content:"\f1e8";
	font-family:material symbols outlined;
	font-size:1.9rem;
	opacity:0;
	position:absolute;
	color:#fff000;
	right:0;
	bottom:10px;
	opacity:0;
	transition: all 0.3s ease-in-out;
}
#header > .menu > div > a:hover::after {
	right:-35px;
	bottom:10px;
	opacity:1;
}
#header > .menu.scrollOn {
	position:fixed;
	top:0;
	left:0;
	right:0;
	z-index:99;
}

/* 스와이프 배너 */
.swiper {
	width: 100%;
	height: 100%;
}
.swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}
.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.swiper {
	margin-left: auto;
	margin-right: auto;
}
*{--swiper-theme-color: #ff3368;}
/* 스와이프 배너 */

/* 공통 */
/* 이미지형 타이틀 */
.cont_title {
	text-align:center;
	margin-bottom:40px;
}
.cont_title > img {
	margin-bottom:10px;
}
.cont_title .s_fo {
	font-size:1.6rem;
	font-weight:100;
}
.cont_title .s_fo2 {
	font-size:2rem;
}
.cont_title span {
	color:#d70000;
}
/* 스크롤 앵커 */
#div1, #div2, #div3, #div4, #div5, #div6 {
	height:60px;
}
/* 정렬 */
.center {
	text-align:center;
}
.right {
	text-align:right;
}

/* 페이징 */
.page {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	margin:20px 0 0 0;
}
.page .prev i, .page .next i{
	color:rgba(0,0,0,0.3);
	font-size:1.8rem;
	line-height:2rem;
	cursor:pointer;
}
.page .prev i:hover, .page .next i:hover{
	color:rgba(0,0,0,1);
	transition: all .4s;
}
.page .num ul{
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
}
.page .num ul li {
	border:1px solid #d4d4d4;
	list-style:none;
	color:rgba(0,0,0,0.6);
	border-radius:3px; 
	padding:3px 11px;
	cursor:pointer;
	margin-left:-1px;
}
.page .num ul li:hover {
	color:#aaaaaa;
	background:rgba(0,0,0,0.1);
	border-color:#aaaaaa;
	transition: all .4s;
	z-index:1;
	position:relative;
}
.page .num .now {
	color:#727272;
	background:#FFFFFF;
	border-color:#aaaaaa;
	z-index:1;
}

/* 테이블 01 */
.table_cont01 {}
.table_cont01 > table {
	width:100%;
	table-layout:fixed;
	border-collapse: collapse;
	border-top:2px solid #333;
}
.table_cont01 > table th {
	border-bottom:1px solid rgba(0,0,0,0.1);
	border-right:1px solid rgba(0,0,0,0.1);
	background:rgba(0,0,0,0.02);
	font-weight:400;
	padding:15px 0;
}
.table_cont01 > table th:last-child {
	border-right:none;
}
.table_cont01 > table td {
	border-bottom:1px solid rgba(0,0,0,0.1);
	border-right:1px solid rgba(0,0,0,0.1);
	padding:15px;
	color:rgba(0,0,0,0.5);
}
.table_cont01 > table td:last-child {
	border-right:none;
}
.table_cont01 > table .end {background:rgba(0,0,0,0.02);}
.table_cont01 > table .end td {color:#333;}

/* 테이블 02 */
.table_cont02 {}
.table_cont02 > table {
	width:100%;
	table-layout:fixed;
	border-collapse: collapse;
	border-top:2px solid rgba(0,0,0,0.5);
}
.table_cont02 > table th {
	font-size:0.9rem;
	font-weight:400;
	padding:15px 0;
	border-bottom:1px solid rgba(0,0,0,0.05);
}
.table_cont02 > table td {
	font-size:1rem;
	padding:15px 0;
	border-bottom:1px solid #f4f4f4;
	color:rgba(0,0,0,0.7);
}
.table_cont02 > table td a {color:rgba(0,0,0,0.7);}




/* 01 */
.main_cont01 {
	width:1200px;
	margin:50px auto 100px auto;
	text-align:center;
	word-break:keep-all;
}
.main_cont01 > h2 {
	font-size:2.7rem;
	font-weight:600;
	margin:30px 0;
}
.main_cont01 > p {
	font-size:1.3rem;
	margin:30px 0;
}
.main_cont01 span {color:#d70000;}
.main_cont01 > div {
	font-size:1.3rem;
	font-weight:600;
}

/* 02 */
.main_cont02 {
	width:1200px;
	margin:50px auto 0 auto;
	height:100%;
}
.main_cont02 .introduce_cont {
	position:relative;
}
.main_cont02 .introduce_cont._01 .money {
	position:absolute;
	top:392px;
	left: 63px;
	z-index:2;
}
.main_cont02 .introduce_cont._01 {margin-bottom: -44px;}
.main_cont02 .introduce_cont._02, .main_cont02 .introduce_cont._03, .main_cont02 .introduce_cont._04, .main_cont02 .introduce_cont._05 {margin-bottom: -43px;}
/* 클릭 버튼 */
.main_cont02 .introduce_cont > a {
	position:absolute;
	top: 305px;
	left:45%;
	z-index:10;
}
.main_cont02 .introduce_cont._01 > a {top: 650px;}
.main_cont02 .introduce_cont._02 > a {top: 308px;}
/* 클릭 버튼 */
/* 토글레이어 */
.main_cont02  .click_cont {
	display:none;
	background:#FFF;
	padding:40px 0;
	text-align:center;
	background:url('../img/bg_introduce_white.png') repeat-y;
}

/* 토글레이어 */
.main_cont02 .introduce_bottom {
	background:url('../img/introduce_bottom.png') top no-repeat;
	height:31px;
}
.main_cont02  .click_cont > h2{
	font-size:2.5rem;
	margin-bottom:20px;
}
.main_cont02  .click_cont > p {
	font-size:1.2rem;
}
.main_cont02  .click_cont span {
	color:#d70000;
}

/* 03 */
.main_cont03 {
	margin:50px auto 0 auto;
}
.main_cont03 .menu_tab {
	width:1200px;
	margin:0 auto;
}
.main_cont03 .menu_tab > ul {
	display:flex;
}
.main_cont03 .menu_tab > ul > li {
	flex:1;
	margin:1px;
	text-align:center;
	padding:15px 0;
	font-size:1.1rem;
	border:1px solid rgba(0,0,0,0.2);
	background:rgba(0,0,0,0.05);
	cursor:pointer;
}
.main_cont03 .menu_tab > ul > li.on {
	border:1px solid rgba(0,0,0,0.9);
	background:rgba(0,0,0,0.9);
	color:#FFF;
}
.main_cont03 > ._inner {
	/*background:url('../img/bg_block2.png') no-repeat;*/
	background:url('../img/bg_block.jpg') no-repeat;
	background-size:100% auto;
	height:713px;
}
.main_cont03 .menu_cont {
	display:none;
	overflow:hidden;
	width:1200px;
	margin:0 auto;
	padding:150px 0 0 0;
	position:relative;
}
.main_cont03 .menu_cont.on {display:block;}
.main_cont03 .menu_cont > div {
	height:500px;
}

.owl_row {
	background:#FFF;
	border-radius:5px;
	overflow:hidden;
	text-align:center;
}
.owl_row > div {
	padding:20px;
}
.owl_row > div h3 {
	margin:10px auto 20px auto;
	padding:5px 0;
	color:red;
	font-size:1.4rem;
	border-top:2px solid red;
	border-bottom:2px solid red;
	display:table;
}
.owl_row > div p {
	text-align:center;
}

/* 04 */
.main_cont04 {
	width:1200px;
	margin:50px auto 0 auto;
}
.main_cont04 .photogaller {
	height:700px;
}



/* 05 */
.main_cont05 {
	width:1200px;
	margin:50px auto 0 auto;
}
.main_cont05 > .anne_cont .info01 {
	display:flex;
	justify-content: space-between;
	margin-bottom:10px;
}
.main_cont05 > .anne_cont .info01 li:nth-child(1) {
	font-size:1.2rem;
	font-weight:600;
}
.main_cont05 > .anne_cont .info02 {
	margin-top:10px;
}


/* 06 */
.main_cont06 {
	width:1200px;
	margin:100px auto 0 auto;
}
.main_cont06 .step_cont {
	background:url('../img/img_step.png') ;
	height:794px;
}


/* 07 */
.main_cont07 {
	width:1200px;
	margin:50px auto 0 auto;
}
.main_cont07 ._faq_cont {
	border-top:1px solid rgba(0,0,0,0.3);
}
.main_cont07 ._faq_cont ._title {
	position: relative;
	font-size: 1.2rem;
	font-weight: normal;
	color: #fff;
	cursor: pointer;
	margin:0;
	color:#333;
	border-bottom:1px solid #dbdbdb;
	padding:30px 0;
}
.main_cont07 ._faq_cont ._title > span {
	border:1px solid #d70000;
	background:#d70000;
	color:#FFF;
	height:35px;
	width:35px;
	display:inline-block;
	text-align:center;
	line-height:30px;
	border-radius:100%;
	font-size:1rem;
	margin-right:10px;
}
.main_cont07 ._faq_cont ._title:hover, .main_cont07 ._faq_cont ._title:active, ._title.open { 
	
}
.main_cont07 ._faq_cont ._title::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 25px;
	width: 15px;
	height: 2px;
	transform: rotate(90deg);
	background: #333;
	transition: all .3s ease-in-out;
}
.main_cont07 ._faq_cont ._title::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 25px;
	width: 15px;
	height: 2px;
	background: #333;
	transition: all .2s ease-in-out;
}
.main_cont07 ._faq_cont ._title.open::before {
	transform: rotate(180deg);
}
.main_cont07 ._faq_cont ._title.open::after {
	opacity: 0;
}
.main_cont07 ._faq_cont ._inner_cont {
	padding:30px;
	border-bottom:1px solid rgba(0,0,0,0.1);
	background:rgba(0,0,0,0.01);
	display:flex;
}
.main_cont07 ._faq_cont ._inner_cont > span:nth-child(1) {
	flex:0 0 35px;
	background:rgba(0,0,0,0.2);
	color:#FFF;
	height:35px;
	width:35px;
	display:block;
	text-align:center;
	line-height:30px;
	border-radius:100%;
	font-size:1rem;
	margin-right:10px;
}




/* 08 */
.main_cont08 {
	width:1200px;
	margin:50px auto 0 auto;
}
.main_cont08 .consulting_cont {
	background:url('../img/img_postcard.png');
	width:1110px;
	height:667px;
	margin:0 auto;
	position:relative;
}
.main_cont08 .consulting_cont ._inner{
	width:420px;
	position:absolute;
	top:115px;
	left:75px;
}
.main_cont08 .consulting_cont ._inner > div:nth-child(1) {
	text-align:right;
	padding:15px 0;
}
.main_cont08 .consulting_cont ._inner ._put {
	display:flex;
	flex-direction: column;
}
.main_cont08 .consulting_cont ._inner ._put input[type="text"] {
	margin-bottom:20px;
}
.main_cont08 .consulting_cont ._inner ._put textarea {
	background:#FFF;
	height:240px;
}
.main_cont08 .consulting_cont ._inner ._put textarea::placeholder {
	font-size:1rem;
	font-weight:300;
}
.main_cont08 .consulting_cont ._inner button {
	border:1px solid #333;
	background:#333;
	color:#FFF;
	display:block;
	width:100%;
	font-size:1.1rem;
	padding:10px 0;	
	margin-top:20px;
	cursor:pointer;
}



/* 09 */
.main_cont09 {
	width:1200px;
	margin:50px auto 100px auto;
}



/* 카피라이터 */
#footer {
	border-top:1px solid rgba(0,0,0,0.05);
	padding:30px 0;
	text-align:center;
}
#footer > ul {
	width:800px;
	display:flex;
	justify-content: center;
	flex-wrap: wrap;
	margin:0 auto 30px auto;
	font-size:0.9rem;
	color:#333;
}
#footer > ul > li:after {
	content:"";
	margin:0 15px;
	color:rgba(0,0,0,0.2);
}
#footer > ul > li span {
	margin-right:5px;
	color:rgba(0,0,0,0.6);
}
#footer > ul > li:last-child::after {
	content:"";
	margin:0;
}
#footer > ul > li > a {
	color:rgba(0,0,0,0.7);
}
#footer > div {
	color:rgba(0,0,0,0.4);
	font-size:0.8rem;
}

.top_scroll {
	border-radius:100%;
	border:1px solid #d70000;
	background:#d70000;
	color:#FFF;
	width:50px;
	height:50px;
	text-align:center;
	line-height:40px;
	position: fixed;
	right: 50px;
	bottom: 50px;
	box-shadow: 10px 10px 25px rgb(0 0 0 / 10%);
	-moz-box-shadow: 5px 5px 15px rgba(0,0,0,.2);
	-webkit-box-shadow: 5px 5px 15px rgb(0 0 0 / 20%);
	display: none;
}
.top_scroll i {font-size:2rem;}


/* 모달 */
.modal {
	padding:0 !important;
	max-width:1000px !important;
}
.modal-content .title {
	font-size:1.3rem;
	font-weight:400;
	text-align:left;
	padding:20px 20px 0 20px;
}
.blocker {
	z-index: 999 !important;
	padding:0 !important;
}
.modal-content .count > ul{
	display:flex;
	padding:20px;
	border-bottom:1px solid rgba(0,0,0,0.05);
}
.modal-content .count > ul > li {
	margin-right:20px;
	color:rgba(0,0,0,0.5);
}
.modal-content .modal_inner {
	padding:20px;
}
.modal-content ._board_btn {
	padding:20px;
	text-align:center;
}
.modal-content ._board_btn a {
	border:1px solid rgba(0,0,0,0.2);
	border-radius:3px;
	display:inline-block;
	color:rgba(0,0,0,0.6);
	font-size:1rem;
	padding:3px 10px;
}
.modal-content ._board_btn i {
	font-size:1.1rem;
	vertical-align:middle;
}
