@charset "utf-8";

/* 내용관리 */
#ctt {width:1000px; margin:0 auto; padding:20px;background:#fff}
.ctt_admin {text-align:right;display: none;}
#ctt header h1 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#ctt_con {padding:10px 0;line-height:1.6em}
#ctt_con img{max-width:100%;height:auto}
.ctt_img {text-align:center}

/* topLogo */
.topLogo{
	position: absolute;
	top: 40px;
	left: 5%;
}

/* formBox */
.formBox article{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.formBox article > div{
	width: 50%;
	box-sizing: border-box;
	padding: 30px;
	box-shadow: rgba(0,0,0,0.1) 0 0 15px;
}

.formBox article > div.rightBox{
	background: #f5f6f9;
}

.formBox article > div.rightBox{
	position: relative;
}

.formBox article > div.rightBox .btnUl{
	display: flex;
	align-items: center;
	margin-left: 10px;
}

.formBox article > div.rightBox .btnUl li{
	font-size: 15px;
	background: #fff;
	color: var(--mainCol);
	border: 1px solid #ccc;
	padding: 7px 15px;
	line-height: 1;
	cursor: pointer;
}

.formBox article > div.rightBox .btnUl li.on{
	background: var(--mainCol);
	color: #fff;
}

.formBox article > div.rightBox .btnUl li + li{
	margin-left: 5px;
}

.formBox article > div.rightBox .mapUl li{
	display: none;
}

.formBox article > div.rightBox .mapUl li.on{
	display: block;
}

.formBox article > div h3{
	font-family: "sc7";
	font-size: 30px;
	line-height: 1;
	border-bottom: 2px solid #2a2a2a;
	padding-bottom: 20px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
}

.formBox article > div.rightBox p{
	font-size: 18px;
	line-height: 2;
	color: #616161;
	margin-top: 15px;
}

.formBox article > div.rightBox p strong{
	color: #212121;
}

.formBox article > div.rightBox iframe{
	width: 100%;
	height: 350px;
}

.formBox article > div.leftBox p{
	font-size: 18px;
	color: #616161;
	line-height: 1.3;
	margin-bottom: 40px;
}

.formBox form{
	margin: auto;
}

.formBox form ul{
	margin-bottom: 20px;
}

.formBox form ul li{
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.formBox form ul li:last-child{
	margin-bottom: 0;
}

.formBox form ul li input,
.formBox form ul li textarea{
	width: 60%;
	height: 45px;
	line-height: 45px;
	box-sizing: border-box;
	border: 0px solid #ccc;
	background: #f5f6f9;
	padding-left: 10px;
	font-size: 16px;
}

.formBox form ul li textarea{
	width: 100%;
	height: 150px;
}

.formBox form .agree{
	display: flex;
	align-items: center;
	box-sizing: border-box;
}

.formBox form .agree1{
	margin-bottom: 10px;
}

.formBox form .agree label{
	font-size: 14px;
	margin-left: 10px;
	line-height: 1;
}

.formBox form .agree a{
	font-size: 14px;
	display: block;
	line-height: 1;
	margin-left: 5px;
}

.formBox form .sendBtn{
	display: block;
	width: 250px;
	height: 50px;
	line-height: 50px;
	background: var(--mainCol);
	color: #fff;
	font-size: 20px;
	font-weight: 400;
	text-align: center;
	margin: 20px auto 0;
	font-family: "sc7";
}

/* bottomBox */
.bottomBox{
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	background: #fff;
}

.bottomBox .inner{
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* 방침 */
.paperBg{
	background: rgba(0,0,0,0.7);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 50;
	display: none;
}

.paperBox{
	position: fixed;
	top: 50%;
	left: 50%;
	width: 80%;
	max-width: 1000px;
	height: 80%;
	transform: translate(-50%,-50%);
	background: #fff;
	z-index: 51;
	display: none;
}

.paperBox ul{
	display: flex;
}

.paperBox ul li{
	width: 100%;
	font-size: 15px;
	text-align: center;
	background: #ccc;
	color: #333;
	height: 50px;
	line-height: 50px;
	cursor: pointer;
	transition: all 0.3s;
}

.paperBox ul li.on,
.paperBox ul li:hover{
	background: #333;
	color: #fff;
}

.paperBox article{
	position: relative;
	top: 0px;
	left: 0;
	width: 100%;
	height: calc(100% - 120px);
	box-sizing: border-box;
	padding: 20px 30px;
	overflow-y: auto;
}

.paperBox article h3{
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 30px;
}

.paperBox article div{
	font-size: 13px;
	line-height: 1.5;
	display: none;
}

.paperBox article div.on{
	display: block;
}

.paperBox .close{
	width: 200px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	color: #fff;
	background: #333;
	margin: 15px auto;
	display: block;
	cursor: pointer;
}


/* ------------------------------------------------------------------ 1000px */
@media screen and (max-width: 1000px){

/* formBox */
.formBox article > div{
	width: 100%;
	padding: 5vw;
	box-shadow: rgba(0,0,0,0.1) 0 0 3vw;
}

.formBox article > div.rightBox{
	margin-top: 5vw;
}

.formBox article > div h3{
	font-size: 4vw;
	border-bottom: 2px solid #2a2a2a;
	padding-bottom: 4vw;
	margin-bottom: 4vw;
}

.formBox article > div.rightBox .btnUl{
	margin-left: 2vw;
}

.formBox article > div.rightBox .btnUl li{
	font-size: 3.5vw;
	padding: 2vw 4vw;
	line-height: 1;
	cursor: pointer;
}

.formBox article > div.rightBox p{
	font-size: 2.5vw;
	margin-top: 3vw;
}

.formBox article > div.rightBox iframe{
	height: 50vw;
}

.formBox article > div.leftBox p{
	font-size: 2.5vw;
	margin-bottom: 5vw;
}

.formBox form ul{
	margin-bottom: 4vw;
}

.formBox form ul li{
	margin-bottom: 3vw;
}

.formBox form ul li input,
.formBox form ul li textarea{
	width: 70%;
	height: 10vw;
	line-height: 10vw;
	padding-left: 2vw;
	font-size: 3vw;
}

.formBox form ul li textarea{
	height: 30vw;
	width: 100%;
}

.formBox form .agree1{
	margin-bottom: 2vw;
}

.formBox form .agree input{
	width: 3vw;
}

.formBox form .agree label{
	font-size: 2.5vw;
	margin-left: 2vw;
}

.formBox form .agree a{
	font-size: 2.5vw;
	margin-left: 1vw;
}

.formBox form .sendBtn{
	width: 40vw;
	height: 12vw;
	line-height: 12vw;
	font-size: 4vw;
	margin: 4vw auto 0;
}

.bottomBox .inner{
	height: 50px;
}

.bottomBox .inner .bottomLogo{
	width: 30%;
}

.bottomBox .inner .bottomLogo img{
	width: 100%;
}

.paperBox ul li{
	font-size: 3vw;
	height: 10vw;
	line-height: 10vw;
}

.paperBox article {
    height: calc(100% - 30vw);
    padding: 5vw 7.5%;
    overflow-y: auto;
}

.paperBox article h3 {
    font-size: 4vw;
    margin-bottom: 5vw;
}

.paperBox article div{
	font-size: 3vw;
}

.paperBox .close {
    max-width: 200px;
	width: 50%;
    height: 10vw;
    line-height: 10vw;
    text-align: center;
    color: #fff;
    background: #333;
    margin: 5vw auto;
    display: block;
    cursor: pointer;
	font-size: 3vw;
}


}