header {
  z-index: 2;
  position: relative
}

body:has(.top_swipe_wrap) header{
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.header-group01 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 3rem;
}

.header-group02 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem;
  transition: all 0.3s ease;
}

.header-group02 a{
  font-weight: 500;
}

.header-group02.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #202020;
  z-index: 999;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

body.fixed-nav-padding {
  padding-top: 52px; /* header-group02 높이만큼 */
}

.nav-right {
  display: flex;
  gap: 1rem;
  font-size: .875rem;
  align-items: center;
}

.btn.language, .btn.mypage{
  padding: 0;
}

.btn.mypage{
  font-size: .875rem;
}

.btn.language ul{
  display: none;
  position: absolute;
  background: #fff;
  font-size: .875rem;
  padding: 4px;
  border: 1px solid #ddd;
  text-align: left;
  right: 50px;
}

.btn.mypage ul{
  display: none;
  position: absolute;
  background: #fff;
  font-size: .875rem;
  padding: 4px;
  border: 1px solid #ddd;
  text-align: left;
}

.btn.language ul li, .btn.mypage ul li{
  padding: 6px 10px;
}

.btn.language:hover ul li:hover,
.btn.mypage:hover ul li:hover{
  background: #eee;
}

.btn.language:hover ul,
.btn.mypage:hover ul{
  display: block;
}


.nav-inner.pc {
  display: flex;
  position: relative;
  flex-direction: column;
  margin: 0 auto;
}

.nav-inner.mob {
  display: none;
}


.btn.mobile_menu{
  background-image: url(../images/menu.svg);
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
}

.btn.mobile_menu.active{
  background-image: url(../images/x.svg);
}


@media screen and (max-width: 1280px){
  .nav-inner.pc{
    font-size: .875rem;
  }
}

/* mobile */
@media screen and (max-width: 1023px){
  .nav-inner.pc {
    display: none;
  }

  .nav-inner.mob {
    display: block;
  }

  body:has(.nav-bar.active) {
    overflow-y: hidden;
}

  .mobile_menu {
    z-index: 1001;
    background: none;
    border: none;
    font-size: 24px;
  }

  .mob-nav {
    position: relative;
    display: flex;
    align-content: center;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    padding-inline: 1rem;
    z-index: 1001;
}

  .nav-inner.mob:has(.nav-bar.active) .mob-nav img {
    display: none
  }

  .mob-nav .btn.mobile_menu.active{
    filter: brightness(0) invert(1);
  }

  .nav-bar {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 1000;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    /* 슬라이드 기본 상태 */
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .nav-bar.active {
    display: flex;
    flex-direction: column;
    transform: translateX(0);
  }

  .btn_hamburger_close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    background: none;
    border: none;
  }

  .nav-top{
    background: var(--color-secondary);
    padding: 4rem 1rem 1rem;
    color: #fff;
  }

  .nav-user p{
    font-weight: 600;
    font-size: 1.34rem;
  }

  .nav-user ul{
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 6px;
  }

  .nav-user ul li:nth-child(2){
    border-left: 1px solid #999;
    padding-left: 10px;
  }

  .nav-user.nav-user-authenticated ul li:nth-child(2){
    flex: 1;
  }

  .nav-user ul li.nav-logout a{
    border: 1px solid #777;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    margin-right: 6px;
  }

  .nav-menu {
    list-style: none;
    padding: 2rem 1rem;
    flex: 1;
  }

  .nav-item {
    margin-bottom: 20px;
  }

  .dd-menu {
    text-decoration: none;
    color: #333;
  }

  .nav-bottom{
    padding: 1rem;
  }

  .nav-lang {
    display: flex;
    gap: 1rem;
}
}


/* 메인화면 */
/* 메인공지배너 */
.notice-banner {
  width: 100%;
  background-color: #1e1e1e;
  padding: 10px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  transition: height 0.3s ease, opacity 0.3s ease;
}

.notice-left {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.875rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-notice-link {
  background: #333;
  color: #fff;
  border: none;
  width: 24px;
  height: 24px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 50%;
  flex-shrink: 0;
}

.notice-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-notice-close {
  background: none;
  border: none;
  cursor: pointer;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-notice-close{
    background: url(../images/x.svg) no-repeat;
    width: 20px;
    height: 20px;
    background-position: center;
    background-size: cover;
    filter: invert(1);
}




.top_swipe_wrap{
  height: 90vh;
}

/* 메인이미지 스와이프 */
.top_swipe_wrap .swiper {
  width: 100%;
  height: 100%;
}

.top_swipe_wrap .swiper-slide {
  display: flex;
  align-items: center;
}

.top_swipe_wrap .swiper-slide:before{
  content: '';
  background: linear-gradient(176deg,rgba(69, 69, 69, 0) 0%, rgba(31, 31, 31, 0.08) 50%, rgba(46, 46, 46, 1) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
}

.top_swipe_wrap .swiper {
  margin-left: auto;
  margin-right: auto;
}

.swiper-button-next, .swiper-button-prev{
  color:#fff;
}

.top_swipe_wrap .swiper-slide:nth-child(1){
  background: url(../images/bg1.jpg)no-repeat;
  background-size: cover;
}

.top_swipe_wrap .swiper-slide:nth-child(2){
  background: url(../images/bg2.jpg)no-repeat;
  background-size: cover;
}

.top_swipe_wrap .swiper-slide:nth-child(3){
  background: url(../images/bg3.jpg)no-repeat;
  background-size: cover;
}

.top_swipe_wrap .visual-txt{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 3rem;
  z-index: 1;
}

.top_swipe_wrap .visual-txt h1{
  opacity: 0;
  font-size: 2.825rem;
  color:#fff;
}

.top_swipe_wrap .visual-txt p{
  opacity: 0;
  font-size: 1.2rem;
  line-height: 3;
  font-weight: 500;
  color:#fff;
}

.top_swipe_wrap .visual-txt button{
  opacity: 0;
  background-color: transparent;
  border: none;
  color:#fff;
  cursor: pointer;
}

.top_swipe_wrap .visual-txt button:after{
  content: '';
  background: url(../images/ArrowRight.svg) no-repeat;
  background-size: cover;
  background-position: right;
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-left: 4px;
  vertical-align: middle;
  filter: invert(1);
  -webkit-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);;
}

.top_swipe_wrap .visual-txt button:hover:after{
  transform: translateX(4px);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 32px;
}

.top_swipe_wrap .swiper-slide-active .visual-txt h1{
  animation: aniUp 1s .2s both;
}

.top_swipe_wrap .swiper-slide-active .visual-txt p{
  animation: aniUp 1s .5s both;  
}

.top_swipe_wrap .swiper-slide-active .visual-txt button{
  animation: aniUp 1s .8s both;  
}




/* 메인예약박스 */
.reservation_wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  position: absolute;
  top: 70vh;
  z-index: 1;
}

.reservation_box {
  position: relative;
  display: flex;
  background: #fff;
  max-width: 1280px;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.2);
  border-radius: .1rem;
}

.reservation_box [class*="reservation_step"]{
  flex: 1;
  position: relative;
}

.reservation_box [class*="reservation_step"] button.open-popup{
  text-align: left;
  height: 100%;
  border: none;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-right: 1px solid #ddd;
  padding: 1.825rem;
  width: 100%;
}

.reservation_box [class*="reservation_step"]:last-of-type button{
  border: none;
}

.reservation_box [class*="reservation_step"] button:has(div:nth-of-type(2)){
  flex-direction: row;
  padding:0;
}

.reservation_box [class*="reservation_step"] button:has(div:nth-of-type(2)) div {
  flex: 1;
  border-right: 1px solid #ddd;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.825rem;
}

.reservation_box [class*="reservation_step"] button:has(div:nth-of-type(2)) div:last-child{
  border:none;
}

