@charset "UTF-8";
:root {
  --primary-color-1: #0062b1;
  --point-color-2: #00b9b7;
  --point-color-3: #264286;
  --point-color-4: #bb9753;
  --point-color-5: #f44e18;
  --basics-color-1: #ffffff;
  --basics-color-2: #000000;
  --success-color-1: #0062b1;
  --primary-color-3: #ffd597;
  --bg-color-1: #111315;
  --bg-color-2: #1b1f2b;
  --bg-color-3: #252a3d;
  --bg-color-4: #292c2d;
  --gray-color-1: #313131;
  --gray-color-2: #171717;
  --gray-color-3: #666666;
  --gray-color-5: #a7a9ac;
  --gray-color-6: #dddddd;
  --gray-color-7: #efefef;
  --gray-color-8: #f8f8f8;
  --light-blue-1: #e7f4fd;
  --light-blue-2: #c2dbe9;
  --light-red-1: #f5f0f5;
  --deep-blue: #264286;
  --orange-color: #f44e18;
}
html {
  scroll-behavior: smooth; /* 부드러운 스크롤링 */
}

.main_color {
  color: var(--primary-color-1) !important;
}
.blind {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
}
.overlay {
  display: none;
  background: rgba(23, 23, 24, 0.4);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 70;
}
.overlay.on {
  display: block;
}
.overlaypopup {
  display: none;
  background: rgba(23, 23, 24, 0.4);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 70;
}
.overlaypopup.on {
  display: block;
}
.img_box img,
.icon_box img {
  display: block;
  width: 100%;
}
.content100 {
  min-height: calc(100vh - 9.6rem);
}
.content_hd100 {
  min-height: calc(100vh - 14.4rem);
}
.selectBox {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: 4.4rem;
  background: url("../img/select_default.png") calc(100% - 1rem) center
    no-repeat;
  background-size: 2.4rem;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 400;
}
.selectBox.active {
  border-radius: 0.8rem 0.8rem 0 0;
}
.selectBox .label {
  display: flex;
  align-items: center;
  width: 100%;
  line-height: 4.2rem;
  border: none;
  outline: none;
  padding-left: 1rem;
  background: transparent;
  cursor: pointer;
  font-size: 1.6rem;
  border: 1px solid var(--gray-color-6);
  color: #ccc;
  border-radius: 0.8rem;
}

.selectBox .optionList {
  z-index: 20;
  position: absolute;
  top: 4rem;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 0 0 0.8rem 0.8rem;
  overflow: hidden;
  max-height: 0;
  transition: 0.1s ease-in;
  font-size: 1.6rem;
  border-left: 1px solid var(--gray-color-6);
  border-right: 1px solid var(--gray-color-6);
}

.selectBox.active .optionList {
  max-height: 40rem;
  border-bottom: 1px solid var(--gray-color-6);
}
.selectBox.active .optionItem {
  border-top: 1px solid var(--gray-color-6);
}
.selectBox .optionItem + .optionItem {
  margin-top: 0 !important;
}
.selectBox .optionItem {
  padding: 0 1rem;
  transition: 0.1s;
  line-height: 4rem;
  font-size: 1.6rem;
  font-weight: 400;
}
.selectBox .optionItem.disabled {
  pointer-events: none;
  background: #f8f8f8;
  color: var(--gray-color-5);
  cursor: initial !important;
}
.selectBox .optionItem:hover {
  background: #f8f8f8;
  color: var(--primary-color-1);
  font-weight: 600;
}

.selectBox .optionItem:last-child {
  border-bottom: 0 none;
}

