@charset "UTF-8";
/* @font-face {
    font-family: 'Wonchuri';
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/high1WonchuriTitleB.eot);
    src: url(../fonts/high1WonchuriTitleB?#iefix) format('embedded-opentype'),
         url(../fonts/high1WonchuriTitleB.woff) format('woff'),
         url(../fonts/high1WonchuriTitleB.ttf) format('truetype');
} */

/* 반응형, 모바일에서 모든요소의 패딩,선을 크기안에 포함시킴 */
/* *,:before,:after {box-sizing: border-box;} */

/* body에 들어갈수있는 모든태그의 여백빼기 */
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,address,code,em,img,strong,sub,sup,b,u,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figure,figcaption,footer,header,hgroup,menu,nav,section,main,audio,video {margin: 0; padding: 0;}

/* html5추가 시멘틱엘리먼트를 익스하위버전에서 블럭으로 인식되도록함 */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,main {display: block}

/* button태그에 손모양 커서 */
button {cursor: pointer;}
/* 익스하위버전에서 이미지 선없애기 */
fieldset,img {border: 0; vertical-align: top;}
/* 리스트 기호 빼기 */
ol,ul {list-style: none}
/* 태그 기본 기울임꼴 제거 */
address,em {font-style: normal}
strong {font-weight: normal;}
/* 벤더프리픽스: 브라우저 제조사를 의미 */
a { text-decoration: none; color: #444; -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1); }
/* iframe으로 외부컨텐츠를 연결했을때
외부컨텐츠안쪽내용이 우리페이지에 영향을 주지못하도록 가려줌*/
iframe {overflow: hidden; border: 0}
/* 칸의 선을 합치기, 칸의 간격없애기, 가로를 늘려줌 */
table {border-collapse: collapse; border-spacing: 0; width: 100%}
/* 굵기 빼고 헤딩태그 폰트크기를 body에 선언한 크기와 일치시킴 */
h1,h2,h3,h4,h5,h6 {font-weight: normal; font-size: 100%}
/* 폼요소의 높이가 다를때 요소끼리 세로정렬시킴, ios 둥근모서리, 기본스타일 제거 */
/* border-radius:0 -> iOS에서 테두리가 둥글게 나오므로 빼줌 */
/* -webkit-appearance: none -> iOS에서 폼요소에 내부그림자가 나오므로 빼줌 */
input, select, textarea, button { vertical-align: middle; margin: 0; padding: 0; border-radius: 0; -webkit-appearance: none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1); }
/* 폼요소 클릭 시 폼요소 포커스시 아웃라인 안보이게 */
input:focus, select:focus, textarea:focus, button:focus {outline: none;}
/* textarea 리사이즈기능 빼기 */
textarea {resize: none}
/* 모바일 크롬, 사파리의 텍스트 자동확대 방지*/
body { -webkit-text-size-adjust: none }





/*********************** 공통스타일 *************************/
/* body.on {overflow: hidden; height:100%;} */

body,input,button,select,textarea,table {
    font-family:'Noto Sans KR','맑은 고딕','malgun gothic','Apple SD Gothic Neo',sans-serif;
    font-size: 15px;
    color:#666;
}

/* Skip Navgation */
#skip_navi {position: relative;}
#skip_navi a { position: absolute; left: 0; top: -999px; width: 100%; padding: 10px 0; background: #fff; z-index: 99999; text-align: center }
#skip_navi a:hover, #skip_navi a:active, #skip_navi a:focus {top:0}

/* legend,caption,메뉴제목,섹션제목 블라인드 */
legend, caption, .blind { position: absolute; overflow: hidden; border:5px solid red; clip: rect(0 0 0 0); margin: -1px; width: 1px; height: 1px }

/* float해제 */
.clearfix:after { content: ''; display: block; clear: both; }

