@charset "utf-8";
@import url('Paperlogy.css');

/* 초기화 */
*, :after, :before {-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
html {overflow-y:scroll;}
body {margin:0;padding:0;background-color: #F9FAFB;}
html, h1, h2, h3, h4, h5, h6, form, fieldset, img {margin:0;padding:0;border:0;}
h1, h2, h3, h4, h5, h6 {font-size:18px;word-break: auto-phrase;}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display:block;}
ul, ol, dl {margin: 0;padding: 0;list-style: none;}
li, dt, dd {word-break: break-all;}
dd {margin: 0;word-break: auto-phrase;}
legend {position:absolute;margin:0;padding:0;font-size:0;line-height:normal;text-indent:-9999em;overflow:hidden;}
label, input, button, select, img {vertical-align:middle;}
input, button {margin:0;padding:0;}
input[type="submit"] {cursor:pointer;}
button {cursor:pointer;word-break: auto-phrase;}
select {margin:0;}
p {margin: 0;padding: 0;word-break: auto-phrase;}
pre {overflow: auto;}
a {color:#000;text-decoration:none;line-height: normal;word-break: auto-phrase;}
input[type="text"], input[type="password"], textarea {-webkit-transition:all 0.30s ease-in-out;-moz-transition:all 0.30s ease-in-out;-ms-transition:all 0.30s ease-in-out;-o-transition:all 0.30s ease-in-out;outline:none;}
input[type="text"]:focus, input[type="password"]:focus, input[type="tel"]:focus, textarea:focus, select:focus {outline: #8e836a solid 1px;box-shadow: 0px 0px 5px 0px #8e836a;}
img {max-width: 100%;}
textarea {resize: vertical;}
body,
h1, h2, h3, h4, h5, h6,
input, button,
textarea, select {font-family: 'Paperlogy', 'dotum', sans-serif;font-size: 16px;color: #000;}
.placeholdersjs {color:#aaa !important;}
table caption {display: none;}
audio {width: 100%;height: 54px;}

/* 기본 레이아웃 지정 */
.wrapper {
	position: relative;
	width: 100%;
	max-width: 600px;
	height: 100%;
	overflow: hidden;
	margin: 0 auto;
	box-shadow: 0px 0px 20px 0px rgb(100 100 100 / 30%);
	zoom: 1;
}

/* 헤더 */
.wrapper #hd {
	width: 100%;
	height: 60px;
}
.main .wrapper #hd {
	border-bottom: none;
}
.wrapper #hd .box {
	position: fixed;
	top: 0;
	left: 50%;
	width: 100%;
	max-width: 600px;
	height: 60px;
	transform: translateX(-50%);
	padding-left: 40px;
	padding-right: 40px;
	background-color: #393939;
	z-index: 80;
}
.wrapper #hd .box .logo {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* 내용 */
.wrapper #container {
	background-color: #fff;
	min-height: 100svh;
}
.wrapper #container::after {
	content: "";
	display: block;
	visibility: hidden;
	clear: both;
}
.wrapper:has(#hd) #container {
	min-height: calc(100svh - 60px);
}