.input-baseBox .input_label {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.input-baseBox .txt-list {
  margin-top: 10px;
}
.mark_required {
  display: block;
  width: 7px;
}
.input-baseBox .txt-list li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  font-weight: 400;
  word-break: keep-all;
}
.input-baseBox .txt-list.error li {
  color: var(--orange-color);
}
.input-baseBox .txt-list li::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: var(--gray-color-1);
  border-radius: 5px;
  position: absolute;
  left: 0px;
  top: 5px;
}
.input-baseBox .txt-list.error li::after {
  border-radius: none;
  background: url(../img/icon_bullet_red.png) no-repeat center / cover;
}
.input_label {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: #2f2f2f;
}
.input-base {
  border: 1px solid #d9d9d9;
  width: 100%;
  line-height: 4.2rem;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  padding: 0 1rem;
  color: var(--gray-color-1);
}
.input-base.txtR {
  text-align: right !important;
}
.input-base::placeholder {
  color: var(--gray-color-5);
}
.input-base:focus {
  outline: none;
  border: 1px solid var(--gray-color-1);
}
.input-base:read-only {
  border: 1px solid #d9d9d9;
  background: var(--gray-color-8);
  color: var(--gray-color-1);
}
.input-base:disabled {
  border: 1px solid #d9d9d9;
  background: var(--gray-color-8);
  color: var(--gray-color-5);
}
.input-base.error {
  border: 1px solid var(--orange-color);
  background: var(--light-red-1);
  color: var(--orange-color);
}
.input-base.error::placeholder {
  color: var(--orange-color);
}