/* placeholder */
::-webkit-input-placeholder {color:#999; font-size: 14px;} /* Webkit,크롬,사파리 */
:-moz-placeholder {color:#999; font-size: 14px;} /* Firefox 4-18 */
::-moz-placeholder {color:#999; opacity:1; font-size: 14px;} /* Firefox 19+ */
:-ms-input-placeholder {color:#999 !important; font-size: 14px;} /* IE10+ */

/* 텍스트 선택 컬러 */
/* ::selection { background: #ef151e;color: #ffffff; } */

/* 폼요소 공통 */
/* IE x버튼, password 눈모양 안보이게 */
input::-ms-clear,
input::-ms-reveal {
    display: none;
}

/* input search x버튼 안보이게 */
input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration{
	display:none;
}


/* 체크박스 공통 */
.checkbox_wrap {
    /* 인라인블럭으로 크기 잡아서 한 줄에 여러개 넣을 수 있음 */
    display: inline-block;
    margin-right: 6px;
}
input[type=checkbox] + label {
    cursor: pointer;
    margin-right: 6px;
}

input[type=checkbox] + label:before {
    content:'';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid #444;
    border-radius: 50%;
    vertical-align: -6px;
    margin-right: 5px;
}
input[type=checkbox]:checked + label:before {
    background: #FB4357 url(../icons/check_white.png) no-repeat center / 75%;
    border: 1px solid #FB4357;
}



/* 라디오 공통 */

.radio_wrap {
    display: inline-block;
    margin-right: 6px;
}
input[type=radio] + label {
    cursor: pointer;
    margin-right: 6px;
    position: relative;
}
input[type=radio] + label:before {
    content:'';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid #444;
    border-radius: 50%;
    margin-right: 5px;
    vertical-align: -6px;

}
input[type=radio]:checked + label:after {
    content:'';
    position: absolute;
    left: 4px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #FB4357; 
}

/* select 공통 */
.select_wrap {
    display: inline-block;
    border: 1px solid #666;
    width: 70px;
    border-radius: 5px;
    position: relative;
}
.select_wrap:before {
    content:'';
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -1px;
    width: 12px;
    height: 7px;
    background: url(../icons/arrow_down.png) no-repeat center;

}
.select_wrap.on:before {
    transform: rotateZ(180deg);
    margin-top: -4px;
}
.select_wrap select {
    border: none;
    height: 35px;
    font-size: 14px;
    color: #999;
    text-indent: 9px;
    width: 100%;
    cursor: pointer;
    position: relative;
    background: none
}

/* 화살표제거 */
select {
    -webkit-appearance: none; 
    -moz-appearance: none; 
    appearance: none;
}
/* 익스 화살표 제거 */
select::-ms-expand { display: none; }

/* textarea 공통 */
 textarea {
    width: 100%;
    border: none;
    background: #f8f8f8;
    padding: 15px;
    box-sizing: border-box;
    }

/* 파일선택 공통 */
.file_wrap {
    display: inline-block;
    border: 2px solid #ddd;
    width: 466px;
    box-sizing: border-box;
    position: relative;
}

.file_wrap input[type=text] {
    height: 41px;
    width: 100%;
    padding: 0 111px 0 13px;  
    border: none;
    box-sizing: border-box;
    color: #000;
    font-size: 14px;
}

/* .file_wrap label {
    width: 94px;
    display: inline-block;
    background: #000;
} */

.file_wrap label {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    text-align: center;
    width: 98px;
    line-height: 41px;
    font-weight: 500;
    cursor: pointer;
}
.file_wrap label:before {
    content: '';
    position:absolute;
    left: 0;
    top: 50%;
    margin-top: -8px;
    width: 2px;
    height: 16px;
    background: #e8e8e8;
}







/* 라운드 버튼 */
.btn_round {
    display: inline-block;
    /* 버튼의 최대 높이의 절반 값으로 입력_최대 버튼을 60으로 가정 */
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
    vertical-align: middle;

}

/* 버튼_제출 */
.btn_submit {
    text-align: center;
    padding: 6px 10px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 13px;
    margin-left: 4px;
}
.btn_enroll {
    line-height: 60px;
    width: 234px;
    border: none;
    border-radius: 10px;
}
.btn_enroll_small {
    line-height: 50px;
    width: 170px;
    border: none;
    border-radius: 10px;
    margin: 0 12px;
    font-size: 18px;
}

/* 테두리 버튼 */
.btn_border {
    border: 2px solid #009223;
    background: white;
    box-sizing: border-box;
}
.btn_border:hover {
    background: #000;
    color:#fff;
}

/* 버튼 배경색 */
.bg_point01 {
    /* 배경색 그라데이션으로 넣기 #FF7356 */
    background: linear-gradient(to right, #FB4357, #FF7356) ;
    color: white;
}
.bg_point02 {
    background: #FB4357;
    color: white;
}

/* 등록하기 버튼 */
.btn_register:after {
    content:'';
    display: inline-block;
    width: 26px;
    height: 16px;
    background: url(../images/icon_reg.png) no-repeat;
    margin-left: 5px;
}


/* 다운로드 버튼 공통 */
.btn_download {
    padding:7px 3px;
    display: inline-block;
    /* 줄간격으로 인해 기본높이가 커지므로 줄여줌 */
    line-height: 1;
}
.btn_download:hover {
    border-bottom: 1px solid #000;
}
.btn_download:hover [class^=icon_download] {
    transform: translateY(-1px);
}

[class^=icon_download] {
    display: inline-block;
    width:20px;
    height: 20px;
    text-indent: -9999px;
    background: url(../images/sprite_pc_new.png) no-repeat;
}
.icon_download_pdf {
    background-position-x:-125px;
}
.icon_download_mp4 {
    background-position-x:0px;
}
.icon_download_txt {
    background-position-x:-25px;
}
.icon_download_ppt {
    background-position-x:-50px;
}
.icon_download_doc {
    background-position-x:-75px;
}
.icon_download_xls {
    background-position-x:-100px;
}

/* 필수 별 아이콘 */
/* .icon_star {
    display:inline-block;
    width: 7px;
    height: 6px;
    background: url(../images/icon_ess.png) no-repeat;
    vertical-align: 3px;
    margin: 0 3px;
} */

/* 글자색 공통 */
.txt_point01 {color:  #ED3124;}
.txt_point02 {color:  #FB4357;}


/* 문의 테이블 공통 */
.tbl_inquiry_wrap {
    border-top: 2px solid #707070;
    border-bottom: 1px solid #ddd;
}
.tbl_inquiry_wrap table {
    table-layout: fixed;
}
.tbl_inquiry_wrap th {
    height: 60px;
    background: #fff;
    text-align: left;
    font-weight: 500;
    border-top:1px solid #ddd;
    text-indent: 15px;
}

.tbl_inquiry_wrap th.col01 {
    width: 15%;
}

.tbl_inquiry_wrap td {
    height: 60px;
    border-top:1px solid #ddd;
    text-align: left;
    color:#555;
}

.tbl_inquiry_wrap .td_left {
    text-align: left;
}

.tbl_inquiry_wrap .view_link {
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}
.tbl_inquiry_wrap .view_link:hover {
    text-decoration: underline;
}


/* 게시판 테이블 공통 */
.tbl_board_wrap {
    border-bottom: 1px solid #666;
    background: #fff;
  }
  .tbl_board_wrap table {
    /* 테이블은 데이터의 길이만큼 늘어나는 성질이 있으므로 늘어나지 않게 함 */
    table-layout: fixed;
  }
  .tbl_board_wrap th {
    /* 정렬은 항상 세로정렬임 */
    border-top: 2px solid #707070;
    height: 60px;
    text-align: center;
    font-weight: 700;
  }
  
  /* 칸의 가로길이는 %로 처리하는 것이 좋음 */
  .tbl_board_wrap th.col01 {
    width: 12%;
  }
  .tbl_board_wrap th.col02 {
    width: 12%;
  }
  .tbl_board_wrap th.col04 {
    width: 12%;
  }
  .tbl_board_wrap th.col05 {
    width: 12%;
  }
  .tbl_board_wrap td {
    height: 60px;
    border-top: 1px solid #666;
    text-align: center;
  }

  .tbl_board_wrap td .view_link:hover {
    text-decoration: underline;
  }
  .tbl_board_wrap .td_left {
    text-align: left;
    text-indent: 15px;
  }
  
  /* 게시물 보기 링크 */
  .tbl_board_wrap .view_link {
    display: inline-block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

/* 게시판 페이지네이션 */
.board_pagination_wrap {
    text-align: center;
    margin-top: 20px;
}
.board_pagination_wrap .board_pagination {
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
}
.board_pagination_wrap .board_pagination .btn_paging {
    float: left;
    width: 22px;
    height: 21px;
    text-indent: -9999px;
    position: relative;
    
}
.board_pagination_wrap .board_pagination .btn_paging:after {
    content:'';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 12px;

}

.board_pagination_wrap .board_pagination .first {
    background: url(../icons/pagination_double_arrow.png) no-repeat center;
}
.board_pagination_wrap .board_pagination .prev {
    background: url(../icons/pagination_arrow.png) no-repeat center;
    margin-right: 10px;
}
.board_pagination_wrap .board_pagination .next {
    background: url(../icons/pagination_arrow.png) no-repeat center;
    transform: rotateZ(180deg);
    margin-left: 10px;
}
.board_pagination_wrap .board_pagination .last {
    background: url(../icons/pagination_double_arrow.png) no-repeat center;
    transform: rotateZ(180deg);
}

.board_pagination_wrap .board_pagination .number {
    float: left;
    width: 10px;
    height: 21px;
    line-height: 21px;
    margin: 0 5px;
}
.board_pagination_wrap .board_pagination .number.active {
  color: #ED3124;
}

/* 요금표 테이블 공통 */
/* .tbl_fee_wrap {
    border-top: 2px solid #333;
}
.tbl_fee_wrap th {
    border:1px solid #d9d9d9;
    border-top:none;
    font-size: 18px;
    color:#333;
    background: #f7f7f7;
}
.tbl_fee_wrap thead th {
    height: 72px;
}
.tbl_fee_wrap tbody th {
    font-size: 16px;
    font-weight: 400;
    color:#000;
}
.tbl_fee_wrap td {
    border:1px solid #d9d9d9;
    border-top: none;
    text-align: center;
    padding:0 30px;
    height: 58px;
}
.tbl_fee_wrap .td_right {
    text-align: right;
}

.tbl_fee_wrap .col01 {
    width:21%;
}
.tbl_fee_wrap .col02 {
    width:15%;
}
.tbl_fee_wrap .col03 {
    width:16%;
}
.tbl_fee_wrap .col04 {
    width:16%;
}
.tbl_fee_wrap .col05 {
    width:16%;
} */

/* 크롬 스크롤바 변경 */
.inquiry .agree_area .txt_area::-webkit-scrollbar { width:5px; background: white; }
.inquiry .agree_area .txt_area::-webkit-scrollbar-thumb { background: #ddd; border-radius: 5px; }
.inquiry .agree_area .txt_area::-webkit-scrollbar-thumb:hover { background: #000; }


/* 작성하기 테이블 공통 */

.board_write_wrap .note {
    text-align: right;
    color: #999;
}

.board_write_wrap th {
    border-bottom: 1px solid #e8e8e8;
    padding: 12px 0;
    text-align: left;
    font-weight: 500;
}
.board_write_wrap th.th_top {
    vertical-align: top;
}
.board_write_wrap td {
    border-bottom: 1px solid #e8e8e8;
    padding: 12px 0;
}
.board_write_wrap .col01 {
    width: 12%;
}
.board_write_wrap .email {
    margin: 0 20px;
}
.board_write_wrap .select_wrap {
    margin-left: 6px;
}
.board_write_wrap .select_wrap {
    margin-left: 0;
}
.board_write_wrap  .file_note {
    display: inline-block;
    font-size: 13px;
    color: #999;
    margin-left: 25px;
}


/* 입력 폼 공통 */
.input_small {
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 81px;
    height: 35px;
    text-indent: 15px;
    margin-right: 6px;
    background: #F8F8F8;
}

.input_mid {
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 128px;
    height: 35px;
    text-indent: 15px;
    margin-right: 6px;
    background: #F8F8F8;
}

.input_large {
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 172px;
    height: 35px;
    text-indent: 15px;
    margin-right: 6px;
    background: #F8F8F8;
}









#wrap {
    min-width: 1400px;
}


/* 헤더 */

#header {
    width: 100%;
    min-width: 1400px;
    border-bottom: 1px solid #fb4357;
    position: fixed;
    z-index: 9999;
    background: white;
}

#header .inner {
    width: 1200px;
    height: 100px;
    position: static;
    margin: 0 auto;
}

#header .logo a {
    position: absolute;
    left: 50%;
    top: 50%;
    text-indent: -9999px;
    width: 95px;
    height: 60px;
    transform: translate(-50%, -50%);
    background: url(../images/cgv_logo_group.png) no-repeat center / 100% ;

}

#header .logo span {
    border: 1px solid #000;
    letter-spacing: 0.313em;
}
#header .gnb_wrap {
    margin-left: 130px;
    float:left;
    
}
#header .gnb {
    overflow: hidden;
}
#header .gnb>li {
    float: left;
    margin-right: 20px;
}
#header .gnb>li.store {
    margin-left: 295px;
}
#header .gnb>li>a {
    line-height: 100px;
    font-size: 16px;
    font-weight: 500;
    color: #222;
    display: block;
    width: 70px;
    text-align: center;
}
#header .gnb_wrap .gnb_bar {
    position: absolute;
    left:0;
    bottom:0;
    height: 2px;
    background:  #ED3124;
    opacity: 0;
    transition: all 0.5s;
    z-index: -10;
}