/* mobile 메뉴 */
#btn_m_toggle {
	position: absolute;
	top: 15px;
	left: 15px;
	width: 30px;
	height: 30px;
	cursor: pointer;
	transition: left 300ms ease, opacity 300ms ease;
}
#mobile_menu {
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 50%;
	right: 0;
	width: 100%;
	max-width: 600px;
	height: 100vh;
	transform: translateX(-50%);
	z-index: 90;
	background-color: rgba(0, 0, 0, 0.5);
	transition: left 300ms ease;
}
#mobile_menu .msgroup {
	position: relative;
	width: 95%;
	height: 100%;
	display: grid;
	grid-template-rows: max-content 1fr max-content;
	background-color: #fff;
}
#mobile_menu .msgroup .header {
	position: relative;
	background-color: #DAD0B9;
	padding: 30px 20px 20px 20px;
}
#mobile_menu .msgroup .header .profile {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
}
#mobile_menu .msgroup .header .profile .avatar {
	width: 50px;
	height: 50px;
	border-radius: 25px;
	border: 2px solid #fff;
	overflow: hidden;
	margin-right: 10px;
}
#mobile_menu .msgroup .header .profile .name strong {
	font-size: 24px;
	font-weight: bold;
}
#mobile_menu .msgroup .header .profile .name span {
	font-size: 18px;
	font-weight: normal;
	margin-left: 5px;
	vertical-align: bottom;
}
#mobile_menu .msgroup .header .bank {
	margin-top: 30px;
}
#mobile_menu .msgroup .header .bank .number {
	margin-top: 5px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#mobile_menu .msgroup .header .bank .number p {
	font-size: 20px;
	font-weight: bold;
}
#mobile_menu .msgroup .header .bank .number a {
	display: inline-block;
	background-color: #756D5B;
	color: #fff;
	padding: 10px 15px;
	border-radius: 20px;
}
#mobile_menu .msgroup .header .close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 20px;
	height: 20px;
	border: none;
	background-color: transparent;
}
#mobile_menu .mgnb {
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 20px 20px 0 20px;
}
#mobile_menu .mgnb > h3 {
	font-size: 20px;
}
#mobile_menu .mgnb .gnb_1dul {
	padding: 0 20px;
}
#mobile_menu .mgnb .gnb_1dul > li {
	margin-top: 15px;
}
#mobile_menu .mgnb em {
	display: block;
	width: 100%;
	height: 30px;
	margin-top: 30px;
	border-top: 1px solid #dcdcdc;
}
#mobile_menu .footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
}
#mobile_menu .footer .info p {
	color: #ababab;
}
#mobile_menu .footer .info a {
	display: block;
	color: #ababab;
	margin-top: 5px;
	text-decoration-line: underline;
}
.open_mobilemenu #mobile_menu {
	display: block;
}

#container .top_nav {
	position: relative;
	width: 100%;
	height: 50px;
}
#container .top_nav .wrap {
	position: fixed;
	top: 60px;
	left: 50%;
	width: 100%;
	max-width: 600px;
	height: 50px;
	transform: translateX(-50%);
	z-index: 80;
	background-color: #DAD0B9;
}
#container .top_nav p {
	font-size: 20px;
	font-weight: 600;
	text-align: center;
	line-height: 50px;
}
#container .top_nav button {
	position: absolute;
	top: 16px;
	left: 20px;
	width: 18px;
	height: 18px;
	border: none;
	background-color: transparent;
	background-image: url('../img/common/ic_arrow-left.svg');
	background-repeat: no-repeat;
	background-size: contain;
}

/* ---------------------------------- */

/* 화면낭독기 사용자용 */
.msg_sound_only,
.sound_only {display:inline-block !important;position:absolute;top:0;left:0;width:0;height:0;margin:0 !important;padding:0 !important;font-size:0;line-height:0;border:0 !important;overflow:hidden !important}

/* 본문 바로가기 */
#skip_to_container a {z-index:100;position:absolute;top:0;left:0;width:1px;height:1px;font-size:0;line-height:0;overflow:hidden}
#skip_to_container a:focus,
#skip_to_container a:active {width:100%;height:75px;background:#21272e;color:#fff;font-size:2em;font-weight:bold;text-align:center;text-decoration:none;line-height:3.3em}

/* ie6 이미지 너비 지정 */
.img_fix {width:100%;height:auto}