.input-base.success {
  border: 1px solid var(--primary-color-1);
  background: var(--light-blue-1);
  color: var(--primary-color-1);
}
.input-search,
.input-passwordBox,
.input-clear,
.input-priceBox {
  width: fit-content;
  height: 4.4rem;
  position: relative;
}
.input-priceBox .unit {
  display: block;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  line-height: 4.2rem;
}
.input-priceBox .input-base {
  text-align: right;
  padding: 0 2.8rem 0 1rem;
}
.input-clear .btn-clear {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.4rem;
  display: none;
}
.input-passwordBox .btn-eye {
  width: 2.4rem;
  height: 2.4rem;
  display: block;
  background: url(../img/eye.svg) no-repeat center / cover;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
.input-passwordBox.on .btn-eye {
  background: url(../img/eye_off.png) no-repeat center / cover;
}
.input-passwordBox.input-clear .btn-clear {
  right: 3.8rem;
}
.input-search .input-base {
  padding: 0 40px 0 0;
}
.input-search .icon_box {
  width: 40px;
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

input[type="checkbox"] {
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  display: block;
  cursor: pointer;
  border: 1px solid #ccc;
  background-color: #fff;
  outline: none !important;
  border-radius: 0.4rem;
}

input[type="checkbox"]:checked {
  display: block;
  border: 1px solid var(--primary-color-1);
  background: url(../img/check_24_small.svg) no-repeat center / cover;
}

input[type="radio"] {
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  width: 2rem;
  height: 2rem;
  display: block;
  cursor: pointer;
  border: 2px solid #999;
  outline: none !important;
  border-radius: 50%;
}
input[type="radio"]:checked {
  display: block;
  border: 2px solid var(--primary-color-1);
}
input[type="radio"]:checked::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background: var(--primary-color-1);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
input[type="radio"]:disabled {
  border: 2px solid #d9d9d9;
}
input[type="radio"]:disabled::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background: #d9d9d9;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.btn-toggle {
  position: relative;
  background: var(--gray-color-5);
  width: 5.1rem;
  height: 3.1rem;
  border-radius: 6rem;
  transition: 0.15s ease-in-out;
}
.btn-toggle::after {
  content: "";
  display: block;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0px 0.3rem 0.1rem rgba(0, 0, 0, 0.06);
  position: absolute;
  left: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.15s ease-in-out;
}
.btn-toggle.on {
  background: var(--primary-color-1);
}
.btn-toggle.on::after {
  left: 2.2rem;
}
.btn-base,
a.btn-base {
  display: block;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  line-height: 60px;
  border-radius: 0.8rem;
  width: 100%;
}
.btn-deactivate {
  background: var(--gray-color-5);
  pointer-events: none;
}
.btn-deactivate30 {
  background: #484848;
}
a.btn-active,
.btn-active60.on,
.btn-deactivate.on,
.btn-active {
  background: var(--primary-color-1);
  color: #fff;
  pointer-events: all;
  border: 1px solid var(--primary-color-1);
}
.btn-active30 {
  background: #00457c;
}
a.btn-disable,
.btn-disable {
  background: var(--gray-color-6);
  color: var(--gray-color-5);
  pointer-events: none;
}
.btn-line.btn-base {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #666;
  line-height: 60px;
  border: 1px solid var(--gray-color-6);
  font-size: 18px;
  font-weight: 600;
}
a.btn-active60,
.btn-active60 {
  background: #dddddd;
}
a.btn-gray,
.btn-gray {
  background: var(--gray-color-5);
  color: #fff;
}
a.btn-line-active,
.btn-line-active {
  line-height: 60px;
  background: #fff;
  border: 1px solid var(--primary-color-1);
  color: var(--primary-color-1);
}
.btn-line span {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #666;
}
.btn-line .icon_box {
  width: 24px;
}
.btn-box {
  display: flex;
  gap: 1rem;
}
.btn-box .item {
  flex: 1;
}

.provision_popup .btn_bottom {
  padding: 0;
}
.btn_bottom .btn-box + .btn_itemg {
  margin-top: 20px;
}
.comm_modal .bot_box ul {
  gap: 1rem;
}
.comm_modal .bot_box ul .item4,
.btn-box .item4 {
  flex: 4;
}
.comm_modal .bot_box ul .item6,
.btn-box .item6 {
  flex: 6;
}
.modal_txt .contents {
  padding-top: 24px;
}
.modal_txt h3 {
  font-size: 24px;
  font-weight: 600;
  color: #313131;
  line-height: 1.25;
  text-align: center;
}
.modal_txt p {
  text-align: center;
  color: #2f2f2f;
  font-size: 1.6rem;
  margin: 20px auto;
}
.modal_txt p.red_color {
  color: #cc0000;
}
.comm_modal .modal_borderbox {
  border-radius: 8px;
  border: 1px solid var(--gray-color-6);
  width: calc(100% - 40px);
  margin: 0 auto;
}
.comm_modal .modal_borderbox.red {
  font-size: 16px;
  font-weight: 600;
  color: #f44e18;
}
.comm_modal .modal_borderbox.red p {
  color: #f44e18;
}
.comm_modal .modal_borderbox.red p + p {
  margin-top: 10px;
}
.comm_modal .modal_tit {
  padding-bottom: 20px;
  padding-top: 24px;
}
a.btn-small,
.btn-small {
  display: inline-block;
  padding: 0 22px;
  line-height: 44px;
  min-width: 100px;
  border-radius: 8px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  background: var(--gray-color-3);
  text-align: center;
}
.btn-small-boder {
  display: inline-block;
  padding: 0 10px;
  line-height: 26px;
  text-align: center;
  border: 1px solid var(--gray-color-6);
  border-radius: 30px;
  font-size: 1.2rem;
  color: var(--gray-color-3);
}
.wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}
.btn_bottom {
  padding-bottom: 30px;
  z-index: 40;
  padding-top: 10px;
}
.error_conts {
  background: var(--light-red-1);
  color: var(--orange-color);
  padding: 1.15rem 2rem;
  display: block;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  border-radius: 0.8rem;
}
.comm_modal {
  position: fixed;
  width: 100%;
  background: #fff;
  z-index: 90;
  max-width: 400px;
  width: calc(100% - 40px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  display: none;
}
.comm_modal .button_close {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 40px;
  display: block;
}
.comm_modal .button_close img {
  display: block;
  width: 100%;
}
.comm_modal.on {
  display: block;
}
.comm_modal .bot_box {
  padding: 30px 24px 24px;
}
.comm_modal .bot_box ul {
  display: flex;
}
.comm_modal .bot_box ul .item {
  flex: 1;
}
.comm_modal .bot_box .btn-base {
  line-height: 44px;
}
.comm_modal .modal_tit {
  position: relative;
  /*padding: 2rem;*/
	margin:10px 30px;
}
.comm_modal .modal_tit h3 {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
}
.comm_modal .modal_tit .modal_close {
  width: 2rem;
  display: block;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}
.comm_modal .contents .icon_box {
  width: 48px;
  margin: 0 auto 10px;
}
.tab_menu ul {
  display: flex;
}
.tab_menu ul li {
  flex: 1;
  border-radius: 8px 8px 0 0;
  border-top: 1px solid #d9d9d9;
  border-left: 1px solid #d9d9d9;
  border-right: 1px solid #d9d9d9;
}
.tab_menu ul li.on {
  border-top: 1px solid var(--primary-color-1);
  border-left: 1px solid var(--primary-color-1);
  border-right: 1px solid var(--primary-color-1);
}
.tab_menu ul li + li {
  border-left: none;
}
.tab_menu ul li a {
  display: block;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gray-color-3);
  line-height: 48px;
}
.tab_menu ul li.on a {
  color: var(--primary-color-1);
  font-weight: 600;
}
.tab_conts .tab_sub {
  display: none;
}
.tab_conts .tab_sub:first-child {
  display: block;
}
/* 공통 */

