#accessibility {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
}
#accessibility a {
  display: block;
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: 0 -1px -1px 0;
  font-size: 0;
  line-height: 0;
  text-align: center;
  transition: 0s;
}
#accessibility a:focus,
#accessibility a:hover,
#accessibility a:active {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0;
  background: #20262c;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  height: 46px;
}

/* Type 02 */
#gnb {
  position: relative;
}
.navi-txt {
  position: absolute;
  z-index: 99;
}
#gnb .gnb-nav {
  display: inline-block;
  position: relative;
  z-index: 90;
}

#gnb .gnb-nav > li {
  position: relative;
  display: block;
  float: left;
}
#gnb .gnb-nav > li > a {
  display: block;
  position: relative;
  float: left;
  padding: 0 25px;
  font-size: 16px;
  line-height: 50px;
  text-align: left;
  font-weight: 500;
  text-decoration: none;
  color: #212121;
  transition: 0s;
}
#gnb .gnb-nav > li.active > a {
  color: #000;
  font-weight: 700;
}
#gnb .gnb-nav > li:hover > a + ul {
  display: block;
  left: 0;
}
#gnb .gnb-nav > li.nav-focus > ul {
  display: block;
  left: 0;
}
#gnb .gnb-nav li.on ul {
  left: 0;
}

#gnb .gnb-nav > li ul {
  position: absolute;
  left: -999999px;
  top: 50px;
  width: 180px;
  background: #fff;
  border: solid 1px #eee;
  border-radius: 4px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  z-index: -1;
}
#gnb .gnb-nav li ul > li {
  display: block;
  width: 100%;
}
#gnb .gnb-nav li ul > li > a {
  display: block;
  float: none;
  color: #3a4754;
  font-size: 1.1em;
  line-height: 1.4;
  padding: 12px 15px;
}

#gnb .gnb-nav > li > ul.expanded {
  width: 360px;
}
#gnb .gnb-nav > li > ul.expanded li {
  margin-right: 180px;
}
#gnb .gnb-nav > li > ul > li > ul {
  display: none;
  background: #f1f1f1;
  position: absolute;
  border-left: solid 1px #ddd;
  left: 180px;
  top: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
