*{
  /* font-family: 'Noto+Sans+KR'; */
  font-family: 'NanumSquareRound',sans-serif;
}
.ticket_main{
  width: 100vw;
  height: 796px;
  background-image: url("../../img/sub_ticket/mainImg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  position: relative;
}
.ticket_main_text_wrap{
  position: absolute;
  width: 100%;
  height: 100%;

  left: 0;
  top: 0;

  display: flex;
  justify-content: center;
  align-items: center;

  background-color: rgba(0,0,0,0.3);
}
.ticket_main_H1{
  font-size: 70px;
  color: white;
  font-weight: 900;
  letter-spacing: -5px;
}

.ticket_type_area{
  position: relative;
}

.sub_page_side_nav{
  position: absolute;
  left: 35px;
  top: 50px;
  width: 250px;
  height: 100%;
}
.side_nav_button_wrap{
  position: sticky;
  left: 35px;
  top: 50px;
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.side_nav_button{
  width: 250px;
  height: 70px;
  border-radius: 70px;
  border: none;
  background-color : var(--orange);
  color: white;
  font-size: 28px;
  font-weight: 900;
}
  .side_nav_button.selected{
    background-color: var(--blue);
  }

.ticket_contents_wrap{
  width: 1280px;
  text-align: center;
  margin: auto;

  padding: 70px 0px;
}
.ticket_type_wrap{
  width: 90%;
  margin: auto;
  padding: 50px 60px;
  border-bottom: 1px dashed #ccc;
}

.ticket_type_name{
  font-size: 32px;
  font-weight: 900; 
}
.ticket_type_sub_name{
  margin-top: 10px;
  font-size: 15px;
}
.calender_wrap{
  margin-top: 30px;
  text-align: right;
}
.calender_name{
  font-size: 25px;
  font-weight: bold;
}
.calender_button{
  width: 50px;
  height: 50px;
  border-radius: 100%;
  margin-left: 20px;
  font-size: 25px;
  font-weight: bold;
  line-height: 0px;
  border: none;
  background-color: transparent;
  opacity: 0.3;
}
.calender_button.A{
  background-color: #fff0f4;
  color: #FE6CAA;
}
.calender_button.B{
  background-color: #E7F6FD;
  color: #11A4EE;
}
.calender_button.C{
  background-color: #E6F7ED;
  color: #09AE93;
}
.calender_button.D{
  background-color: #FFF3E5;
  color: #FF8900;
}
  .calender_wrap .calender_button.selected{
    opacity: 1.0;
    animation-name: button-up-and-down;
    animation-duration: 3s;
    animation-iteration-count: infinite;

    position: relative;
  }
  .calender_wrap .calender_button.selected::before{
    position: absolute;
    content: "\2714";
    right: 0;
    top: 0;
  }

@keyframes button-up-and-down{
  0%{
    transform: scale(1.0);
  }
  50%{
    transform: scale(1.2);
  }
  100%{
    transform: scale(1.0);
  } 
}
.calender_sub_text{
  margin-top: 15px;
  width: 100%;
  text-align: right;
}
.calender_open_button{
  font-size : 18px;
  font-weight: bold;
  padding: 10px 25px;
  border-radius: 30px;
  border: none;
  /* background: linear-gradient(#FFC329, #FF9000); */
  background-color: #FF9000;
  color: white;
}
.calender_sub_text p{
  margin-top: 5px;
  font-size: 13px;
}
.ticket_graph_wrap{
  margin: auto;
  margin-top: 20px;
  width: 900px;
}
.ticket_graph.multi{
  display: none;
}
.ticket_graph.multi.selected{
  display: block;
}
.ticket_graph.multi.A .ticket_row.name{
  background-color: #fff0f4;
  color: #FE6CAA;
}
.ticket_graph.multi.B .ticket_row.name{
  background-color: #E7F6FD;
  color: #11A4EE;
}
.ticket_graph.multi.C .ticket_row.name{
  background-color: #E6F7ED;
  color: #09AE93;
}
.ticket_graph.multi.D .ticket_row.name{
  background-color: #FFF3E5;
  color: #FF8900;
}

.ticket_graph.standard_365 .ticket_row.name{
  background-color: #F5EBF8;
  color : #7E00B9;
}
.ticket_graph.standard_350 .ticket_row.name{
  background-color: #FFF3E5;
  color : #FF8900;
}
.ticket_graph.standard_320 .ticket_row.name{
  background-color: #e0f5e3;
  color : #09AE93;
}
.ticket_graph.workDay_250 .ticket_row.name{
  background-color: #E7F6FD;
  color : #11A4EE;
}
.ticket_graph.senior_365 .ticket_row.name{
  background-color: #FFF0F4;
  color : #FE6CAA;
}
.ticket_graph.baby_365 .ticket_row.name{
  background-color: #FEF9E6;
  color : #FF8900;
}
.ticket_row{
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ticket_row span{
  display: inline-block;
  width: 20%;
  font-size: 18px;
  font-weight: bold;
}
.gap_dash_area{
  height: 0%;
  border-top: 1px dashed #CCC;
}
.gap_dash_area.two_column{
  width: 60%;
}
.gap_dash_area.three_column{
  width: 20%;
}

.ticket_notice_section{
  width: 1280px;
  margin: auto;

  padding: 0px 40px;
}
.pls_notice{
  font-size: 40px;
  font-weight: 900;

  padding-bottom : 30px;
  border-bottom: 1px dashed #CCC;
}

.registration_guide{
  padding : 40px 0px;
  border-bottom: 1px dashed #CCC;
}
.registration_guide:nth-of-type(2){
  border: none;
}
.guide_name_wrap{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.guide_name{
  font-size: 21px;
  font-weight: 900;
  margin-left: 12px;
}
.guide_name small{
  font-weight: 500;
  font-size: 16px;
}

.notice_contents{
  position: relative;
  padding: 0px 30px;
  margin-top: 40px;
}
.notice_contents.noMargin{
  margin-top: 5px;
}
  .notice_contents::before{
    content : '\203B';
    font-weight: 900;
    position: absolute;
    top: 0px;
    left: 6px;
    font-size: 16px;

  }

.notice_contents p{
  font-size: 16px;
}

.ticket_notice_button{
  margin-top: 40px;
  margin-bottom: 50px;
  padding: 15px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  border: none;


  font-size: 16px;
  color: white;
  font-weight: 900;

}
.ticket_notice_button.commuter_pass_promotion, .ticket_notice_button.preferential_price.multiple_children{
  /* background-color: var(--orange); */
  /* background: linear-gradient(#FFC329 , #FF9000); */
  background-color: #FF9000;
}
.ticket_notice_button.preferential_treatment,
.ticket_notice_button.preferential_price.pregnant_woman{
  /* background-color: var(--blue); */
  /* background: linear-gradient(#00DCEA , #009CEA); */
  background-color: #009CEA;
}
.ticket_notice_button.preferential_treatment.national_merit, 
.ticket_notice_button.proof_documents{
  /* background-color: var(--purple); */
  /* background: linear-gradient(#B982FF , #801DFF); */
  background-color: #801DFF;
}

.registration_inner_wrap{
  margin-top: 45px;
  border: 1px solid #DDD;
  border-radius: 30px;
  padding: 25px 45px;
  padding-bottom: 0px;
}

.registration_contents{
  margin-top: 20px;
  padding-left: 60px;
  margin-bottom: 40px;
}
.registration_contents p{
  font-size: 16px;
  position: relative;
  margin-bottom: 10px;
}
  .registration_contents p::before{
    content: '\2714';
    position: absolute;
    top: 0px;
    left: -20px;
  }

.ticket_notice_button_wrap{
  display: flex;
  gap: 20px;
  margin-bottom: 45px;
}
.ticket_notice_button_wrap button{
  margin: 0px;
}

.everland_season_ticket_wrap{
  margin: auto;
  margin-top: 45px;
  width: 60%;
  border-radius: 30px;
  overflow: hidden;
}
.everland_season_ticket_a{
  display: block;
  width: 100%;
}
.everland_season_ticket_img{
  width: 100%;
}