/* header 해더 */
header {
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 50;
  transition: all 0.3s ease-in-out;
}
header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 112px;
  position: relative;
  max-width: none;
  padding: 0 80px;
}
header .gnb {
  display: flex;
  align-items: flex-start;
  /* overflow: hidden; */
  /* gap: 20px; */
}
header .gnb li.depth1 {
  width: 160px;
  position: relative;
}
header .gnb li.depth1 > a {
  display: block;
  text-align: center;
  line-height: 112px;
  font-size: 16px;
  font-weight: 600;
}
header .gnb li .depth2 {
  overflow: hidden;
  position: absolute;
  width: 160px;
  left: 50%;
  top: 112px;
  height: 0;
  padding-top: 20px;
  box-sizing: border-box;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
}
header .gnb li .depth2 li {
  padding: 0 10px;
}
header .wrap.hd-sb {
  justify-content: space-between;
}
header .logo {
  display: block;
  width: 14rem;
}
header .logo a {
  display: block;
}
header .logo a img {
  width: 100%;
}

header.on {
  background: #fff;
  overflow: initial;
}

header .bg {
  width: 100%;
  height: 0;
  background: #fff;
  z-index: 9997;
  transition: all 0.3s ease-in-out;
  position: absolute;
  left: 0;
  top: 110px;
  z-index: -1;
}
header.on .gnb li .depth2 {
  padding: 20px 0 36px;
}
header .bg.on {
  border-top: 1px solid var(--gray-color-6);
}
header .gnb_wrap .gnb .depth1:before {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 0;
  width: 0;
  height: 4px;
  background: var(--primary-color-1);
  transition: all 0.3s ease-in-out;
}

header .gnb_wrap .gnb .depth1:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 4px;
  background: var(--primary-color-1);
  transition: all 0.3s ease-in-out;
}

header .gnb_wrap .gnb .depth1:hover:before {
  width: 50%;
}