#header  .left_btn_wrap {
    float:left;
    margin-top: 40px;
    overflow: hidden;
}
#header  .left_btn_wrap .btn_menu {
    display: inline-block;
    width: 26px;
    height: 26px;
    background: url(../icons/menu_FILL0_wght300_GRAD0_opsz24.png) no-repeat;
    text-indent: -9999px;
    border: none;

}

#header  .left_btn_wrap .btn_menu.on {
    background: url(../icons/close_222.png) no-repeat 50% 50% / 65%;

}
#header  .left_btn_wrap .all_menu_area {
    position: absolute;
    top: 100px;
    left: 0;
    background: #eeeeee;
    width: 100%;
    display: none;
    z-index: 100;
}

#header  .left_btn_wrap .all_menu_wrap {
    overflow: hidden;
    width: 1200px;
    height: 555px;
    margin: 0 auto;
    padding: 50px;
    display: block;


}
#header  .left_btn_wrap .all_menu_wrap h3 {
    font-size: 45px;
    color: #222;
    font-weight: 700;
}
#header  .left_btn_wrap .all_menu_area  dl {
    float: left;
    margin: 40px 45px 30px 65px;
}
#header  .left_btn_wrap .all_menu_area dt {
    color: #222;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 17px;
}
#header  .left_btn_wrap .all_menu_area dd {
    line-height: 1.8em;
}
#header  .left_btn_wrap .all_menu_area dd a{
    display: block;
    width: 100%;

}
#header  .left_btn_wrap .all_menu_area dd:hover a {
    text-decoration: underline;
    color: #fb4357;
}
#header  .left_btn_wrap .btn_search {
    border: none;
    background: none;
    width: 24px;
    height: 24px;
    background: url(../icons/search_black.png) no-repeat center / 95%;
    text-indent: -9999px;
}
#header .left_btn_wrap .search_area {
    position: absolute;
    left: 345px;
    top: 100px;
    width: 400px;
    height: 50px;
    background: #eeeeee;
    display: none;
    z-index: 101;
}
#header  .left_btn_wrap .search_area input {
    width: calc(100% - 54px);
    /* height: 44px; */
    text-indent: 20px;
    background: #eeeeee;
    border: none;

}
#header  .left_btn_wrap .search_area .btn_submit_search {
    width: 50px;
    height: 50px;
    border: none;
    background: url(../icons/search_black.png) no-repeat center / 58%;
    text-indent: -9999px;

}
#header  .left_btn_wrap li {
    float: left;
}
#header  .left_btn_wrap li:last-child {
    margin-left: 16px;
}

