#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;
  }
  .header-layout {
    height: 100%;
  }
  #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;
  }
  .header-layout {
    justify-content: space-between;
  }
}
@media (max-width: 997px) {
  .header-layout {
    height: 100%;
  }
  .logo.travel_icoop-logo {
    width: 150px;
  }
}
.header-new {
  border: none;
}
.header-container {
  position: fixed;
  height: auto;
  width: 100%;
  padding: 0;
  background: #fff;
  /* box-shadow: 0 4px 4px rgba(0,0,0,.1); */
  border-bottom: solid 1px #ddd;
}
.header-box {
  max-width: 1280px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-box .logo {
  max-width: 180px;
  margin-right: 40px;
  z-index: 1;
}
@media (max-width: 768px) {
  .header-box .logo {
    max-width: 50px;
    margin-right: 8px;
    overflow: hidden;
  }
  .header-box .logo img {
    height: 30px;
    max-width: initial;
  }
}
.header-layout {
  height: 80px;
}

.header-new .naviWrap {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.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 .navi > ul > li > a {
  width: 120px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease 0s;
  font-size: 16px;
  padding: 0 16px;
}
.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;
}
.header-new.naviActive .header-container {
  background-color: #fff;
}
.header-new.naviActive .navi > ul > li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 300px;
  background-color: #dcdcdc;
}
.header-new.naviActive .navi > ul > li > a {
  width: 160px;
  color: #333;
}
.header-new .navi > ul > li:nth-child(2) > a {
  /* width: 200px; */
}
.header-new.naviActive .navi > ul > li:nth-child(2) > a {
  /* width: 240px; */
}
.header-new.naviActive .navi > ul > li > a:hover {
  text-decoration: none;
}
.header-new.naviActive .navi > ul > li:hover {
  background: #7fbc03;
}
.header-new.naviActive .navi > ul > li:hover > a {
  color: #fff;
  font-weight: 700;
}
.header-new.naviActive .navi .depth2 > li:hover {
  color: #7fbc03;
  font-weight: 700;
}
.header-new.naviActive .navi .depth2 {
  display: block;
}

.header-new.naviActive .naviWrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 300px;
  background-color: #fff;
  z-index: 0;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
}

.header-new.naviActive .naviWrap::after {
  content: "";
  position: absolute;
  left: 0;
  top: 80px;
  width: 100%;
  height: 1px;
  background-color: #dcdcdc;
}
.right-header {
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
}
.web-solution {
  min-width: 100px;
  min-height: 36px;
  border-radius: 100px;
  border: solid 1px #ddd;
  font-size: 14px;
  color: #000;
  overflow: hidden;
  position: relative;
  text-decoration: none !important;
}
.web-solution p {
  min-width: 100px;
  min-height: 36px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.1s ease;
}

.web-solution p:before,
.web-solution p:after {
  content: "";
  position: absolute;
  width: 1px;
  border-radius: 50%;
  background: #425b33;
  top: 17px;
  transition: height 0.2s 0.1s ease, border-radius 0.2s 0.1s ease,
    top 0.2s 0.1s ease, width 0.2s ease;
}

.web-solution p:before {
  height: 0;
  left: -2px;
}

.web-solution p:after {
  height: 0;
  right: -2px;
}

.web-solution p:hover:before,
.web-solution p:hover:after {
  top: 0;
  width: 60%;
  height: 100%;
  z-index: -1;
  border-radius: 5px;
  transition: height 0.2s ease, border-radius 0.2s ease, top 0.2s ease,
    width 0.2s 0.1s ease;
}

.web-solution p {
  z-index: 1;
  padding: 10px 20px;
  position: relative;
  transition: all 0.2s ease;
}

.web-solution p:hover {
  transition: all 0.2s 0.1s ease;
  text-decoration: none;
  color: #f1f8dd;
}

@media (max-width: 1200px) {
  .header-new.naviActive .navi > ul > li > a {
    width: 140px;
  }
}
@media (max-width: 1024px) {
  .header-new .naviWrap {
    display: none;
  }
  .header-layout {
    height: 60px;
  }
  .mobile-menu-toggle-box > a {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.selectBox2 {
  position: relative;
  width: 80px;
  height: 36px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}

.selectBox2 .label {
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 8px 16px;
  border: 0 none;
  padding-left: 15px;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}
.selectBox2 .label::after {
  font-family: "Font Awesome 6 pro";
  font-weight: 900;
  content: "\f078";
  font-size: 12px;
}
.selectBox2 .optionList {
  position: absolute;
  top: 36px;
  left: 0;
  width: 100%;
  background: #f9f9f9;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  color: #000;
  list-style-type: none;
  padding: 0;
  border-radius: 6px;
  overflow: hidden;
  max-height: 0;
  transition: 0.1s ease-in;
}
.selectBox2.active .optionList {
  max-height: 500px;
}

.selectBox2 .optionItem {
  border-bottom: 1px dashed #425b33;
  padding: 10px 16px;
  transition: 0.1s;
}

.selectBox2 .optionItem:hover {
  background-color: #425b33;
  color: #fff;
}

.selectBox2 .optionItem:last-child {
  border-bottom: 0 none;
}

.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: no !important;
}