/* 캡챠 자동등록(입력)방지 기본 - pc */
#captcha {display:inline-block;position:relative}
#captcha legend {position:absolute;margin:0;padding:0;font-size:0;line-height:0;text-indent:-9999em;overflow:hidden}
#captcha #captcha_img {height:40px;border:1px solid #898989;vertical-align:top;padding:0;margin:0}
#captcha #captcha_mp3 {margin:0;padding:0;width:40px;height:40px;border:0;background:transparent;vertical-align:middle;overflow:hidden;cursor:pointer;background:url('../../../img/captcha2.png') no-repeat;text-indent:-999px;border-radius:3px}
#captcha #captcha_reload {margin:0;padding:0;width:40px;height:40px;border:0;background:transparent;vertical-align:middle;overflow:hidden;cursor:pointer;background:url('../../../img/captcha2.png') no-repeat 0 -40px;text-indent:-999px;border-radius:3px}
#captcha #captcha_key {margin:0 0 0 3px;padding:0 5px;width:90px;height:40px;border:1px solid #ccc;background:#fff;font-size:1.333em;font-weight:bold;text-align:center;border-radius:3px;vertical-align:top}
#captcha #captcha_info {display:block;margin:5px 0 0;font-size:0.95em;letter-spacing:-0.1em}

/* 캡챠 자동등록(입력)방지 기본 - mobile */
/*#captcha.m_captcha audio {display:block;margin:0 0 5px;width:187px}
#captcha.m_captcha #captcha_img {width:160px;height:60px;border:1px solid #e9e9e9;margin-bottom:3px;margin-top:5px;display:block}
#captcha.m_captcha #captcha_reload {position:static;margin:0;padding:0;width:40px;height:40px;border:0;background:transparent;vertical-align:middle;overflow:hidden;cursor:pointer;background:url('../../../img/captcha2.png') no-repeat 0 -40px;text-indent:-999px}
#captcha.m_captcha #captcha_reload span {display:none}
#captcha.m_captcha #captcha_key {margin:0;padding:0 5px;width:115px;height:29px;border:1px solid #b8c9c2;background:#f7f7f7;font-size:1.333em;font-weight:bold;text-align:center;line-height:29px;margin-left:3px}
#captcha.m_captcha #captcha_info {display:block;margin:5px 0 0;font-size:0.95em;letter-spacing:-0.1em}
#captcha.m_captcha #captcha_mp3 {width:31px;height:31px;background:url('../../../img/captcha2.png') no-repeat 0 0 ; vertical-align:top;overflow:hidden;cursor:pointer;text-indent:-9999px;border:none}*/