#header  .right_icon_wrap {
    float: right;
    margin-top: 40px;
    overflow: hidden;
}
#header  .right_icon_wrap li {
    float: left;
}
#header  .right_icon_wrap .login {
    display: inline-block;
    width:26px;
    height: 26px;
    background: url(../icons/person_FILL0_wght300_GRAD0_opsz24.png) no-repeat;
    text-indent: -9999px;
}
#header .right_icon_wrap .help {
    display: inline-block;
    background: url(../icons/help_FILL0_wght300_GRAD0_opsz24.png) no-repeat center;
    width: 26px;
    height: 26px;
    margin-left: 12px;
    text-indent: -9999px;
}

/* 헤더 팝코니 */
#header .heart_popconnie {
    position: absolute;
    left: calc(50% + 760px);
    bottom: 0;
    width: 65px;
    height: 65px;
    background: url(../images/popconnie/emo_cgv_008.gif) no-repeat center/ 100%;
    text-indent: -9999px;
}

/* header.on */

#header.on {
    width: 100%;
    height: 60px;
    background: linear-gradient(to right, #FB4357 35%, #f14f3a) ;
    border: none;

}
#header.on .gnb_wrap .gnb_bar {
    position: absolute;
    left:0;
    bottom:0;
    height: 2px;
    background:  white;
    opacity: 0;
    transition: all 0.5s;
    z-index: -10;
}