header .gnb_wrap .gnb .depth1:hover:after {
  width: 50%;
}
header .gnb_wrap .gnb .depth2 li + li {
  margin-top: 16px;
}
header .gnb_wrap .gnb .depth2 a {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 16px;
  line-height: 26px;
  transition: 0.1s ease-in-out;
}
header .gnb_wrap .gnb .depth2 li.on a,
header .gnb_wrap .gnb .depth2 li:hover a {
  color: var(--primary-color-1);
  font-weight: 600;
}
header .hd-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
header .booking-center a {
  display: inline-flex;
  min-width: 69px;
  padding: 6px 10px;
  border-radius: 20px;
  background: var(--orange-color);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
header .btn_toggle {
  width: 24px;
  display: none;
}
header .btn_toggle a {
  display: block;
}
header .hd_menu {
  position: relative;
  background: #fff;
  width: 100%;
  height: 100%;
}
header .hd_menu.on {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
header .hd_menu .hd_top {
  padding: 10px 20px 20px 20px;
}
header .btn_close {
  position: absolute;
  right: 16px;
  top: 10px;
  width: 20px;
  z-index: 20;
}
header .hd-info {
  position: relative;
}
header .hd-info.on ul {
  display: block;
}
header .hd-info ul {
  width: 125px;
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translate(-50%, 100%);
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  padding: 10px 20px;
  display: none;
}
header .hd-info ul li + li {
  margin-top: 8px;
}
header .hd-info ul li a {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  transition: 0.1s ease-in-out;
}
header .hd-info ul li:hover a {
  color: var(--primary-color-1);
}
header .hd-info button {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 40px;
  padding-right: 40px;
  background: url(../img/select_default_main40.png) no-repeat right center;
  background-size: 40px;
}
header .hd-info button img {
  width: 32px;
  display: block;
}
header .hd-info button span {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color-1);
}
.hd_menu .hd_top {
  border-bottom: 1px solid var(--gray-color-6);
}

header .hd-btn24 .icon_box {
  width: 2.4rem !important;
}
header .title {
  width: calc(100% - 48px);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  z-index: 20;
}
header .login-box ul {
  display: flex;
  align-items: center;
  gap: 16px;
}
header .login-box ul a {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-color-3);
}
header .language-select {
  position: relative;
}
header .language-select button img {
  width: 40px;
  display: block;
}
header .language-select button {
  width: 100px;
  border: none;
  background: #fff url(../img/select_default40_g31.png) no-repeat center right;
  background-size: 40px;
  color: var(--gray-color-3);
  display: flex;
  align-items: center;
  padding-right: 40px;
}
header .language-select button span {
  font-size: 16px;
  color: var(--gray-color-3);
}
.language-select .optionList {
  display: none;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 100%);
  bottom: -16px;
  background: #fff;
  width: 86px;
  border-radius: 8px;
  padding: 10px 0;
  border: 1px solid #ddd;
}
.language-select.on .optionList {
  display: block;
}
header .language-select .optionList li:hover {
  color: var(--primary-color-1);
}
header .language-select .optionList li + li {
  margin-top: 8px;
}
header .language-select .optionList li {
  display: block;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}
header .m_gnb {
  background: #fff;
}
header .m_gnb .m_depth1 {
  display: flex;
  align-items: flex-start;
}
header .m_gnb .m_depth1 {
  background: #fff;
}
header .m_gnb .m_depth1.on {
  background: var(--gray-color-8);
}
header .m_gnb .m_depth1 a {
  display: block;
  line-height: 64px;
  padding: 0 24px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
}
header .m_gnb .m_depth1.on a {
  color: var(--primary-color-1);
}
header .m_toggle {
  display: flex;
  overflow-y: auto;
  height: calc(100% - 103px);
  background: var(--gray-color-8);
}
header nav .left_group {
  background: #fff;
  height: 100%;
  width: 158px;
}
header nav .m_depth_box {
  width: calc(100% - 158px);
  height: 100%;
}

header nav .m_depth_box .m_depth2 {
  display: none;
}
header nav .m_depth_box .m_depth2:first-child {
  display: block;
}
header nav .m_depth_box .m_depth2 li a {
  padding: 10px 20px;
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-color-1);
  line-height: 1.57;
}
header nav .m_depth_box .m_depth2 li:hover a,
header nav .m_depth_box .m_depth2 li.on a {
  color: var(--primary-color-1);
  font-weight: 600;
}
header .hd_menu {
  display: none;
}
header .btn_back {
  width: 20px;
  display: none;
}
header .btn_back a {
  width: 20px;
  display: block;
}

#header.fixed header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 50;
  width: 100%;
}
.sub_top header.on {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
}
.sub_top .site_map > ul {
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sub_top .site_map > ul > li.home {
  width: 20px;
  height: 20px;
}
.sub_top .site_map > ul > li.home a img {
  display: block;
  width: 20px;
}
.sub_top .site_map > ul > li:nth-child(3) {
  padding-left: 28px;
  position: relative;
}
.sub_top .site_map > ul > li:nth-child(3)::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/ic_division.png) no-repeat center / cover;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.sub_top .site_map > ul > li:last-child > a {
  color: var(--point-color-5);
}
.sub_top .site_map > ul > li > a {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-color-1);
}
.sub_top .sub_title {
  position: relative;
  width: fit-content;
}
.sub_top .sub_title .sub_depth2 {
  height: 0;
  overflow: hidden;
  width: 230px;
  position: absolute;
  transform: translateX(100%);
  right: 20px;
  top: 25px;
  transition: 0.1s ease-in;
}
.sub_top .site_map {
  margin-top: 90px;
}
.sub_top .sub_depth2.on {
  height: fit-content;
  overflow: visible;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  padding: 20px 30px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
}
.sub_top .sub_title .icon_box {
  background: url(../img/ic_loactor_20_arrowdown.png) no-repeat center / cover;
  width: 20px;
  height: 20px;
}
.sub_top .sub_title button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 22px;
}

