@charset "UTF-8";
@import "animate.min.css"; /*반응형 화면 크기*/
/*반응형, 브라우저 크기가 767px 이하일때*/
/*반응형, 브라우저 크기가 768이상, 1209px 이하일때*/
/*반응형, 브라우저 크기가 1210px 이상일때*/
body.h100 {
  height: 100vh;
  overflow: hidden;
}

.pop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.pop:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  transition-duration: 500ms;
}
.pop .pop-wrap {
  position: relative;
  z-index: 1;
  transition-property: all;
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0, 1.5);
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0, 1.5);
          animation-timing-function: cubic-bezier(0.4, 0, 0, 1.5);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.pop .pop-wrap .pop-box {
  max-height: calc(100% - 100px);
  width: 100%;
}
.pop.hide {
  visibility: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.pop.hide:before {
  content: "";
  visibility: hidden;
  opacity: 0;
}
.pop.hide .pop-wrap {
  transform: translate3d(0, 30%, 0);
  opacity: 0;
}
.pop.show {
  visibility: visible;
}
.pop.show:before {
  visibility: visible;
  opacity: 1;
}
.pop.show .pop-wrap {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

@media (min-width: 1210px) {
  .pc_hide {
    display: none;
  }
  .section {
    max-width: 1460px;
    margin: 0 auto;
    padding: 0 30px;
  }
  #side_fix {
    position: fixed;
    right: 0;
    top: 50%;
    width: 130px;
    margin-top: -195px;
    transition: transform 300ms;
  }
  #side_fix.close_side {
    transform: translate(100%, 0);
  }
  #side_fix.close_side .btn_side_toggle:before {
    transform: rotate(180deg);
  }
  #side_fix .btn_side_toggle {
    width: 20px;
    height: 65px;
    border-radius: 10px 0 0 10px;
    background: #fe5c78;
    font-size: 0;
    line-height: 0;
    position: absolute;
    left: -20px;
    top: 50%;
    margin-top: -33px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #side_fix .btn_side_toggle:before {
    content: "";
    display: block;
    width: 7px;
    height: 11px;
    background: url(/resource/images/ico_quick_arrow.svg) center no-repeat;
    transition: transform 300ms;
  }
  #side_fix .quick_wrap {
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 20px 0 0 20px;
    overflow: hidden;
  }
  #side_fix .quick_wrap .quick_tit {
    background: #fe5c78;
    height: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #side_fix .quick_wrap .quick_tit span {
    line-height: 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
  }
  #side_fix .quick_wrap .quick_tit p {
    font-size: 20px;
    color: #fff;
    line-height: 24px;
  }
  #side_fix .quick_wrap .quick_cont .quick_item {
    text-align: center;
    position: relative;
  }
  #side_fix .quick_wrap .quick_cont .quick_item:before {
    content: "";
    display: block;
    position: absolute;
    width: calc(100% - 30px);
    height: 1px;
    background: #dfdfdf;
    top: 0;
    left: 15px;
  }
  #side_fix .quick_wrap .quick_cont .quick_item:first-child:before {
    display: none;
  }
  #side_fix .quick_wrap .quick_cont .quick_item:hover:before {
    display: none;
  }
  #side_fix .quick_wrap .quick_cont .quick_item .quick_link {
    display: block;
    padding: 18px 0;
    width: 100%;
    background: #f5f5f5;
  }
  #side_fix .quick_wrap .quick_cont .quick_item .quick_link p {
    margin-top: 10px;
    font-size: 18px;
    color: #555555;
    line-height: 21px;
  }
  #side_fix .quick_wrap .quick_cont .quick_item .quick_link:hover {
    background: #437dea;
  }
  #side_fix .quick_wrap .quick_cont .quick_item .quick_link:hover p {
    color: #fff;
  }
  #side_fix .quick_wrap .quick_cont .quick_item .quick_link:hover .ico_quick1 {
    background-image: url(/resource/images/ico_quick1_on.svg);
  }
  #side_fix .quick_wrap .quick_cont .quick_item .quick_link:hover .ico_quick2 {
    background-image: url(/resource/images/ico_quick2_on.svg);
  }
  #side_fix .quick_wrap .quick_cont .quick_item .quick_link:hover .ico_quick3 {
    background-image: url(/resource/images/ico_quick3_on.svg);
  }
  #side_fix .quick_wrap .quick_cont .quick_item .ico_quick1 {
    display: block;
    width: 43px;
    height: 39px;
    background: url(/resource/images/ico_quick1.svg) center no-repeat;
    margin: 0 auto;
  }
  #side_fix .quick_wrap .quick_cont .quick_item .ico_quick2 {
    display: block;
    width: 42px;
    height: 26px;
    background: url(/resource/images/ico_quick2.svg) center no-repeat;
    margin: 0 auto;
  }
  #side_fix .quick_wrap .quick_cont .quick_item .ico_quick3 {
    display: block;
    width: 60px;
    height: 25px;
    background: url(/resource/images/ico_quick3.svg) center no-repeat;
    margin: 0 auto;
  }
  #header {
    height: 100px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    background: #fff;
  }
  #header .section {
    display: flex;
    height: 100px;
    align-items: center;
  }
  #header .logo {
    width: 177px;
  }
  #header .gnb_wrap {
    display: flex;
    align-items: center;
    flex: 1;
    height: 100px;
    margin-left: 70px;
  }
  #header .gnb_wrap .gnb_item {
    flex-grow: 1;
    flex-basis: auto;
    position: relative;
  }
  #header .gnb_wrap .gnb_item .gnb_link {
    font-size: 20px;
    color: #000;
    font-weight: 600;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #header .gnb_wrap .gnb_item:hover .gnb_link {
    color: #129ba9;
    font-weight: 700;
  }
  #header .gnb_wrap .gnb_item:hover .gnb_sub:before {
    width: calc(100% - 40px);
  }
  #header .gnb_wrap .gnb_item .gnb_sub {
    display: none;
    position: absolute;
    top: 99px;
    text-align: center;
    width: calc(100% + 24px);
    left: -12px;
  }
  #header .gnb_wrap .gnb_item .gnb_sub:before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    height: 2px;
    width: 0;
    background: #129ba9;
    transition: width 300ms;
  }
  #header .gnb_wrap .gnb_item .gnb_sub ul {
    padding-top: 29px;
  }
  #header .gnb_wrap .gnb_item .gnb_sub ul li {
    margin-top: 20px;
  }
  #header .gnb_wrap .gnb_item .gnb_sub ul li:first-child {
    margin-top: 0;
  }
  #header .gnb_wrap .gnb_item .gnb_sub ul li a {
    font-size: 18px;
    line-height: 1.3;
    color: #333;
  }
  #header .gnb_wrap .gnb_item .gnb_sub ul li a:hover {
    font-weight: 600;
    text-decoration: underline;
  }
  #header .btn_menu {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    width: 20px;
    height: 16px;
    margin-left: 30px;
    position: relative;
  }
  #header .btn_menu span {
    width: 20px;
    height: 2px;
    background: #707070;
    display: block;
    transition: 300ms;
  }
  #header.open_menu:before {
    content: "";
    display: block;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    height: 492px;
    background: rgba(255, 255, 255, 0.9);
    border-top: 1px solid #e5e7ee;
  }
  #header.open_menu .gnb_wrap .gnb_item .gnb_sub {
    display: block;
  }
  #header.open_menu .btn_menu span {
    position: absolute;
  }
  #header.open_menu .btn_menu span:nth-child(1) {
    top: calc(50% - 6px);
    transform: translateY(5px) rotate(45deg);
  }
  #header.open_menu .btn_menu span:nth-child(2) {
    top: calc(50% - 1px);
    display: none;
  }
  #header.open_menu .btn_menu span:nth-child(3) {
    top: calc(50% + 4px);
    transform: translateY(-5px) rotate(-45deg);
  }
  #container {
    padding-top: 100px;
  }
  #footer {
    height: 253px;
    background: rgba(40, 40, 40, 0.9);
    padding-top: 50px;
  }
  #footer .section {
    display: flex;
    align-items: flex-start;
  }
  #footer .section .foot_cont .foot_menu {
    display: flex;
    align-items: center;
  }
  #footer .section .foot_cont .foot_menu .foot_btn {
    font-size: 17px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.7);
  }
  #footer .section .foot_cont .foot_menu .foot_btn strong {
    color: rgb(255, 255, 255);
  }
  #footer .section .foot_cont .foot_menu .foot_btn:nth-child(n+2) {
    padding-left: 21px;
    margin-left: 20px;
    position: relative;
  }
  #footer .section .foot_cont .foot_menu .foot_btn:nth-child(n+2):before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 10px;
    margin-top: -5px;
    background: rgba(255, 255, 255, 0.4);
  }
  #footer .section .foot_cont .foot_info {
    margin-top: 24px;
    display: flex;
  }
  #footer .section .foot_cont .foot_info span {
    font-size: 15px;
    font-weight: 300;
    color: #fff;
    line-height: 1.3;
  }
  #footer .section .foot_cont .foot_info span:nth-child(n+2) {
    padding-left: 21px;
    margin-left: 20px;
    position: relative;
  }
  #footer .section .foot_cont .foot_info span:nth-child(n+2):before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 10px;
    margin-top: -5px;
    background: rgba(255, 255, 255, 0.4);
  }
  #footer .section .foot_cont .foot_copy {
    margin-top: 33px;
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
  }
  #footer .section .foot_sns {
    margin-left: auto;
    padding-top: 20px;
    display: flex;
    align-items: center;
  }
  #footer .section .foot_sns a {
    margin-left: 8px;
  }
  .tab_area {
    display: flex;
    margin: 50px 0;
    border: 1px solid #cccccc;
    height: 56px;
  }
  .tab_area.type_multi {
    flex-wrap: wrap;
    height: 112px;
  }
  .tab_area.type_multi .btn_tab {
    width: 25%;
    flex: auto;
    height: 56px;
  }
  .tab_area.type_multi .btn_tab:nth-child(n+5) {
    border-top: 1px solid #ccc;
  }
  .tab_area.type_multi .btn_tab:nth-child(5) {
    border-left: 0;
  }
  .tab_area .btn_tab {
    flex: 1;
    border-left: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .tab_area .btn_tab span {
    font-size: 20px;
    color: #707070;
  }
  .tab_area .btn_tab:first-child {
    border-left: 0;
  }
  .tab_area .btn_tab.active_tab {
    background: transparent linear-gradient(90deg, rgb(25, 168, 206) 0%, rgb(1, 111, 177) 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 10px rgba(55, 128, 193, 0.61);
  }
  .tab_area .btn_tab.active_tab span {
    color: #fff;
  }
  .cont_area {
    display: none;
  }
  .cont_area.active_cont {
    display: block;
  }
  .in_tab_area {
    border-bottom: 1px solid #000000;
    display: flex;
    height: 56px;
    padding-left: 1px;
    margin-bottom: 30px;
  }
  .in_tab_area button {
    max-width: 250px;
    flex: 1;
    height: 56px;
    border: 1px solid #ccc;
    border-bottom: 1px solid #000;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -1px;
  }
  .in_tab_area button span {
    font-size: 20px;
    color: #707070;
  }
  .in_tab_area button.active_tab {
    border: 1px solid #000;
    background: #fff;
    border-bottom: 1px solid #fff;
    position: relative;
  }
  .in_tab_area button.active_tab span {
    font-weight: 600;
    color: #000;
  }
  .in_cont_area1 {
    display: none;
  }
  .in_cont_area1.active_cont {
    display: block;
  }
  .in_cont_area2 {
    display: none;
  }
  .in_cont_area2.active_cont {
    display: block;
  }
  .in_cont_area3 {
    display: none;
  }
  .in_cont_area3.active_cont {
    display: block;
  }
  .info_alert {
    display: flex;
  }
  .info_alert:before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url(/resource/images/ico_alert.svg) center no-repeat;
    margin-right: 5px;
  }
  .info_alert span {
    font-size: 15px;
    color: #be2828;
    line-height: 20px;
  }
  .pop .base_cont {
    background: #fff;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 50px 60px 80px;
  }
  .pop .base_cont .pop_tit {
    border-bottom: 1px solid #707070;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
  }
  .pop .base_cont .pop_tit strong {
    font-size: 28px;
    font-weight: 600;
    color: #000;
  }
  .pop .base_cont .pop_tit .btn-pop-close {
    display: block;
    width: 25px;
    height: 25px;
    margin-left: auto;
    font-size: 0;
    line-height: 0;
    background: url(/resource/images/ico_pop_close.svg) center no-repeat;
  }
  .pop .base_cont .base_info_cont {
    padding: 40px 30px 0 0;
    max-height: calc(100vh - 300px);
    overflow-y: auto;
    font-size: 18px;
    color: #555555;
    line-height: 30px;
  }
  .pop .base_cont .base_info_cont .mt20 {
    margin-top: 20px;
  }
  .pop .base_cont .base_info_cont .mt20 + .num_list {
    margin-top: 5px;
  }
  .pop .base_cont .base_info_cont .num_list {
    margin-top: 15px;
    counter-reset: colorcircle 0;
  }
  .pop .base_cont .base_info_cont .num_list li {
    padding-left: 25px;
    margin-top: 10px;
    line-height: 28px;
    font-size: 18px;
    color: #555555;
    position: relative;
  }
  .pop .base_cont .base_info_cont .num_list li:first-child {
    margin-top: 0;
  }
  .pop .base_cont .base_info_cont .num_list li:before {
    position: absolute;
    top: 3px;
    left: 0;
    counter-increment: colorcircle 1;
    content: counter(colorcircle);
    color: #fff;
    font-size: 12px;
    z-index: 1;
    background: #4378b5;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pop .base_cont .base_info_cont .num_list li .strong {
    font-weight: 600;
    color: #000000;
  }
  .pop .base_cont .base_info_cont .num_list li strong {
    font-weight: 600;
  }
  .pop .base_cont .base_info_cont .num_list li.mt50 {
    margin-top: 50px;
  }
  .pop .base_cont .base_info_cont .num_list li .t_blue {
    color: #4378b5;
    font-weight: 500;
  }
  .pop .base_cont .base_info_cont .num_list li ol {
    margin-top: 10px;
  }
  .pop .base_cont .base_info_cont .num_list li ol li {
    padding-left: 0;
    margin-top: 0;
    font-size: 16px;
  }
  .pop .base_cont .base_info_cont .num_list li ol li:before {
    display: none;
  }
  .pop .base_cont .base_info_cont .num_list:first-child {
    margin-top: 0;
  }
  .pop .base_cont .base_info_cont .num_list2 {
    margin-top: 15px;
  }
  .pop .base_cont .base_info_cont .num_list2 li {
    margin-top: 10px;
    line-height: 28px;
    font-size: 18px;
    color: #555555;
    position: relative;
  }
  .pop .base_cont .base_info_cont .num_list2 li:first-child {
    margin-top: 0;
  }
  .pop .base_cont .base_info_cont .num_list2 li .strong {
    font-weight: 600;
    color: #000000;
  }
  .pop .base_cont .base_info_cont .num_list2 li strong {
    font-weight: 600;
  }
  .pop .base_cont .base_info_cont .num_list2 li.mt50 {
    margin-top: 50px;
  }
  .pop .base_cont .base_info_cont .num_list2 li .t_blue {
    color: #4378b5;
    font-weight: 500;
  }
  .pop .base_cont .base_info_cont .num_list2:first-child {
    margin-top: 0;
  }
  .pop .base_cont .base_info_cont .base_sec {
    margin-top: 40px;
  }
  .pop .base_cont .base_info_cont .base_sec:first-child {
    margin-top: 0;
  }
  .pop .base_cont .base_info_cont .base_sec .base_sec_tt {
    font-size: 22px;
    color: #333333;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 5px;
  }
  .pop .base_cont .base_info_cont .base_table {
    margin: 10px 0;
  }
  .pop .base_cont .base_info_cont .base_table table {
    width: 100%;
  }
  .pop .base_cont .base_info_cont .base_table table th {
    border: 1px solid #ddd;
    text-align: center;
    padding: 10px;
    font-size: 16px;
    line-height: 22px;
  }
  .pop .base_cont .base_info_cont .base_table table td {
    border: 1px solid #ddd;
    text-align: center;
    padding: 10px;
    font-size: 16px;
    line-height: 22px;
  }
  .pop .fast_reserv_sec {
    max-width: 605px;
    background: #fff;
    width: 100%;
    margin: 0 auto;
  }
  .pop .fast_reserv_sec .pop_top {
    background: #437dea;
    padding: 50px 60px 30px;
  }
  .pop .fast_reserv_sec .pop_top .pop_tit {
    display: flex;
    border-bottom: 1px solid #fff;
    padding-bottom: 15px;
    align-items: center;
  }
  .pop .fast_reserv_sec .pop_top .pop_tit strong {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
  }
  .pop .fast_reserv_sec .pop_top .pop_tit .btn-pop-close {
    display: block;
    width: 25px;
    height: 25px;
    margin-left: auto;
    font-size: 0;
    line-height: 0;
    background: url(/resource/images/pop_close_wt.svg) center no-repeat;
  }
  .pop .fast_reserv_sec .pop_top .pop_disc {
    margin-top: 25px;
    font-size: 18px;
    line-height: 30px;
    font-weight: 300;
    color: #fff;
  }
  .pop .fast_reserv_sec .pop_top .pop_disc .t_green {
    color: #77ff77;
  }
  .pop .fast_reserv_sec .pop_cont {
    padding: 40px 60px 50px;
  }
  .pop .fast_reserv_sec .pop_cont .pop_agree {
    margin-bottom: 15px;
  }
  .pop .fast_reserv_sec .pop_cont .pop_agree input {
    display: none;
  }
  .pop .fast_reserv_sec .pop_cont .pop_agree input + label {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #437dea;
    cursor: pointer;
  }
  .pop .fast_reserv_sec .pop_cont .pop_agree input + label:before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-right: 10px;
  }
  .pop .fast_reserv_sec .pop_cont .pop_agree input:checked + label:before {
    background: url(/resource/images/ico_chk.svg) center no-repeat;
  }
  .pop .fast_reserv_sec .pop_cont .pop_form {
    display: flex;
    width: 100%;
  }
  .pop .fast_reserv_sec .pop_cont .pop_form ul {
    flex: 1;
  }
  .pop .fast_reserv_sec .pop_cont .pop_form ul li {
    display: flex;
    align-items: center;
    margin-top: 10px;
  }
  .pop .fast_reserv_sec .pop_cont .pop_form ul li:first-child {
    margin-top: 0;
  }
  .pop .fast_reserv_sec .pop_cont .pop_form ul li label {
    font-size: 18px;
    font-weight: 600;
    color: #555555;
    width: 80px;
  }
  .pop .fast_reserv_sec .pop_cont .pop_form ul li input {
    flex: 1;
    height: 40px;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 5px;
    padding: 0 10px;
  }
  .pop .fast_reserv_sec .pop_cont .pop_form .btn_confirm {
    margin-left: 15px;
    width: 144px;
    border-radius: 5px;
    background: transparent linear-gradient(90deg, #3ec757 0%, #16b399 37%, #1090b1 100%) 0% 0% no-repeat padding-box;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pop .fast_reserv_sec .pop_cont .pop_form .btn_confirm span {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
  }
}
@media (min-width: 768px) and (max-width: 1209px) {
  .pc_hide {
    display: none;
  }
  body {
    position: relative;
  }
  body.open_menu_body {
    height: 100vh;
    overflow: hidden;
  }
  .section {
    width: 95%;
    margin: 0 auto;
  }
  #wrap {
    width: 100%;
    overflow: hidden;
    padding-top: 64px;
  }
  #side_fix {
    margin-bottom: 30px;
    width: 100%;
  }
  #side_fix .btn_side_toggle {
    display: none;
  }
  #side_fix .quick_wrap {
    overflow: hidden;
  }
  #side_fix .quick_wrap .quick_tit {
    background: #fe5c78;
    height: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #side_fix .quick_wrap .quick_tit span {
    line-height: 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
  }
  #side_fix .quick_wrap .quick_tit p {
    font-size: 20px;
    color: #fff;
    line-height: 24px;
  }
  #side_fix .quick_wrap .quick_cont {
    display: flex;
  }
  #side_fix .quick_wrap .quick_cont .quick_item {
    flex: 1;
    text-align: center;
    position: relative;
  }
  #side_fix .quick_wrap .quick_cont .quick_item:before {
    content: "";
    display: block;
    position: absolute;
    height: calc(100% - 30px);
    width: 1px;
    background: #dfdfdf;
    left: 0;
    top: 15px;
  }
  #side_fix .quick_wrap .quick_cont .quick_item:first-child:before {
    display: none;
  }
  #side_fix .quick_wrap .quick_cont .quick_item:hover:before {
    display: none;
  }
  #side_fix .quick_wrap .quick_cont .quick_item .quick_link {
    display: block;
    padding: 18px 0;
    width: 100%;
    background: #f5f5f5;
    height: 100%;
  }
  #side_fix .quick_wrap .quick_cont .quick_item .quick_link p {
    margin-top: 10px;
    font-size: 18px;
    color: #555555;
    line-height: 21px;
  }
  #side_fix .quick_wrap .quick_cont .quick_item .quick_link:hover {
    background: #437dea;
  }
  #side_fix .quick_wrap .quick_cont .quick_item .quick_link:hover p {
    color: #fff;
  }
  #side_fix .quick_wrap .quick_cont .quick_item .quick_link:hover .ico_quick1 {
    background-image: url(/resource/images/ico_quick1_on.svg);
  }
  #side_fix .quick_wrap .quick_cont .quick_item .quick_link:hover .ico_quick2 {
    background-image: url(/resource/images/ico_quick2_on.svg);
  }
  #side_fix .quick_wrap .quick_cont .quick_item .quick_link:hover .ico_quick3 {
    background-image: url(/resource/images/ico_quick3_on.svg);
  }
  #side_fix .quick_wrap .quick_cont .quick_item .ico_quick1 {
    display: block;
    width: 43px;
    height: 39px;
    background: url(/resource/images/ico_quick1.svg) center no-repeat;
    margin: 0 auto;
  }
  #side_fix .quick_wrap .quick_cont .quick_item .ico_quick2 {
    display: block;
    width: 42px;
    height: 26px;
    background: url(/resource/images/ico_quick2.svg) center no-repeat;
    margin: 0 auto;
  }
  #side_fix .quick_wrap .quick_cont .quick_item .ico_quick3 {
    display: block;
    width: 60px;
    height: 25px;
    background: url(/resource/images/ico_quick3.svg) center no-repeat;
    margin: 0 auto;
  }
  #header {
    height: 64px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    border-bottom: 1px solid #e5e7ee;
    background: #fff;
  }
  #header .section {
    display: flex;
    height: 64px;
    align-items: center;
    justify-content: space-between;
  }
  #header .logo {
    width: 112px;
  }
  #header .gnb_wrap {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    height: calc(100vh - 64px);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 30px 20px;
    box-sizing: border-box;
    flex-wrap: wrap;
  }
  #header .gnb_wrap .gnb_item {
    width: 49%;
    position: relative;
  }
  #header .gnb_wrap .gnb_item:nth-child(n+3) {
    margin-top: 50px;
  }
  #header .gnb_wrap .gnb_item .gnb_link {
    font-size: 24px;
    color: #000;
    font-weight: 600;
  }
  #header .gnb_wrap .gnb_item .gnb_sub ul {
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #header .gnb_wrap .gnb_item .gnb_sub ul li {
    width: 49%;
  }
  #header .gnb_wrap .gnb_item .gnb_sub ul li:nth-child(n+3) {
    margin-top: 10px;
  }
  #header .gnb_wrap .gnb_item .gnb_sub ul li a {
    font-size: 18px;
    line-height: 1.3;
    color: #333;
  }
  #header .gnb_wrap .gnb_item .gnb_sub ul li a:hover {
    font-weight: 600;
    text-decoration: underline;
  }
  #header .btn_menu {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    width: 20px;
    height: 16px;
    margin-left: 30px;
    position: relative;
  }
  #header .btn_menu span {
    width: 20px;
    height: 2px;
    background: #707070;
    display: block;
    transition: 300ms;
  }
  #header.open_menu .gnb_wrap {
    display: flex;
  }
  #header.open_menu .btn_menu span {
    position: absolute;
  }
  #header.open_menu .btn_menu span:nth-child(1) {
    top: calc(50% - 6px);
    transform: translateY(5px) rotate(45deg);
  }
  #header.open_menu .btn_menu span:nth-child(2) {
    top: calc(50% - 1px);
    display: none;
  }
  #header.open_menu .btn_menu span:nth-child(3) {
    top: calc(50% + 4px);
    transform: translateY(-5px) rotate(-45deg);
  }
  #container {
    position: relative;
    z-index: 0;
  }
  #footer {
    height: 253px;
    background: rgba(40, 40, 40, 0.9);
    padding-top: 50px;
  }
  #footer .section {
    display: flex;
    align-items: flex-start;
  }
  #footer .section .foot_cont .foot_menu {
    display: flex;
    align-items: center;
  }
  #footer .section .foot_cont .foot_menu .foot_btn {
    font-size: 17px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.7);
  }
  #footer .section .foot_cont .foot_menu .foot_btn strong {
    color: rgb(255, 255, 255);
  }
  #footer .section .foot_cont .foot_menu .foot_btn:nth-child(n+2) {
    padding-left: 21px;
    margin-left: 20px;
    position: relative;
  }
  #footer .section .foot_cont .foot_menu .foot_btn:nth-child(n+2):before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 10px;
    margin-top: -5px;
    background: rgba(255, 255, 255, 0.4);
  }
  #footer .section .foot_cont .foot_info {
    margin-top: 24px;
    display: flex;
  }
  #footer .section .foot_cont .foot_info span {
    font-size: 15px;
    font-weight: 300;
    color: #fff;
    line-height: 1.3;
  }
  #footer .section .foot_cont .foot_info span:nth-child(n+2) {
    padding-left: 21px;
    margin-left: 20px;
    position: relative;
  }
  #footer .section .foot_cont .foot_info span:nth-child(n+2):before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 10px;
    margin-top: -5px;
    background: rgba(255, 255, 255, 0.4);
  }
  #footer .section .foot_cont .foot_copy {
    margin-top: 33px;
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
  }
  #footer .section .foot_sns {
    margin-left: auto;
    padding-top: 20px;
    display: flex;
    align-items: center;
  }
  #footer .section .foot_sns a {
    margin-left: 8px;
  }
  .tab_area {
    display: flex;
    margin: 50px 0;
    border: 1px solid #cccccc;
    height: 56px;
  }
  .tab_area.type_multi {
    flex-wrap: wrap;
    height: 112px;
  }
  .tab_area.type_multi .btn_tab {
    width: 25%;
    flex: auto;
    height: 56px;
  }
  .tab_area.type_multi .btn_tab:nth-child(n+5) {
    border-top: 1px solid #ccc;
  }
  .tab_area.type_multi .btn_tab:nth-child(5) {
    border-left: 0;
  }
  .tab_area .btn_tab {
    flex: 1;
    border-left: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .tab_area .btn_tab span {
    font-size: 20px;
    color: #707070;
    width: 100%;
    line-height: 1.2;
  }
  .tab_area .btn_tab:first-child {
    border-left: 0;
  }
  .tab_area .btn_tab.active_tab {
    background: transparent linear-gradient(90deg, rgb(25, 168, 206) 0%, rgb(1, 111, 177) 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 10px rgba(55, 128, 193, 0.61);
  }
  .tab_area .btn_tab.active_tab span {
    color: #fff;
  }
  .cont_area {
    display: none;
  }
  .cont_area.active_cont {
    display: block;
  }
  .in_tab_area {
    border-bottom: 1px solid #000000;
    display: flex;
    height: 56px;
    padding-left: 1px;
    margin-bottom: 30px;
  }
  .in_tab_area button {
    max-width: 250px;
    flex: 1;
    height: 56px;
    border: 1px solid #ccc;
    border-bottom: 1px solid #000;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -1px;
  }
  .in_tab_area button span {
    font-size: 20px;
    color: #707070;
  }
  .in_tab_area button.active_tab {
    border: 1px solid #000;
    background: #fff;
    border-bottom: 1px solid #fff;
    position: relative;
  }
  .in_tab_area button.active_tab span {
    font-weight: 600;
    color: #000;
  }
  .in_cont_area1 {
    display: none;
  }
  .in_cont_area1.active_cont {
    display: block;
  }
  .in_cont_area2 {
    display: none;
  }
  .in_cont_area2.active_cont {
    display: block;
  }
  .in_cont_area3 {
    display: none;
  }
  .in_cont_area3.active_cont {
    display: block;
  }
  .info_alert {
    display: flex;
  }
  .info_alert:before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url(/resource/images/ico_alert.svg) center no-repeat;
    margin-right: 5px;
  }
  .info_alert span {
    font-size: 15px;
    color: #be2828;
    line-height: 20px;
  }
  .pop .base_cont {
    background: #fff;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 50px 60px 80px;
  }
  .pop .base_cont .pop_tit {
    border-bottom: 1px solid #707070;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
  }
  .pop .base_cont .pop_tit strong {
    font-size: 28px;
    font-weight: 600;
    color: #000;
  }
  .pop .base_cont .pop_tit .btn-pop-close {
    display: block;
    width: 25px;
    height: 25px;
    margin-left: auto;
    font-size: 0;
    line-height: 0;
    background: url(/resource/images/ico_pop_close.svg) center no-repeat;
  }
  .pop .base_cont .base_info_cont {
    padding: 40px 30px 0 0;
    max-height: calc(100vh - 300px);
    overflow-y: auto;
    font-size: 18px;
    color: #555555;
    line-height: 30px;
  }
  .pop .base_cont .base_info_cont .mt20 {
    margin-top: 20px;
  }
  .pop .base_cont .base_info_cont .mt20 + .num_list {
    margin-top: 5px;
  }
  .pop .base_cont .base_info_cont .num_list {
    margin-top: 15px;
    counter-reset: colorcircle 0;
  }
  .pop .base_cont .base_info_cont .num_list li {
    padding-left: 25px;
    margin-top: 10px;
    line-height: 28px;
    font-size: 18px;
    color: #555555;
    position: relative;
  }
  .pop .base_cont .base_info_cont .num_list li:first-child {
    margin-top: 0;
  }
  .pop .base_cont .base_info_cont .num_list li:before {
    position: absolute;
    top: 3px;
    left: 0;
    counter-increment: colorcircle 1;
    content: counter(colorcircle);
    color: #fff;
    font-size: 12px;
    z-index: 1;
    background: #4378b5;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pop .base_cont .base_info_cont .num_list li .strong {
    font-weight: 600;
    color: #000000;
  }
  .pop .base_cont .base_info_cont .num_list li strong {
    font-weight: 600;
  }
  .pop .base_cont .base_info_cont .num_list li.mt50 {
    margin-top: 50px;
  }
  .pop .base_cont .base_info_cont .num_list li .t_blue {
    color: #4378b5;
    font-weight: 500;
  }
  .pop .base_cont .base_info_cont .num_list li ol {
    margin-top: 10px;
  }
  .pop .base_cont .base_info_cont .num_list li ol li {
    padding-left: 0;
    margin-top: 0;
    font-size: 16px;
  }
  .pop .base_cont .base_info_cont .num_list li ol li:before {
    display: none;
  }
  .pop .base_cont .base_info_cont .num_list:first-child {
    margin-top: 0;
  }
  .pop .base_cont .base_info_cont .num_list2 {
    margin-top: 15px;
  }
  .pop .base_cont .base_info_cont .num_list2 li {
    margin-top: 10px;
    line-height: 28px;
    font-size: 18px;
    color: #555555;
    position: relative;
  }
  .pop .base_cont .base_info_cont .num_list2 li:first-child {
    margin-top: 0;
  }
  .pop .base_cont .base_info_cont .num_list2 li .strong {
    font-weight: 600;
    color: #000000;
  }
  .pop .base_cont .base_info_cont .num_list2 li strong {
    font-weight: 600;
  }
  .pop .base_cont .base_info_cont .num_list2 li.mt50 {
    margin-top: 50px;
  }
  .pop .base_cont .base_info_cont .num_list2 li .t_blue {
    color: #4378b5;
    font-weight: 500;
  }
  .pop .base_cont .base_info_cont .num_list2:first-child {
    margin-top: 0;
  }
  .pop .base_cont .base_info_cont .base_sec {
    margin-top: 40px;
  }
  .pop .base_cont .base_info_cont .base_sec:first-child {
    margin-top: 0;
  }
  .pop .base_cont .base_info_cont .base_sec .base_sec_tt {
    font-size: 22px;
    color: #333333;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 5px;
  }
  .pop .base_cont .base_info_cont .base_table {
    margin: 10px 0;
  }
  .pop .base_cont .base_info_cont .base_table table {
    width: 100%;
  }
  .pop .base_cont .base_info_cont .base_table table th {
    border: 1px solid #ddd;
    text-align: center;
    padding: 10px;
    font-size: 16px;
    line-height: 22px;
  }
  .pop .base_cont .base_info_cont .base_table table td {
    border: 1px solid #ddd;
    text-align: center;
    padding: 10px;
    font-size: 16px;
    line-height: 22px;
  }
  .pop .fast_reserv_sec {
    max-width: 605px;
    background: #fff;
    width: 100%;
    margin: 0 auto;
  }
  .pop .fast_reserv_sec .pop_top {
    background: #437dea;
    padding: 50px 60px 30px;
  }
  .pop .fast_reserv_sec .pop_top .pop_tit {
    display: flex;
    border-bottom: 1px solid #fff;
    padding-bottom: 15px;
    align-items: center;
  }
  .pop .fast_reserv_sec .pop_top .pop_tit strong {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
  }
  .pop .fast_reserv_sec .pop_top .pop_tit .btn-pop-close {
    display: block;
    width: 25px;
    height: 25px;
    margin-left: auto;
    font-size: 0;
    line-height: 0;
    background: url(/resource/images/pop_close_wt.svg) center no-repeat;
  }
  .pop .fast_reserv_sec .pop_top .pop_disc {
    margin-top: 25px;
    font-size: 18px;
    line-height: 30px;
    font-weight: 300;
    color: #fff;
  }
  .pop .fast_reserv_sec .pop_top .pop_disc .t_green {
    color: #77ff77;
  }
  .pop .fast_reserv_sec .pop_cont {
    padding: 40px 60px 50px;
  }
  .pop .fast_reserv_sec .pop_cont .pop_agree {
    margin-bottom: 15px;
  }
  .pop .fast_reserv_sec .pop_cont .pop_agree input {
    display: none;
  }
  .pop .fast_reserv_sec .pop_cont .pop_agree input + label {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #437dea;
    cursor: pointer;
  }
  .pop .fast_reserv_sec .pop_cont .pop_agree input + label:before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-right: 10px;
  }
  .pop .fast_reserv_sec .pop_cont .pop_agree input:checked + label:before {
    background: url(/resource/images/ico_chk.svg) center no-repeat;
  }
  .pop .fast_reserv_sec .pop_cont .pop_form {
    display: flex;
    width: 100%;
  }
  .pop .fast_reserv_sec .pop_cont .pop_form ul {
    flex: 1;
  }
  .pop .fast_reserv_sec .pop_cont .pop_form ul li {
    display: flex;
    align-items: center;
    margin-top: 10px;
  }
  .pop .fast_reserv_sec .pop_cont .pop_form ul li:first-child {
    margin-top: 0;
  }
  .pop .fast_reserv_sec .pop_cont .pop_form ul li label {
    font-size: 18px;
    font-weight: 600;
    color: #555555;
    width: 80px;
  }
  .pop .fast_reserv_sec .pop_cont .pop_form ul li input {
    flex: 1;
    height: 40px;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 5px;
    padding: 0 10px;
  }
  .pop .fast_reserv_sec .pop_cont .pop_form .btn_confirm {
    margin-left: 15px;
    width: 144px;
    border-radius: 5px;
    background: transparent linear-gradient(90deg, #3ec757 0%, #16b399 37%, #1090b1 100%) 0% 0% no-repeat padding-box;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pop .fast_reserv_sec .pop_cont .pop_form .btn_confirm span {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
  }
}
@media (max-width: 767px) {
  .m_hide {
    display: none;
  }
  body {
    position: relative;
  }
  body.open_menu_body {
    height: 100vh;
    overflow: hidden;
  }
  #wrap {
    width: 100%;
    overflow: hidden;
    padding-top: 64px;
  }
  #side_fix {
    width: calc(100% + 40px);
    margin-left: -20px;
  }
  #side_fix .btn_side_toggle {
    display: none;
  }
  #side_fix .quick_wrap {
    overflow: hidden;
  }
  #side_fix .quick_wrap .quick_tit {
    background: #fe5c78;
    height: 60px;
  }
  #side_fix .quick_wrap .quick_tit span {
    line-height: 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    display: none;
  }
  #side_fix .quick_wrap .quick_tit p {
    font-size: 22px;
    color: #fff;
    line-height: 60px;
    padding: 0 20px;
  }
  #side_fix .quick_wrap .quick_cont {
    display: flex;
  }
  #side_fix .quick_wrap .quick_cont .quick_item {
    flex: 1;
    text-align: center;
    position: relative;
  }
  #side_fix .quick_wrap .quick_cont .quick_item:before {
    content: "";
    display: block;
    position: absolute;
    height: calc(100% - 30px);
    width: 1px;
    background: #dfdfdf;
    left: 0;
    top: 15px;
  }
  #side_fix .quick_wrap .quick_cont .quick_item:first-child:before {
    display: none;
  }
  #side_fix .quick_wrap .quick_cont .quick_item:hover:before {
    display: none;
  }
  #side_fix .quick_wrap .quick_cont .quick_item .quick_link {
    display: block;
    padding: 18px 0;
    width: 100%;
    background: #f5f5f5;
    height: 100%;
  }
  #side_fix .quick_wrap .quick_cont .quick_item .quick_link p {
    margin-top: 10px;
    font-size: 16px;
    color: #555555;
    line-height: 19px;
  }
  #side_fix .quick_wrap .quick_cont .quick_item .quick_link:hover {
    background: #437dea;
  }
  #side_fix .quick_wrap .quick_cont .quick_item .quick_link:hover p {
    color: #fff;
  }
  #side_fix .quick_wrap .quick_cont .quick_item .quick_link:hover .ico_quick1 {
    background-image: url(/resource/images/ico_quick1_on.svg);
  }
  #side_fix .quick_wrap .quick_cont .quick_item .quick_link:hover .ico_quick2 {
    background-image: url(/resource/images/ico_quick2_on.svg);
  }
  #side_fix .quick_wrap .quick_cont .quick_item .quick_link:hover .ico_quick3 {
    background-image: url(/resource/images/ico_quick3_on.svg);
  }
  #side_fix .quick_wrap .quick_cont .quick_item .ico_quick1 {
    display: block;
    width: 43px;
    height: 39px;
    background: url(/resource/images/ico_quick1.svg) center no-repeat;
    margin: 0 auto;
  }
  #side_fix .quick_wrap .quick_cont .quick_item .ico_quick2 {
    display: block;
    width: 42px;
    height: 26px;
    background: url(/resource/images/ico_quick2.svg) center no-repeat;
    margin: 0 auto;
  }
  #side_fix .quick_wrap .quick_cont .quick_item .ico_quick3 {
    display: block;
    width: 60px;
    height: 25px;
    background: url(/resource/images/ico_quick3.svg) center no-repeat;
    margin: 0 auto;
  }
  #header {
    height: 64px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    border-bottom: 1px solid #e5e7ee;
    background: #fff;
  }
  #header .section {
    display: flex;
    height: 64px;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
  }
  #header .logo {
    width: 112px;
  }
  #header .gnb_wrap {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    height: calc(100vh - 64px);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 20px 30px;
    box-sizing: border-box;
  }
  #header .gnb_wrap .gnb_item {
    position: relative;
    margin-top: 50px;
  }
  #header .gnb_wrap .gnb_item:first-child {
    margin-top: 0;
  }
  #header .gnb_wrap .gnb_item .gnb_link {
    font-size: 24px;
    color: #000;
    font-weight: 600;
  }
  #header .gnb_wrap .gnb_item .gnb_sub ul {
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #header .gnb_wrap .gnb_item .gnb_sub ul li {
    width: 49%;
  }
  #header .gnb_wrap .gnb_item .gnb_sub ul li:nth-child(n+3) {
    margin-top: 10px;
  }
  #header .gnb_wrap .gnb_item .gnb_sub ul li a {
    font-size: 18px;
    line-height: 1.3;
    color: #333;
  }
  #header .gnb_wrap .gnb_item .gnb_sub ul li a:hover {
    font-weight: 600;
    text-decoration: underline;
  }
  #header .btn_menu {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    width: 20px;
    height: 16px;
    margin-left: 30px;
    position: relative;
  }
  #header .btn_menu span {
    width: 20px;
    height: 2px;
    background: #707070;
    display: block;
    transition: 300ms;
  }
  #header.open_menu .gnb_wrap {
    display: block;
  }
  #header.open_menu .btn_menu span {
    position: absolute;
  }
  #header.open_menu .btn_menu span:nth-child(1) {
    top: calc(50% - 6px);
    transform: translateY(5px) rotate(45deg);
  }
  #header.open_menu .btn_menu span:nth-child(2) {
    top: calc(50% - 1px);
    display: none;
  }
  #header.open_menu .btn_menu span:nth-child(3) {
    top: calc(50% + 4px);
    transform: translateY(-5px) rotate(-45deg);
  }
  #container {
    position: relative;
    z-index: 0;
  }
  #footer {
    background: rgba(40, 40, 40, 0.9);
    padding: 25px 20px;
  }
  #footer .section .foot_cont .foot_menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  #footer .section .foot_cont .foot_menu .foot_btn {
    font-size: 16px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.7);
    margin: 5px 0;
  }
  #footer .section .foot_cont .foot_menu .foot_btn strong {
    color: rgb(255, 255, 255);
  }
  #footer .section .foot_cont .foot_menu .foot_btn:nth-child(n+2) {
    padding-left: 11px;
    margin-left: 10px;
    position: relative;
  }
  #footer .section .foot_cont .foot_menu .foot_btn:nth-child(n+2):before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 10px;
    margin-top: -5px;
    background: rgba(255, 255, 255, 0.4);
  }
  #footer .section .foot_cont .foot_info {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
  }
  #footer .section .foot_cont .foot_info span {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    line-height: 1.3;
  }
  #footer .section .foot_cont .foot_info span:first-child {
    width: 100%;
    margin-bottom: 10px;
  }
  #footer .section .foot_cont .foot_info span:nth-child(n+3) {
    padding-left: 11px;
    margin-left: 10px;
    position: relative;
  }
  #footer .section .foot_cont .foot_info span:nth-child(n+3):before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 10px;
    margin-top: -5px;
    background: rgba(255, 255, 255, 0.4);
  }
  #footer .section .foot_cont .foot_copy {
    margin-top: 20px;
    font-size: 12px;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.4);
  }
  #footer .section .foot_sns {
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #footer .section .foot_sns a {
    margin-left: 8px;
  }
  .tab_area {
    margin: 30px 0;
    border: 1px solid #cccccc;
  }
  .tab_area .btn_tab {
    border-top: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    width: 100%;
  }
  .tab_area .btn_tab span {
    font-size: 18px;
    color: #707070;
  }
  .tab_area .btn_tab:first-child {
    border-top: 0;
  }
  .tab_area .btn_tab.active_tab {
    background: transparent linear-gradient(90deg, rgb(25, 168, 206) 0%, rgb(1, 111, 177) 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 10px rgba(55, 128, 193, 0.61);
  }
  .tab_area .btn_tab.active_tab span {
    color: #fff;
  }
  .cont_area {
    display: none;
  }
  .cont_area.active_cont {
    display: block;
  }
  .in_tab_area {
    border-bottom: 1px solid #000000;
    display: flex;
    flex-wrap: wrap;
    padding-left: 1px;
    margin-bottom: 30px;
  }
  .in_tab_area button {
    width: 33.33%;
    height: 56px;
    border: 1px solid #ccc;
    border-bottom: 1px solid #000;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -1px;
    margin-bottom: -1px;
  }
  .in_tab_area button span {
    font-size: 18px;
    line-height: 23px;
    color: #707070;
    width: 100%;
  }
  .in_tab_area button.active_tab {
    border: 1px solid #000;
    background: #fff;
    border-bottom: 1px solid #fff;
    position: relative;
  }
  .in_tab_area button.active_tab span {
    font-weight: 600;
    color: #000;
  }
  .in_cont_area1 {
    display: none;
  }
  .in_cont_area1.active_cont {
    display: block;
  }
  .in_cont_area2 {
    display: none;
  }
  .in_cont_area2.active_cont {
    display: block;
  }
  .in_cont_area3 {
    display: none;
  }
  .in_cont_area3.active_cont {
    display: block;
  }
  .info_alert {
    display: flex;
  }
  .info_alert:before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url(/resource/images/ico_alert.svg) center no-repeat;
    margin-right: 5px;
  }
  .info_alert span {
    font-size: 15px;
    color: #be2828;
    line-height: 20px;
    flex: 1;
  }
  .pop .base_cont {
    background: #fff;
    max-width: 1100px;
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    height: 100%;
  }
  .pop .base_cont .pop_tit {
    border-bottom: 1px solid #707070;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
  }
  .pop .base_cont .pop_tit strong {
    font-size: 28px;
    font-weight: 600;
    color: #000;
  }
  .pop .base_cont .pop_tit .btn-pop-close {
    display: block;
    width: 25px;
    height: 25px;
    margin-left: auto;
    font-size: 0;
    line-height: 0;
    background: url(/resource/images/ico_pop_close.svg) center no-repeat;
  }
  .pop .base_cont .base_info_cont {
    padding: 20px 0 0;
    max-height: calc(100vh - 300px);
    overflow-y: auto;
    font-size: 18px;
    color: #555555;
    line-height: 30px;
  }
  .pop .base_cont .base_info_cont .mt20 {
    margin-top: 20px;
  }
  .pop .base_cont .base_info_cont .mt20 + .num_list {
    margin-top: 5px;
  }
  .pop .base_cont .base_info_cont .num_list {
    margin-top: 15px;
    counter-reset: colorcircle 0;
  }
  .pop .base_cont .base_info_cont .num_list li {
    padding-left: 25px;
    margin-top: 10px;
    line-height: 28px;
    font-size: 18px;
    color: #555555;
    position: relative;
  }
  .pop .base_cont .base_info_cont .num_list li:first-child {
    margin-top: 0;
  }
  .pop .base_cont .base_info_cont .num_list li:before {
    position: absolute;
    top: 3px;
    left: 0;
    counter-increment: colorcircle 1;
    content: counter(colorcircle);
    color: #fff;
    font-size: 12px;
    z-index: 1;
    background: #4378b5;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pop .base_cont .base_info_cont .num_list li .strong {
    font-weight: 600;
    color: #000000;
  }
  .pop .base_cont .base_info_cont .num_list li strong {
    font-weight: 600;
  }
  .pop .base_cont .base_info_cont .num_list li.mt50 {
    margin-top: 50px;
  }
  .pop .base_cont .base_info_cont .num_list li .t_blue {
    color: #4378b5;
    font-weight: 500;
  }
  .pop .base_cont .base_info_cont .num_list li ol {
    margin-top: 10px;
  }
  .pop .base_cont .base_info_cont .num_list li ol li {
    padding-left: 0;
    margin-top: 0;
    font-size: 16px;
  }
  .pop .base_cont .base_info_cont .num_list li ol li:before {
    display: none;
  }
  .pop .base_cont .base_info_cont .num_list:first-child {
    margin-top: 0;
  }
  .pop .base_cont .base_info_cont .num_list2 {
    margin-top: 15px;
  }
  .pop .base_cont .base_info_cont .num_list2 li {
    margin-top: 10px;
    line-height: 28px;
    font-size: 18px;
    color: #555555;
    position: relative;
  }
  .pop .base_cont .base_info_cont .num_list2 li:first-child {
    margin-top: 0;
  }
  .pop .base_cont .base_info_cont .num_list2 li .strong {
    font-weight: 600;
    color: #000000;
  }
  .pop .base_cont .base_info_cont .num_list2 li strong {
    font-weight: 600;
  }
  .pop .base_cont .base_info_cont .num_list2 li.mt50 {
    margin-top: 50px;
  }
  .pop .base_cont .base_info_cont .num_list2 li .t_blue {
    color: #4378b5;
    font-weight: 500;
  }
  .pop .base_cont .base_info_cont .num_list2:first-child {
    margin-top: 0;
  }
  .pop .base_cont .base_info_cont .base_sec {
    margin-top: 40px;
  }
  .pop .base_cont .base_info_cont .base_sec:first-child {
    margin-top: 0;
  }
  .pop .base_cont .base_info_cont .base_sec .base_sec_tt {
    font-size: 22px;
    color: #333333;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 5px;
  }
  .pop .base_cont .base_info_cont .base_table {
    margin: 10px 0;
  }
  .pop .base_cont .base_info_cont .base_table table {
    width: 100%;
  }
  .pop .base_cont .base_info_cont .base_table table th {
    border: 1px solid #ddd;
    text-align: center;
    padding: 10px;
    font-size: 16px;
    line-height: 22px;
  }
  .pop .base_cont .base_info_cont .base_table table td {
    border: 1px solid #ddd;
    text-align: center;
    padding: 10px;
    font-size: 16px;
    line-height: 22px;
  }
  .pop .fast_reserv_sec {
    background: #fff;
    width: 90%;
    margin: 0 auto;
  }
  .pop .fast_reserv_sec .pop_top {
    background: #437dea;
    padding: 20px;
  }
  .pop .fast_reserv_sec .pop_top .pop_tit {
    display: flex;
    border-bottom: 1px solid #fff;
    padding-bottom: 15px;
    align-items: center;
  }
  .pop .fast_reserv_sec .pop_top .pop_tit strong {
    font-size: 23px;
    font-weight: 600;
    color: #fff;
  }
  .pop .fast_reserv_sec .pop_top .pop_tit .btn-pop-close {
    display: block;
    width: 25px;
    height: 25px;
    margin-left: auto;
    font-size: 0;
    line-height: 0;
    background: url(/resource/images/pop_close_wt.svg) center no-repeat;
  }
  .pop .fast_reserv_sec .pop_top .pop_disc {
    margin-top: 20px;
    font-size: 15px;
    line-height: 23px;
    font-weight: 300;
    color: #fff;
  }
  .pop .fast_reserv_sec .pop_top .pop_disc .t_green {
    color: #77ff77;
  }
  .pop .fast_reserv_sec .pop_cont {
    padding: 20px;
  }
  .pop .fast_reserv_sec .pop_cont .pop_agree {
    margin-bottom: 15px;
  }
  .pop .fast_reserv_sec .pop_cont .pop_agree input {
    display: none;
  }
  .pop .fast_reserv_sec .pop_cont .pop_agree input + label {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #437dea;
    cursor: pointer;
  }
  .pop .fast_reserv_sec .pop_cont .pop_agree input + label:before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-right: 10px;
  }
  .pop .fast_reserv_sec .pop_cont .pop_agree input:checked + label:before {
    background: url(/resource/images/ico_chk.svg) center no-repeat;
  }
  .pop .fast_reserv_sec .pop_cont .pop_form ul li {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 10px;
  }
  .pop .fast_reserv_sec .pop_cont .pop_form ul li:first-child {
    margin-top: 0;
  }
  .pop .fast_reserv_sec .pop_cont .pop_form ul li label {
    font-size: 18px;
    font-weight: 600;
    color: #555555;
    width: 80px;
  }
  .pop .fast_reserv_sec .pop_cont .pop_form ul li input {
    height: 40px;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 5px;
    padding: 0 10px;
    width: calc(100% - 80px);
  }
  .pop .fast_reserv_sec .pop_cont .pop_form .btn_confirm {
    margin-top: 15px;
    width: 100%;
    height: 50px;
    border-radius: 5px;
    background: transparent linear-gradient(90deg, #3ec757 0%, #16b399 37%, #1090b1 100%) 0% 0% no-repeat padding-box;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pop .fast_reserv_sec .pop_cont .pop_form .btn_confirm span {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
  }
}