/* -----------------------------------------------------------
	reservation
----------------------------------------------------------- */
.title_c1 {
  margin-bottom: 20px;
}

.txt_note {
  margin-top: 10px;
}

@media only screen and (max-width: 767px) {
  .txt_read {
    text-align: left !important;
  }
}

@media only screen and (max-width: 767px) {
  section {
    padding-right: 2%;
    padding-left: 2%;
  }
}

/* -----------------------------------------------------------
	layout
----------------------------------------------------------- */
@media only screen and (max-width: 767px) {
  .intro {
    padding-right: 2%;
    padding-left: 2%;
  }
}

.intro .inner_base {
  position: relative;
}

.sec_calender {
  padding: 0 0 120px;
}

.sec_time_schejule {
  position: relative;
  padding: 0 0 80px;
}
.sec_time_schejule:before {
  display: block;
  position: absolute;
  z-index: 11;
  top: -38px;
  left: 50%;
  width: 1px;
  height: 40px;
  margin-left: -1px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  content: "";
}
.sec_time_schejule .txt_read {
  margin-bottom: 30px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .sec_time_schejule .txt_read {
    padding-right: 2%;
    padding-left: 2%;
  }
}

.sec_confirm {
  position: relative;
  padding: 40px 0 100px;
  text-align: center;
}
.sec_confirm:before {
  display: block;
  position: absolute;
  z-index: 11;
  top: 0px;
  left: 50%;
  width: 1px;
  height: 40px;
  margin-left: -1px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  content: "";
}
.sec_confirm .txt_read {
  margin-bottom: 30px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .sec_confirm .txt_read {
    padding-right: 2%;
    padding-left: 2%;
  }
}
.sec_confirm .txt_confirm {
  width: 100%;
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 40px;
  padding: 60px 10px;
  background-color: #080808;
}
.sec_confirm .title_confirm {
  display: block;
  margin-bottom: 10px;
  font-size: 19px;
}

#confirm_ymd {
  margin-right: 5px;
  font-family: "futura-pt-n4", "futura-pt", sans-serif;
  font-weight: 400;
  font-size: 16px;
}

#confirm_hm {
  font-family: "futura-pt-n4", "futura-pt", sans-serif;
  font-weight: 400;
  font-size: 19px;
}