#header.on .logo a {
    margin: 10px 0 0 10px;
    background: url(../images/logoWhite.png) no-repeat 0 0 / 80%;
    
}
#header.on .logo span {
    display: none;
}
#header.on .left_btn_wrap {
    height: 60px;
    margin-top: 18px ;
}
#header.on .left_btn_wrap .btn_menu {
    width: 25px;
    height: 25px;
    background: url(../icons/menu_white.png) no-repeat center / 70%;
}

#header.on  .left_btn_wrap .btn_search {
    border: none;
    background: none;
    background: url(../icons/search_white.png) no-repeat center / 95%;
}

#header.on .right_icon_wrap {
    height: 60px;
    margin-top: 18px ;

}
#header.on  .right_icon_wrap .login {
    width: 24px;
    height: 24px;
    background: url(../icons/person_white.png) no-repeat center / 65%;
    text-indent: -9999px;
}

#header.on  .right_icon_wrap .help {
    width: 25px;
    height: 25px;
    background: url(../icons/help_white.png) no-repeat center / 75%;
    text-indent: -9999px;
}

#header.on .gnb_wrap .gnb>li>a {
    color: white;
    line-height: 60px;
}

#header.on  .left_btn_wrap .all_menu_area {
    top: 60px;
}

#header.on  .left_btn_wrap .search_area {
    top: 60px;
}
#header.on .heart_popconnie {
    display: none;
}


