@charset "utf-8";

/*========================================================
Contents Common
========================================================*/
html, body { width: 100%; height: 100%; margin: 0; padding: 0; font-size: 16px}
body { font-family: 'Pretendard', 'Malgun Gothic', '맑은 고딕', Dotum, '돋움', sans-serif; line-height: 1.5; color: var(--color-init); font-weight: 400; -webkit-text-size-adjust: 100%; overflow-x: hidden}
*, ::after, ::before { box-sizing: border-box}

.wrapper { position: relative}
.conbox { position: relative; width: 100%; max-width: 1320px; margin: 0 auto}
.conbox.mw1000 { max-width: 1000px}
.conbox.mw900 { max-width: 900px}
.conbox.mw800 { max-width: 800px}
.conbox.mw600 { max-width: 600px}

.conbody { position: relative;}
.conbody::after { content: ""; display: table; clear: both}
.conbody .conbody-in { padding: 100px 0}

@media (max-width: 1400px){
	.conbox { padding: 0 20px}
}
@media (max-width: 991px){
	.conbody .conbody-in { padding: 40px 0 80px 0}
}
@media (max-width: 575px){
	.conbody .conbody-in { padding: 30px 0 80px 0}
}

ul.dot li { position: relative; font-size: 16px; padding-left: 15px}
ul.dot li::before { content: ""; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: var(--color-point1);}
ul.dot li + li { margin-top: 5px}

ul.dot.dot18 li { font-size: 18px}
ul.dot.dot18 li::before { top: 11px}

ul.dot.dot20 li { font-size: 20px}
ul.dot.dot20 li::before { top: 12px}

.not-scroll { position: fixed; overflow: hidden; width: 100%; height: 100%}


/*========================================================
Bootstrap 초기화
========================================================*/
.label { display: inline-flex; align-items: center; height: 18px; font-size: 12px; font-weight: 500; padding: 0 8px}
.label.label-point1 { background: var(--color-point1)}
.small, small { font-size: inherit}
.alert { margin-bottom: 30px}


/*========================================================
Form
========================================================*/
.form-item { position: relative;}