.sub_top .sub_title span {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange-color);
}
.sub_top .sub_title span.pc_txt {
  display: block;
}
.sub_top .sub_title span.m_txt {
  display: none;
}
.sub_top .sub_title .icon_box {
  width: 20px;
}
.sub_top .sub_title .sub_depth2 li + li {
  margin-top: 16px;
}
.sub_top .sub_title .sub_depth2 li a {
  display: block;
  text-align: left;
  line-height: 1.2;
  font-weight: 400;
  font-size: 18px;
  color: #54585a;
}
.sub_top .sub_title .sub_depth2 li.on a {
  color: var(--primary-color-1);
  font-weight: 600;
}
.toggle_menu {
  display: none;
}
.toggle_menu.on {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 80;
  background: #fff;
}

footer {
  background: var(--gray-color-2);
  padding: 30px 80px;
  display: flex;
  justify-content: space-between;
  color: #fff;
}
footer .wrap {
  padding: 0;
}
footer .top_group {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 30px;
}
footer .left_group {
  display: flex;
  justify-content: space-between;
}
footer p {
  font-size: 14px;
  color: #fff;
  line-height: 1.57;
  font-weight: 400;
}
footer p .m_br {
  display: none;
}
footer .copyright {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-color-5);
  display: inline-block;
  width: fit-content;
}
footer .top_group .logo {
  width: 203px;
}
footer .top_group .logo a {
  display: block;
}
footer .top_group ul {
  display: flex;
  align-items: center;
  gap: 41px;
}
footer .top_group ul li {
  position: relative;
}
footer .top_group ul li + li::after {
  content: "";
  display: block;
  width: 1px;
  height: 14px;
  background: var(--gray-color-3);
  position: absolute;
  left: -21px;
  top: 50%;
  transform: translateY(-50%);
}
footer .top_group ul a {
  display: block;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
}
footer .right_group {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
footer .selectBox {
  width: 153px;
  background: #000 url(../img/arrow_down_24f.png) calc(100% - 28px) center
    no-repeat;
  background-size: 24px;
  border-radius: 40px;
  height: 40px;
}
footer .selectBox .label {
  padding-left: 30px;
  font-size: 14px;
  line-height: 38px;
  color: #fff !important;
  padding-right: 30px;
  border: none;
  border-radius: 40px;
}
footer .sns_list ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
footer .sns_list ul li {
  width: 40px;
}
footer .sns_list ul li a {
  display: block;
}
footer .ft_bot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.sub_container {
  min-height: calc(100vh - 273px);
  padding-bottom: 100px;
}
.sub_container .page-title {
  font-size: 70px;
  font-weight: 700;
  color: var(--gray-color-1);
  margin-top: 40px;
  margin-bottom: 60px;
}
.popup_wrap {
  z-index: 80;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-height: 90vh;
  border-radius: 8px;
  background: #fff;
  padding: 40px 30px;
  width: 800px;
  overflow-y: auto;
  display: none;
  opacity: 0;
}
.popup_wrap.on {
  display: block;
  opacity: 1;
}
.popup_wrap .button_close {
  position: absolute;
  top: 16px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: url(../img/button_close_x.png) no-repeat center / cover;
}
.popup_wrap .pop_title {
  margin-bottom: 30px;
  font-size: 24px;
  color: #1c1c1c;
  font-weight: 600;
}
.popup_wrap .pop_subtitle {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--gray-color-1);
  margin-bottom: 20px;
}
.popup_wrap::-webkit-scrollbar {
  width: 2px;
}
.popup_wrap::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 10px;
  background-clip: padding-box;
}
.popup_wrap::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 10px;
}
/* 달력 */

