*{
  margin:0;
  padding:0;
}

body{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

button{
  cursor: hand; cursor: pointer;
}

input[type=checkbox] {
  -ms-transform: scale(2); /* IE */
  -moz-transform: scale(2); /* FF */
  -webkit-transform: scale(2); /* Safari and Chrome */
  -o-transform: scale(2); /* Opera */
  padding: 10px;
}

.radio,
.checkbox {
  height: auto;
  clear: both;
  overflow: hidden;
}
.radio label,
.checkbox label {
  height: auto;
  display: inline-block;
  position: relative;
  float: left;
  /*padding-left: 0!important;*/
  padding: 1px 2px 2px 2px;
  color: #191919;
  font-size: 16px;
  /*line-height: 24px;
  cursor: pointer;*/
}
.radio label .radio-label,
.checkbox label .checkbox-label {
  display: inline-block;
  float: left;
  margin-left: 28px;
  vertical-align: middle;
  cursor: pointer;
}
.radio label .radio-label .essential,
.checkbox label .checkbox-label .essential {
  color: #0b6bb8;
  margin-right: 4px;
}

.checkbox label input[type=checkbox] {
  width: 24px;
  height: 24px;
  float: left;
  display: inline-block;
  margin: 0 8px 0 0;
  border: none;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  background-image: url(/common/images/form-toggles-chekbox-off@2x.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.radio label input[type=radio] {
  width: 24px;
  height: 24px;
  float: left;
  display: block;
  margin: 0 8px 0 0;
  border: none;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  background-image: url(/common/images/form-toggles-radiobtn-off@2x.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.radio label input[type=checkbox]::-ms-check,
.checkbox label input[type=checkbox]::-ms-check {
  display: none;
}
.checkbox label input[type=checkbox]:checked {
  background-image: url(/common/images/form-toggles-chekbox-on@2x.png);
}
.radio label input[type=radio]:checked {
  background-image: url(/common/images/form-toggles-radiobtn-on@2x.png);
}
.checkbox label input[type=checkbox]:checked + span .all-check {
  color: #0b6bb8;
}
.radio label input[type=radio]:checked + span .essential,
.checkbox label input[type=checkbox]:checked + span .essential {
  color: #0b6bb8;
  font-weight: bold;
}


a{text-decoration: none;}
a:link { color: #383838 }
a:visited { color: #383838}
a:hover { color: #383838 }
a:active { color: #383838 }

.text-success {color: #28a745!important;}
.text-danger {color: #dc3545!important;}
.text-red {color: #ff0000!important;}
.text-blue {color: #0000ff!important;}
.text-default {color: #999999 !important;}
.text-point {color: #1874c3;}
.chk-green { border: 1px green solid }
.chk-red { border: 1px red solid }
.chk-blue { border: 1px blue solid }
.align-xy-center { display: flex; justify-content: center; align-items: center; }
/*.center { text-align: center }*/
.left { text-align: left }
.right { text-align: right }
.bold { font-weight: bold }
.bt-line { border-top: 1px solid #a6a6a6; }
.bb-line { border-bottom: 1px solid #a6a6a6; }

.text-center{
  texta-align: center;
}

.center{
  justify-content: center;
  align-items: center;
}

.cursor{
  cursor: pointer;
}

.inline-block {
  display: inline-block;
}

/* moblie Class */
._mshow {
  display: none;
}

/*header*/
header{
  width:100%;
  background-color: #ffffff;
  position: fixed;
  justify-content: center;
  top:0;
  z-index: 10;
  height:80px;
  box-sizing: border-box;
  display: flex;
  border-bottom:1px solid #a2a2a2;

}

.header_in{
  width:100%;
  max-width:1200px;
  position: fixed;
  top:0;
  background-color: #ffffff;
  z-index: 10;
  height:80px;
  box-sizing: border-box;
  display: flex;
  border-bottom:1px solid #a2a2a2;
}
.logo-container{
  width:330px;
  height:100%;
  display: flex;
  justify-content: center;
}

.logo{
  width:90%;
  height:100%;
  /*background: url("../../assets/img/logo.png") center center no-repeat;*/
  /*background-size: 100%;*/
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: #c95373;
  font-weight: bold;
  font-size: 18px;
}

.menu-container{
  width:calc(100% - 250px);
  height:100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.menu{
}

.menu>ul{
  display: flex;
}

.menu>ul>li{
  list-style: none;
  margin:0 20px;
  font-size: 18px;
  color: #7c7c7c;
  cursor:pointer;
}

.menu>ul>li:hover,
.menu>ul>li.active{
  font-weight: bold;
}

/*main*/
main{
  width:100%;
  height:auto;
  display: flex;
  flex-direction: column;
}

.main-banner {
  margin-top:80px;
  width: 100%;
  height: 420px;
  background: #ccc;
}
.main-banner .swiper-container {
  width: 100%;
  height: 100%;
}
.main-banner .swiper-container .swiper-slide {
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.main-banner .swiper-container .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-banner .slider-arrow-control {
  max-width: 1200px;
  height: 420px;
  margin: 0 auto;
  position: relative;
  top: -420px;
  z-index: 20;
}

.main-banner .slider-arrow {
  width: 55px;
  height: 55px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
}

.main-banner .slider-arrow.prev {
  left: -77px;
}

.main-banner .slider-arrow.next {
  right: -77px;
}

.main-banner .slider-arrow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-banner .swiper-pagination.swiper-pagination-bullets {
  width: auto;
  height: 50px;
  padding: 7px 18px;
  margin: 0 auto;
  left: 50%;
  bottom: 20px;
  white-space: nowrap;
  box-sizing: border-box;
  border-radius: 30px;
  background-color: rgba(0,0,0, .4);
  transform: translate(-50%, 0);
  z-index: 21;
}

.main-banner .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 36px;
  height: 36px;
  display: inline-block;
  border-radius: 0;
  background-color: transparent;
  background-image: url(../images/swiper-pagination.png);
  opacity: 1;
}

.main-banner .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-image: url(../images/swiper-pagination-active.png);
}

/** 예약안내 Tutorial 탭 **/
.reservation-tutorial-container {
  width: 100%;
  margin: 0 auto;
  max-width: 800px;
  height: auto;
}
.reservation-tutorial-container .tab1, .tab2 {
  width: 50%;
  height: 100%;
  float: left;
  margin-right: 0%; /* 간격 조정 */
  padding: 15px;
  box-sizing: border-box; /* 패딩 포함한 크기 계산 */
  font-size: 19px;
  font-weight: bold;
  background-color: #eee;
  cursor: pointer;
  border: 0px solid red;
}
.reservation-tutorial-container .tab2 {
  margin-right: 0; /* 마지막 div 간격 제거 */
}
.reservation-tutorial-container .click {
  background-color: #FDDF9E;  
}

/* clearfix 스타일 */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/** 예약안내 가이드 **/
.reservation-guide {
  width: auto;
  margin-top: 0px;
  background: #fff;
  text-align: center;
  border: 0px red solid;
}
.reservation-guide .swiper-container {
  width: 800px;
  height: auto;
  border: 1px #EBEBEB solid;
}
.reservation-guide .swiper-container .swiper-slide {
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.reservation-guide .swiper-container .swiper-slide img {
  object-fit: cover;
}

.reservation-guide .slider-arrow-control {
  width: 100%;
  height: 50px;
  margin: 0 auto;
  position: relative;
  top: -700px;
  z-index: 20;
  border: 0px blue solid;
}

.reservation-guide .slider-arrow {
  width: 55px;
  height: 55px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
}

.reservation-guide .slider-arrow-prev {
  left: 10px;
}

.reservation-guide .slider-arrow-next {
  right: 10px;
}

.reservation-guide .slider-arrow img {
  width: 100%;
  object-fit: cover;
}

.reservation-guide .swiper-pagination.swiper-pagination-bullets {
  width: auto;
  height: 50px;
  padding: 7px 18px;
  margin: 0 auto;
  left: 50%;
  bottom: 20px;
  white-space: nowrap;
  box-sizing: border-box;
  border-radius: 30px;
  background-color: rgba(0,0,0, .4);
  transform: translate(-50%, 0);
  z-index: 21;
}

.reservation-guide .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 36px;
  height: 36px;
  display: inline-block;
  border-radius: 0;
  background-color: transparent;
  background-image: url(../images/swiper-pagination.png);
  opacity: 1;
}

.reservation-guide .swiper-pagination.swiper-pagination-bullets
   .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-image: url(../images/swiper-pagination-active.png);
}


.contents{
  width:100%;
  height:100%;
  box-sizing: border-box;
  /*padding:0 30px;*/
  margin: 0 auto; /* 수평 가운데 정렬 */
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0px green dotted;
}

.contents_inner{
  max-width:1200px;
  width:100%;
  /*margin-top:5%;*/
  display: flex;
  flex-direction: column;
}

.ready{
  width:100%;
  height:500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contents_{
  width:100%;
  height:1500px !important;
  background: url("../../assets/images/contents.png")center center no-repeat;
  background-size: 100%;
}

.contents_header{
  margin: 50px 0 0px 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
  font-size: 30px;
  font-weight: bold;
  border-bottom: 1px solid #000;
}

.common{
  width:100%;
  height:50px;
  /*background-color: #c95373;*/
  display: flex;
  color: #737373;
  align-items: center;
  justify-content: flex-end;
}

.reservation_container{
  width:100%;
  /*height:300px;*/
  /*background-color: aqua;*/
  display: flex;
  margin-top:10px;
  margin-bottom:10px;
  box-sizing: border-box;
  padding: 0 10%;
  /*display: flex;*/
  /*flex-direction: column;*/
  justify-content: center;

}

.reservation_container_contents{
  max-width:1000px;
  width:100%;
  display: flex;

}

.reservation_ex_img{
  width:170px;
  /*height:150px;*/
  background-color: #4e526c;
  margin-bottom:50px;
}

.reservation_container_style{
  /*height:700px;*/
}

.reservation_select{
  width:100%;
  /*height:500px;*/
  padding:60px 0;
  border:1px solid #9d9d9d;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.select_right{
  border-top:1px solid #9d9d9d;
  border-right:1px solid #9d9d9d;
  border-left:none;
  border-bottom:1px solid #9d9d9d;
}

.reservation_container_sub_style{
  display: flex;
  flex-direction: column;
}
.reservation_sub_title{
  /*color: #595f98;*/
  font-size: 30px;
  /*margin-bottom: 50px;*/
}
.reservation_container>div>form{
  display: flex;
  flex-direction: column;
  /*height:300px;*/
  margin-top:40px;
}

.reservation_form{
  display: flex;
  flex-direction: column;
  /*padding:10px;*/
  box-sizing: border-box;
  border-radius: 10px;
  border: 0px red solid;
}

.reservation_form>legend>span{
  font-size: 14px;
  color: #757575;
}

.reservation_form2{
  border-radius: 10px;
  padding: 10px;
  box-sizing: border-box;
}

fieldset{
  border:none;
}

legend{
  width:100%;
  font-size: 25px;
  border-bottom: 1px solid #000000;
  margin-bottom: 15px;
}
.form-sections{
  display: flex;
  align-items: center;
  padding:10px 0;
}

.form-section{
  width: 150px;
  height: 40px;
  min-height: 30px;
  font-size: 20px;
  border: 0px red solid;
}

.form-section-right{
  width: auto;
  height: 40px;
  font-size: 20px;
  line-height: 80%;
  border: 0px red solid;
}

.form-section-right > span{
  font-size: 14px;
}

.form-section2{
  width: 100%;
  height: 40px;  
  min-height: 30px;
  font-size: 20px;
  border: 0px red solid;  
}

.min-title{
  font-size: 20px;
}
.form-sections>input{
  width:300px;
  height:30px;
}

_form-control {
  width: 100%;
}
._form-control.button-and-input .input {
  width: calc(100% - 120px);
  height:30px;
  float: left;
  margin-right: 6px;
}
._form-control.button-and-input .btn {
  width: 100px;
  height: 35px;
  float: right;
  color: #ffffff;
  background-color: #0055a0;
  border:none;
  box-sizing: border-box;
  border-radius: 3px;
}
._form-control.button-and-input .btn:focus,
._form-control.button-and-input .btn:hover {
  color: #ffffff;
  background-color: #123f65;
}

.explain {
  margin: 0;
  padding-top: 6px;
  padding-bottom: 0;
  color: #9c9c9c;
  font-size: 12px;
}

.agreement-box{
  font-size: 12px;
  width:100%;
  height:200px;
  overflow-y: scroll;
  padding:10px;
  box-sizing: border-box;
  white-space: pre-line;
  border:1px solid #696969;
}

.privacy-box{
  font-size: 12px;
  width:100%;
  height:130px;
  overflow-y: scroll;
  padding:10px;
  box-sizing: border-box;
  white-space: pre-line;
  border:1px solid #696969;
}

.reservation_container>div>form textarea{
  width:100%;
  border:none;
  white-space: nowrap;
  padding:10px;
}
.reservation_container_left{
}

.reservation_btn{
  width:300px;
  /*height:100px;*/
  font-size: 25px;
  display: flex;
  color: #3d3d3d;
  text-align: center;
  justify-content: center;
  align-items: center;
  /*background-color: #f5f3f3;*/
  /*border-bottom:1px solid #000;*/
  /*box-shadow: 5px 4px 16px 1px #31313145;*/
  flex-direction: column;
  transition: all ease 1s 0s;
  margin-bottom:50px;
}

.reservation_btn_color{
  font-size: 18px;
  color: rgba(83, 96, 128, 0.64);
}

b{
  color: rgba(255, 17, 124, 0.76);
  font-weight: bold;
}

.reservation_btn>span:nth-child(1){
  /*font-size: 18px;*/
  color: #464646;
}

/*.reservation_btn:hover{*/
/*  color: #595f98;*/
/*  background-color: #dadada;*/
/*  transition: all ease 1s 0s;*/
/*}*/

.reservation_btn>span:nth-child(2){
  color: #b7b7b7;
}

.reservation_container_right{
}

.reservation_container_in{
  width:50%;
  justify-content: center;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.reservation_text{
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-bottom: 20px;
  height:70px;
}

.reservation_text>ul>li{
  list-style: none;
}

.reservation_btn_2{
  box-shadow: none;
  /*margin-bottom: 10px;*/
  border:none;
  background-color: rgba(255, 17, 124, 0.76);
  padding:15px 30px;
  font-size: 18px;
  font-weight: bold;
  box-sizing: border-box;
  color: #fff;
  border-radius: 6px;
  text-align: center;
}
.reservation_btn_2>a{
  color:#fff;
}

.reservation_btn_2:active{
  border:1px solid #9b2951;
}

.reservation_btn_3{
  box-shadow: none;
  /*margin-bottom: 10px;*/
  border:none;
  background-color: rgba(218, 213, 215, 0.76);
  padding:15px 30px;
  font-size: 20px;
  font-weight: bold;
  box-sizing: border-box;
  color: #9b2951;
  border-radius: 6px;
  text-align: center;
}
.reservation_btn_3>a{
  color:#9b2951;
}

.reservation_btn_3:active{
  border:1px solid rgba(218, 213, 215, 0.76);
}

.s-btn{
  margin-left:10px;
  margin-top:-5px;
  font-size: 16px !important;
  padding:5px 10px !important;
}

.m-btn{
  margin-left:10px;
  margin-top:-5px;
  font-size: 18px !important;
  padding:10px 20px !important;
}

.reservation_con_btn_container{
  display: flex;
  justify-content: center;
  /*margin-bottom: 150px;*/
  margin-top:50px;
  border: 0px red solid;  
}

.btn-margin{
  margin:0 10px;
}

.reservation_con_btn{
  width: 200px;
  background: #323232;
  color: #fff;
  height: 60px;
  border: none;
  cursor: pointer;
  border-radius: 30px;
}

.reservation_con_btn>a{
  color:#fff;
}

.reservation_seat{
  display: flex;
  flex-direction: column;
  /*align-items: center;*/  
  overflow-x: auto !important;
  overflow-y: hidden; /* y축 스크롤 숨기기 */
  flex-direction: initial !important;
  width:90vw !important;
  justify-content: center; /* 가로 가운데 정렬 */
  align-items: center;     /* 세로 가운데 정렬 (옵션) */    
}
.seat-box-container{
  /*max-width: 2400px;*/
  justify-content: center; /* 가로 가운데 정렬 */
  align-items: center;     /* 세로 가운데 정렬 (옵션) */
  border: 0px blue solid;  /* 레이아웃 확인용 */  
}
.seat-box-list{
  width: 630px;
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  margin-bottom: 30px;
  border: 0px red solid;  /* 레이아웃 확인용 */
}
/* 특정 순서에서 줄바꿈
.seat-box-list div:nth-child(10n) {
  margin-right: auto;
}
*/
.seat-box {
  width: 120px;
  height: 120px;
  /*border-radius: 5px;*/
  color: #818181;
  border: 1px solid #cbcbcb;
  margin-bottom: 3px;
  /*border-right:1px solid #cbcbcb;*/
}

.color-seat-s{
  width:10px;
  height:10px;
  background-color: #378a7b;
  margin-right:5px;
}

.color-seat-p{
  width:10px;
  height:10px;
  background-color: #c7ab78;
  margin-right:5px;
}

.seat-style{
  display: flex;
  justify-content: center;
  align-items: center;
  height:40px;
}

.seat-style>button{
  cursor: pointer;
}

.seat-style>button:active{
  border:2px solid #6aa7b0;
}


.seat-box-step1{
  border-bottom: 1px solid #939393;
  /*background-color: #ececec;*/
}

.seat-box-step2{
  border-bottom: 1px solid #d5d5d5;
  padding:0 10px;
  box-sizing: border-box;
  background-color: #ffffff;
}

.seat-box-step3{
  /*background-color: #f3f3f3;*/
}
.seat-box-step3>button{
  width:90%;
  height:80%;
  background-color: #ffffff;
  color: #6aa7b0;
  border:1px solid #6aa7b0;
}

.area-box-color-floor1 {
	background-color: #f9e9ad;
}
.area-box-color-floor2 {
  background-color: #fcd6a5;
}
.area-box-color-floor3 {
  background-color: #c1eaca;
}

.close-btn{
  background-color: #e5e5e5 !important;
  color: #9a9a9a !important;
  border:1px solid #9a9a9a !important;
}


.close-red-btn{
  background-color: #e5e5e5 !important;
  color: #b76363 !important;
  border:1px solid #603333 !important;
}


.reservation_completion{
  margin-top:50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.reservation_completion>div:nth-child(1){
  font-size: 30px;
  color: rgb(54, 54, 180);
  line-height: 50px;
}


/** sub-content **/
.sub-content {
}

.sub-content .title {
  width: 100%;
  height: 30px;
  margin-bottom: 20px;
  background-image: url(/assets/images/sub_title_hr.png);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 100% 1px;
}

.sub-content .title h2 {
  height: 30px;
  display: inline-block;
  margin: 0;
  padding-right: 16px;
  color: #323232;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  background-color: #ffffff;
}

.sub-content .sub-content-body {
  color: #555555;
  font-size: 14px;
  line-height: 1.43;
}

.sub-content .sub-content-body td.content {
  padding-left: 14px !important;
  padding-right: 14px !important;
  text-align: left !important;
}

.sub-content .sub-content-body td.content.comment {
  padding-left: 45px !important;
  text-align: left !important;
  background-image: url(/assets/images/re.png);
  background-size: 13px 13px;
  background-repeat: no-repeat;
  background-position-x: 20px;
  background-position-y: center;
}

.sub-content .sub-content-body .secret {
  width: 20px;
  height: 21px;
  display: inline-block;
  background-image: url(/assets/images/lock.png);
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: center;
}

.sub-content .sub-content-body td .secret {
  height: 25px;
}

.sub-content .sub-content-body p.point {
  font-size: 15px;
}

.sub-content .sub-content-body ul {
  list-style: disc;
  margin: 0;
}

.sub-content .sub-content-body li {
  list-style: disc;
  list-style-position: inside;
  padding-bottom: 6px;
}

.sub-content .sub-content-body li .list-in-explain {
  padding-left: 18px;
}

.sub-content .sub-content-body .mobile-table-explain {
  display: none;
  color: #999999;
  font-size: 13px;
  text-align: center;
  margin-bottom: 10px;
}

.sub-content .sub-content-body .border-table {
  width: 100%;
  overflow: auto;
  border-top: 1px solid #323232;
}
.sub-content .sub-content-body .border-table.mobile-scroll {
  overflow: auto;
}

.sub-content .sub-content-body .border-table table.mobile-scroll {
  min-width: 500px;
}

.sub-content .sub-content-body .border-table table,
.sub-content .sub-content-body .border-table thead,
.sub-content .sub-content-body .border-table tbody {
  width: 100%;
}
.sub-content .sub-content-body .border-table.mobile-scroll table {
  min-width: 500px;
}

.sub-content .sub-content-body .border-table th {
  padding: 12px 0;
  color: #5d5d5d;
  font-size: 14px;
  text-align: center;
  line-height: 26px;
  vertical-align: middle;
  letter-spacing: -0.22px;
  border-collapse: collapse;
  border-spacing: 0;
  border-bottom: 1px solid #e7e7e7;
  border-right: 1px solid #e7e7e7;
}

.sub-content .sub-content-body .border-table th:last-child {
  border-right: 0;
}

.sub-content .sub-content-body .border-table td {
  padding: 16px 0;
  text-align: center;
  font-size: 14px;
  line-height: 26px;
  vertical-align: middle;
  letter-spacing: -0.22px;
  box-sizing: border-box;
  border-collapse: collapse;
  border-spacing: 0;
  border-bottom: 1px solid #e7e7e7;
  border-left: 1px solid #e7e7e7;
}

.sub-content .sub-content-body .border-table.board tbody td {
  cursor: pointer;
}

.sub-content .sub-content-body .border-table tr.notice {
  background-color: #f8f8f8;
}

.sub-content .sub-content-body .border-table td:first-child {
  border-left: 0;
}

.sub-content .sub-content-body .border-table td:last-child {
  border-right: 0;
}

.sub-content .sub-content-body .image {
  width: 100%;
}

.sub-content .sub-content-body .video iframe {
  position: absolute;
  top: 0;
  left: -1px;
  width: 100%;
  height: 100%;
  border: none;
  background-color: #ffffff;
}

.sub-content .sub-content-body a,
.sub-content .sub-content-body a:hover,
.sub-content .sub-content-body a:focus {
  text-decoration: none;
}

.sub-content .sub-content-body .point {
  color: #0055f5;
  font-weight: 600;
}

/*footer*/
footer{
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top:40px;
  padding-bottom:20px;
  width:100%;
  height:auto;
  background-color: #313131;
  color:#b9b9b9;
  font-size: 12px;
}

.footer-container{
  width:100%;
  max-width:1200px;
  height:100%;
  display: flex;
  box-sizing: border-box;
  padding:0 30px;
}

.footer-container-left{
  width:50%;
  height:100%;
  display: flex;
  flex-direction: column;
}

.footer-container-left-top{
  /*justify-content: center;*/
  /*align-items: center;*/
  margin-bottom: 20px;
}

.footer-container-left-top>div>div:nth-child(1){
  font-size: 18px;
}

.footer-container-left-top>div>div:nth-child(2){
  font-size: 24px;
}

.footer-container-left-bottom>div>div:nth-child(1){
  font-size: 18px;
}

.footer-container-left-bottom>div>div:nth-child(2){
  font-size: 24px;
}

.footer-container-left-bottom{
  /*justify-content: center;*/
  /*align-items: center;*/
}

.footer-container-right{
  width:50%;
  height:100%;
  display: flex;
  flex-direction: column;
  margin-left:-100px;
}

.footer-container-right-top{
  /*align-items: center;*/
  margin-bottom: 20px;
}

.footer-container-right-bottom{
  /*align-items: center;*/
}

.footer-in-style{
  width:100%;
  height:50%;
  display: flex;
}


.thick{
  font-size: 14px;
  font-weight: bold;
  margin-bottom:0;
}


/* 모바일 사이즈 하단 */
.mobile-bottom-wrap {
  z-index: 20;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 7rem
}

.mobile-bottom-wrap .mobile-bottom-btn-area {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.mobile-bottom-wrap .mobile-bottom-btn-area .btn-box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /*width: 31.8rem*/
}

.mobile-bottom-wrap .mobile-bottom-btn-area .btn-box .icon-area img {
  width: 60px;    
}

.mobile-bottom-wrap .mobile-bottom-btn-area .btn-box p {
  padding-top: .8rem;
  font-family: "GmarketSans", sans-serif;
  font-weight: 500;
  font-size: 2.7rem;
  line-height: 1.2
}

.mobile-bottom-wrap .mobile-bottom-btn-area .btn-katalk {
  background-color: #ffd459;
  color: #000
}

.sidebar-wrap {
  position: fixed;
  top: 0;
  left: 50%;
  width: 0;
  height: 100%;
  margin: 0 auto;
  z-index: 30
}

.sidebar-wrap .sidebar-container {
  position: absolute;
  top: 550px;
  left: 490px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content
}

.sidebar-wrap .sidebar-ul {
  text-align: center
}

.sidebar-wrap .sidebar-ul li {
  margin-bottom: 12px
}

.sidebar-wrap .sidebar-ul li:nth-of-type(1) {
  margin-bottom: 16px
}

/* 텍스트 애니메이션 효과 */
.ticket-capture{
  background: #ffffff;
  -webkit-animation: fadeIn 1s;
  -moz-animation: fadeIn 1s;
  -ms-animation: fadeIn 1s;
  -o-animation: fadeIn 1s;
  animation: fadeIn 1s;
}
.progress-bar{
  width: 100%;
  height: 30px;
  text-align: center;
  line-height: 30px;
  color: #ffffff;
  background-color: #c90000;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiP…dpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==);
  background-image: -webkit-gradient(linear, 0% 0%, 100% 100%, color-stop(25%, rgba(251, 62, 40, 0.8)), color-stop(25%, rgba(0, 0, 0, 0)), color-stop(50%, rgba(0, 0, 0, 0)), color-stop(50%, rgba(251, 62, 4, 0.8)), color-stop(75%, rgba(251, 62, 40, 0.8)), color-stop(75%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0)));
  background-image: -moz-linear-gradient(left top, rgba(251, 62, 40, 0.8) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(251, 62, 40, 0.8) 50%, rgba(251, 62, 40 0.8) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));
  background-image: -webkit-linear-gradient(left top, rgba(251, 62, 40, 0.8) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(251, 62, 40, 0.8) 50%, rgba(251, 62, 40 0.8) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right bottom, rgba(251, 62, 40, 0.8) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(251, 62, 40, 0.8) 50%, rgba(251, 62, 40 0.8) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));
  background-size: 80px 80px;
  animation: ticketCapturebackground 1s linear infinite;
}

@keyframes ticketCapturebackground {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 80px 0;
  }
}

.cust-modal {
  z-index:100;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background-color: rgba(0, 0, 0, 0.4);
}

.cust-modal.show {
  display: block;
}

/*   */
.cust-modal-body {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 500px;
  padding: 40px;
  text-align: center;
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
  transform: translate(-50%, -50%);
}

.cust-modal-title{
  font-size: 25px;
  margin-bottom: 10px;
}

.cust-modal-text{
  font-size: 20px;
  margin-bottom: 10px;
}

.cust-modal-footer{
  margin-top:50px;
}


.sub-banner {
  margin-top:80px;
  width: 100%;
}
.top-banner-area {
  width: 100%;
  height: 280px;
  position: relative;
  background-color: #333333;
}

.top-banner-area .top-banner-bg {
  width: 100%;
  height: 280px;
  position: absolute;
  top: 0;
  z-index: 0;
  opacity: 0.6;
}

.top-banner-area .top-banner-bg.guide {
  background-image: url(https://img.hiddenticket.co.kr/event_hometicket/amway2024/banner-sub.jpg?01);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.top-banner-area .page-navigation {
  width: 100%;
  position: absolute;
  top: 20px;
  z-index: 5;
}

.top-banner-area .page-navigation .page-navigation-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  color: #aaaaaa;
}

.top-banner-area .page-navigation .page-navigation-content a {
  height: 18px;
  display: inline-block;
  padding-right: 20px;
  margin-left: 4px;
  cursor: pointer;
  color: #aaaaaa;
  line-height: 16px;
  text-decoration: none;
  background-image: url(../images/text-nav-next.png);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 12px 12px;
}

.top-banner-area .page-navigation .page-navigation-content a:first-child {
  padding-left: 20px;
  background-image: url(../images/home.png), url(../images/text-nav-next.png);
  background-repeat: no-repeat;
  background-position: left center, right center;
  background-size: 12px 12px;
}

.top-banner-area .page-navigation .page-navigation-content a:last-child {
  padding-right: 0;
  background-image: none;
}

.top-banner-area .page-navigation .page-navigation-content a:hover {
  color: #ffffff;
  text-decoration: none;
}

.top-banner-area .top-text-contents {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  text-align: center;
}

.top-banner-area .top-text-contents .title-txt {
  display: block;
  margin-top: 0;
  color: #fff;
  font-size: 36px;
  font-weight: bold;
}

.top-banner-area .top-text-contents .emphasis-txt {
  display: block;
  margin-top: 20px;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  opacity: 0.8;
}
/*@media screen and (max-width: 1220px){*/
/*  .contents_inner{*/
/*    max-width:90% !important;*/
/*  }*/
/*  .reservation_seat{*/
/*    overflow: scroll !important;*/
/*    flex-direction: initial !important;*/
/*    justify-content: initial !important;*/
/*    width:90vw !important;*/
/*  }*/

/*}*/
#menu__toggle {
  opacity: 0;
}
#menu__toggle:checked + .menu__btn > span {
  transform: rotate(45deg);
}
#menu__toggle:checked + .menu__btn > span::before {
  top: 0;
  transform: rotate(0deg);
}
#menu__toggle:checked + .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}
#menu__toggle:checked ~ .menu__box {
  right: 0 !important;
}
.menu__btn {
  position: fixed;
  top: 40px;
  right: 15px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 1;
}
.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #616161;
  transition-duration: .25s;
}
.menu__btn > span::before {
  content: '';
  top: -8px;
}
.menu__btn > span::after {
  content: '';
  top: 8px;
}
.menu__box {
  display: block;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100%;
  margin: 0;
  padding: 80px 0;
  list-style: none;
  background-color: #fff;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
  transition-duration: .25s;
}
.menu__item {
  display: block;
  padding: 12px 24px;
  color: #333;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition-duration: .25s;
}
.menu__item:hover {
  background-color: #CFD8DC;
}

/** 좌석상태 분류 **/
.seatLegend {position: relative; padding: 8px; border: 1px solid #b6b6b6; margin-top: 10px; }
.seatLegend .category {text-align: center; color: #232323; font-size: 14px; padding-right: 24px;}
.seatLegend .category .s-possible {background: #ffffd9;}
.seatLegend .category .s-impossible {background: #808040;}
.seatLegend .category .s-reserved {background: #e9e9e9;}
.seatLegend .category .s-on {background: #125195;}
.seatLegend .category > span {position: relative; display: inline-block; width: 18px; height: 18px; border: 1px solid #bbbbbb; vertical-align: middle; box-sizing: border-box; margin-left: 3px;}

/** Layer popup **/
.layerPopup {display:none;}
.layerPopup .layerBox {
  position:fixed; left:32%; top:310px; transform:translate(-50%, -50%); padding:0px; background:#fff;
  border-radius:0px; border: solid 1px black; z-index:999; text-align: right; width:400px;
}
.layerPopup .layerBox .title {margin-bottom:10px; padding-bottom:10px; font-weight:600; border-bottom:1px solid #d9d9d9;}
.layerPopup .layerBox .cont {margin-bottom:0px;}
.layerPopup .layerBox .btnArea {height: 25px; background-color: #000;}
.layerPopup .layerBox .btnArea a {color: #dfdfdf}
.layerPopup .layerBox p {line-height:20px; font-size:13px;}
.layerPopup .layerBox .btnTodayHide {font-size:13px; font-weight:600; text-decoration:underline; padding-right:10px; cursor:pointer}
.layerPopup .layerBox .btnClose {font-size:13px; font-weight:600; text-decoration:underline; padding-right:6px; cursor:pointer}

/** Layer popup **/
.layerPopup2 {display:none;}
.layerPopup2 .layerBox {
  position:fixed; left:63%; top:430px; transform:translate(-50%, -50%); padding:0px; background:#fff;
  border-radius:0px; border: solid 1px black; z-index:999; text-align: right; width:600px;
}
.layerPopup2 .layerBox .title {margin-bottom:10px; padding-bottom:10px; font-weight:600; border-bottom:1px solid #d9d9d9;}
.layerPopup2 .layerBox .cont {margin-bottom:0px;}
.layerPopup2 .layerBox .btnArea {height: 25px; background-color: #000;}
.layerPopup2 .layerBox .btnArea a {color: #dfdfdf}
.layerPopup2 .layerBox p {line-height:20px; font-size:13px;}
.layerPopup2 .layerBox .btnTodayHide2 {font-size:13px; font-weight:600; text-decoration:underline; padding-right:10px; cursor:pointer}
.layerPopup2 .layerBox .btnClose2 {font-size:13px; font-weight:600; text-decoration:underline; padding-right:6px; cursor:pointer}

/** Layer popup **/
.layerPopup3 {display:none;}
.layerPopup3 .layerBox {
  position:fixed; left:51%; top:430px; transform:translate(-50%, -50%); padding:0px; background:#000;
  border-radius:0px; border: solid 1px black; z-index:999; text-align:right; width:700px;
}
.layerPopup3 .layerBox .title {margin-bottom:10px; padding-bottom:10px; font-weight:600; border-bottom:1px solid #d9d9d9;}
.layerPopup3 .layerBox .cont {margin-bottom:0px;}
.layerPopup3 .layerBox .btnArea {height: 25px; background-color: #000;}
.layerPopup3 .layerBox .btnArea a {color: #dfdfdf}
.layerPopup3 .layerBox p {line-height:20px; font-size:13px;}
.layerPopup3 .layerBox .btnTodayHide3 {font-size:13px; font-weight:600; text-decoration:underline; padding-right:10px; cursor:pointer}
.layerPopup3 .layerBox .btnClose3 {font-size:13px; font-weight:600; text-decoration:underline; padding-right:6px; cursor:pointer}

/** 미디어 쿼리 **/
@media screen and (max-width: 1330px) {
  .contents {
    width: 100%;
  }
  
  /** 예약안내 토튜리얼 롤링 **/
  .reservation-guide .swiper-container {
    width: 100%;
  }
  
  .form-section-step3{
    flex-direction: row !important;
  }
  .form-section-step3>div{
    font-size: 16px !important;
  }
  .form-section-step3>.form-section{
    width:140px !important;
  }

  .s-btn{
    font-size: 12px !important;
  }

  .form-section2{
    width:100% !important;
    height:auto !important;
  }
  .reservation_sub_title{
    font-size: 26px;
  }

  .reservation_completion>div:nth-child(1){
    font-size: 26px;
  }

  .contents_inner{
    max-width:90% !important;
  }
  
  /* step2 좌석영역 */
  .reservation_seat{
    overflow-x: auto !important;
    overflow-y: hidden; /* y축 스크롤 숨기기 */
    flex-direction: initial !important;
    justify-content: initial !important;
    width: 90vw !important;
  }

  .reservation_text{
    width:80% !important;
  }
  .reservation_container{
    padding:0 !important;
  }

  legend{
    display: flex;
    flex-direction: column;
  }

  .form-sections{
    flex-direction: column;
    align-items: flex-start!important;
  }

  .reservation_step2_style img{
    width:90% !important;
    height:90% !important;
  }

  footer{
    height: 350px;
    /*background-color: #4e526c;*/
  }
  .footer-container{
    display: block;
    height:auto!important;
  }
  .footer-in-style{
    height:100px !important;
  }
  .footer-container-left{
    height:auto !important;
    width:100% !important;
  }
  .footer-container-right{
    width:100% !important;
    height:auto !important;
    margin-left:0px !important;
  }
}

@media screen and (min-width: 1024px) {
  /* hamburger menu */
  .menu-container{display: flex}
  .hamburger-menu{display: none !important;}
  
  .mobile-bottom-wrap {
    display: none
  }
}
@media screen and (max-width: 1024px) {
  .menu-container{display: none}
  .hamburger-menu{display: flex}
}

@media screen and (max-width: 600px) {
  .sub-content .sub-content-body .mobile-table-explain {
    display: block;
  }
  
	.contents_header {
	  font-size: 25px;
	}  
  
  .reservation-tutorial-container .tab1, .tab2 {
    font-size: 16px;
  }
  
  /* 구역 스크롤 넣기 */
  .reservation_seat{
    /*border: 1px solid #ccc;*/
    -webkit-overflow-scrolling: touch; /* 부드러운 스크롤을 위한 속성 */
  }  
  /* 스크롤바 스타일을 변경 (iOS 및 WebKit 기반 브라우저에서 작동) */
  .reservation_seat::-webkit-scrollbar {
    width: 8px; /* 스크롤바의 너비 */
  }
  .reservation_seat::-webkit-scrollbar-thumb {
    background-color: #00ff80; /* 스크롤바의 색상 */
    border-radius: 4px; /* 스크롤바 모서리 둥글게 */
  } 
  .reservation_seat::-webkit-scrollbar-track {
    background-color: #f1f1f1; /* 스크롤 트랙 색상 */
  }  
  
  /* 하단 버튼 */
  .reservation_btn_2 {
    padding: 13px 8px;
    font-size: 16px;
  }
  
  .sidebar-wrap {
    display: none
  }

  ._mshow {
    display: inline-block;
  }  
  
  video {
    width: 100%
  }

  /* 팝업 */
  .layerPopup .layerBox {
    position:fixed; left:50%; top:280px; width:95%;
  }
  
  .layerPopup2 .layerBox {
    position:fixed; left:50%; top:280px; width:95%;
  }
  
  .layerPopup3 .layerBox {
    position:fixed; left:50%; top:280px; width:95%;
  }
}