/* depth02 */
#header .gnb_wrap .depth02_wrap {
    position: absolute;
    left: 0;
    top: 100px;
    width: 100%;
    background: rgba(0,0,0,0.9);
    display: none;    
} 
#header.on .gnb_wrap .depth02_wrap {
    top: 60px;
}


#header .gnb>li:hover>a {
    color: #ED3124;
}
#header .gnb .depth02 {
    width: 1200px;
    height: 45px;
    margin: 0 auto;
    /* overflow: hidden; */
}
#header .gnb .depth02 li {
    float: left;
}
#header .gnb .depth02 a {
    color: white;
    line-height: 45px;
    margin-right: 30px;
    display: block;
}
#header .gnb .depth02 a:hover {
    color: #ED3124;
}

#header .gnb>li:nth-child(1) .depth02 li:first-child {
    margin-left: 140px;
}

#header .gnb>li:nth-child(2) .depth02 li:first-child {
    margin-left: 240px;
}

#header .gnb>li:nth-child(3) .depth02 li:first-child {
    margin-left: 220px;
}

#header .gnb>li:nth-child(4) .depth02 li:first-child {
    margin-left: 485px;
}

#header .gnb>li:nth-child(5) .depth02 li:first-child {
    margin-left: 495px;
}

#header .gnb>li:nth-child(6) .depth02 li:first-child {
    margin-left: 810px;
}