.time_table {
  flex-wrap: wrap;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.time_table-item {
  position: relative;
  width: calc(100% / 3);
  border-bottom: 1px solid #424242;
  font-family: "futura-pt-n4", "futura-pt", sans-serif;
  font-weight: 400;
  font-size: 20px;
  text-align: center;
}
.time_table-item:nth-child(3n), .time_table-item:nth-child(3n-1) {
  border-left: 1px solid #424242;
}
@media only screen and (max-width: 767px) {
  .time_table-item:nth-child(3n), .time_table-item:nth-child(3n-1) {
    border-left: none;
  }
}
@media only screen and (max-width: 767px) {
  .time_table-item {
    width: 100%;
  }
}
.time_table-item span {
  display: block;
  padding: 10px 1%;
}
.time_table-item span.disable {
  background-color: #353535;
  opacity: 0.3;
}
.time_table-item span.circle {
  background-color: #232323;
}
.time_table-item span.triangle {
  background-color: #b99838;
}
.time_table-item span.cross {
  background-color: #2d2d2d;
}
.time_table-item span:first-child {
  border-left: none;
}
.time_table-item span.circle:hover, .time_table-item span.triangle:hover {
  cursor: pointer;
  opacity: 0.9;
}

/* -----------------------------------------------------------
	txt
----------------------------------------------------------- */
.txt_pager {
  width: 100%;
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 20px;
  font-family: 'tex_gyre_adventorregular', sans-serif;
  font-size: 21px;
  text-align: center;
  font-weight: 800;
}

/* -----------------------------------------------------------
	table
----------------------------------------------------------- */
.table_calener {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  font-family: 'tex_gyre_adventorregular', sans-serif;
}
.table_calener tr th,
.table_calener tr td {
  width: calc(100% / 7);
  text-align: center;
}
.table_calener tr th {
  padding: 25px 4px 11px;
  font-weight: normal;
  font-size: 17px;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .table_calener tr th {
    padding: 3px 2px 9px;
    font-size: 16px;
  }
}
.table_calener tr td {
  padding: 19px 4px 20px;
  border-top: 1px solid rgba(183, 183, 183, 0.28);
  border-left: 1px solid rgba(183, 183, 183, 0.28);
  font-size: 16px;
}
.table_calener tr td.disable {
  background-color: #212121;
}
.table_calener tr td.disable span {
  opacity: 0.2;
}
.table_calener tr td.circle {
  background-color: #3e3b3b;
}
.table_calener tr td.circle span {
  position: relative;
  z-index: 1;
}
.table_calener tr td.circle span:after {
  content: "";
  position: absolute;
  display: block;
  width: 38px;
  height: 38px;
  border: solid 1px #fff;
  border-radius: 100px;
  opacity: .6;
  transition: background-color .2s linear, opacity .2s linear;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
}
.table_calener tr td.triangle {
  background-color: #b99838;
}
.table_calener tr td.cross {
  background-color: #2d2d2d;
}
.table_calener tr td.cross span {
  opacity: 0.4;
}
.table_calener tr td:first-child {
  border-left: none;
}
.table_calener tr td.circle:hover, .table_calener tr td.triangle:hover {
  cursor: pointer;
}

/* -----------------------------------------------------------
	status
----------------------------------------------------------- */
.l-formStatus {
  position: relative;
  width: 100%;
  height: 90px;
  margin: 40px 0 80px;
  text-align: center;
}

.l-formStatus:before {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 37px;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #484848;
}

.l-formStatus__li {
  position: relative;
  z-index: 2;
  display: inline-block;
  height: 100%;
  padding: 0 60px;
}

.l-formStatus__num {
  padding-bottom: 10px;
  font-size: 13px;
  line-height: 14px;
  letter-spacing: 2px;
  font-family: 'Cormorant SC', serif;
}

.l-formStatus__circle {
  width: 28px;
  height: 28px;
  margin: 0 auto;
  border-radius: 14px;
}

.l-formStatus__circle:after {
  content: "";
  display: block;
  position: relative;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  margin: 0 auto;
  background-color: #505050;
}

.l-formStatus__txt {
  padding-top: 15px;
  font-size: 15px;
  -webkit-transform-origin: 0px 0px;
  -ms-transform-origin: 0px 0px;
  transform-origin: 0px 0px;
}
@media only screen and (max-width: 767px) {
  .l-formStatus__txt {
    font-size: 13px;
  }
}

.l-formStatus__li.is-current .l-formStatus__num {
  color: #fff;
  font-size: 16px;
}

.l-formStatus__li.is-current .l-formStatus__circle {
  background-color: #636363;
}

.l-formStatus__li.is-current .l-formStatus__circle:after {
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: #ffffff;
}

.l-formStatus.is-yellow .l-formStatus__li .l-formStatus__circle:after {
  background-color: #fff20d;
}

.l-formStatus.is-yellow .l-formStatus__li.is-current .l-formStatus__num {
  color: #000000;
}

.l-formStatus.is-yellow .l-formStatus__li.is-current .l-formStatus__circle {
  background-color: #fff20d;
}

.l-formStatus.is-yellow .l-formStatus__li.is-current .l-formStatus__circle:after {
  background-color: #ffffff;
}

@media only screen and (max-width: 767px) {
  .l-formStatus {
    height: 90px;
    margin: 40px 0 40px;
  }

  .l-formStatus:before {
    top: 30px;
  }

  .l-formStatus__li {
    padding: 0 20px;
  }

  .l-formStatus__num {
    padding-bottom: 5px;
    font-family: "cerabasic-bold", sans-serif;
    font-size: 10px;
    line-height: 12px;
    letter-spacing: 2px;
    font-weight: normal;
  }

  .l-formStatus__txt {
    padding-top: 10px;
    font-size: 12px !important;
    font-size: 1.2rem !important;
    -webkit-transform-origin: 0px 0px;
    -ms-transform-origin: 0px 0px;
    transform-origin: 0px 0px;
  }
}
/* ------------
	for tab
------------ */
.idTabs li:not(:first-child) {
  margin-left: 20px;
}
.idTabs li a {
  opacity: .5;
}
.idTabs li a.selected {
  opacity: 1;
}

.item_idtabs {
  display: inline-block;
}

.confirm_bottom {
  margin-top: 50px;
}

.txt_confirm {
  position: relative;
  bottom: -4px;
  padding: 5px 2px 6px;
  min-width: 100px;
  font-size: 18px;
  border-bottom: 1px solid #4e4e4e;
}
@media only screen and (max-width: 767px) {
  .txt_confirm {
    font-size: 14px;
  }
}