.reservation_box .reservation_btn{
  background-color: #E6002D;
  margin-right: 20px;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.reservation_box .reservation_btn .label{
  display: none;
}

.reservation_box .reservation_label {
    font-size: 0.9rem;
    color: #777;
}

.reservation_box .reservation_txt{
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 2;
  font-family: initial;
  color:#000
}

.reservation_box .popup-layer.top {
    bottom: calc(100% + 130px);
}

.reservation_box .popup-layer .popup-content {
  display: flex;
  flex-direction: column;
  border: 2px solid #000;
  box-shadow: none;
}

.reservation_box .popup-wrapper .popup-header{
  border: none;
}

.popup-wrapper.departure .departure_btn_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.popup-wrapper.departure .popup-body button{
  border: 1px solid #ddd;
  background: none;
  font-size: 1rem;
  padding: 1rem;
  cursor: pointer;
}

.popup-wrapper.departure .popup-body p{
  color:#888;
  font-size: 0.89rem;
}

.popup-wrapper.departure .popup-body p + .departure_btn_wrap{
  padding-block: 10px;
}

.popup-wrapper.departure .popup-body .departure_btn_wrap + p{
  margin-top: 16px;
}

.radio_box.type2:has(input[type=radio]:checked){
  border-color: var(--color-primary);
}





body:has(.reservation_box) .flatpickr-calendar.arrowTop:before, 
body:has(.reservation_box) .flatpickr-calendar.arrowTop:after{
  content: none;
}

.flatpickr-calendar{
  box-shadow: none;
  gap: 12px;
  display: flex;
  flex-direction: column;
}

.flatpickr-current-month {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.flatpickr-current-month .numInputWrapper {
  order: 1;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    order: 2;
    width: auto;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1;
    color: #222;
}

.flatpickr-current-month input, .flatpickr-current-month input.cur-year {
    font-size: 1.125rem !important;
    font-weight: 700;
    line-height: 1;
    color: #222 !important;
}




.popup-calendar {
  position: absolute;
  top: 134px;
  left: 193px;
  transform: translateX(-50%) translateY(40px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  z-index: 1000;
}

.popup-calendar.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.popup-calendar .popup-inner {
  background: #fff;
  border: 2px solid #000;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.popup-calendar .popup-inner button.popup-close {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.calendar-footer {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;
  margin-top: 1rem;
}

.calendar-footer button:last-child{
  flex:1;
}




.reservation_box button.popup-close{
    display: none;
  }

.popup-wrapper.passenger .popup-header p{
    display: flex;
    justify-content: flex-start;
    gap: 0.5rem;
    align-items: baseline;
}

.popup-wrapper.passenger .popup-header p small {
    color: #666;
    font-weight: normal;
}

.popup-wrapper.passenger .popup-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popup-wrapper.passenger .passenger_wrap {
    display: flex;
    flex-direction: column;
}

.popup-wrapper.passenger .passenger_num {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 0.625rem;
    padding-right: 76px;
}

.popup-wrapper.passenger .passenger_num:not(:last-child){
  border-bottom: 1px solid #ddd;
}

.popup-wrapper.passenger .passenger_num p {
    font-weight: 500;
}

.popup-wrapper.passenger .passenger_btn_wrap{
  display: flex;
  align-items: center;
  gap: 1rem;
}

.popup-wrapper.passenger .passenger_btn_wrap p{
  font-size: 1.2rem;
}

.popup-wrapper.passenger .passenger_btn_wrap button{
  border: 1px solid #ddd;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-wrapper.passenger .passenger_btn_wrap button:hover{
  border-color: #999;
}

.popup-wrapper.passenger .passenger_btn_wrap button:disabled{
    background-color: #f8f8f8;
    border-color: #eee;
    cursor: not-allowed;
}

.popup-wrapper.passenger button.btn_room_del{
  position: absolute;
    right: 20px;
    border: none;
    width: auto;
    height: auto;
    color: #666;
    text-decoration: underline;
    cursor: pointer;
    background: transparent;
}

.popup-wrapper.passenger button.btn_room_add{
    color: #a72b2a;
    text-decoration: underline;
    background: transparent;
    padding-block: 1rem 0.4rem;
    border: none;
}





@media screen and (max-width: 768px){
  .top_swipe_wrap {
    height: 100vh;
  }

  .top_swipe_wrap .visual-txt{
    padding-inline: 2rem;
    position: relative;
    bottom: 10rem;
  }

  .reservation_wrap{
    top:50vh;
  }

  .reservation_box{
    flex-direction: column;
    margin-inline: 1rem;
  }

  .reservation_box [class*="reservation_step"]{
    width: 100%;
  }

  .reservation_box .reservation_txt{
    font-size: 1.25rem;
  }

  .reservation_box .reservation_btn{
    width: 100%;
    height: auto;
    margin: 0;
  }

  .reservation_box .reservation_btn .label{
    display: inline-block;
    color:#fff;
  }

   .reservation_box .reservation_btn svg{
    width: 24px;
   }

  .reservation_box [class*="reservation_step"] button.open-popup{
    border-right: none;
    border-bottom: 1px solid #ddd;
    padding: 1rem 1.2rem;
  }

  .reservation_box [class*="reservation_step"] button:has(div:nth-of-type(2)) div {
    padding: 1rem 1.2rem;
}

  .top_swipe_wrap .swiper-button-next,
  .top_swipe_wrap .swiper-button-prev{
    display: none;
  }

  .top_swipe_wrap .visual-txt h1 {
    margin-bottom: 1rem;
  }

  .top_swipe_wrap .visual-txt p{
    display: none;
  }

  body:has(.reservation_box .popup-layer.active) header,
    body:has(.popup-calendar.show) header{
    z-index: 1;
  }

  body:has(.popup-layer.active),
  body:has(.popup-calendar.show){
    overflow: hidden;
  }

  .reservation_box button.popup-close{
    display: flex;
  }
  
  .reservation_box .popup-layer{
    position: fixed;
    top: 0;
  }

  .reservation_box .popup-layer .popup-content {
    width: 100vw;
    height: 100vh;
    border: none;
    padding-inline: 12px;
  }

  .popup-calendar.show {
    position: fixed;
    top: 0;
    left: 0;
    transform: none;
  }

  .popup-calendar{
    transform: none;
    left: 0;
    width: 100%;
  }

  .popup-calendar .popup-inner {
    height: 100vh;
    border: none;
    padding-inline: 30px;
    box-sizing: border-box;
  }

  .popup-calendar .popup-inner button.popup-close {
    display: flex;
    justify-content: flex-end;
    width: 100%;
  }

  .calendar-footer{
    margin-top: 3rem;
  }

  .reservation_box .popup-wrapper.passenger .passenger_wrap [class*=btn_block].md{
    margin-top: 2rem;
  }
}

@media screen and (max-width: 480px){
  .top_swipe_wrap .visual-txt h1{
    font-size: 1.8rem;
  }
  
  .reservation_box [class*="reservation_step"] button.open-popup {
    padding: 1rem 1.4rem;
  }

  .reservation_box [class*="reservation_step"] button:has(div:nth-of-type(2)) div{
    padding: 1rem 1.4rem;
  }
}

@media screen and (max-width: 1280px){
  .nav-inner.pc{
    font-size: .875rem;
  }
}


.container_inner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.container_inner.large{
  max-width: 48rem;
}

.container_inner.middle{
  max-width: 40rem;
}

.container_inner.small{
  max-width: 32rem;
}

/* 섹션타이틀 */
.main_title_wrap{
  margin-bottom: 60px;
  line-height: 1.4;
}

.main_title_wrap h2{
  font-size: 1.953rem;
}

.main_title_wrap h3{
  font-size: 1.25rem;
  color: #666;
  font-weight: 500;
}



/* 스페셜딜 */
section.specialdeal {
    position: relative;
    width: 100%;
    padding: 80px 16px 0;
    overflow: hidden;
}

.deal-card button{
  border: none;
  background-color: transparent;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
}

.deal_title{
  font-weight: 600;
  margin-top: 1rem;
}

.deal_date{
  color:#666;
  font-size: 0.875rem;
}

.img-wrap {
    overflow: hidden;
}

img.thumb {
    width: 100%;
    height: auto;
    transition-duration: 0.3s;
}

.swiper-slide:hover img.thumb{
  transform: scale(1.05, 1.05);
  transition-duration: 0.5s;
}


/* 스와이프2 */
.swipe_wrap .swiper{
  overflow: visible;
  z-index: auto;
  z-index: 0;
}

.swipe_wrap .swiper-wrapper {
    z-index: auto;
}

.swipe_wrap .swiper-btn-wrap{
  display: flex;
  position: absolute;
  top: -90px;
  width: 100%;
  justify-content: flex-end;
  gap: 1.4rem;
}

.swiper-prev, .swiper-next, .swiper-more {
  width: 36px;
  height: 36px;
  cursor: pointer;
}

.swiper-prev:after{
  content: '';
  background: url(../images/ArrowLeft.svg)no-repeat;
  background-size: cover;
  height: 36px;
  display: block;
}

.swiper-next:after{
  content: '';
  background: url(../images/ArrowRight.svg)no-repeat;
  background-size: cover;
  height: 36px;
  display: block;
}

.swiper-more:after{
  content: '';
  background: url(../images/Plus.svg);
  background-size: cover;
  height: 36px;
  display: block;
}

.swiper-prev.swiper-button-disabled, .swiper-next.swiper-button-disabled{
    filter: opacity(0.3);
}

@media screen and (max-width: 480px){
  section.specialdeal .swiper-prev, section.specialdeal .swiper-next,
  section.destination .swiper-prev, section.destination .swiper-next
  {
    display: none;
  }

  .swipe_wrap .swiper-btn-wrap{
    top:-120px
  }
  .swiper-more{
    width: auto;
    height: auto;
  }

  .swiper-more:after{
    width: 24px;
    height: 24px;
  }

}



/* 기항지 */
section.destination {
  position: relative;
  width: 100%;
  padding: 80px 16px 0;
  overflow: hidden;
}

section.destination .swiper-slide{
  width: 80%;
}

.des-card {
    cursor: pointer;
}

.des_txt {
  position: absolute;
  top: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  height: 100%;
}

.des_txt .des_title{
  font-size: 1.25rem;
  font-weight: bold;
}

.des_txt ul{
  display: none;
}

.des-card img{
  transition: filter 0.5s ease;
}

.des-card:hover img {
    filter: brightness(0.5);
}

.des-card:hover .des_txt ul{
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.des-card:hover .des_txt ul li {
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
}

.des-card:hover .des_txt ul li:hover{
  font-weight: bold;
  border: 1px solid rgba(255, 255, 255, 1);
}


/* 이스턴매력 */
section.eastern {
  background: #F1F1F1;
  overflow: visible;
  position: relative;
  width: 100%;
  padding: 150px 20px;
  margin-top: 200px;
}

section.eastern .main_title_row{
  text-align: center;
}

/* 스와이프3 */
.swipe_hidden_wrap .swiper-slide{
  display: flex;
  flex-direction: column;
  width: 80%;
}

.swipe_hidden_wrap .swiper-btn-wrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 35%;
  position: absolute;
  width: 100%;
  z-index: 9999;
}

.east_txt{
  opacity: 0;
  text-align: center;
  padding-top: 20px;
}

.east_title{
  font-size: 1.563rem;
  font-weight: bold;
  line-height: 3;
}

.swiper-slide.swiper-slide-visible.swiper-slide-active.swiper-slide-fully-visible .east_txt{
  opacity: 1;
}

@media screen and (max-width: 480px){
  .swipe_hidden_wrap .swiper-btn-wrap{
    display: none;
  }
  .swipe_hidden_wrap .swiper-slide{
    width: 90%;
  }
}



/* 푸터 */

.site-footer{
  position: relative;
  font-size: .825rem;
  padding-block: 1.215rem 3rem;
  padding-inline: 1rem;
  background-color: #f9f9f9;
}

.footer-top {
  margin-block: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  color: #666;
}

.footer-middle {
  padding-block: 20px;
  border-top: 1px solid #ddd;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem;
  justify-content: space-between;

}

.footer-middle img{
  filter: grayscale(1);
}

.footer-middle .company-info{
  padding-top: 1rem;
  color:#666;
}

.footer-middle .company-info ul{
  display: flex;
  flex-wrap: wrap;
  line-height: 1.5;
}

.footer-middle .company-info ul li:after{
  content: '';
  border-right: 1px solid #ddd;
  width: 1px;
  height: 10px;
  vertical-align: middle;
  display: inline-block;
  padding: 5px;
  margin-right: 7px;
}

.footer-middle .company-info ul li:last-child:after{
  content: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 20px;
  color:#666;
}

.social-icons {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
}

.social-icons img {
  width: 24px;
  height: 24px;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.social-icons img:hover {
  opacity: 1;
}

.btn-top {
  position: absolute;
  background-color: #202020;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  right: 0%;
  bottom: 5%;
}

.icon.icon-nav-top{
  background: url(../images/footer/top.svg) no-repeat;
  width: 24px;
  height: 24px;
  background-position: center;
  background-size: cover;
}

.btn-top img {
  width: 28px;
  height: 28px;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.btn-top:hover img {
  opacity: 1;
  transform: translateY(-3px); /* 살짝 위로 이동하는 효과 */
}




.content_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.title_wrap{
  width: 100%;
  display: flex;
  padding-top: 4rem;
  background: #fff;
}

.content_wrap div:has(.pagetitle+.stepper) {
  align-items: center;
  justify-content: space-between;
  padding-top: 4rem;
  background: #fff;
}

.stepper {
    display: flex;
    gap: 6px;
}

.stepper li:before{
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    background: #fff;
    margin-right: 6px;
    border: 2px solid #ddd;
}

.stepper li{
  display: flex;
  align-items: center;
}

.stepper .step_now:before{
  width: 18px;
  height: 18px;
  background: #fff;
  border: 6px solid #E6002D;
}

.stepper .step_past:before{
  background: #fff url("/images/check.svg")no-repeat;
  border: 2px solid var(--color-primary);
  background-position: center;  
}

.stepper li:after{
    content: '';
    width: 24px;
    display: inline-block;
    vertical-align: middle;
    border: 1px dotted #ddd;
}

.stepper li:last-child:after{
    content:'';
    display: none;
}

.stepper li span{
  color:#999;
  font-size: 0.875rem;
}

.stepper li.step_now span{
    display: inline-block;
    font-weight: bold;
    margin-right: 4px;
    color:#222;
}

.stepper li.step_past span{
  color:#444;
}




/* 예약 booking */
/* 예약공통 */
.page_wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.booking_wrap{
  width: 100%;
  margin-bottom: 6rem;
}

.booking_wrap:has(.left_wrap + .right_wrap ){
  display: flex;
  width: 100%;
  gap: 1.5rem;
  padding-top: 3rem;
}

[class*=booking_step] .left_wrap{
  flex:1;
}

[class*=booking_step] .right_wrap {
  flex-basis: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

[class*=booking_step] .left_wrap .input_wrap{
  padding: 0;
}

[class*=booking_step] .card_box > ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

[class*=booking_step] .card_box .item{
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border: .0625rem solid #eee;
  border-radius: .1rem;
  background: #fff;
  padding: 1.25rem;
  cursor: pointer;
}

[class*=booking_step] .card_box .item:hover{
  border-color: #999;
}

[class*=booking_step] .card_box .item.click-on.on{
  border-color: #000;
  outline: 1px solid;
}

[class*=booking_step] .card_box .item:has(.click-on.on){
  border-color: #000;
  outline: 1px solid;
}

[class*=booking_step] .card_box .item:has(.click-on.on){
  border-color: #000;
  outline: 1px solid;
}

[class*=booking_step] .card_box .item .item_img{
  width: 320px;
  height: 200px;
  overflow: hidden;
}

[class*=booking_step] .card_box .item .item_img img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}

[class*=booking_step] .card_box .item .txt_wrap {
  flex: 1;
  line-height: 1.5;
  width: 100%;
}

[class*=booking_step] .card_box .item .txt_wrap > h4{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

[class*=booking_step] .card_box .item .txt_wrap button .item_title{
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 600;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-align: left;
}

[class*=booking_step] .card_box .item .txt_wrap button .item_title > i{
  transform: rotate(270deg);
  margin-left: 4px;
}

[class*=booking_step] .card_box .item .txt_wrap button .item_title:hover{
  text-decoration: underline;
}

[class*=booking_step] .card_box .item .txt_wrap > span{
  font-size: 0.875rem;
  color:#999;
  margin-bottom: 1rem;
}

[class*=booking_step] .card_box .item .txt_wrap ul {
  background: #f8f8f8;
  padding: .825rem;
  font-size: 0.9375rem;
  line-height: 1.6;
}

[class*=booking_step] .card_box .item .txt_wrap ul li:has(span:nth-of-type(2)) span:first-of-type{
  color:#777;
  margin-right: 8px;
}

[class*=booking_step] .card_box .item .txt_wrap .txt_bottom{
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

[class*=booking_step] .card_box .item .txt_wrap .txt_bottom:has(> button):not(:has(> p)) {
    justify-content: flex-end;
}

[class*=booking_step] .card_box .item .txt_wrap .txt_bottom p{
  font-size: 1.425rem;
  font-weight: 600;
}

[class*=booking_step] .card_box .item .txt_wrap .txt_bottom p small{
  font-size: 0.9375rem;
  font-weight: normal;
  color: #666;
  margin-right: .6rem;
}


/* step1 */
.booking_step1 .left_wrap .input_wrap .input_box_combo{
  justify-content: flex-end;
  margin-bottom: 1.3rem;
}

.booking_step1 .left_wrap .form_inner{
  width: auto;
}

.booking_step1 .right_wrap ul{
  border: .0625rem solid #eee;
  padding: 12px 20px;
  border-radius: .1rem;
}

.booking_step1 .right_wrap ul li{
  border-bottom: .0625rem solid #eee;
  position: relative;
}

.booking_step1 .right_wrap ul li:last-child{
  border: none;
}

.booking_step1 .right_wrap ul li:after{
  content:'';
  background: url(../images/arrowdown.svg) no-repeat;
  width: 18px;
  height: 18px;
  transform: rotate(270deg);
  background-size: cover;
  position: absolute;
  right: 16px;
  top: 23px;
}

.booking_step1 .right_wrap ul li > button{
  display: flex;
  border: none;
  background-color: #fff;
  width: 100%;
  padding-block: 20px;
  font-family: inherit;
}

.booking_step1 .right_wrap ul li:nth-child(1) .reservation_label:before{
  content: '';
  background: url(../images/booking/calendar.svg)no-repeat;
  width: 16px;
  height: 16px;
  display: inline-block;
  background-size: cover;
}

.booking_step1 .right_wrap ul li:nth-child(2) .reservation_label:before{
  content: '';
  background: url(../images/booking/map.svg)no-repeat;
  width: 16px;
  height: 16px;
  display: inline-block;
  background-size: cover;
}

.booking_step1 .right_wrap ul li:nth-child(3) .reservation_label:before{
  content: '';
  background: url(../images/booking/room.svg)no-repeat;
  width: 16px;
  height: 16px;
  display: inline-block;
  background-size: cover;
}

.booking_step1 .right_wrap ul li .reservation_label{
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 90px;
  color: #666;
  font-size: 0.9375rem;
}

.booking_step1 .popup-calendar{
  top: -13px;
  left: -185px;
}

.booking_step1 .popup-layer.left{
  top: calc(100% - 66px);
  right: calc(100% + 20px);
}

.booking_step1 .popup-layer .popup-content{
  border: 2px solid;
  box-shadow: none;
}


/* step2 */
.booking_step2 .card_box .item .txt_wrap ul{
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.booking_step2 .popup-header{
  position: absolute;
  width: 100%;
  z-index: 2;
  border: none;
  display: flex;
  justify-content: flex-end;
}

.booking_step2 .popup-header .popup-title{
  display: none;
}

.booking_step2 .popup-body{
  padding: 0;
}

.booking_step2 .popup-body .roomdetail{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  font-weight: normal;
}

.booking_step2 .popup-body .roomdetail h5{
  font-size: 1.125rem;
  margin-bottom: .5rem;
}

.booking_step2 .swiper{
  height: 30rem;
}

.booking_step2 .swiper img{
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.booking_step2 .swiper-button-next, 
.booking_step2 .swiper-button-prev{
  background: rgba(0.0.0,.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.booking_step2 .swiper-button-next:after, 
.booking_step2 .swiper-button-prev:after{
  font-size: 1rem;
}

[class*=booking_step] .right_wrap .journey_wrap{
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1rem;
  border: 1px solid #ddd;
  padding: 1rem;
}

[class*=booking_step] .right_wrap .journey_wrap p.item_title{
  display: flex;
  align-items: center;
  font-weight: 600;
}

[class*=booking_step] .right_wrap .journey_wrap p.item_title > i{
transform: rotate(270deg);
}

[class*=booking_step] .right_wrap .journey_wrap .popup-header{
  position: relative;
  justify-content: space-between;
}

[class*=booking_step] .right_wrap .journey_wrap .popup-header .popup-title{
  display: block;
}

[class*=booking_step] .right_wrap .journey_wrap ul{
  display: flex;
  flex-wrap: wrap;
  column-gap: 1rem;
}

[class*=booking_step] .right_wrap .journey_wrap ul li{
  flex: 1 1 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 0.9375rem;
  line-height: 1.6;
}

[class*=booking_step] .right_wrap .journey_wrap ul li span:nth-child(1){
  width: 48px;
}

[class*=booking_step] .right_wrap .journey_wrap .btn_txt_down{
    display: inline-flex;
    justify-content: flex-end;
}

[class*=booking_step] .right_wrap .fare_wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1rem;
  border: 1px solid #ddd;
  padding: 1rem;
}

[class*=booking_step] .right_wrap .journey_wrap + .fare_wrap{
  top: -1px;
}

[class*=booking_step] .right_wrap .fare_wrap .right_title{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border: none;
  padding-block: 0.6rem;
}

[class*=booking_step] .right_wrap .fare_wrap .right_title>p{
  font-size: 1.25rem;
  font-weight: 500;
  color: #222;
}

[class*=booking_step] .right_wrap .fare_wrap .right_title>.user{
  font-size: 0.875rem;
  color:#444;
  flex:1;
}

[class*=booking_step] .right_wrap .fare_wrap .right_title>.user:before{
  content: '';
  background: url(../images/booking/user.svg) no-repeat;
  width: 14px;
  height: 14px;
  background-size: cover;
  display: inline-block;
  margin-inline: 9px 1px;
  vertical-align: middle;
}

[class*=booking_step] .right_wrap .fare_wrap .fare_list{
  display: flex;
  justify-content: space-between;
  margin-right: 1.2rem;
}

.right_wrap .fare_wrap .fare_list .title{
  font-size: 0.9375rem;
}

.right_wrap .fare_wrap details.accordion + details.accordion{
    margin-bottom: 0rem;
}

.right_wrap .fare_wrap details.accordion .content .fare_list{
  margin-right: 0;
}

.right_wrap .fare_wrap details.accordion .content .fare_list p:first-child:before{
  content: '· ';
}

.right_wrap .fare_wrap details.accordion .content .fare_list p{
  font-size: 0.875rem;
  color:#666;
}

.right_wrap .fare_wrap .total.fare_list{
  margin: 0;
}

.right_wrap .fare_wrap .total.fare_list .title{
  font-weight: 500;
}

.right_wrap .fare_wrap .total.fare_list .price{
  color:var(--color-primary);
  font-size: 1.25rem;
  font-weight: 600;
}

.right_wrap .fare_wrap .total.fare_list:has(p:only-child){
  justify-content: end;
}


/* step3 */
.booking_step3 h5{
  border-bottom: 1px solid #000;
  padding-block: 1rem;
}

.booking_step3 .step3_middle h5{
  border: none;
}

.booking_step3 .input_wrap label.radio_box{
  height: 46px;
  line-height: 46px;
  min-width: auto;
}

.booking_step3 .tab_wrap.pill_type{
  padding: 1rem;
}

.booking_step3 .tab_wrap.pill_type .tab_tit button{
  border: none;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
}

span.label_finish {
  background: #dde6ff;
  border-radius: 40px;
  padding: 5px 12px;
  font-size: 0.875rem;
  position: absolute;
  margin-left: 7px;
  margin-top: -3px;
  color: #004999;
}

.booking_step3 .agreement_wrap {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.booking_step3 .agreement_wrap details.accordion summary{
  padding: 12px 4px;
}

.booking_step3 .agreement_wrap ul li:not(:last-of-type) details.accordion summary {
  border-bottom: 1px solid #ddd;
}

.booking_step3 .agreement_wrap ul li:not(:last-of-type) details.accordion[open] summary {
  border-bottom: none;
  margin: 0;
}

.booking_step3 .agreement_wrap details.accordion .content p{
  font-size: 0.875rem;
}

.booking_step3 .agreement_wrap details.accordion summary .chk_box .chk_label{
  font-size: 0.875rem;
}


/* step4 */

.booking_step4 .option + .option{
  margin-top: 3rem;
}
 
.booking_step4 .option .user{
  display: flex;
  align-items: center;
  border-bottom: 1px solid #000;
  padding-bottom: 8px;
}

.booking_step4 .option .option_list{
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.booking_step4 .option .option_list .chk_box{
  border: 1px solid #ddd;
  padding: 1rem;
  flex: 1;
}

.booking_step4 .option .option_list .chk_box:not(:last-of-type) {
  margin-right: 0;
}

.booking_step4 .option .option_list .chk_box:has(input[type=checkbox]:checked){
  border-color: var(--color-secondary);
}

.booking_step4 .popup-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}


span.label_room {
    background: #dde6ff;
    border-radius: 40px;
    padding: 5px 12px;
    font-size: 0.875rem;
    margin-right: 8px;
    color: #004999;
}

span.label_room.type2{
  background: #ffdde3;
  color: #741526;
}

span.label_room.type3{
  background: #d5f8ec;
  color: #15741a;
}

span.label_room.type4{
  background: #e6ddff;
  color: #471574;
}

span.label_room.type5{
  background: #ffd7a0;
  color: #c74101;
}

.final_btn_wrap button:first-child{
  display: none;
}

.final_btn_wrap button:last-child{
  width: 100%;
}


/* cruise tour */
.booking_step_tour .booking_top_wrap{
  display: flex;
  justify-content: space-between;
}

.booking_step_tour .card_box .item{
  display: flex;
  flex-direction: column;
  align-items: normal;
  padding: 0;
  gap: 0;
  border: none;
}

.booking_step_tour .card_box .item .item_content{
  display: flex;  
  padding: 1.25rem;
  border: .0625rem solid #eee;
  gap: 1.5rem;
}

.booking_step_tour .card_box .item .open_content{
  display: none;
  background: #F9F9F9;
  padding: 1rem;
  border: 1px solid #eee;
  border-top: none;
}

.booking_step_tour .card_box .item .open_content .passenger_wrap{
  display: flex;
  gap: 2rem;
  padding: 1rem;
  flex-wrap: wrap;
}

.booking_step_tour .card_box .item .open_content .passenger_wrap .passenger_num{
  flex: 1;
}

.booking_step_tour .card_box .item .open_content .passenger_wrap .passenger_num small{
  color:#999;
}

.booking_step_tour .card_box .item .open_content .passenger_wrap .passenger_num .passenger_btn_wrap{
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  background: #fff;
  padding: 1rem;
  border: .0625rem solid #eee;
  margin-top: 0.625rem;
}

.booking_step_tour .card_box .item .open_content .passenger_wrap .passenger_num .passenger_btn_wrap .form_inner{
  border: none;
  height: auto;
}

.booking_step_tour .card_box .item .open_content .passenger_wrap .passenger_num .passenger_btn_wrap .form_inner input{
  text-align: center;
}

.booking_step_tour .card_box .item:has(button.click-on.on) .open_content{
  display: block;
}

.booking_step_tour .card_box .item:has(.click-on.on) {
    border-color: none;
    outline: none;
}





@media screen and (max-width: 768px){
  .booking_wrap:has(.left_wrap + .right_wrap ){
    flex-direction: column;
    padding-top: 0;
    background: #f7f7f7;
  }

  .booking_step1 .popup-layer.left {
    position: fixed;
    top: 0;
    left:0;
  }

  .booking_step1 .popup-layer .popup-content {
    width: 100vw;
    height: 100vh;
    border: none;
  }

  .booking_step1 .popup-calendar{
    top: 0;
    left: 0;
  }


  [class*=booking_step] .card_box .item{
    flex-direction: column;
  }

  .content_wrap div:has(.pagetitle+.stepper){
    flex-direction: column;
    gap:2rem
  }

  .content_wrap .pagetitle{
    order:2;
  }

  .content_wrap .stepper{
    order:1;
    gap:20px
  }

  .stepper li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
  }

  .stepper li:before,
  .stepper li.step_now span{
    margin: 0;
  }

  .stepper li:after {
    top: -37px;
    position: relative;
    left: 35px;
    width: 1rem;
  }

  [class*=booking_step] .left_wrap,
  [class*=booking_step] .right_wrap {
      padding: 1rem;
      background: #fff;
      flex-basis: auto;
  }

  .final_btn_wrap{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    z-index: 999;
  }

  .final_btn_wrap button{
    border-radius: 0;
  }

  .final_btn_wrap button:first-child{
    flex:1;
    display: block;
  }

  .final_btn_wrap button:last-child{
    flex:2;
  }

  [class*=booking_step] .card_box .item .item_img{
    width: 100%;
  }

  [class*=booking_step] .card_box .item .txt_wrap .txt_bottom button:only-child{
    width: 100%;
  }

  .booking_step1 .left_wrap .form_inner{
    width: 100%;
  }

  .booking_step2 .card_box .item .txt_wrap ul{
    gap: 1rem;
  }
  
  .booking_step2 .card_box .item .txt_wrap ul li:not(:last-child):after {
    border-right: 1px solid #ddd;
    content: '';
    height: 15px;
    display: inline-block;
    top: 3px;
    position: relative;
    right: -5px;
  }

  .booking_step_tour .booking_top_wrap{
    flex-direction: column;
  }

  .booking_step_tour .booking_top_wrap [class*=input_box]{
    width: 100%;
  }

  .booking_step_tour .card_box .item .item_content{
    flex-direction: column;
  }
}


/* 예약완료 */
.booking_finish .item{
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: .0625rem solid #eee;
    border-radius: .1rem;
    background: #fff;
    padding: 1.25rem;
}

.booking_finish .item .item_img {
    width: 320px;
    height: 160px;
    overflow: hidden;
}

.booking_finish .item .item_img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.booking_finish .item .txt_wrap {
    flex: 1;
    line-height: 1.5;
    width: 100%;
}

.booking_finish .item .txt_wrap .item_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 600;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: break-word;
    text-align: left;
}

.booking_finish .item .txt_wrap > span {
    font-size: 0.875rem;
    color: #999;
    margin-bottom: 1rem;
}

.booking_finish .item .txt_wrap ul {
    background: #f8f8f8;
    padding: .825rem;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.booking_finish .item .txt_wrap ul li:has(span:nth-of-type(2)) span:first-of-type {
    color: #777;
    margin-right: 8px;
}

.booking_finish .item .txt_bottom {
    text-align: right;
    margin-top: .625rem;
}

.sub_title{
  font-size: 1.25rem;
  font-weight: 600;
  padding-block: 1rem;
}

.booking_finish .booking_payment > ul{
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.booking_finish .booking_payment > ul > li:not(:last-child){
  border-bottom: 1px solid #ddd;
}

.booking_finish .booking_payment .fare_list{
  display: flex;
  padding: 1rem;
  gap: 1rem;
}

.booking_finish .booking_payment .fare_list p:first-child{
  min-width: 12%;
}

.booking_finish .booking_payment details.accordion[open] summary{
  margin: 0;
}

.booking_finish .booking_payment details.accordion .content{
  margin-left: 14%;
  margin-bottom: 0.6rem;
  padding: .325rem 1rem;
}

.booking_finish .booking_payment details.accordion .content .fare_list{
  justify-content: space-between;  
  padding: .325rem;
}

.booking_finish .booking_payment details.accordion .content .fare_list p{
  font-size: 0.9375rem;
  color: #333;
}

/*예약목록*/
.booking_list li{
    border-bottom: 1px solid #ddd;
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    flex-direction: column;
}

.booking_list li:first-child{
    border-top: 1px solid #ddd;
}

.booking_list .list_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.booking_list .list_title p{
  font-weight: 600;
}

.booking_list .list_content{
    background: #f9f9f9;
    padding: 1rem 2rem;
    display: flex;
    flex-wrap: wrap;
    column-gap: 4rem;
}

.booking_list .list_content span i{
  display: inline-block;
  vertical-align: text-top;
  width: 16px;
  margin-inline : 6px;
}

.booking_list .list_content span {
    display: flex;
    align-items: center;
}

.booking_list .list_content span:not(:last-child){
  border-right: 1px solid #ddd;
  padding-right: 4rem;
}

.booking_list .list_content span:nth-child(1):before{
  content: '';
  background: url(../images/mappin.svg)no-repeat;
  width: 16px;
  height: 16px;
  display: inline-block;
  background-size: contain;
  margin-right: 4px;
}

.booking_list .list_content span:nth-child(2):before{
  content: '';
  background: url(../images/calendar.svg)no-repeat;
  width: 16px;
  height: 16px;
  display: inline-block;
  background-size: contain;
  margin-right: 4px;
}

.booking_list .list_content span:nth-child(3):before{
  content: '';
  background: url(../images/user.svg)no-repeat;
  width: 16px;
  height: 16px;
  display: inline-block;
  background-size: contain;
  margin-right: 4px;
}

@media screen and (max-width: 768px){
  .booking_list .list_content{
    gap: 1rem;
  }

  .booking_list .list_content span{
    width: 100%;
  }

  .booking_list .list_content span:not(:last-child){
      padding: 0;
      border: 0;
  }
}


@media screen and (max-width: 768px){
  .title_wrap{
    padding-inline: 1rem;
    padding-top: 1rem;
  }

  .center_wrap {
    padding: 1rem;
  }

  .booking_finish .item{
    flex-direction: column;
  }

  .booking_finish .item .item_img{
    width: 100%;
  }

  .booking_finish .booking_payment details.accordion .content{
    margin-left: 0;
  }
}



/* 회원가입 membership*/
.content_wrap:has(.membership_wrap) .title_wrap{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.membership_wrap{
  width: 100%;
  margin-bottom: 6rem;
}

.membership1 .agreement_wrap label.chk_box.type2{
  width: 100%;
  margin-bottom: 1rem;
}

.membership1 .agreement_wrap details.accordion summary{
  padding: 1rem .4rem;
}

.membership_wrap .btn_block_primary.lg {
  width: 100%;
}


.membership2 .certified_wrap{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.membership2 .certified_wrap button{
  justify-content: flex-start;
  height: 6rem;
}

.membership2 .certified_wrap button span{
  margin-left: 6rem;
  color:#000;
}

.membership2 .certified_wrap button.phone{
  background: url(../images/phone.svg)no-repeat;
  background-position: 10% center;
}

.membership2 .certified_wrap button.easy{
  background: url(../images/certified.svg)no-repeat;
  background-position: 10% center;
}

.membership2 .certified_wrap button:after{
  content: '';
  background: url(../images/arrowdown.svg)no-repeat;
  width: 20px;
  height: 20px;
  background-size: cover;
  transform: rotate(270deg);
  right: 10%;
  position: absolute;
}


.membership_wrap .btn_wrap{
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.membership_wrap .btn_wrap button{
  flex:1;
}

.find_account .tab_wrap .tab_tit li{
  flex:1;
  text-align: center;
}

.graybox{
  padding: 3rem;
  background:#F9F9F9;
}

.find_id .graybox{
  display: flex;
  gap: 1.625rem;
  justify-content: center;
}

.login .input_wrap:first-child{
    margin-bottom: 0;
}

.login .btn_wrap a:not(:last-child):after{
  content: '';
  border-right: 1px solid #ddd;
  padding-left: 16px;
  height: 13px;
  display: inline-block;
}

.login .form_inner input{
  margin-left: 8px;
}

.banner{
  position: relative;
  background: url(../images/banner.png)no-repeat;
  background-size: cover;
  width: 100%;
  padding: 2rem 4rem 2rem 2rem;
}

.banner:after{
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 6l6 6-6 6' stroke='%23666666' stroke-width='1' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.banner p:first-child{
  font-weight: bold;
  font-size: 1.125rem;
}



/* Mice */
.mice .mice_first_wrap .main_visual{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mice .mice_first_wrap .main_visual:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .35));
  z-index: 1;
  pointer-events: none;
}

.mice .mice_first_wrap .main_visual video {
    width: 100vw;
    height: calc(100vh - 100px);
    object-fit: cover;
}

.mice .mice_first_wrap .main_visual p {
    font-size: 4.825rem;
    line-height: 6.25rem;
    font-weight: bold;
    position: absolute;
    color: #fff;
    text-align: center;
    z-index: 2;
    animation: aniUp 1s .2s both;
    padding: 1rem;
}




.mice .mice_second_wrap,
.mice .mice_fourth_wrap,
.mice .mice_last_wrap
{
    position: relative;
    width: 100%;
    padding: 80px 16px 0;
    overflow: hidden;
}


.mice .mice_second_wrap .swiper-slide{
  width: 60%;
}

.mice .mice_second_wrap .swiper-slide .easten_card:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .35));
    z-index: 1;
    pointer-events: none;
}

.mice .mice_second_wrap .swiper-slide .txt{
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 2rem;
  z-index: 2;
}

.mice .mice_second_wrap .swiper-slide p:first-child{
  font-size: 1.563rem;
  line-height: 1.3;
  font-weight: 500;
    color: #fff;
  transition: font-size 0.4s ease;
}

.mice .mice_second_wrap .swiper-slide p.hidden{
  display: none;
}

.mice .mice_second_wrap .swiper-slide img{
  transition: filter 0.5s ease;
  width: 100%;
}

.mice .mice_second_wrap .swiper-slide:hover img{
  filter: brightness(0.5);
}

.mice .mice_second_wrap .swiper-slide:hover p:first-child{
  font-size: 1.25rem;
  color: #fff;
}

.mice .mice_second_wrap .swiper-slide:hover p.hidden{
  display: block;
  color: #fff;
}



.mice .mice_third_wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto; 
    overflow: hidden; 
    padding: 80px 0px 0; 
}

.mice .mice_third_wrap .voyage_content_box {
    position: relative;
    height: 40vh; 
    width: 100vw;
    background: url(../images/mice/voyage.png)no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* 패럴렉스 핵심 */
    display: flex; 
    justify-content: center;
    align-items: center;
}

.mice .mice_third_wrap .voyage_content_box .voyage_txt {
  position: relative;
  transition: opacity 0.5s ease-out;
  z-index: 1;
}

.mice .mice_third_wrap .voyage_content_box .voyage_txt p{
  font-size: 1.826rem;
  line-height: 1.4;
  font-weight: 600;
  text-align: left;
}




.mice .mice_fourth_wrap .swiper-slide{
  max-width: 280px;
}

.mice .mice_fourth_wrap .point_card {
  position: relative;
  overflow: hidden;
}

.mice .mice_fourth_wrap .point_card:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg,rgba(0,0,0,0),rgba(0,0,0,.35));
    z-index: 1;
    pointer-events: none;
}

.mice .mice_fourth_wrap .point_card .point_txt {
    position: absolute;
    top: 0;
    height: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color:#fff;
    z-index: 2;
}

.mice .mice_fourth_wrap .point_card .point_txt .title p:last-child{
  font-size: 1.563rem;
  line-height: 1.3;
  font-weight: 500;
  transition: font-size 0.4s ease;
}

.mice .mice_fourth_wrap .point_card .desc{
  display: none;
  transition: opacity 0.5s ease;
}

.mice .mice_fourth_wrap .point_card img{
  transition: filter 0.5s ease;
  height: 400px;
  width: 100%;
  object-fit: cover;
  display: block;
}




.mice .mice_fourth_wrap .point_card:hover .point_txt .title p:first-child{
  color:#fff;
}

.mice .mice_fourth_wrap .point_card:hover .point_txt .title p:last-child{
  font-size: 1.25rem;
  color:#fff;
}

.mice .mice_fourth_wrap .point_card:hover .desc{
  display: block;
  color: #fff;
}

.mice .mice_fourth_wrap .point_card:hover img{
  filter: brightness(0.5);
}



.mice .mice_last_wrap {
    padding-bottom: 6rem;
    background: #f1f1f1;
    margin-top: 6rem;
}

.mice .mice_last_wrap .popup-content {
    max-width: 900px;
}

.mice .mice_last_wrap .popup-header{
    position: absolute;
    width: 100%;
    z-index: 2;
    border: none;
    display: flex;
    justify-content: flex-end;
}

.mice .mice_last_wrap .popup-header .popup-title {
    display: none;
}

.mice .mice_last_wrap .popup-body {
    padding: 0;
    overflow: hidden;
}

.mice .mice_last_wrap .popup-body .swiper {
    height: 30rem;
}

.mice .mice_last_wrap .popup-body .swiper img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.mice .mice_last_wrap .popup-body .swiper-button-next, 
.mice .mice_last_wrap .popup-body .swiper-button-prev {
    background: rgba(0.0 .0, .3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.mice .mice_last_wrap .popup-body .swiper-button-next:after, 
.mice .mice_last_wrap .popup-body .swiper-button-prev:after {
    font-size: 1rem;
}

.mice .mice_last_wrap .popup-body .facilitydetail {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    font-weight: normal;
}

.zoom-hover{
  overflow: hidden;
}

.zoom-hover img{
  width: 100%;
  height: auto;
  transition-duration: 0.3s;
}

.zoom-hover img:hover{
  transform: scale(1.05, 1.05); 
  transition-duration: 0.5s;
}

.mice .mice_last_wrap .facility_card button {
    border: none;
    background-color: transparent;
    text-align: left;
    font-family: inherit;
    cursor: pointer;
}



@media screen and (max-width: 768px){
  .mice .mice_first_wrap .main_visual p{
    font-size: 3.25rem;
    line-height: 4.25rem;
  }
}

@media screen and (max-width: 480px){
  .mice .mice_first_wrap .main_visual p{
    font-size: 2.125rem;
    line-height: 3.24rem;
  }

  .swiper-prev,  .swiper-next{
    display: none;
  }

}


/* 선박 - 선박소개 */
.ship_wrap {
    width: 100%;
}

.ship_wrap .specification ul{
  display: flex;
  flex-wrap: wrap;
  background: #F9F9F9;
  padding-block: 3rem;
  justify-content: space-around;
  border-radius: var(--border-radius);
}

.ship_wrap .specification ul li{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  flex: 1;
}

.ship_wrap .specification ul li img{
  height: 50px;
  margin-bottom: 1rem;
}

.ship_wrap .specification ul li p:first-child{
  color:#666
}

.ship_wrap .specification ul li p:last-child{
  font-size: 1.425rem;
  font-weight: bold;
}

/* 선박 - 객실 */
.ship_wrap .room .swiper-slide {
    height: 80vh;
    position: relative;
    width: 100%;
    overflow: hidden;
}
.ship_wrap .room .swiper-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;   
}

.ship_wrap .room .name {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.ship_wrap .room .name p{
  font-size: 1.25rem;
}

.ship_wrap .room ul{
  background: #f9f9f9;
  padding: 1.25rem;
  line-height: 2;
}

.ship_wrap .room ul li {
    display: flex;
}

.ship_wrap .room ul li span {
    vertical-align: text-top;
}

.ship_wrap .room ul li span:first-child{
  min-width: 100px
}

.ship_wrap .room ul li:last-child span:last-child p:before{
  content:'· ';
}

.ship_wrap .room .btn_wrap{
  text-align: center;
}

/* 선박 - 편의시설 */
.ship_wrap .amenity_wrap{
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 2rem;
}

.ship_wrap .amenity_wrap .amenity_card{
  display: flex;
  gap: 2rem;
}

.ship_wrap .amenity_wrap .amenity_card .img-slide {
    width: 30%;
}


.ship_wrap .amenity_wrap .amenity_card .img-slide .swiper-slide{
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.ship_wrap .amenity_wrap .amenity_card .img-slide .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;   
}

.ship_wrap .amenity_wrap .txt .title{
  font-weight: 600;
  font-size: 1.425rem;
  text-align: center;
}

.ship_wrap .amenity_wrap .txt .sub{
  color:#666;
  font-size: 1.25rem;
  margin-top: 1rem;
  text-align: center;
}

.ship_wrap .amenity_wrap .txt .desc{
  margin-block: 1.625rem;
}

.ship_wrap .amenity_wrap .facility_swiper{
  width: 100%;
  height: 70vh;
  max-height: 600px;
}

.ship_wrap .amenity_wrap .facility_swiper .swiper-slide{
    position: relative;
    width: 100%;
    overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ship_wrap .amenity_wrap .facility_swiper .swiper-slide img{
  width: 100%;
}

.ship_wrap .amenity_wrap .floor{
    object-fit: scale-down;
}

@media screen and (max-width: 768px){
  .ship_wrap .specification ul{
      row-gap: 3rem;
    }
  .ship_wrap .specification ul li{
      flex: 1 1 30%;
  }

  .ship_wrap .amenity_wrap .facility_swiper{
      height: 50vh;
      max-height: 400px;
  }

  .ship_wrap .amenity_wrap .amenity_card{
    flex-direction: column;
  }

    .ship_wrap .amenity_wrap .amenity_card:not(:last-child){
      border-bottom: 1px solid #eee;
    }

    .ship_wrap .amenity_wrap .amenity_card .img-slide{
      width: 100%;
    }
}

@media screen and (max-width: 480px){
    .ship_wrap .amenity_wrap .facility_swiper{
      height: 30vh;
  }
}


/* 기항지 */
.destination_wrap{
  width: 100%;
}

.destination_wrap .tab_cont.japan .country_wrap .country{
  background: #f9f9f9 url(../images/destination/japan.svg)no-repeat;
  background-position: 97%;
  padding: 3rem 10rem 3rem 3rem;
}

.destination_wrap .tab_cont.taiwan .country_wrap .country{
  background: #f9f9f9 url(../images/destination/taiwan.svg)no-repeat;
  background-position: 97%;
  padding: 3rem 10rem 3rem 3rem;
}

.destination_wrap .tab_cont.korea .country_wrap .country{
  background: #f9f9f9 url(../images/destination/korea.svg)no-repeat;
  background-position: 97%;
  padding: 3rem 10rem 3rem 3rem;
}

.destination_wrap .tab_cont.russia .country_wrap .country{
  background: #f9f9f9 url(../images/destination/russia.svg)no-repeat;
  background-position: 97%;
  padding: 3rem 10rem 3rem 3rem;
}



.destination_wrap .tab_cont .country_wrap .country p:first-child{
  font-size: 1.24rem;
  font-weight: 600;
  margin-bottom: 1.625rem;
}

.destination_wrap .tab_cont .country_wrap .city_wrap .city_content{
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.destination_wrap .tab_cont .country_wrap .city_wrap .city_content li{
  display: flex;
  gap:2rem;
}

.destination_wrap .tab_cont .country_wrap .city_wrap .city_content li img{
  width: 33%;
  max-height: 200px;
  object-fit: cover;
  flex-shrink: 0;
}


@media screen and (max-width: 768px){
  .destination_wrap .tab_cont .country_wrap .country{
      padding: 2rem 2rem 6rem 2rem !important;
      background-position: 90% 90% !important;
  }
}

@media screen and (max-width: 500px){
  .destination_wrap .tab_cont .country_wrap .city_wrap .city_content li{
    flex-direction: column;
  }

  .destination_wrap .tab_cont .country_wrap .city_wrap .city_content li img{
    width: 100%;
  }

  .destination_wrap .tab_cont .country_wrap .city_wrap .city_content{
    gap: 5rem;
  }
}


/* 크루즈가이드 FAQ */
.faq_wrap{
  width: 100%;
}

.faq_wrap ul{
  border-top: 1px solid #ddd;
}

.faq_wrap ul:last-child {
    border-bottom: 1px solid #ddd;
}

.faq_wrap details.accordion.type2 summary{
  border-top: none;
  background: #fff;
}

.faq_wrap details.accordion.type2 summary{
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.faq_wrap details.accordion.type2 summary span {
    flex-shrink: 0;
}

.faq_wrap details.accordion.type2 summary span:first-child{
  color:#666;
  width: 120px;
}

.faq_wrap details.accordion.type2 summary span:last-child{
  color: #222;
}

.faq_wrap details.accordion.type2 summary:after{
  background-color: transparent;
}

.faq_wrap details.accordion.type2[open] summary{
  border-bottom: none;
}

.faq_wrap details.accordion .content{
  padding: 2rem;
  max-height:none;
}


@media screen and (max-width: 768px){
  .faq_wrap details.accordion.type2 summary{
    padding: 1rem 3rem 1rem 1rem; 
    gap: 0.4rem;   
  }
}

@media screen and (max-width: 500px){
  .faq_wrap details.accordion.type2 summary span{
    flex: 1 1 100%;
  }
}





/* 마이페이지 */
.mypage_wrap{
  width: 100%;
  margin-bottom: 6rem;
}

.mypage_wrap .search_wrap{
  padding: 1rem;
  background: #f9f9f9;
  margin-bottom: 2rem;
  display: flex;
  gap: 3rem;
  align-items: flex-end;
}

.search_wrap .search_content{
  flex:1;
}

.search_wrap .search_content .input_wrap:last-child{
  margin-bottom: 0;
}

.search_wrap .search_content .input_wrap .input_box_combo{
  max-width: 170px;
  flex-shrink: 0;
}

.search_wrap button{
  flex: 0 1 10%;
}

.flatpickr-calendar:before, 
.flatpickr-calendar:after{
  content: none;
}

.mypage_wrap.information .info_view{
  border-top: 1px solid #222;
  padding-block: 1rem;
}

.mypage_wrap.information .info_view>ul{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-bottom: 1px solid #eee;
  padding: 1.625rem;
}

.mypage_wrap.information .info_view ul li{
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mypage_wrap.information .info_view ul li span:first-child{
  flex-basis: 33%;
  max-width: 200px;
  font-weight: 500;
}

.mypage_wrap.information .info_view .btn_wrap{
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.mypage_wrap.information.modifi .info_view ul li{
  min-height: 46px;
}

.mypage_wrap.information.modifi .input_wrap{
  margin-bottom: 0;
  padding-top: 0;
}

.mypage_wrap.information.modifi .info_view ul li span:last-child{
  min-width: 380px;
}

.mypage_wrap.delete_acount {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mypage_wrap.delete_acount .graybox ul{
  line-height: 2;
}


@media screen and (max-width: 768px){
  .search_wrap{
    flex-direction: column;
    align-items: normal;
  }

  .search_wrap button{
    flex: auto;
    width: 100%;
  }

    .mypage_wrap.information.modifi .info_view ul li{
      flex-direction: column;
      align-items: normal;
      gap: 0.625rem;
    }

  .mypage_wrap.information.modifi .info_view>ul{
      gap: 1.625rem;
      padding: 1rem;
  }

  .mypage_wrap.information.modifi .info_view ul li span:last-child{
    min-width: auto;
  }
}

@media screen and (max-width: 500px){
  .search_wrap .search_content .input_wrap .input_box_combo{
    flex: 1 1 100%;
    max-width: none;
    margin-right: 0;
    margin-bottom: 4px;
  }
}


/* 약관 */
.terms_wrap{
  width: 100%;
  margin-bottom: 6rem;
}

.terms_wrap .graybox{
  line-height: 1.6;
  max-height: 700px;
  overflow-y: auto;
}

.content_wrap:has(.terms_wrap) .title_wrap{
  display: flex;
    flex-direction: column;
    align-items: center;
}



/* 이벤트 */
.event_wrap .list_wrap ul{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  row-gap: 4rem;
}

.event_wrap .list_wrap ul li.event_card{
  position: relative;
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
}

.event_wrap .list_wrap ul li.event_card .img-wrap{
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.event_wrap .list_wrap ul li.event_card img.thumb{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event_wrap .list_wrap ul li.event_card:hover img.thumb{
  transform: scale(1.05, 1.05);
  transition-duration: 0.5s;
}

.event_wrap .list_wrap ul li.event_card .title{
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1rem;
  line-height: 1.6;
}

.event_wrap .list_wrap ul li.event_card .date{
  color: #666;
}

.event_wrap .list_wrap ul li.event_card.end a{
  cursor: default;
}

.event_wrap .list_wrap ul li.event_card.end:after{
  content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
}

.event_wrap .detail_title{
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
}

.event_wrap .detail_title .title{
  font-size: 2rem;
  line-height: 2;
  font-weight: 600;
}

.event_wrap .detail_title .date{
    color: #666;
}

.event_wrap .detail_img {
    padding-block: 2rem;
    border-bottom: 1px solid #ddd;
}

@media screen and (max-width: 768px){
  .event_wrap .list_wrap ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 480px){
  .event_wrap .list_wrap ul {
    grid-template-columns: 1fr;
  }
}