/* quick_menu */

#footer .quick_menu {
    position: fixed;
    right: 70px;
    bottom: 60px;
    transition: all 0.7s;
    transform: translateX(280px);
}
#footer .quick_menu.fixed { 
    transform: translateX(0);

}

#footer .quick_menu .booking {
    display: inline-block;
    width: 136px;
    line-height: 50px;
    background-image: linear-gradient(to right, #FB4357, #FF7356) ;
    border-radius: 25px;
    text-align: center;
    color: white;
    font-weight: 500;
    font-size: 16px;
    margin-right: 16px;
    box-shadow: 1px 3px 6px rgba(0, 0, 0, 0.3);
    vertical-align: middle;
}
#footer .quick_menu .to_top {
    border: 1px solid #222;
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    box-shadow: 1px 3px 6px rgba(0, 0, 0, 0.3);
    vertical-align: middle;
}
#footer .quick_menu .to_top img {
    width: 15px;
    height: 21px;
    margin: 17px 0 0 17px;
}

/* footer_ad */
#footer .footer_ad {
    width: 100%;
}
#footer .footer_ad .footer_ad_bg {
    height: 182px;
    background: #FFA443;
}
#footer .footer_ad .inner {
    margin: 0 auto;
    width: 980px;
}
#footer .footer_ad .inner img {
   margin-top: -59px; 
}

/* footer_top */
#footer .footer_top {
    width: 100%;
    background-color: #f8f8f8;
}
#footer .footer_top .inner {
    width: 996px;
    margin: 0 auto;
    border-bottom: 1px solid #EBEBEB;
}
#footer .footer_top .inner ul {
    overflow: hidden;
}
#footer .footer_top .inner li {
    float: left;
}
#footer .footer_top .inner li + li {
    margin-left: 23px;

}
#footer .footer_top .inner a {
    line-height: 68px;
    font-size: 14px;
    font-weight: 500;
}
#footer .footer_top .inner a:hover {
    text-decoration: underline;
}


/* footer_bottom */
#footer .footer_bottom {
    width: 100%;
    background-color: #f8f8f8;
}

#footer .footer_bottom .inner {
    width: 996px;
    margin: 0 auto;
    padding: 24px 0;
    position: relative;
}
#footer .footer_bottom .txt_wrap {
    font-size: 13px;
    color: #7D7D7D;
    line-height: 1.7em;

}
#footer .footer_bottom .fam_wrap {
    position: absolute;
    right:0;
    bottom: 24px;
    width: 210px;
    /* height: 40px; */
    border: 1px solid #666;
    border-radius: 5px;
}

#footer .footer_bottom .fam_wrap .fam_site {
    line-height: 40px;
    width: 100%;
    border: none;
    background: none;
    text-align: left;
    text-indent: 20px;
}
#footer .footer_bottom .fam_wrap dl {
    position: absolute;
    left: 0;
    bottom: 40px;
    width: 188px;
    background: #f8f8f8;
    display: none;
    border: 1px solid #666;
    padding: 6px 10px;
    border-radius: 5px;
}
#footer .footer_bottom .fam_wrap dt {
    color: #444;
    font-weight: 500;
    margin: 4px 0;
}
#footer .footer_bottom .fam_wrap dd {
    margin-left: 7px;
    font-size: 13px;
}
#footer .footer_bottom .fam_wrap dd:hover {
    color: #222;
    text-decoration: underline;
}
#footer .footer_bottom .fam_wrap dd a {
    display: block;
}
#footer .footer_bottom .fam_wrap .fam_site:after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: 0;
    width: 10px;
    height: 6px;
    background: url(../icons/arrow_down.png) no-repeat 50% 50%;
}
#footer .footer_bottom .fam_wrap .fam_site.on:after {
    transform: rotate(180deg) translateY(2px);

}
/* sub_page */
#container {
    padding: 101px 0 150px;
}
/* page_tit */
.page_tit_wrap{
    text-align: center;
}
.page_tit {
    margin-top: 60px;
    font-size: 36px;
    font-weight: 700;
    color: #444;
}
.page_sub_tit {
    color: #444;
    margin-top: 30px;
}
/* agree */