#gnb .gnb-nav > li > ul > li > ul > li > a {
  color: #777;
  font-size: 16px;
}
#gnb .gnb-nav > li > ul > li > ul > li {
}
#gnb .gnb-nav > li > ul > li > ul > li.active {
  border: 0;
}
#gnb .gnb-nav > li > ul > li > ul > li.active > a,
#gnb .gnb-nav > li > ul > li > ul > li > a:hover {
  background: #fff;
  border: 0;
  color: #384958;
  text-decoration: underline;
}
.mobile-menu-toggle-box {
  display: none;
}
.mobile-menu-toggle-box > a {
  display: inline-block;
  width: 32px;
  height: 32px;
  font-size: 21px;
  color: #0e315b;
  text-align: center;
}
.mobile-menu-toggle-box > a:hover,
.mobile-menu-toggle-box > a:focus {
  text-decoration: none;
}
.gnb-right {
  display: none;
}
.mobile-search {
  display: none;
}
.mobile-search-btn {
  display: inline-block;
  width: 32px;
  height: 32px;
  font-size: 21px;
  background-color: #fff;
  border: 0;
  text-align: center;
  outline: none;
  color: #0e315b;
}
.mobile-wishlist-btn {
  display: inline-block;
  width: 32px;
  height: 32px;
  font-size: 21px;
  background-color: #fff;
  border: 0;
  outline: none;
  text-align: center;
  color: #0e315b;
}
.mobile-search-form-wrap {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 99999;
  -webkit-transition: -webkit-transform 0ms;
  -moz-transition: -moz-transform 0ms;
  -o-transition: -o-transform 0ms;
  transition: transform 0ms;
  transform: translate(100%, 0%);
  overflow-y: scroll;
}
.mobile-search-form-wrap.on {
  transform: translate(0, 0%);
}
.mobile-search-form-wrap .mobile-search-cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}
.mobile-search-form-wrap .mobile-search-cont .mobile-search-btn-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
}
.mobile-search-form-wrap
  .mobile-search-cont
  .mobile-search-btn-box
  .mobile-search-input-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
}
.mobile-search-form-wrap
  .mobile-search-cont
  .mobile-search-btn-box
  .mobile-search-input-box
  .mobile-search-close-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 100%;
  background: none;
  border: 0;
}
.mobile-search-form-wrap
  .mobile-search-cont
  .mobile-search-btn-box
  .mobile-search-input-box
  .search-btn {
  width: 55px;
  border: none;
  background: none;
  font-size: 20px;
  color: #0e315b;
  padding-left: 7px;
}
.mobile-search-form-wrap
  .mobile-search-cont
  .mobile-search-btn-box
  .mobile-search-input-box
  .mobile-search-input {
  display: block;
  border-radius: 4px;
  border: 1px solid #ddd;
  padding: 10px 8px 9px 46px;
  width: 100%;
  font-size: 15px;
}
.mobile-search-list {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0 18px;
}
.mobile-search-list .mobile-search-list-header {
  padding: 12px 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.mobile-search-list
  .mobile-search-list-header
  .mobile-search-list-header-title {
  font-size: 13px;
  color: #767676;
}
.mobile-search-list
  .mobile-search-list-header
  .mobile-serarch-list-header-delete {
  display: inline-block;
  background: none;
  border: none;
  font-size: 13px;
  color: #767676;
}
.mobile-search-list .mobile-search-list-item {
  position: relative;
  padding: 6px 40px 8px 0px;
}
.mobile-search-list .mobile-search-list-item .mobile-search-list-item-link {
  display: block;
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.mobile-search-list .mobile-search-list-item .mobile-serarch-list-item-delete {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  background: none;
  border: none;
  font-size: 13px;
  color: #979797;
}
.logo.travel_icoop-logo {
  width: 270px;
}
@media (max-width: 1280px) {
  .logo.travel_icoop-logo {
    width: 180px;
  }
  #gnb .gnb-nav li a {
    padding: 0 20px;
  }
}
@media (max-width: 1200px) {
  .search-form .form-inline {
    width: 180px;
  }
}
@media (max-width: 1024px) {
  .mobile-menu-toggle-box {
    display: inline-block;
  }
  #gnb {
    position: static;
    float: none;
    display: none;
  }
  .search-form {
    display: none;
  }
  .search-form .form-inline {
    width: 140px;
  }
  .search-form .search-input {
    height: 40px;
    line-height: 40px;
    padding: 0 38px 0 14px;
  }
  .search-form .search-btn {
    width: 36px;
    height: 40px;
  }
  .search-form .search-btn i {
    font-size: 15px;
  }

  .gnb-right {
    display: block;
  }
}
@media (max-width: 997px) {
  .logo.travel_icoop-logo {
    width: 150px;
  }
}
#header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.header-container {
  /* position: relative;
  max-width: 100%;
  width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  height: 100%; */
}
.logo {
  display: block;
}
.logo .mlogo {
  display: none;
}
.logo .wlogo {
  display: block;
}
.header-new {
  border: none;
}
.header-container {
  position: fixed;
  height: 60px;
  width: 100%;
  padding: 0;
  background-color: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0);
  transition: all 0.2s ease;
}
.header-box {
  /* max-width: 1280px; */
  max-width: 1640px;
  height: inherit;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-box .logo > div {
  width: 180px;
  height: 32px;
  background: url(../img/logo.svg) center center no-repeat;
  background-size: contain;
}
body:has(.main) .header-box .logo > div {
  background: url("../img/logo_w.svg") center center no-repeat;
  background-size: contain;
}
.header-new .navi > ul {
  display: flex;
}
.header-new .navi > ul > li {
  position: relative;
}
.header-new .navi a {
  display: block;
}
.header-new .navi > ul > li {
  transition: all 0.5s ease 0s;
}
.header-new a {
  padding: 10px 20px;
  color: #000;
}
body:has(.main) .header-new a {
  color: #ededed;
}
.header-box .logo {
  padding: 0;
}
.header-new .navi .depth2 {
  position: absolute;
  left: 0;
  top: 80px;
  color: #333;
  width: 100%;
  display: none;
}
.header-new .navi .depth2 a {
  padding: 15px;
  text-align: center;
}
.header-new .navi .depth2 a:hover,
.header-new .navi .depth2 a:focus {
  color: #7fbc03;
  font-weight: 700;
  text-decoration: none;
}
.header-new .navi {
  color: #fff;
}
.moblie-hide {
  display: flex;
}
.right-header {
  z-index: 1;
  display: flex;
  align-items: center;
}
.header-new.on .header-container {
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  transition: all 0.2s ease;
}
body:has(.main) .header-new.on a {
  color: #000;
}
.header-new.on .header-box .logo > div {
  background: url("../img/logo.svg") center center no-repeat;
  background-size: contain;
}
@media (max-width: 1024px) {
  .header-new .navi,
  .moblie-hide {
    display: none;
  }
  .mobile-menu-toggle-box > a {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.goog-te-banner-frame.skiptranslate {
  display: none !important;
}
body {
  top: 0px !important;
}
html {
  margin-top: 0px !important;
}
.goog-logo-link,
.goog-te-gadget span,
.goog-te-combo {
  display: none !important;
}
.notranslate {
  translate: none !important;
}

/* _header.php에 있던 css */
#nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
}
#nav.open {
  visibility: visible;
  opacity: 1;
}
.nav-inner {
  width: 540px;
}
.nav-list {
  width: 100%;
}
#nav.open .nav-list > li {
  transform: translateY(0);
}
.nav-list > li > a {
  font-weight: 700;
  text-decoration: none;
}
.nav-list li a i {
  margin-left: 5px;
}
.nav-list .depth2 > li > a:hover,
.nav-list > li > a:hover {
  color: #111;
  text-decoration: none;
  font-weight: 700;
  background-color: #f5f5f5;
}
.nav-list .mobile-sp {
  background-color: rgba(var(--bs-theme-rgb), 0.2);
  border-radius: 8px;
  color: #111;
}
.nav-list .mobile-sp:hover {
  background-color: rgba(var(--bs-theme-rgb), 0.4);
}
.nav-list .depth2 > li > a {
  color: #454545;
}
.nav-list li.active > a {
  color: var(--bs-theme) !important;
  font-weight: 700;
}
.nav-list .depth3 {
  margin-top: 8px;
}
.nav-list .depth3 > li + li {
  margin-top: 8px;
}
.nav-list .depth3 > li > a {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  color: #454545;
  font-size: 17px;
  align-items: center;
}
.nav-list .depth3 > li > a::before {
  content: "-";
  margin-right: 3px;
}
@media (max-width: 1024px) {
  .mobile-menu-toggle-box.right-oneMenu {
    border: none;
    background-color: transparent;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
  }
  body.nav-open {
    overflow-y: hidden;
  }
  .header-container::before {
    opacity: 0;
  }
  .header-container:has(#nav.open)::before {
    position: absolute !important;
    content: "";
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
  }
  .header-container:has(#nav.open.setTime)::before {
    opacity: 1;
  }
  .navi {
    transform: translateX(280px);
    transition: all 1s ease;
  }
  .navi.active {
    position: absolute !important;
    top: 0;
    right: 0;
    background-color: #fff;
    height: 100vh;
    width: 280px;
    z-index: 2;

    display: flex !important;
    justify-content: center;
    align-items: center;
  }
  .navi.active.setTime {
    transform: translateX(0);
    transition: all 1s ease;
  }
  .navi.active .gnb-nav {
    display: flex !important;
    flex-direction: column;
  }
  #header .navi > ul > li > a:hover,
  #header .navi > ul > li > a:active,
  #header .navi > ul > li > a:focus {
    color: var(--bs-theme);
    text-decoration: none;
    font-weight: 700;
  }
  #nav {
    left: auto;
    align-items: flex-start;
  }
  #nav.open {
    display: flex;

    animation-name: fadeIn_Right;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
  }
  #nav.open.setTime {
    width: 100%;
    display: flex;

    animation-name: fadeIn_Left;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
  }

  @keyframes fadeIn_Left {
    0% {
      transform: translateX(-100%);
    }

    100% {
      transform: translateX(0);
    }
  }
  @keyframes fadeIn_Right {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-100%);
    }
  }

  .nav-inner {
    background: #fff;
    display: flex;
    height: 100vh;
    padding: 60px 20px 0 20px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
  }
  .mobile-info {
    display: flex;
    flex-direction: column;
    /* padding: 20px 0; */
    /* border-bottom: dotted 1px #ddd; */
  }
  .mobile-info > div {
    display: flex;
  }
  .mobile-info > div:nth-last-child(1) {
    padding-bottom: 12px;
    border-bottom: dotted 1px #ddd;
  }
  .nav-list {
    display: block;
    padding-bottom: 50px;
    overflow-y: auto;
    margin-top: 20px;
  }
  .nav-list > li > a {
    display: block;
    padding: 20px 68px 20px 14px;
    font-size: 24px;
    color: #676767;
  }
  .nav-list > li > a[aria-expanded="true"] {
    color: #111;
  }
  .nav-list > li > a.is_hassub::after {
    content: "\f107";
    font-family: "Font Awesome 6 pro";
    position: absolute;
    right: 34px;
    top: 36px;
    transform: translateY(-50%);
    font-size: 23px;
    font-weight: 500;
    height: 24px;
    line-height: 24px;
    width: 14px;
    text-align: center;
  }
  .nav-list > li > a.is_hassub[aria-expanded="true"]::after {
    content: "\f106";
  }
  .nav-list .depth2 {
    margin-top: 0;
    display: none;
    padding-left: 16px;
  }
  .nav-list .depth2.in,
  .nav-list .depth2.collapsing {
    display: block;
  }
  .nav-list .depth2 > li + li {
    margin-top: 12px;
  }
  .nav-list .depth2 > li:last-child {
    padding-bottom: 10px;
  }
  .nav-list .depth2 > li > a {
    display: block;
    font-size: 18px;
    line-height: 1.8;
  }
  .nav-list .depth3 > li > a {
    display: block;
    font-size: 15px;
  }
  .nav-list .depth3 > li > a::before {
    margin-right: 0;
  }
  .mobile-menu-toggle-box.right-oneMenu {
    border: none;
    background-color: transparent;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
  }
  .nav-open-menu .fa-xmark {
    display: none;
  }
  .header-new a {
    padding: 10px 14px;
  }
  .header-box .logo {
    padding: 0;
  }
  .header-container:has(#nav.setTime) .fa-xmark {
    display: inline-block;
    z-index: 1001;
    position: absolute;
    top: 24px;
  }
}
@media (max-width: 480px) {
  .header-box .logo img {
    height: 32px;
  }
}