.ui-datepicker {
  width: 100%;
}
.ui-datepicker th {
  font-size: 12px;
  line-height: 20px;
  color: var(--gray-color-5);
  font-weight: 600;
  padding: 16px 0;
}
.ui-datepicker .ui-datepicker-title {
  font-size: 1.6rem;
  color: #4a5660;
}
.ui-datepicker td {
  padding: 2px 0;
}
.ui-state-default,
.ui-widget-content .ui-state-default {
  border: none;
  background: #fff;
}
.ui-datepicker td span,
.ui-datepicker td a {
  font-size: 1.6rem;
  text-align: center;
  font-weight: 600;
  color: var(--gray-color-3);
  line-height: 3rem;
  padding: 0;
}
.ui-state-default.ui-state-active {
  color: #fff;
  position: relative;
  z-index: 10;
}
.ui-state-default.ui-state-active::before {
  content: "";
  display: block;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--primary-color-1);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: 1;
}

.off span,
.off a {
  background: var(--gray-color-7) !important;
  pointer-events: none;
}
.ui-icon {
  width: 1.6rem;
  height: 1.6rem;
}
.rez_form .ui-datepicker .ui-datepicker-prev span,
.rez_form .ui-datepicker .ui-datepicker-next span {
  margin: 0;
  transform: translate(-50%, -50%);
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  width: 1.6rem;
  height: 1.6rem;
}
.ui-datepicker .ui-datepicker-header {
  padding: 0;
}
.ui-datepicker .ui-datepicker-next {
  right: 0;
  transform: translateY(-50%);
  top: 50%;
}
.ui-datepicker .ui-datepicker-next .ui-icon {
  background: url(../img/datepicker_next.png) no-repeat center / cover;
}
.ui-datepicker .ui-datepicker-prev {
  left: 0;
  transform: translateY(-50%);
  top: 50%;
}
.ui-datepicker .ui-datepicker-prev .ui-icon {
  background: url(../img/datepicker_pre.png) no-repeat center / cover;
}
.ui-widget-header {
  background: #fff;
  border: none;
}
.ui-widget.ui-widget-content {
  border: 1px solid var(--gray-color-6);
  border-radius: 8px;
  padding: 24px;
}
.input-baseBox .check_on .txt-list li::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: url(../img/icon_bullet.svg) no-repeat center / cover;
  position: absolute;
  left: 0;
  top: 6px;
}

.total_box ul {
  padding: 1rem 0;
  border-top: 1px solid var(--gray-color-1);
  border-bottom: 1px solid var(--gray-color-1);
}
.total_box li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.total_box li.mt0 {
  margin-top: 0 !important;
}
.total_box li + li {
  margin-top: 10px;
}
.total_box li .text {
  font-size: 14px;
  font-weight: 400;
}
.total_box li .pay {
  font-size: 16px;
  font-weight: 600;
}
.total_box .total_all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.total_box .total_all .text {
  font-size: 14px;
  font-weight: 400;
}
.total_box .total_all .pay {
  font-size: 20px;
  font-weight: 600;
}
.total_box .red {
  color: #f44e18 !important;
}
.total_box .total_all .pay span {
  color: var(--primary-color-1);
}
.mypage_container .pagination {
  margin-top: 50px;
}
.pagination ul,
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.pagination button {
  width: 54px;
}
.pagination button img {
  width: 100%;
  display: block;
}
.pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 60px;
  border: 1px solid var(--gray-color-6);
  font-size: 16px;
  color: #000;
  font-weight: 400;
}
.pagination li.on a {
  color: var(--primary-color-1);
  border: 1px solid var(--primary-color-1);
  font-weight: 600;
}
.info_table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.info_table th,
.info_table td {
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  padding: 10px;
  text-align: center;
  vertical-align: middle;
  padding: 6pxpx 30px;
}
.info_table th {
  text-align: left;
  color: #2f2f2f;
  font-size: 16px;
  font-weight: 600;
  background: #f7f9fb;
}
.info_table td {
  text-align: right;
  color: #2f2f2f;
  font-size: 16px;
  font-weight: 600;
}
.info_table th + td {
  border-left: 1px solid #d9d9d9;
}