[class*='agree_area'] {
    overflow: hidden;
}
[class*='agree_area'] .agree_border {
    border: 1px solid #ddd;
    background: white;
    padding-left: 15px;
    margin-bottom: 15px;
}
[class*='agree_area'] .agree_wrap {
    overflow: auto;
    height: 138px;
}
[class*='agree_area'] .agree_txt {
    font-size: 14px;
    color: #444;
}
[class*='agree_area'] .agree_txt p {
    margin: 15px 0;
}
.agree_radio {
    float: right;
}
/* main_sub_tit */
.main_sub_tit {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 50px;
    color: #222;
}

/* sub_tit */
.sub_tit {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #444;
}

/* sub_tit_wrap */
.sub_tit_wrap {
    overflow: hidden;
}
.sub_tit_wrap .sub_tit {
    float: left;
    margin-left: 10px;
}
.sub_tit_wrap .ess {
    float: right;
    margin-top: 5px;
    color: #444;
}


.common_tbl {
    border-top: 1px solid #707070;
}
.common_tbl .tbl_row {
    border-bottom: 1px solid #ddd;
    height: 60px;
}
.common_tbl tr th {
    text-align: left;
    text-indent: 15px;
    font-weight: 500;

}
.warning {
    margin: 10px 0 0 10px;
}


/* tab_li */
/* .tab_li {
    overflow: hidden;
}
.tab_li li {
    float: left;
    margin-right: 20px;
    position: relative;
}
.tab_li li.active a {
    color:#ED3124;
}
.tab_li li + li:before {
    content:'';
    position: absolute;
    left: -10px;
    top: 6px;
    width: 1px;
    height: 10px;
    background: #000;
} */

.link_more {
    font-size: 14px;
    font-weight: 500;
}

.link_more:after {
    content:'';
    display: inline-block;
    height: 8px;
    width: 8px;
    background: url(../icons/add_444.png) no-repeat center;
    margin-left: 5px;
}


/* 탭공통 */
.common_tab {
    overflow: hidden;
}

.common_tab li {
    float: left;    
    margin-right: 20px; 
    position: relative;
}
.common_tab li a {
    color: #222;
    font-weight: 500;
}

.common_tab li + li:before {
    content:'';
    position: absolute;
    left: -10px;
    top: 7px;
    width: 1px;
    height:10px;
    background: #666;
}
.common_tab li.active a {
    color: #fb4357;
}
.common_tab li:last-child {
    margin-right: 0;
}
/* 네비게이션 */
.btn_arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}


/* 달력 */
.ui-datepicker {
    left: 50% !important;
    top: 40px !important;
    transform: translateX(-50%);
    width: 300px;
}

.ui-datepicker-calendar th {
    height: 20px;
    line-height: 20px;
    background: #fff;
    text-align: left;
    font-weight: 500;
    border-top: 1px solid #ddd;
    text-indent: 15px; 
}
.ui-datepicker-calendar td {
    height: 20px;
    border-top: none;
}

.ui-datepicker-header {
    background: white;
    border: none
}
.ui-datepicker-prev {
    background: url(../icons/arrow_forward_ios_FILL0_wght200_GRAD0_opsz20.png) no-repeat center / 30%;
    transform: rotate(180deg);
}
.ui-datepicker-prev:hover {
    background: url(../icons/arrow_forward_ios_FILL0_wght200_GRAD0_opsz20.png) no-repeat center / 30%;
    transform: rotate(180deg);
}
.ui-datepicker-next {
    background: url(../icons/arrow_forward_ios_FILL0_wght200_GRAD0_opsz20.png) no-repeat center / 30%;
}
.ui-datepicker-next:hover {
    background: url(../icons/arrow_forward_ios_FILL0_wght200_GRAD0_opsz20.png) no-repeat center / 30%;
}
.ui-datepicker-calendar .ui-state-highlight {
    border: 1px solid #fb4357;
    background: #fb4357;
    color: white;
}
