@charset "utf-8";
@import url('fonts.css');
:root {
    --main-color:#fab700;
    --main-rgb-color:246,185,0;
    --bright-color:#fff6cc;
    --dark-color:#344468;
    --sub-color:#fad500;
    --point-color:#0038fa;
    --hd-height:120px;
    --max-width:1280px;
    --max-width-min:960px;
}
input {accent-color:var(--main-color);}

html {overflow-y:scroll;height:100%;min-width:320px}
body {margin:0;padding:0;font-size:0.88em;height:100%;font-family:'Pretendard','Malgun Gothic', dotum, sans-serif}
html, h1, h2, h3, h4, h5, h6, form, fieldset, img {margin:0;padding:0;border:0}
h1, h2, h3, h4, h5, h6 {font-size:1em;font-family:'Pretendard','Malgun Gothic', dotum, sans-serif}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display:block}
legend {position:absolute;font-size:0;line-height:0;text-indent:-9999em;overflow:hidden}
audio {width:100%; max-width:300px;}
label, input, button, select, img {vertical-align:middle}
input, button {margin:0;padding:0;font-size:1em;font-family:'Pretendard','Malgun Gothic', dotum, sans-serif; border-radius:0;}
button {cursor:pointer;color:#000;appearance: none;}
input[type=date] {background-color:#fff; color:#000;}
input[type=text], input[type=password], input[type=submit], input[type=image], button {font-size:1em;-webkit-appearance:none}
textarea, select {font-size:1em;font-family:'Pretendard','Malgun Gothic', dotum, sans-serif}
textarea {border-radius:0;-webkit-appearance:none;font-family:'Pretendard','Malgun Gothic', dotum, sans-serif}
select {margin:0;background:none;font-family:'Pretendard','Malgun Gothic', dotum, sans-serif;
  -webkit-appearance: none;-moz-appearance: none; appearance: none;background:url('/img/btn_down.png') no-repeat right 15px center; background-size:12px 8px; color:#222;}
p {margin:0;padding:0;word-break:break-all}
hr {display:none}
pre {overflow-x:scroll;font-size:1.1em}
a {color:#000;text-decoration:none}
ul,li,dl,dt,dd {padding:0;margin:0}
ul {list-style:none}
::-webkit-scrollbar {width:6px;}
::-webkit-scrollbar-thumb {background-color:var(--main-color); border-radius:3px; background-clip:padding-box; border:3px solid var(--main-color);}
::-webkit-scrollbar-track {background-color:#f5f5f5; border-radius:3px;}
*,:after,:before {
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
}

/* 팝업레이어 */
#hd_pop {z-index:1000;position:relative;margin:0 auto;width:100%;height:0}
#hd_pop h2 {position:absolute;font-size:0;text-indent:-9999em;line-height:0;overflow:hidden}
.hd_pops {position:absolute;border:1px solid #e9e9e9;background:#fff}
.hd_pops img {max-width:100%;height:auto}
.hd_pops_footer {padding:10px 0;background:#000;color:#fff;text-align:right}
.hd_pops_footer button {margin-right:5px;padding:5px 10px;border:0;background:#393939;color:#fff}

/* 상단 레이아웃 */
#hd {width:100%; z-index:999; position:relative; border-bottom:1px solid #e5e5e5;}
#hd:after {display:block;visibility:hidden;clear:both;content:""}
#hd_h1 {position:absolute;font-size:0;text-indent:-9999em;line-height:0;overflow:hidden}
#hd_wrapper{ position:relative; margin:0 auto; max-width:var(--max-width); height:var(--hd-height); display:flex; justify-content:space-between;}
/*#hd_wrapper:after {display:block;visibility:hidden;clear:both;content:""}*/

#logo { float:left; display:flex; align-items:center; height:var(--hd-height); }
#logo a {color:inherit;}
#logo img {vertical-align:bottom;max-height:100%;width:auto; height:60px;}

#gnb_empty {padding:20px 0;color:#fff;text-align:center;line-height:2em}
#gnb_empty a {display:inline;text-decoration:underline}

/* 메인메뉴 시작 */
#gnb { position:relative; width:900px; z-index:99; padding-right:60px;}
#gnb h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}

.hd_user {position:absolute; top:50%; right:0; transform:translateY(-50%); width:40px; height:40px; border:2px solid #222; border-radius:50%; display:flex; justify-content:center; align-items:center; z-index:100;}
.hd_user img {width:22px;}
.blinker {position:absolute; width:10px; height:10px; height:10px; background:var(--main-color); top:0; right:0; border-radius:50%; animation:blinker 1s linear infinite;}
.hd_login {position:absolute; bottom:-20px; width:50px; text-align:center; background:#000; color:#fff; padding:5px; border-radius:8px; font-size:0.88em;}


/* 메인메뉴 > 1차메뉴 */
#gnb #gnb_1dul {zoom:1; font-size:1.29em; display:flex;}
#gnb .gnb_1dli {line-height:var(--hd-height); padding:0; position:relative; text-align:center; flex:auto; }
.gnb_1da {color:#222;font-weight:500;width:100%} /*글자색*/
.gnb_1dli:hover .gnb_1da {color:var(--main-color);} /* 마우스오버 글자색 */
.gnb_1dli:before{content:""; position:absolute; left:50%; transform:translateX(-50%); bottom:0px; height:1px; width:0%; border-bottom:3px solid var(--main-color); /* 밑줄 시작 */
-webkit-transition:all 0.2s; -moz-transition:all 0.2s; -o-transition:all 0.2s; -ms-transition:all 0.2s; transition:all 0.2s;}
.gnb_1dli:hover::before{content : ""; position:absolute; left:50%; transform:translateX(-50%); bottom:0px; height:1px; width:50%; border-bottom:3px solid var(--main-color); /* 밑줄 끝 */
-webkit-transition:all 0.2s; -moz-transition:all 0.2s; -o-transition:all 0.2s; -ms-transition:all 0.2s; transition:all 0.2s;}

/* 메인메뉴 > 전체메뉴 2차 */
.gnb_2dli{font-size:15px;} 
.gnb_2dul {display:none;}
.gnb_2da {display:block;line-height:40px;color:#ccc;text-align:center; letter-spacing:-1px;} /* 글자색 */
a.gnb_2da:hover{color:var(--main-color); /* 마우스오버 글자색 */}
#all_cate{position:absolute;width:100%;z-index:50;top:var(--hd-height);height:0px;display:none;background:rgba(0,0,0,0.5);/* 전체배경색 */}
#all_cate div {position:relative;}
.cate_2dul{display:none;position:absolute;top:var(--hd-height);left:0;width:100%;height:0px;overflow:hidden;z-index:9999;}
.cate_2dul:hover {background:rgba(0,0,0,0.5); color:#fff; /* 메뉴오버 배경 */
-moz-transition: all 0.3s ease-out;-o-transition: all 0.3s ease-out;transition: all 0.3s ease-out;}

.gnb_wrap .gnb_empty {padding:10px 0; width:100%;text-align:center;line-height:2em;color:#888}
.gnb_wrap .gnb_empty a {color:inherit;text-decoration:underline}
/* 메인메뉴 끝 */

#tnb{background:#090a0c;line-height:40px}
#tnb ul {max-width:1200px;margin:0 auto}
#tnb ul:after {display:block;visibility:hidden;clear:both;content:""}
#tnb li{float:left} 
#tnb .right{float:right}
#tnb li a{color:#b8b8b8;display:block;padding: 0 13px}
#tnb li a:hover{background:#1b1e24}
#tnb .tnb_res a{background:#364699;color:#fff;padding:0 20px;font-weight:600;}
#tnb .tnb_res a:hover{background:#2d3a80}
#tnb .tnb_res i{margin-right:5px}
#tnb .tnb_sns i{color:#364699;margin-right:5px}

.hd_sch_btn{float:right;width:50px;border:0;background:0;height:80px;color:#fff;font-size:18px;vertical-align:top;}
#hd_sch{z-index:10;display:none;position:absolute;top:40px;left:0;background:#121418;width:100%;}
#hd_sch .sch_wr{margin:0 auto;max-width:1200px;position:relative;}
#hd_sch #sch_stx {background:none;border:0;width:100%;height:80px;padding:0 50px;color:#fff;font-size:1.385em}
#hd_sch #sch_stx:focus{outline:0;border-bottom:2px solid red}
#hd_sch #sch_submit{background:none;border:0;position:absolute;top:0;left:0;color:#fff;height:80px;width:50px;font-size:18px;}
#hd_sch .btn_close{background:none;border:0;position:absolute;top:0;right:0;width:50px;height:80px;color:#aaa;font-size:18px}
#hd_sch .btn_close:hover{color:#fff}

#gnb_open { position:absolute; right:60px; width: 50px;border: 0 ;background: 0;height:var(--hd-height);color: #222; font-size: 18px;vertical-align:top; }

#gnb2 {display:none;position:fixed;top:0;left:0;height:100%;background:#fafafa;z-index:99999;width:100%;min-width:300px}
#gnb2 .btn_close {position:absolute;top:0;right:0;width:50px;height:50px;border:0;background:none;color:#555}
#gnb2 .gnb_tnb{padding:0 10px;}
#gnb2 .gnb_tnb li{display:inline-block;line-height:50px}
#gnb2 .gnb_tnb li a{color:#b8b8b8;display:block;padding:0 10px} 
#gnb2_1dul{margin:20px 0; padding-top:20px;}
#gnb2_1dul .gnb2_1dli{position:relative}
#gnb2_1dul .gnb2_1dli button{position:absolute;top:0;right:0;border:0;background:none;height:50px;width:50px;text-indent:-999px;overflow:hidden; background: url(../img/mobile/gnb_bg2.png) no-repeat 50% 50%;background-size:10px}
#gnb2_1dul .gnb2_1da{padding:0 20px;display:block;color:#222;font-size:1.15em;line-height:50px}
#gnb2_1dul .gnb2_2dul {display:none}
#gnb2_1dul .gnb2_2da {color:#888;padding:0 30px;font-weight:normal;white-space: nowrap;line-height:30px}

/*상단고정*/
.fixed #hd { position:fixed; top:0; background:#fff; border-bottom:1px solid #e5e5e5;}
.fixed #hd #tnb {display:none}
.fixed #logo a span {color:#444;}
.fixed #gnb_open {color:#888;}

.mob_view {display:none;}

/* 메인 */
.inner {max-width:var(--max-width); margin:0 auto;}
#mv {width:100%; background:linear-gradient(135deg, var(--main-color) 0%, var(--sub-color) 100%);}
#mv .inner {display:flex; justify-content:space-between; padding:60px 0;}
#mv .visual,
#mv .mv_form {width:50%;}
#mv .visual {font-family:'S-CoreDream'; }
#mv .visual .tit {font-size:3em; font-weight:900;}
#mv .visual .img { position:relative; padding:100px 160px 40px 0; text-align:right; overflow:hidden; }
#mv .visual .img img {position:relative; width:50%; max-width:fit-content; z-index:1;}
#mv .visual .balloon span { position:absolute; background:rgba(255,255,255,0.8); padding:10px 20px; border-radius:15px; font-size:1.29em; color:#666; font-weight:500; display:block; width:fit-content; }
#mv .visual .balloon span:after { position:absolute; bottom:-10px; left:50%; transform:translateX(-50%); border-top:10px solid rgba(255,255,255,0.8); border-left:10px solid transparent; border-right:10px solid transparent; border-bottom: 0px solid transparent; content: ""; }
#mv .visual .balloon span:first-child {top:4%; left:40%;}
#mv .visual .balloon span:nth-child(2) {top:12%; right:20%;}
#mv .visual .balloon span:nth-child(3) {top:18%; left:10%; }
#mv .visual .balloon span:nth-child(4) {top:35%; right:8%;}
#mv .visual .balloon span:nth-child(5) {top:40%; left:20%;}
#mv .visual .balloon span:nth-child(6) {top:65%; left:5%;}
#mv .visual .balloon span:nth-child(7) {top:70%; right:12%;}
#mv .visual .balloon span:nth-child(8) {top:80%; left:28%;}

#mv .mv_form {background:#fff; border-radius:25px; padding:40px;}

.mv_form .qa_form {display:flex; flex-wrap:wrap; }
.mv_form .form_div { width:100%; display:flex; padding:5px 0;}
.mv_form .form_div label,
.mv_form .form_div .label {display:block; width:100%; font-weight:500; color:var(--main-color); margin-bottom:5px;}
.mv_form .w30 {width:calc(33.33% - 10px);}
.mv_form .w30:nth-child(2) {margin-left:10px; margin-right:10px;}
.mv_form .w50 {width:calc(50% - 5px);}
.mv_form .w50:first-child {margin-right:10px;}
.mv_form .w100 {width:100%;}
.mv_form .qa_form input[type="text"],
.mv_form .qa_form input[type="number"],
.mv_form .qa_form input[type="tel"],
.mv_form .qa_form input[type="email"],
.mv_form .qa_form input[type="file"],
.mv_form .qa_form input[type="date"],
.mv_form .qa_form select {width:100%; height:50px; line-height:48px; border:0; background-color:#fafafa; color:#aaa; border-radius:12px; padding:0 10px;}
.mv_form .radio_div {width:100%; display:flex; justify-content: space-between; flex-wrap:wrap;}
.mv_form .radio_div .label {width:100%;}
.mv_form .radio_div label {width:calc(33.33% - 5px);}
.mv_form .radio_div input[type="radio"]{ display:none; }
.mv_form .radio_div input[type="radio"] + span{	display:flex;  justify-content:center; align-items: center;	background:none;	border:1px solid #e5e5e5;height:50px;	font-weight:500;	cursor:pointer;  color:#888;  border-radius:12px; font-size:1.29em;}
.mv_form .radio_div input[type="radio"]:checked + span{ border:2px solid var(--sub-color); color:var(--main-color);}
.mv_form .qa_form .mv_ck { width:100%;color:#888; font-weight:300; margin:10px 0 20px;}
.mv_form .qa_form .mv_ck #agree {width:15px; height:15px; background:#fff; border:1px solid #e5e5e5; border-radius:0; margin-right:5px; padding:0;}
.mv_form .qa_form .mv_ck a {text-decoration:underline;}
.mv_form .qa_form input[type="checkbox"] {border-radius:5px; border:1px solid #eaeaea;}
.mv_form .button_div { width:100%; display:flex; flex-wrap:wrap; justify-content:center;}
.mv_form .button_div button {width:100%; height:50px; border:0; border-radius:12px; font-weight:500; background:var(--point-color); color:#fff; }
.mv_form .button_div .list_btn {width:100%; height:50px; line-height:50px; text-align:center; border:1px solid #eaeaea; border-radius:12px; font-weight:400; background:#fafafa; color:#666; margin-top:10px;}

.layer_pop {position:fixed; width:100%; height:100%; overflow:hidden; top:0px; left:0px; background:rgba(0,0,0,0.2); display:none; z-index:99999; }
.layer_close {display:block; font-weight:bold; color:#fff; border:0; background:rgba(0,0,0,0.8); float:right; width:40px; height:40px; line-height:30px; text-align:center; border-radius:8px; margin-top:-10px;}
.layer:hover {background:rgba(0,0,0,0.9);}
.layer_pop .pop_cont {position:absolute; width:100%; max-width:500px; min-height:150px; background:#fff; border-radius:15px; padding:40px 30px;}
.layer_pop .pop_cont h3 {font-size:1.18em; margin-bottom:20px;}
.layer_pop .pop_cont textarea {width:100%; height:100px; border:1px solid #e5e5e5; resize:none;}

h3.tit {font-size:2.29em; font-family: 'S-CoreDream'; font-weight:700; margin-bottom:40px; word-break: keep-all;}
.m_pd {padding:100px 0;}

.m_how {background:#f5f5f5; }
.m_how .box_area {display:flex; justify-content:space-between; flex-wrap:wrap;}
.m_how .box_area .box {width:calc(50% - 10px);}
.m_how .box_area .box div { background:#fff; padding:40px; border-radius:25px; box-shadow:0 8px 20px rgba(0,0,0,0.02); font-size:1.43em; margin-bottom:20px;}
.m_how .box_area .box div:last-child {margin-bottom:0;}
.m_how .box_area .box div span {margin-left:10px; color:#888;}

.m_ptn {padding-bottom:80px;}
.m_ptn .box_area {display:flex; justify-content:space-between; flex-wrap:wrap;}
.m_ptn .box { width:calc(20% - 10px); height:120px; margin-bottom:20px; border-radius:25px; box-shadow:0 8px 20px rgba(0,0,0,0.02); border:1px solid #f5f5f5; display:flex; justify-content:center; align-items:center; }
.m_ptn .box img {width:60%;}

.m_mrk {background:#fff7cc;}

/* 중간 레이아웃 */
#container {position:relative;min-height:300px; box-shadow:0 8px 20px rgba(0,0,0,0.15); border-radius:25px; max-width:var(--max-width); margin:0 auto; padding:40px; }
#container:after {display:block;visibility:hidden;clear:both;content:""}
#container_title { font-family:'S-CoreDream'; font-size:3em;font-weight:900;color:#111; text-align:center; padding:80px 0 40px;}

.bd_hd_info {border:1px solid #ce404c; padding:20px; word-break:keep-all; background-color:#fff4f4; margin-bottom:20px;}

/* 하단 레이아웃 */
#ft {color:#888;font-size:1.14em;line-height:160%;}
#ft a {color:inherit; }
#ft .ft_wr { display:flex; max-width:var(--max-width); margin:0 auto;}
#ft > .ft_wr:first-child {padding:40px 0; }
#ft_logo img {filter:contrast(0); opacity:0.2; vertical-align:bottom; height:50px;}
#ft_copy {padding-left:80px;}
#ft_copy span,
#ft_copy a {margin-right:20px; white-space:nowrap; word-break: keep-all;}
#ft_copy .ft_add { display:block; white-space:wrap;}
.ft_info {background:#f5f5f5; font-size:0.88em; padding:20px 0; word-break:keep-all;}

#top_btn {position:fixed;bottom:20px;right:20px;width:60px;height:60px;border:0;z-index:999; background: linear-gradient(135deg,  var(--main-color) 0%,var(--sub-color) 100%); color:#fff;transition: opacity 0.2s ease-out;opacity:0; font-size:1.2em;  }
#top_btn.show {opacity: 1;}

.ft_fixed {display:none;}

/* 퀵 */
.quick {position:fixed; top:180px; left:50%; margin-left:660px; width:120px; text-align:center;}
.quick .box {background:rgba(0,0,0,0.95); border-radius:25px; width:100%; padding:20px 10px; margin-bottom:10px;}
.quick h5 {font-size:1.14em; color:#fff; font-weight:normal; margin-bottom:5px;}
.quick strong {font-size:2em; line-height:100%; font-weight:bolder; color:var(--main-color);}
.app_icon a { display:inline-block; width:40px; height:40px; line-height:38px; background:rgba(255,255,255,0.4); border-radius:50%;}
.app_icon img {width:20px;}
#gnb2 .app_icon { margin:20px 0 0 20px; }
#gnb2 .app_icon a {background:rgba(0,0,0,0.8);text-align:center;}

/* 게시물 선택복사 선택이동 */
#copymove {}
.copymove_current {float:right;color:#ff3061}
.copymove_currentbg {background:#f4f4f4}
#copymove .tbl_head01 {margin-top:10px}
#copymove td {background:#fff}
#copymove .win_btn {margin:10px}

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

/* 본문 바로가기 */
.to_content a {z-index:100000;position:absolute;top:0;left:0;width:0;height:0;font-size:0;line-height:0;overflow:hidden}

/* 이미지 등비율 리사이징 */
.img_fix {width:100%;height:auto}

/* 캡챠 자동등록(입력)방지 기본 -pc */
#captcha {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;width:40px;height:40px;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:0;vertical-align:top}
#captcha #captcha_info {display:block;margin:3px 0 5px;font-size:0.95em;letter-spacing:-0.1em}

/* 캡챠 자동등록(입력)방지 기본 - mobile */
#captcha.m_captcha audio {display:block;margin:0 0 5px}

/* 구글리캡챠 크기 조정 scale */
#captcha.recaptcha {width:213px;height:55px;overflow:hidden}
#rc-imageselect, .g-recaptcha {transform:scale(0.7);-webkit-transform:scale(0.7);transform-origin:0 0;-webkit-transform-origin:0 0}

/* 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}

/*단축키일람 */
.cke_sc {text-align:right}
.btn_cke_sc {background:#333;color:#fff;padding:5px;border:none}
.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:50%;font-weight:bold}
.cke_sc_def dd {width:50%}
.btn_cke_sc_close {background:#333;padding:5px;border:none;color:#fff}

/* 버튼 */
/*.btn {display:inline-block;padding:0 5px;height:30px;line-height:30px;border-radius:3px}*/
.btn {display:flex; justify-content:center; align-items:center; padding:0 30px; height:40px;}
a.btn01 {display:inline-block;background:#ddd;color:#444;text-decoration:none;vertical-align:middle; -webkit-transition:background-color 0.3s ease-out; -moz-transition:background-color 0.3s ease-out; -o-transition:background-color 0.3s ease-out; transition:background-color 0.3s ease-out}
a.btn01:focus, a.btn01:hover {text-decoration:none}
button.btn01 {display:inline-block;margin:0;padding:7px;border:1px solid #ccc;background:#fafafa;color:#000;text-decoration:none}
a.btn02 {display:inline-block;border:1px solid #3b3c3f;background:#4b545e;color:#fff;text-decoration:none;vertical-align:middle}
a.btn02:focus, .btn02:hover {text-decoration:none}
button.btn02 {display:inline-block;margin:0;padding:7px;border:1px solid #3b3c3f;background:#4b545e;color:#fff;text-decoration:none}

.btn_confirm {text-align:center} /* 서식단계 진행 */

.btn_submit {border:0;background:var(--main-color);background:var(--main-color);color:#fff;cursor:pointer;border-radius:3px}
.btn_close {border:1px solid #dcdcdc;cursor:pointer;border-radius:3px;background:#fff}
a.btn_close {text-align:center;line-height:50px}

a.btn_cancel {display:inline-block;background:#ddd;color:#444;text-decoration:none;vertical-align:middle}
button.btn_cancel {display:inline-block;border:1px solid #ccc;background:#fafafa;color:#000;vertical-align:top;text-decoration:none}
a.btn_frmline, button.btn_frmline {display:inline-block;padding:0 5px;border:0;background:#fff;border:1px solid var(--main-color);color:var(--main-color); border-color:var(--main-color); color:var(--main-color); letter-spacing:-0.1em;text-decoration:none;vertical-align:top} /* 우편번호검색버튼 등 */
button.btn_frmline {font-size:1em}

/* 게시판용 버튼 */
a.btn_b01,.btn_b01 {color:#444; border:1px solid #888; background-color:#fff; border-radius:3px;}
a.btn_b02, .btn_b02 {background:var(--main-color);color:#fff;border:0;border-radius:3px;text-decoration:none;vertical-align:middle}
a.btn_b03, .btn_b03 {display:inline-block;line-height:28px;border:0;background:transparent;color:#bababa;text-decoration:none;vertical-align:middle}
a.btn_admin { display:flex; justify-content:center; align-items:center; height:40px; background-color:#d13f4a; color:#fff; border-radius:3px;padding:0 15px;text-decoration:none;vertical-align:middle} /* 관리자 전용 버튼 */
.fix_btn {position:fixed;z-index:99;bottom:65px;right:15px;background:var(--main-color);width:50px;height:50px;color:#fff;text-align:center;border-radius:50% !important;font-size:1.8em;line-height:50px !important;-webkit-box-shadow:1px 2px 5px rgba(191, 191, 191, 0.4);
-moz-box-shadow:1px 2px 5px rgba(191, 191, 191, 0.4);
box-shadow:1px 2px 5px rgba(191, 191, 191, 0.4)}


/* 기본테이블 */
.tbl_wrap {margin:0 10px 10px}
.tbl_wrap table {width:100%;border-collapse:collapse;border-spacing:0}
.tbl_wrap caption {padding:10px 0;color:#4b8b99;font-weight:bold;text-align:left}

.tbl_head01 {}
.tbl_head01 caption {padding:0 0 10px;color:#777;text-align:left}
.tbl_head01 thead th {padding:12px 0;border:1px solid #d8dbdf;background:#f7f7f9;color:#383838;font-size:0.95em;text-align:center;letter-spacing:-0.1em}
.tbl_head01 thead a {color:#383838}
.tbl_head01 thead th input {vertical-align:top} /* middle 로 하면 게시판 읽기에서 목록 사용시 체크박스 라인 깨짐 */
.tbl_head01 tfoot th {border-top:1px solid #666;border-bottom:1px solid #666;background:#484848;color:#fff}
.tbl_head01 tfoot td {border-color:#e3e3e5;background:#484848;color:#fff;font-weight:bold;text-align:center}
.tbl_head01 tbody {text-align:left}
.tbl_head01 tbody th {padding:5px 0;border-top:1px solid #e9e9e9;border-bottom:1px solid #e9e9e9}
.tbl_head01 td {padding:5px;border:1px solid #e7e9ec;border-top:0;line-height:1.5em;word-break:break-all}

.tbl_head02 {}
.tbl_head02 caption {padding:0 0 10px;color:#777;text-align:left}
.tbl_head02 thead th {padding:5px 0;border-top:1px solid #d1dee2;border-bottom:1px solid #d1dee2;background:#e5ecef;color:#383838;font-size:0.95em;text-align:center;letter-spacing:-0.1em}
.tbl_head02 thead a {color:#383838}
.tbl_head02 thead th input {vertical-align:top} /* middle 로 하면 게시판 읽기에서 목록 사용시 체크박스 라인 깨짐 */
.tbl_head02 tfoot th {border-top:1px solid #666;border-bottom:1px solid #666;background:#484848;color:#fff}
.tbl_head02 tfoot td {background:#484848;color:#fff;font-weight:bold;text-align:center}
.tbl_head02 tbody th {padding:5px 0;border-top:1px solid #e9e9e9;border-bottom:1px solid #e9e9e9}
.tbl_head02 td {padding:5px 3px;border-top:1px solid #e9e9e9;border-bottom:1px solid #e9e9e9;line-height:1.4em;word-break:break-all}

/* 기본리스트 */
.list_01 ul {}
.list_01 li {border-bottom:1px solid #e5ecee;padding:15px}
.list_01 li:after {display:block;visibility:hidden;clear:both;content:""}
.all_chk {padding:15px;border-bottom:1px solid #e8eaee;background:#fff}

/* 기본폼 */
.form_01 .write_div {margin-bottom:10px;position:relative}
.form_01 li {margin:0 0 10px;position:relative;list-style:none}
.form_01 textarea, .frm_input {border:1px solid #d0d3db;background-color:#fff;color:#000;vertical-align:middle;padding:5px;border-radius:0;box-shadow:none}
.form_01 textarea {width:100%;height:100px}
.frm_input {height:45px}
.full_input {width:100%} 
.form_01 .frm_file {display:block;margin-bottom:5px;width:100%}
.form_01 select {height:45px;background-color:#fff}
.form_01 .frm_info {font-size:0.92em;color:var(--main-color);text-align:left;margin:3px 0 10px;display:block;line-height:1.3em}

/* 자료 없는 목록 */
.empty_table {padding:100px 0 !important;color:#777;text-align:center}
.empty_list {padding:20px 0 !important;text-align:center}

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

/* 테이블 항목별 정의 */
.td_board {width:120px;text-align:center}
.td_category {width:80px;text-align:center}
.td_chk {width:30px;text-align:center}
.td_date {width:60px;text-align:center}
.td_datetime {width:150px;text-align:center}
.td_group {width:100px;text-align:center}
.td_mb_id {width:100px;text-align:center}
.td_mng {width:80px;text-align:center}
.td_name {width:100px;text-align:left}
.td_nick {width:100px;text-align:center}
.td_num {width:50px;text-align:center}
.td_numbig {width:80px;text-align:center}
.td_stat {width:60px;text-align:center}

.txt_active {color:#5d910b}
.txt_done {color:#e8180c}
.txt_expired {color:#999}
.txt_rdy {color:#8abc2a}

/* 새창 기본 스타일 */
.new_win {position:relative;background:#fff}
.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_con {}

.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 #ddd;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:#888}
.new_win .win_ul .selected {background:var(--main-color);border-color:var(--main-color);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:#fff;color:#444;border:1px solid var(--main-color);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:var(--main-color);border-radius:3px 0 0 3px}

.new_win .win_total {float:right;display:inline-block;line-height:30px;font-weight:normal;font-size:0.75em;color:var(--main-color);background:var(--bright-color);padding:0 10px;border-radius:5px}
.new_win .new_win_con {padding:20px}
.new_win .new_win_con:after {display:block;visibility:hidden;clear:both;content:""}
.new_win .new_win_con2 {margin:20px 0}

.new_win .win_btn {clear:both;padding:10px 0 30px;text-align:center}
.new_win .win_btn a {display:inline-block;height:45px;line-height:40px;font-weight:bold}
.new_win .cert_btn {text-align:center}
.new_win .btn_close {width:60px;height:45px;overflow:hidden;cursor:pointer}
.new_win .btn_submit {padding:0 20px;height:45px;font-weight:bold;font-size:1.083em}

/* 검색결과 색상 */
.sch_word {color:#fff;background:var(--main-color);padding:2px 4px;margin:0 2px}

/* 사이드뷰 */
.sv_wrap {display:inline-block;position:relative;font-weight:normal;line-height:20px}
.sv_wrap .sv {z-index:1000;width:100px;display:none;margin:5px 0 0;font-size:0.92em;background:#333;text-align:left;
-webkit-box-shadow:2px 2px 3px 0px rgba(0,0,0,0.2);
-moz-box-shadow:2px 2px 3px 0px rgba(0,0,0,0.2);
box-shadow:2px 2px 3px 0px rgba(0,0,0,0.2)}
.sv_wrap .sv:before {content:"";position:absolute;top:-6px;left:15px;width:0;height:0;border-style:solid;border-width:0 6px 6px 6px;border-color:transparent transparent #333 transparent}
.sv_wrap .sv a {display:inline-block;width:100px;margin:0;padding:0 10px;line-height:30px;font-weight:normal;color:#bbb}
.sv_wrap .sv a:hover {background:#000;color:#fff}
.sv_member {color:#333;font-weight:bold}
.sv_on {display:block !important;position:absolute;top:23px;left:0px;width:auto;height:auto}
.sv_nojs .sv {display:block}

/* 페이징 */
.pg_wrap {clear:both;display:block;padding:10px 0;text-align:center}
.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:var(--main-color);border:1px solid var(--main-color);color:#fff;font-weight:bold;height:30px;line-height:30px;padding:0 10px;min-width:30px;border-radius:3px}

/* 마이페이지 */
#mypage {width:100%; max-width:400px; margin:0 auto;}
#mypage .intro {text-align:center; margin-bottom:20px;}
#mypage .intro h3 {font-size:1.29em; font-weight:normal;}
#mypage .intro h3 b {font-size:1.57rem; }
#mypage .intro p {color:#888; margin-top:10px;}
#mypage .my_link a {display:block; padding:20px; border:1px solid #e5e5e5; border-radius:8px; margin-bottom:5px;}
#mypage .my_link a i {color:#bbb; margin-right:10px;}
#mypage .my_link .new_icon {background:var(--main-color); color:#fff; padding:0 3px; border-radius:3px; margin-left:5px; font-size:0.75rem; font-weight: bold;}

/* 서브페이지 */
#sub {font-size:1.129em;}
#sub h3 {font-size:1.86em;}
#sub p {line-height:160%; word-break:keep-all;}
#sub.about .img {width:100%; height:300px; background:url('/img/about.jpg') 50% 50% no-repeat; background-size:cover;}
#sub.about h3 {font-family:'S-CoreDream'; margin-top:40px; word-break:keep-all;}
#sub.about p {margin-top:20px; }
#sub.step p {margin-bottom:20px;}
#sub.step .box {border:1px solid #e5e5e5; border-radius:15px; padding:40px; display:flex; align-items: center; margin-bottom:20px;}
#sub.step .box .icon { display:flex; justify-content:center; align-items:center; width:120px; height:120px; background:var(--main-color); border-radius:50%;}
#sub.step .box .txt {padding-left:40px;}
#sub.step .box .txt h4 {font-family:'S-CoreDream'; font-size:1.43em; margin-bottom:10px;}
#sub.step .box .txt p {margin-bottom:0;}
#sub.step ul {line-height:160%;}
#sub.step ul li:before {content:"ㆍ"; font-weight:bold; color:var(--main-color);}
#sub.step ul li {word-break: keep-all;}
#sub.step ul li b {margin-right:10px;}
#sub.step .outro {margin-top:40px;}
#sub.step .outro h4 {font-size:1.71em; font-weight:normal; word-break:keep-all;}
#sub.step .outro p {margin-top:20px;}

/* 버스대절 */
#buses {font-size:1.14em;}
#buses .w10 {width:10%}
#buses .w20 {width:20%}
#buses .w30 {width:30%}
#buses .w40 {width:40%}
#buses .w50 {width:50%}
#buses .w60 {width:60%}
#buses .w70 {width:70%}
#buses .w80 {width:80%}
#buses .w90 {width:90%}
#buses .w100 {width:100%}
#buses .mt10 {margin-top:10px;}
#buses .mt20 {margin-top:20px;}
#buses .mt30 {margin-top:30px;}
#buses .mt40 {margin-top:40px;}

#buses .intro {width:100%; background:linear-gradient(135deg, var(--main-color) 0%, var(--sub-color) 100%); padding:40px 0;}
#buses .intro h4 {font-size:2.29em; text-align:center; font-family:'S-CoreDream';}
.round_box { width:100%; max-width:var(--max-width); margin:20px auto 0; background:#fff; border-radius:25px; padding:40px;}
.buses_form form {display:flex; flex-wrap:wrap;}
.form_gr {padding:5px;}
.form_gr.w100 {width:100%;}
.half_gr {display:flex; justify-content:space-between;}
.half_gr .half {width:calc(50% - 5px);}
.form_gr > label,
.form_gr > .label,
.half > label,
.half > .label { display:inline-block; font-weight:500; color:var(--main-color); margin-bottom:10px; font-size:0.88em;}
.form_gr .radio_div {display:flex;}
.form_gr .radio_div label {width:100%; margin-right:5px;}
.form_gr .radio_div label:last-child {margin-right:0}
.form_gr .radio_div input[type="radio"]{ display:none; }
.form_gr .radio_div input[type="radio"] + span{	display:flex; justify-content:center; align-items: center;	background:none;	border:1px solid #e5e5e5; padding:0 10px; height:50px;	font-weight:500;	cursor:pointer;  color:#888; text-align:center; white-space:nowrap;}
.form_gr .radio_div input[type="radio"]:checked + span{ border:1px solid var(--sub-color); color:var(--main-color);}
.form_gr input,
.form_gr textarea {width:100%; height:50px; line-height:48px; border:1px solid #e5e5e5; color:#444; padding:0 10px;}
.form_gr textarea {height:120px; resize:none;}
.agree_gr { display:flex; align-items:center; color:#888;}
.agree_gr input {margin-right:2px; border:1px solid #e5e5e5; width:12px; height:12px; border-radius:0;}
.btn_gr {display:flex; justify-content:center; align-items:center; margin-top:10px;}
.btn_gr a,
.btn_gr button { display:flex; justify-content:center; align-items:center; width:100%; max-width:300px; height:50px; border:0; background:var(--point-color); color:#fff;}

#buses .list_area {width:100%; max-width:var(--max-width); margin:60px auto 0;}
#buses .list_area h4 {font-size:1.71em; margin-bottom:10px;}
#buses .list_area h4 span {font-size:0.68em; margin-left:5px;}
#buses .list_area table {width:100%;}
#buses .list_area table * { word-break:keep-all;}
#buses .list_area table tr { cursor: pointer;}
#buses .list_area table th,
#buses .list_area table td {padding:10px 5px; text-align:center; border-bottom:1px solid #e5e5e5;}
#buses .list_area table thead th {font-size:0.78em; font-weight:normal; color:#888; border-top:1px solid #e5e5e5; background:#f5f5f5;}
#buses .route_type,
#buses .status { display:inline-block; border:2px solid var(--main-color); color:var(--main-color); padding:5px 20px; font-weight:bold; white-space:nowrap;}
#buses .status {background:var(--main-color); color:#fff;}
#buses .status.off {border-color:#e5e5e5; background-color:#e5e5e5; color:#444;}
#buses .count {color:#e90000;}

.info_table {width:100%; border-top:2px solid #222;}
.info_table th,
.info_table td {padding:10px; border-bottom:1px solid #e5e5e5;}
.info_table th { width:15%; background:#f5f5f5; white-space:nowrap;}
.info_table td {width:35%;}

.info_red {color:#e90000; margin-top:10px;}

#bid_price { max-width:var(--max-width-min); margin:0px auto;}
#bid_price h4 {font-size:1.71em; margin-bottom:10px;}
#bid_price button {width:100%; height:50px; background:var(--main-color); color:#fff; border:0; text-align:center; margin-top:10px;}

.esview .btn_gr a { border:1px solid #ddd; background:#e5e5e5; color:#222;}
.esview .list_tit {display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:10px; border-bottom:1px solid #e5e5e5; padding-bottom:10px;}
#buses.esview .list_area h4 {margin-bottom:0;}
#buses.esview .list_area .filter a {color:#444;}
#buses.esview .list_area .filter a:after {content:"|"; color:#ddd; margin:0 5px;}
#buses.esview .list_area .filter a:last-child:after {content:""; margin:0;}

.bid_driver_area {display:flex; flex-wrap:wrap;}
.bid_driver_area .driver {display:flex; border:1px solid #e5e5e5; padding:10px; width:calc(33.33% - 10px); margin-right:15px; margin-bottom:15px;}
.bid_driver_area .driver:nth-child(3n) {margin-right:0;}
.bid_driver_area .driver .img { position:relative; width:120px; height:120px;}
.bid_driver_area .driver .img img {width:100%; height:100%;}
.bid_driver_area .driver .wish { position:absolute; top:5px; left:5px; background-color:#e5e5e5; color:#888; border-radius:50%; width:30px; height:30px; border:0; }
.bid_driver_area .driver .wish.on {background-color:#ff5f45; color:#fff;}
.bid_driver_area .driver .txt { position:relative; padding-left:20px;}
.star {color:var(--sub-color); margin-bottom:5px;}
.star span {margin-left:5px; color:var(--main-color);}
.bid_driver_area .driver .company {font-size:1.12em; font-weight:bold;}
.bid_driver_area .driver .com_info {color:#888; margin:5px 0 10px;}
.bid_driver_area .driver .bid_price {font-size:1em; color:#e90000; font-weight:bold;}

.drview .bid_driver_area {display:block;}
.drview .round_box { max-width:var(--max-width-min); box-shadow:0 8px 20px rgba(0,0,0,0.15);}
.drview .bid_driver_area .driver {width:100%; margin:0; border:0; padding:0;}
.drview .bid_driver_area .driver .img {width:300px; height:300px;}
.drview .bid_driver_area .driver .txt {width:calc(100% - 300px);padding-left:40px;}
.drview .bid_driver_area .driver .wish { left:auto; right:0;}
.drview .bid_driver_area .driver .company { font-size:2em;}
.drview .bid_driver_area .driver .seater {font-size:1rem; font-weight:600; color:var(--dark-color);}
.drview .bid_driver_area .driver .bid_price { border-top:1px solid #e5e5e5; margin-top:20px; padding-top:20px; margin-bottom:10px; font-size:2em; text-align:right;}
.drview .bid_driver_area .driver .bid_option {text-align:right; color:#444;}
.btn_chat_more { display:flex; justify-content:center; align-items:center; width:100%; height:50px; background-color:var(--dark-color); color:#fff; font-weight:bold; margin-top:20px; }
.btn_driver_only {display:flex; margin-top:10px;}
.btn_driver_only a { display:flex; justify-content:center; align-items:center; width:100%; height:50px; background:#f5f5f5; border:1px solid #ddd; color:#444; margin-right:10px; }
.btn_driver_only a:last-child {margin-right:0;}

.drview h5 {color:#888; margin-bottom:10px;}
.drview .review_box {border:1px solid #e5e5e5; border-radius:15px; padding:20px; margin-bottom:10px; }
.drview .review_name {display:flex; color:#888; font-size:0.88em;}
.drview .review_name .star {margin-left:10px;}

/* 채팅 */
#driver_chat { position:relative; max-width:var(--max-width-min); height:calc(100vh - 180px); background-color:#fafafa; margin:0 auto; }
#driver_chat .chat_out { display:none;}
#driver_chat .did_info { position:absolute; top:0; width:100%; display:flex; justify-content:space-between; align-items:center; background:#fff; border-bottom:1px solid #e5e5e5; padding:10px; font-size:1.14em; z-index:1;}
#driver_chat .did_info .left {display:flex; align-items:center; }
#driver_chat .did_info .right {text-align:right;}
#driver_chat .did_info .img {width:100px; height:100px; margin-right:10px;}
#driver_chat .did_info .img img {width:100%; height:100%;}
#driver_chat .did_info .company {font-size:1.33em; font-weight:bold;}
#driver_chat .did_info .seater {color:#888;}
#driver_chat .did_info .bid_price_more {display:none;}
#driver_chat .did_info .bid_price {font-size:1.33em; font-weight:bold; color:#e90000;}
#driver_chat .chat_area {width:100%; height:100%; overflow-y: scroll; padding:120px 20px 140px;}

#driver_chat .chat_area .empty { display:flex; justify-content:center; align-items:center; width:100%; height:100%; color:#888; font-size:1.18em;}

.chat_end {margin-top:20px; border-top:1px dashed #e5e5e5; padding:40px 0 20px; text-align:center; font-size:1.29em;}
.chat_end * {word-break:keep-all;}
.chat_end strong { display:inline-block; margin:10px 0 5px; font-size:1.86em;}
.chat_end p {margin:0 0 20px;}
.chat_end .chat_end_time {color:#888; font-size:0.88rem; margin-bottom:0;}
.chat_end .chat_tel {font-size:1.57em; font-weight:bold; color:var(--main-color);}
.chat_end .chat_end_btn_area {display:flex; align-items:center; justify-content:space-between; margin-top:40px;}
.chat_end .chat_end_btn_area a {width:calc(50% - 5px); height:50px; display:flex; justify-content:center; align-items:center; background:#ddd; color:#222;}
.chat_end .chat_end_btn_area .chat_end_btn_review {background:var(--point-color); color:#fff;}

#driver_chat .balloon_area {display:flex;}
#driver_chat .balloon_right {justify-content:flex-end;}
#driver_chat .balloon { position: relative; width:fit-content; max-width:80%; padding:20px; border-radius:12px; background:var(--sub-color); margin-top:10px; font-size:1.14em;}
#driver_chat .balloon:after {content: ''; position: absolute; bottom: 0; right: 20px; width: 0; height: 0; border: 10px solid transparent; border-top-color: var(--sub-color); border-bottom: 0; border-right: 0; margin-left: -20px; margin-bottom: -10px; }
#driver_chat .balloon_left .balloon { float:left; background:var(--dark-color); color:#fff;}
#driver_chat .balloon_left .balloon:after { border: 10px solid transparent; border-left:0; border-top-color:var(--dark-color); right:auto; left:20px; margin-left:0px; margin-bottom:-20px; }

#driver_chat .bid_resv_btn {position:absolute; bottom:-60px; left:50%; margin-left:-50px;  display:flex; justify-content:center; align-items:center; width:100px; height:50px; background:rgba(255,255,255,0.9); border-radius:8px; border:2px solid var(--point-color); color:var(--point-color); font-weight:bold; font-size:0.88rem; animation:movebtn 3s ease-in-out infinite;}
#driver_chat .bid_resv_btn span {margin-left:5px;}
#driver_chat .chat_input_area { position:absolute; bottom:0; width:100%; height:120px; }
#driver_chat .chat_input_area textarea { display:block; width:100%; height:80px; border:1px solid #ddd; padding:10px; resize:none;}
#driver_chat .chat_input_area .chat_btn {width:100%; }
#driver_chat .chat_input_area .chat_btn a { display:flex; justify-content:center; align-items:center; width:100%; height:40px; font-size:1.18em; background:#222; color:#fff;}

.alert_layer { display:none; text-align:center !important; font-size:1.14em;}
.alert_layer * {word-break:keep-all;}
.alert_layer i { margin:10px; font-size:3em; color:#e5e5e5;}
.alert_layer strong {font-size:2em; display:inline-block; margin-bottom:10px;}
.alert_layer textarea {width:100%; height:160px; border:1px solid #e5e5e5; resize:none; padding:10px; margin-top:10px; word-break:break-all;}
.alert_btn_area {width:100%; display:flex; align-items:center; justify-content:space-between; margin-top:40px;}
.alert_btn_area a {width:calc(50% - 5px); background:var(--dark-color); padding:10px; color:#fff;}
.alert_btn_area .alert_btn_cancel {background:#ddd; color:#666;}
.chat_end_review .star i { margin:0; font-size:1.29em; color:var(--sub-color);}
.chat_end_cancel .alert_btn_area,
.chat_end_review .alert_btn_area {margin-top:10px;}

@keyframes move { /*animation:move 1.5s infinite linear;*/
  0%, 100% { transform:translate(-50%,-50%);}
  50% { transform:translate(-50%,-60%);}
}
@keyframes movebtn { /*animation:move 1.5s infinite linear;*/
  0%, 100% { transform:translateY(-10px);}
  50% { transform:translateY(0);}
}

@keyframes blinker { /*animation:blinker 1s linear infinite*/
	50% {opacity:0}
	}
@media (hover:hover) {
  #buses .list_area table tr:hover {background:#fafafa;}
}
/* 작은모니터 */
@media (max-width:1580px){
/* 퀵 */
.quick {display:none;}
}

/* 노트북 */
@media (max-width: 1280px) {
  :root {
    --max-width:calc(100% - 20px);
    --hd-height:80px;
  }
  /* 상단 레이아웃 */
  #logo img,
  #ft_logo img {height:40px;}

  .m_how .box_area .box div {padding:30px 20px;}
  .m_how .box_area .box div b {display:block; margin-bottom:10px;}
  .m_how .box_area .box div span {margin-left:0;}

  /* 하단 레이아웃 */
  .ft_info br {display:none;}
}
/* 태블릿 */
@media (max-width: 1024px) {
  /* 상단 레이아웃 */
  #gnb {width:640px; padding-right:40px;}
  #gnb #gnb_1dul {font-size:1.18em;}

  /* 메인 */
  #mv .visual .tit {font-size:2.29em; margin-top:40px;}
  #mv .visual .img {padding-right:0; text-align:center;}

  h3.tit {font-size:2em; margin-bottom:20px;}
  .m_pd {padding:60px 0;}
  .m_how .box_area .box div {font-size:1.18em;}
  .m_ptn {padding-bottom:40px;}

  /* 중간 레이아웃 */
  #container {padding:25px;}
  #container_title { padding:40px 0 20px; font-size:2em;}

  /* 하단 레이아웃 */
  #ft .ft_wr {flex-wrap:wrap;}
  #ft_copy {width:100%; margin-top:20px; padding-left:0;}
  #ft_copy span, 
  #ft_copy a {margin-right:10px;}

  /* 버스대절 */
  #buses .w10,
  #buses .w20,
  #buses .w30,
  #buses .w40,
  #buses .w50 {width:50%}
  #buses .w60,
  #buses .w70,
  #buses .w80,
  #buses .w90,
  #buses .w100 {width:100%}
  #buses.eslist .buses_form .form_gr:nth-child(8),
  #buses.eslist .buses_form .form_gr:nth-child(9) {width:25%;}
  #buses .route_type,
  #buses .status {font-size:0.88em; padding:5px;}

  .bid_driver_area .driver {width:calc(50% - 5px); margin-right:10px; margin-bottom:10px;}
  .bid_driver_area .driver:nth-child(3n) {margin-right:10px;}
  .bid_driver_area .driver:nth-child(even) {margin-right:0px;}
}
/* 작은모니터 */
@media (max-width: 960px){
  :root {
    --max-width-min:calc(960px - 20px);
  }
}

/* 모바일 */
@media (max-width: 767px){	
  :root {
    --hd-height:60px;
  }
  /* 상단 레이아웃 */
  .pc_view{display:none !important}
  .mob_view {display:block;}
  /*#logo .logo_view {display:block; height:20px;}
  .m_view{display:none !important}*/
  #hd_wrapper {justify-content: center;}
  #logo img, 
  #ft_logo img {height:30px;}

  /* 메인 */
  #mv {max-width:var(--max-width); margin:10px auto; border-radius:25px;}
  #mv .inner {padding-bottom:20px;}
  #mv .visual {width:100%;}
  #mv .visual .tit {margin-top:0; padding-left:5%;}
  #mv .visual .balloon span:nth-child(2) {top:18%;}
  #mv .visual .balloon span:nth-child(4) {top:40%;}
  #mv .visual .balloon span:nth-child(5) {left:0%}
  #mv .visual .balloon span:nth-child(6) {top:60%;}
  #mv .visual .balloon span:nth-child(7) {right:4%;}
  #mv .visual .balloon span:nth-child(8) {left:14%;}

  .m_est_btn { margin:20px auto; width:80%; height:60px; line-height:60px; border-radius:25px; background:var(--point-color); color:#fff; text-align:center; font-size:1.29em; font-weight:bold;}

  .m_how .box_area .box {width:100%;}
  .m_how .box_area .box:last-child {margin-top:20px;}
  .m_ptn .box {width:calc(33.33% - 5px); height:80px; border-radius:18px; margin-bottom:10px;}
  .m_ptn .box:last-child {display:none;}

  /* 버튼 */
  .btn {padding:0 10px;}
  /* 게시판용 버튼 */
  a.btn_admin {padding:0 10px;}

  /* 중간 레이아웃 */
  #container {padding:0; border-radius:0; box-shadow:none;}
  #container_title { padding:30px 0 20px; font-size:1.71em;}

  /* 하단 레이아웃 */
  #ft {line-height:140%; border-top:1px solid #e5e5e5;margin-top:40px; }
  #ft > .ft_wr:first-child {padding:20px 0;}
  #ft_link {margin-bottom:10px;}
  .ft_info {padding-bottom:100px;}

  /* 하단 메뉴 고정 */
  .ft_fixed {position:fixed; bottom:0; width:100%; display:flex; justify-content:space-around; align-items:flex-end; text-align:center; background-color:#fff; border-top:1px solid #e5e5e5; padding:10px 0; z-index:9;}
  .ft_fixed a {position:relative;}
  .ft_fixed img {width:30px;}
  .ft_fixed span {display:block; font-size:0.88em; color:#888; text-align:center; margin-top:5px;}
  .ft_fixed .ft_symbol {width:50px; height:50px; border-radius:50%; display:flex; justify-content:center; align-items:center; margin-top:-20px; margin-left:calc(50% - 25px);
  background: linear-gradient(135deg,  var(--main-color) 0%,var(--sub-color) 100%); }
  .ft_fixed .ft_symbol img {filter:invert(1);}

  /* 서브 */
  #sub.step .box {flex-wrap:wrap;}
  #sub.step .box .txt {width:100%; padding-left:0; margin-top:20px;}
  #sub.step .box .txt span {display:block;}
  #sub.step ul li {margin-bottom:10px;}
  #sub.step ul li:before {content:""; }
  #sub.step ul li:last-child {margin-bottom:0px;}
  #sub.step ul li b {color:var(--main-color);}
  #sub .root_daum_roughmap .wrap_map {height:300px !important;}

  /* 버스대절*/
  #buses .intro h4 {font-size:2em; letter-spacing: -1px; word-break:keep-all;}
  .round_box {padding:20px;}
  #buses .list_area h4 {font-size:1.38em;}
  #buses .list_area table thead {display:none;}
  #buses .list_area table tr {display:flex; flex-wrap:wrap; border:1px solid #e5e5e5; padding:20px; margin-bottom:10px;}
  #buses .list_area table tr td {border:0; padding:0; text-align:left; }
  #buses .list_area table tr td:nth-child(1),
  #buses .list_area table tr td:last-child {width:100%;}
  #buses .list_area table tr td:nth-child(1) {padding-bottom:10px;}
  #buses .list_area table tr td:nth-child(2),
  #buses .list_area table tr td:nth-child(3),
  #buses .list_area table tr td:nth-child(4),
  #buses .list_area table tr td:nth-child(5) {width:fit-content;}
  #buses .list_area table tr td:nth-child(4):before {content:"~";}
  #buses .list_area table tr td:nth-child(2),
  #buses .list_area table tr td:nth-child(4) {font-size:0.88em;}
  #buses .list_area table tr td:nth-child(3),
  #buses .list_area table tr td:nth-child(5) {font-weight:bold; padding-left:5px;}
  #buses .list_area table tr td:nth-child(6),
  #buses .list_area table tr td:nth-child(7) {width:50%; padding-top:10px;}
  #buses .list_area table tr td:nth-child(7) {text-align:right;}
  #buses .list_area table tr td .status {display:block; text-align:center; padding:10px; margin-top:10px;}
  #buses .route_type {padding:5px 20px;}

  #bid_price h4 {font-size:1.38em; }

  .bid_driver_area .driver {width:100%; margin-right:0px; }
  .bid_driver_area .driver:nth-child(3n) {margin-right:0;}
  .bid_driver_area .driver .img {width:100px; height:100px;}

  .drview .bid_driver_area .driver .img {width:200px; height:100%;}
  .drview .bid_driver_area .driver .txt {width:calc(100% - 200px); font-size:0.88em; padding-left:20px;}
  .drview .bid_driver_area .driver .bid_price {margin-top:0; padding-top:10px;}
  .btn_chat_more {margin-top:10px;}

  /* 채팅 */
  #driver_chat .chat_out { position:absolute; top:-50px; left:10px; display:flex; justify-content:center; align-items:center; width:60px; height:40px; border:1px solid var(--dark-color); border-radius:8px; color:var(--dark-color); font-weight:bold; font-size:0.88em; z-index:999;}
  #driver_chat .chat_out span {margin-left:5px;}
}
/* 작은 모바일 */
@media (max-width: 480px){
  body {font-size:0.75em;}

  /* 메인 */
  #mv .inner {padding-top:40px;}
  #mv .visual .tit {font-size:1.86em;}
  #mv .visual .img {padding:60px 0 0;}
  #mv .visual .balloon span { padding:5px 10px; font-size:1em;}
  #mv .visual .balloon span:after {bottom:-5px; border-top-width:5px; border-left-width:5px; border-right-width:5px;}
  
  .m_est_btn {height:50px; line-height:50px;}

  /* 게시판용 버튼 */
  #bo_list a.btn_b02 {position:fixed; bottom:80px; right:10px; width:calc(100% - 20px);}

  /* 중간 레이아웃 */
  #container {font-size:1.14em;}
  .bd_hd_info {padding:10px; margin-bottom:10px;}

  /* 하단 레이아웃 */
  #ft_link span {display:block;}
  #ft_copy span {display:block; white-space:normal;}
  
  /* 서브 */
  #sub h3 {font-size:1.43em;}
  #sub.about .img {height:160px;}
  #sub.step .box {padding:30px 15px;}
  #sub.step .box .icon {width:100px; height:100px;}
  #sub.step .box .icon img {width:60px;}
  #sub .root_daum_roughmap .wrap_map {height:240px !important;}

  /* 버스대절 */
  #buses .w10,
  #buses .w20,
  #buses .w30,
  #buses .w40,
  #buses .w50 {width:100%}
  #buses.eslist .buses_form .form_gr:nth-child(8), 
  #buses.eslist .buses_form .form_gr:nth-child(9) {width: 50%;}
  
  #buses .list_area { margin-top:40px;}
  
  .esview .list_tit {flex-wrap:wrap;}
  #buses.esview .list_area .filter {margin-top:10px; font-size:0.88em;}
  .bid_driver_area .driver .img {width:80px; height:80px;}

  .info_table tr {display:flex; flex-wrap:wrap;}
  .info_table th {width:30%; font-size:0.88em;}
  .info_table td {width:70%;}

  #bid_price .radio_div {flex-wrap:wrap;}
  #bid_price .radio_div label {width:calc(50% - 5px); margin-right:10px; margin-bottom:10px;}
  #bid_price .radio_div label:nth-child(even) {margin-right:0;}

  .drview .bid_driver_area .driver {flex-wrap:wrap;}
  .drview .bid_driver_area .driver .img,
  .drview .bid_driver_area .driver .txt {width:100%;}
  .drview .bid_driver_area .driver .txt {padding-left:0; padding-top:20px;}
  .drview .bid_driver_area .driver .img {height:fit-content}

  /* 채팅 */
  #driver_chat .chat_out {width:40px; font-size:1em;}
  #driver_chat .chat_out span {display:none; }
  #driver_chat .did_info {flex-wrap:wrap; font-size:0.88em;}
  #driver_chat .did_info .left,
  #driver_chat .did_info .right {width:100%;}
  #driver_chat .did_info .img {width:40px; height:40px;}
  #driver_chat .did_info .bid_price_more {display:flex; position:absolute; bottom:10px; right:10px;}
  #driver_chat .did_info .bid_price_more span {margin-right:5px;}
  #driver_chat .did_info .right { position:absolute; top:60px; left:0; background:#fff; padding:10px; border-top:1px dashed #e5e5e5; border-bottom:1px solid #ddd; text-align:center; display:none; z-index:1;}
  #driver_chat .bid_resv_btn { left:10px; margin-left:0; bottom:-50px; width:80px; height:40px; font-size:0.78rem;}
  #driver_chat .chat_area {padding-top:60px; padding-bottom:180px;}
  #driver_chat .balloon {padding:12px;}
  #driver_chat .chat_input_area { height:160px; }
  #driver_chat .chat_input_area textarea {height:120px;}
  .chat_end {font-size:1em;}

  .alert_layer strong {font-size:1.57em;}
}