.form-basic { display: block; width: 100%; height: 50px; font-size: 1rem; color: var(--color-init); border: 1px solid #d9d9d9; background: #fff; border-radius: 5px; padding: 0 20px;}
.form-basic:focus { border: 1px solid var(--color-init)}
input[type="file"].form-basic { line-height: 50px}

.form-basic.sm { height: 42px}

select.form-basic { width: auto; background: url("../images/icon_select_arr.svg") right center no-repeat #fff; padding: 0 40px 0 20px}
textarea.form-basic { height: auto; padding: 20px}
textarea.form-basic.basic { height: 200px;}

.form-basic[readonly] { color: #aaa; background: #f0f0f0; cursor: default}
.form-basic[readonly]:focus { border-color: #ccc}
.form-basic:disabled { color: #aaa; background: #f0f0f0; cursor: default}

.form-item + .form-item,
.form-item + .btnn { margin-top: 20px}
.form-item + .btn-line { margin-top: 40px}

.form-flex { display: flex; align-items: center; gap: 10px}

h4.form-tit { font-size: 22px; font-weight: 600; margin-bottom: 30px}
h4.form-tit.between { margin-top: 50px}
.form-card { margin: 50px 0}

label.tit, span.tit { position: relative; display: block; font-weight: 600; font-size: 16px; margin-bottom: 5px}
label.tit.star::after, span.tit.star::after { content: "*"; display: inline-block; color:#ff3835; font-weight: 800; line-height: 1; vertical-align: middle; margin-left: 5px}

.form-flex label.tit, .form-flex span.tit { margin-bottom: 0}

.form-memo { font-size: 15px; color: #888; margin-top: 5px}

@media (max-width: 991px){
	.form-basic { padding: 0 10px}
	select.form-basic { background-size: 20px; padding: 0 30px 0 10px}
	textarea.form-basic { padding: 10px}
	
	h4.form-tit { font-size: 18px; margin-bottom: 20px}
	h4.form-tit.between { margin-top: 30px}
	.form-card { margin: 30px 0}
}


/*** Radio & Checkbox ***/
/* common */
input.checkradio { display: none;}
input.checkradio + label { position: relative; display: inline-flex; align-items: center; font-weight: 400; cursor: pointer;}
input.checkradio + label > span { vertical-align: middle; padding-left: 8px; user-select: none;}
input.checkradio.solo + label { display: flex; justify-content: center; font-size: 0}
input.checkradio.solo + label > span { padding-left: 0; text-indent: -9999px}

input.checkradio + label::before { content: ""; display: inline-flex; flex-shrink: 0; align-items: center; justify-content: center; width: 18px; height: 18px; border:1px solid #cdced6; border-radius: 3px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23bbb' stroke-width='5' stroke-linecap='round' stroke-linejoin='round' class='feather feather-check'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E"); background-position: center; background-size: 12px; background-color: #fff; background-repeat: no-repeat;}

input.checkradio:checked + label::before { content: ""; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' class='feather feather-check'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E"); background-position: center; background-size: 12px; background-color: var(--color-point1); background-repeat: no-repeat; border-color: var(--color-point1)}

/*#616B7D*/

/* Radio */
input[type=radio].checkradio + label::before{ border-radius: 50%; background: #fff;}
input[type=radio].checkradio:checked + label::before { background: #fff; border-color: var(--color-point1)}
input[type=radio].checkradio + label::after { content: ""; position: absolute; top: 50%; left: 5px; width: 8px; height: 8px; background: #cdced6; border-radius: 50%; transform: translateY(-50%)}
input[type=radio].checkradio:checked + label::after { background: var(--color-point1);}

input.checkradio + label + input.checkradio + label { margin-left: 30px}

/* Solo */
input.checkradio.solo + label > span { text-indent: -9999px}


/*========================================================
BTN
========================================================*/
.btnn { position: relative; display: inline-flex; align-items: center; justify-content: center; height: 50px; font-size: 1rem; color: #333; font-weight: 500; line-height: 1; letter-spacing: 0; background-color: transparent; border: 1px solid transparent; user-select: none; white-space: nowrap; cursor: pointer; transition: all 0.15s ease-in-out; border-radius: 5px; padding: 0 20px}
.btnn.btnn-sm { height: 42px}

.btnn.btnn-point1 { color: #fff; background-color: var(--color-point1); border-color: var(--color-point1);}
.btnn.btnn-point1:hover, .btnn.btnn-point1:focus { opacity: 0.9}

.btnn.btnn-point2 { color: #fff; background-color: var(--color-point2); border-color: var(--color-point2);}
.btnn.btnn-point2:hover, .btnn.btnn-point2:focus { opacity: 0.9}

.btnn.btnn-point3 { color: #fff; background-color: var(--color-point3); border-color: var(--color-point3);}
.btnn.btnn-point3:hover, .btnn.btnn-point3:focus { opacity: 0.9}

.btnn.btnn-dark { color: #fff; background-color: var(--color-init); border-color: var(--color-init)}
.btnn.btnn-dark:hover, .btnn.btnn-dark:focus { opacity: 0.9}

.btnn.btnn-gray { color: #fff; background-color: #ccc; border-color: #ccc}
.btnn.btnn-gray:hover, .btnn.btnn-gray:focus { opacity: 0.9}

.btnn.btnn-gray6 { color: #fff; background-color: #666; border-color: #666}
.btnn.btnn-gray6:hover, .btnn.btnn-gray6:focus { opacity: 0.9}

@media (max-width: 991px){
	.btnn { font-size: 14px; padding: 0 15px}
}

/*** btn outline ***/
.btnn.btnn-outline-point1 { color: var(--color-point1); background-color: #fff; border-color: var(--color-point1);}
.btnn.btnn-outline-point1:hover { opacity: 0.9}

.btnn.btnn-outline-point2 { color: var(--color-point2); background-color: #fff; border-color: var(--color-point2);}
.btnn.btnn-outline-point2:hover { opacity: 0.9}

.btnn.btnn-outline-point3 { color: var(--color-point3); background-color: #fff; border-color: var(--color-point3);}
.btnn.btnn-outline-point3:hover { opacity: 0.9}

.btnn.btnn-outline-dark { color: var(--color-init); background-color: #fff; border-color: var(--color-init);}
.btnn.glass { background-color: transparent !important}

.btnn.btnn-outline-gray { color: #666; background-color: #fff; border-color: #ccc;}

/*** btn disabled ***/
.btnn.disabled { color: #c6c6c6 !important; border-color: #DDDEDF !important; background-color: #eee !important; cursor: default; pointer-events: none;}

/*** btn-line ***/
.btn-line { position: relative; display: flex; align-items: center; justify-content: center; gap: 10px}
.btn-line.left { justify-content: flex-start}
.btn-line.right { justify-content: flex-end}
.btn-line.btm { margin-top: 30px}
.btn-line.btm .btnn { padding: 0 25px}

.btn-line.btm.inline { border-top: 1px solid var(--color-init); padding-top: 40px; margin-top: 40px}

@media (max-width: 991px){
	.btn-line.btm .btnn { height: 40px; padding: 0 15px}
	.btn-line.btm.inline { padding-top: 30px; margin-top: 30px}
}

.hand { cursor: pointer !important}


/*========================================================
Modal
========================================================*/
/*.modal-box { display: none; position: fixed !important; top: 50% !important; min-height: 15%; max-height: 80vh; background:#fff; border-radius: 0; box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15); transform: translateY(-50%); z-index: 10}

.modal-head { position: relative; height: 50px}
.modal-head h4 { position: relative; display: flex; align-items: center; height: 100%; font-size: 18px; font-weight: 600; letter-spacing: 0; border-bottom: 1px solid #ddd; padding: 0 20px}

.modal-box .modal-close { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); z-index: 11}
.modal-box .modal-close button { display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; font-size: 0; background: transparent; cursor: pointer;}
.modal-box .modal-close button span { position: relative; display: block; width: 16px; height: 2px; background: transparent}
.modal-box .modal-close button span::before,
.modal-box .modal-close button span::after { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 100%; background: #666}
.modal-box .modal-close button span::before { transform: rotate(45deg)}
.modal-box .modal-close button span::after { transform: rotate(-45deg)}

.modal-head { position: relative}
.modal-body { position: relative; padding: 30px;}
.md-scroll-box { height: calc(80vh - 110px); overflow-y: auto}

.modal-foot { position: relative; background: #f5f5f5; padding: 10px 20px}
.modal-foot.bt { border-top: 1px solid #ddd; }

.modal-box.madal-clear { background: #2f1947; border-radius: 30px}
.modal-box.madal-clear .modal-close button span::before,
.modal-box.madal-clear .modal-close button span::after { background: rgba(255, 255, 255, 0.5)}

@media(min-width : 992px){
	.modal-box { min-width: 500px; max-width: 1100px;}
}
@media(max-width : 991px){
	.modal-box { width: calc(60% - 40px)}
	.modal-body { padding: 15px;}
}
@media(max-width : 767px){
	.modal-box { width: calc(75% - 40px)} 
}
@media(max-width : 575px){
	.modal-box { width: calc(100% - 40px)} 
}*/

.modal-box { display: none; position: fixed; left: 0; top: 0; width: 100%; height: 100%; justify-content: center; align-items: center; background-color: rgba(0, 0, 0, 0.5); overflow: auto; z-index: 20;}
.modal-content { position: relative; max-width: 80%; min-width: 500px; background: #fefefe; border-radius: 10px; padding: 30px}

.modal-head { position: relative; margin-bottom: 20px}
.modal-head h4 { position: relative; display: flex; align-items: center; font-size: 20px; font-weight: 600; letter-spacing: 0;}
.modal-close { position: absolute; right: 0; top: 50%; transform: translateY(-50%); z-index: 11}
.modal-close button { display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; font-size: 0; background: transparent; cursor: pointer}
.modal-close button span { position: relative; display: block; width: 20px; height: 2px; background: transparent}
.modal-close button span:before,
.modal-close button span:after { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 100%; background: #333}
.modal-close button span:before { transform: rotate(45deg)}
.modal-close button span:after { transform: rotate(-45deg)}

.modal-body { position: relative; min-height: 200px; padding: 0}

.scroll-box { height: 50vh; background: #f5f5f5; overflow-y: auto}
.scroll-box .scroll-in { padding: 20px}
.scroll-box.md-terms { max-width: 700px; max-height: 400px; font-size: 14px; color: #444}
.scroll-box.md-terms strong { font-weight: 700}

.modal-body .btn-line { margin-top: 15px}
.modal-body .btn-line .btnn { height: 42px}

@media (max-width: 991px){
	.modal-head h4 { font-size: 18px}
}
@media (max-width: 575px){
	.modal-content { max-width: 90%; min-width: auto; padding: 15px}
	.modal-head { margin-bottom: 15px}
	.modal-head h4 { font-size: 16px; padding-top: 10px;}
	
	.modal-body .btn-line .btnn { height: 38px}
}


/*========================================================
ul Table-style
========================================================*/
.table-style ul.head { display: flex; align-items: center; height: 60px; background: #cfe2ef; border-radius: 5px}
/*.table-style ul.head li { position: relative; color: #265c87; font-weight: 700; line-height: 1.1; text-align: center; padding: 0 5px}*/
.table-style ul.head li { position: relative; color: #08466e; font-weight: 700; line-height: 1.1; text-align: center; padding: 0 5px}
.table-style ul.head li span { display: inline-block; width: 100%;}
.table-style ul.head li span::before { content: ""; position: absolute; left: 0; top: 50%; width: 1px; height: 15px; background: rgba(0, 0, 0, 0.15); transform: translateY(-50%)}
.table-style ul.head li:first-child span::before { content: none}

/* th 2줄 */
.table-style ul.head li.flex-col { display: flex; flex-direction: column}
.table-style ul.head li.flex-col .under-col { display: flex; align-items: center; border-top: 1px solid rgba(0, 0, 0, 0.15); padding-top: 6px; margin-top: 4px}
.table-style ul.head li.flex-col .under-col span { position: relative}
.table-style ul.head li.flex-col .under-col span:first-child::before { content: none}

.table-style ul.body li { position: relative; display: flex; align-items: center; padding: 15px 0; border-bottom: 1px solid #ddd}
.table-style ul.body li > div { position: relative; flex-shrink: 0; display: flex; align-items: center; justify-content: center; gap: 5px; line-height: 1.2; padding: 0 5px}
.table-style ul.body li.no-data { justify-content: center; padding: 50px 0}
.table-style ul.body li > .left { text-align: left; justify-content: flex-start}

/* td 2칸 */
.table-style ul.body li .flex-row { display: flex; align-items: center}
.table-style ul.body li .flex-row .col { position: relative; flex: 1; display: flex; justify-content: center; align-items: center}


/*========================================================
Table
========================================================*/
.ttable th, .ttable td { border-bottom: 1px solid #DAE1E6; padding: 20px 10px}
.ttable th { font-weight: 500; text-align: center; border-top: 2px solid var(--color-init)}

.ttable td.left { text-align: left}
.ttable td.center { text-align: center}
.ttable td.right { text-align: right}

.ttable.table-center td { text-align: center}
.ttable.table-center td.left { text-align: left}
.ttable.table-center td.right { text-align: right}

@media (max-width: 991px){
	.overflow { overflow-x: auto}
	.overflow table.over-700 { min-width: 700px}
}


/*========================================================
Swiper
========================================================*/
.swiper-pagination-bullet { width: 12px; height: 12px}


/*========================================================
Progress
========================================================*/
.progress { width: 100%; height: auto; appearance: none;}
.progress::-webkit-progress-bar { width: 100%; height: 10px; background: #EDEEF0; border-radius: 10px; overflow: hidden}
.progress::-webkit-progress-value { background: linear-gradient(90deg, #0096F5 0%, #A451F7 100%); border-radius: 0px;}


/*========================================================
Member
========================================================*/
.member-con { position: relative; background: var(--bg-init)}

/*.member-con .conbox { max-width: 800px; margin: 0 auto; padding: 90px 0 100px 0}
.member-con .conbox.small { max-width: 600px}*/
.member-con .conbox { padding: 90px 0 100px 0}

h4.member-title { font-size: 30px; font-weight: 700; text-align: center; margin-bottom: 30px}

.member-set { position: relative; background: #fff; border-radius: 20px; padding: 50px}

.member-con .form-item label { display: block; font-size: 18px; font-weight: 700; margin-bottom: 10px}
.member-card { border: 1px solid #ccc; border-radius: 8px; padding: 30px;}
.member-card.noline { border: 0}

@media (max-width: 991px){
	.member-con { background: #fff}
	h4.member-title { font-size: 26px}
	
	.member-set { padding-top: 20px}
}
@media (max-width: 700px){
	.member-con .conbox { padding: 60px 20px 100px 20px}
	.member-set { max-width: 500px; background: none; border-radius: 0; padding: 0; margin: 0 auto}	
}
@media (max-width: 575px){
	h4.member-title { font-size: 24px}
	.member-card { padding: 30px 15px}
}


/*========================================================
Login
========================================================*/
.login-con .member-set .btnn { display: flex; width: 100%; font-size: 18px; border-radius: 10px}
.login-con .form-item label { margin-bottom: 0}

.login-con .link-find { display: flex; justify-content: flex-end; margin: 20px 0}
.login-con .link-find a { position: relative; display: block; background: url("../images/icon_pw.svg") right center no-repeat; padding-right: 25px; }
.login-con .link-find a:hover { color: var(--color-point2); background-image: url("../images/icon_pw_hover.svg")}
.login-con .link-find a span { display: block; margin-top: 2px}

.login-con .memo { font-size: 16px; border-top: 1px solid #ccc; padding-top: 20px; margin-bottom: 15px}


/*========================================================
Find pw
========================================================*/
.find-con label.tit, .find-con span.tit { font-size: 18px; margin-bottom: 10px}
.find-con .member-set { display: flex; flex-direction: column; justify-content: center; min-height: 250px}

@media (max-width: 991px){
	.find-con label.tit, .find-con span.tit { font-size: 16px}
	.find-con .member-set { min-height: 200px}
}


/*========================================================
pw-Change
========================================================*/
.pw-change-con .btn-line { margin-top: 50px}



/*========================================================
Join
========================================================*/
.join-step { display: flex; justify-content: center; margin-bottom: 40px}
.join-step ul { display: flex; justify-content: center}
.join-step ul li { position: relative; display: flex; align-items: center; justify-content: center; width: 60px; height: 60px; background: #f0f0f0; border-radius: 100%;}
.join-step ul li + li { margin-left: 60px}
.join-step ul li + li::before { content: ""; position: absolute; left: -36px; top: 50%; width: 12px; height: 22px; transform: translateY(-50%); background: url("../images/join_step_arr.svg") center center no-repeat}
.join-step ul li img { width: 26px; opacity: 0.4}
.join-step ul li.on img { width: 34px; opacity: 1}

.join-con .member-card { text-align: left;}
.join-con h5.agree-tit { font-size: 18px; font-weight: 700; border-bottom: 1px solid #ccc; padding-bottom: 20px; margin-bottom: 30px}

.join-con .agree-con ul li { display: flex; align-items: center;}
.join-con .agree-con ul li + li { margin-top: 15px}
.join-con .agree-con ul li a { display: inline-flex; align-items: center; justify-content: center; width: 70px; height: 30px; font-size: 14px; line-height: 1; white-space: nowrap; border: 1px solid #ccc; border-radius: 8px; background: #fff; margin-left: auto}
.join-con .agree-con ul li a:hover { background: #f0f0f0}
.join-con .agree-con ul li .check-text { font-size: 16px; font-weight: 400}

@media (max-width: 991px){
	.join-step { margin-bottom: 30px}
}
@media (max-width: 700px){
	.join-con .member-set { max-width: 700px}
}
@media (max-width: 575px){
	.join-step { margin-bottom: 20px}
	.join-step ul li { width: 50px; height: 50px}
	.join-step ul li + li { margin-left: 40px}
	.join-step ul li + li::before { left: -26px}
	.join-step ul li img { width: 22px}
	.join-step ul li.on img { width: 30px;}
	
	.join-con h5.agree-tit { font-size: 16px; padding-bottom: 15px; margin-bottom: 20px}
	.join-con .agree-con ul li { align-items: flex-start; gap: 10px}
	.join-con .agree-con ul li + li { margin-top: 20px}
	.join-con input.checkradio + label { align-items: flex-start}
	.join-con input.checkradio + label::before { margin-top: 3px}
	.join-con .agree-con ul li a { flex-shrink: 0; width: 60px; font-size: 13px; border-radius:4px; margin-top: -4px}
}



/*========================================================
Join Form
========================================================*/
.register .form-flex { align-items: flex-start; gap: 50px}
.register .form-flex + .form-flex { margin-top: 20px}
.register .form-flex .left-con { width: 170px; text-align: right; padding-top: 15px}
.register .form-flex .right-con { flex: 1}
.register .form-flex .right-con .bline { border-bottom: 1px solid #d9d9d9; padding-bottom: 10px}
.register .btnn.btnn-sm { font-size: 15px; padding: 0 15px}

.help-block { margin-bottom: 0}

@media (max-width: 991px){
	.register .form-flex:not(.register .right-con .form-flex):not(.noinput) { 
		flex-direction: column; align-items: stretch; gap: 5px
	}
	.register .form-flex + .form-flex { margin-top: 15px}
	.register .form-flex.noinput { align-items: center; gap: 10px}
	.register .form-flex .left-con { width: 100%; text-align: left; padding-top: 0}
	.register .form-flex .right-con .bline { padding-top: 5px}
}


/*========================================================
Join Finish
========================================================*/
h5.finish-tit { font-size: 20px; font-weight: 400; line-height: 1.5; text-align: center; padding: 50px 0}
h5.finish-tit span { font-weight: 700}
p.finish-memo { text-align: center}

@media (max-width: 575px){
	h5.finish-tit { font-size: 18px; padding: 30px 0}	
}