/* 우측 퀵메뉴 */
.cs-cont {
  position: fixed;
  right: -104px;
  bottom: 10%;
  transition: all 0.2s ease;
}
.cs-cont:has(.open) {
  right: 0;
  transition: all 0.2s ease;
}
.cs-cont .cs-box {
  width: 160px;
  background-color: #fff;
  border-radius: 8px 0 0 0;
  overflow: hidden;
  box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.2);
}
.cs-cont .cs-box a {
  display: flex;
  height: 56px;
  padding: 8px 8px;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #000 !important;
}
.cs-cont .cs-box a:hover {
  background-color: #f5f5f5;
}
.cs-cont .cs-box .cs-control:hover {
  background-color: rgba(var(--bs-theme-rgb), 0.7);
}
.cs-control {
  height: 56px;
  width: 100%;
  border: none;
  background-color: var(--bs-theme);
  color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 8px;
}
.cs-cont .cs-box a i,
.cs-control i {
  width: 40px;
  height: 40px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
}
.cs-control.rev i {
  transform: rotate(180deg);
  transition: all 0.2s ease;
}
.cs-cont .cs-box a i {
  color: var(--bs-theme);
}
.top_btn {
  width: 56px;
  border: none;
  background-color: #eee;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 4px 6px 4px;
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 4px 2px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 8px 8px;
}
@media (max-width: 1024px) {
  .cs-cont {
    display: none;
  }
}