/* ckeditor 단축키 */
.cke_sc {margin:0 0 5px;text-align:right}
.btn_cke_sc {display:inline-block;padding:0 10px;height:23px;border:1px solid #ccc;background:#fafafa;color:#000;text-decoration:none;line-height:1.9em;vertical-align:middle;cursor:pointer}
.cke_sc_def {margin:0 0 5px;padding:10px;border:1px solid #ccc;background:#f7f7f7;text-align:center}
.cke_sc_def dl {margin:0 0 5px;text-align:left;zoom:1}
.cke_sc_def dl:after {display:block;visibility:hidden;clear:both;content:""}
.cke_sc_def dt, .cke_sc_def dd {float:left;margin:0;padding:5px 0;border-bottom:1px solid #e9e9e9}
.cke_sc_def dt {width:20%;font-weight:bold}
.cke_sc_def dd {width:30%}
.btn_cke_sc_close {background:#333;padding:5px;border:none;color:#fff}

/* ckeditor 태그 기본값 */
#bo_v_con ul {display:block;list-style-type:disc;margin-top:1em;margin-bottom:1em;margin-left:0;margin-right:0;padding-left:40px}
#bo_v_con ol {display:block;list-style-type:decimal;margin-top:1em;margin-bottom:1em;margin-left:0;margin-right:0;padding-left:40px}
#bo_v_con li {display:list-item}

/* 필수입력 */
.required,
textarea.required {background-image:url('../img/require.png') !important;background-repeat:no-repeat !important;background-position:right top !important}

/* 새창 기본 스타일 */
.new_win {position:relative}
.new_win .tbl_wrap {margin:0 20px}
.new_win #win_title {font-size:1.3em;height:50px;line-height:30px;padding:10px 20px;background:#fff;color:#000;-webkit-box-shadow:0 1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,.1);box-shadow:0 1px 10px rgba(0,0,0,.1);}
.new_win #win_title .sv {font-size:0.75em;line-height:1.2em}
.new_win .win_ul {margin-bottom:15px;padding:0 20px}
.new_win .win_ul:after {display:block;visibility:hidden;clear:both;content:""}
.new_win .win_ul li {float:left;background:#fff;text-align:center;padding:0 10px;border:1px solid #d6e9ff;border-radius:30px;margin-left:5px}
.new_win .win_ul li:first-child {margin-left:0}
.new_win .win_ul li a {display:block;padding:8px 0;color:#6794d3}
.new_win .win_ul .selected {background:#3a8afd;border-color:#3a8afd;position:relative;z-index:5}
.new_win .win_ul .selected a {color:#fff;font-weight:bold}
.new_win .win_desc {position:relative;margin:10px;border-radius:5px;font-size:1em;background:#f2838f;color:#fff;line-height:50px;text-align:left;padding:0 20px}
.new_win .win_desc i {font-size:1.2em;vertical-align:baseline}
.new_win .win_desc:after {content:"";position:absolute;left:0;top:0;width:4px;height:50px;background:#da4453;border-radius:3px 0 0 3px}
.new_win .frm_info {font-size:0.92em;color:#919191}
.new_win .win_total {float:right;display:inline-block;line-height:30px;font-weight:normal;font-size:0.75em;color:#3a8afd;background:#f6f6f6;padding:0 10px;border-radius:5px}
.new_win .new_win_con {margin:20px 0;}
.new_win .new_win_con:after {display:block;visibility:hidden;clear:both;content:""}
.new_win .new_win_con2 {margin:20px 0}
.new_win .btn_confirm:after {display:block;visibility:hidden;clear:both;content:""}
.new_win .win_btn {text-align:center;margin-top: 20px;}
.new_win .cert_btn {margin-bottom:30px;text-align:center}
.new_win .btn_close {padding:0 20px;height:45px;overflow:hidden;cursor:pointer}
.new_win .btn_submit {padding:0 20px;height:45px;font-weight:bold;font-size:1.083em}

/* 페이징 */
.pg_wrap {clear:both;float:left;display:inline-block}
.pg_wrap:after {display:block;visibility:hidden;clear:both;content:""} 
.pg {text-align:center}
.pg_page, .pg_current {display:inline-block;vertical-align:middle;background:#eee;border:1px solid #eee}
.pg a:focus, .pg a:hover {text-decoration:none}
.pg_page {color:#959595;font-size:1.083em;height:30px;line-height:28px;padding:0 5px;min-width:30px;text-decoration:none;border-radius:3px}
.pg_page:hover {background-color:#fafafa}
.pg_start {text-indent:-999px;overflow:hidden;background:url('../img/btn_first.gif') no-repeat 50% 50% #eee;padding:0;border:1px solid #eee}
.pg_prev {text-indent:-999px;overflow:hidden;background:url('../img/btn_prev.gif') no-repeat 50% 50% #eee;padding:0;border:1px solid #eee}
.pg_end {text-indent:-999px;overflow:hidden;background:url('../img/btn_end.gif') no-repeat 50% 50% #eee;padding:0;border:1px solid #eee}
.pg_next {text-indent:-999px;overflow:hidden;background:url('../img/btn_next.gif') no-repeat 50% 50% #eee;padding:0;border:1px solid #eee}
.pg_start:hover,.pg_prev:hover,.pg_end:hover,.pg_next:hover {background-color:#fafafa}
.pg_current {display:inline-block;background:#3a8afd;border:1px solid #3a8afd;color:#fff;font-weight:bold;height:30px;line-height:30px;padding:0 10px;min-width:30px;border-radius:3px}

/* cheditor 이슈 */
.cheditor-popup-window *,
.cheditor-popup-window :after,
.cheditor-popup-window :before {-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}

/* 로딩화면 */
#loading-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 200;
}
#loading-overlay .spinner {
	border: 4px solid #ffffff;
	border-top: 4px solid transparent;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: ani_spin 1s linear infinite;
}
@keyframes ani_spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
