.timetable-button {
  background-color: #444;
  color: white;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .timetable-button {
    width: 100%;
    justify-content: center;
  }
}
.timetable-button:hover {
  opacity: 0.8;
}

.ticket-icon {
  display: inline-flex;
  background-color: #ff8000;
  padding: 0.3rem;
  border-radius: 10px;
}
.ticket-icon img {
  height: 0.8rem;
  width: auto;
}

.ticket-body {
  padding: 2rem 0;
  display: grid;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .ticket-body {
    padding: 1rem 0;
  }
}
.ticket-usage-list {
  list-style: circle;
  list-style-position: inside;
  display: flex;
  flex-flow: column;
  gap: 0.25rem;
}
.ticket-stage-notice {
  border: 1px solid #ff7301;
  background-color: rgba(255, 115, 1, 0.1215686275);
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
}
.ticket-stage-notice > h3 {
  font-weight: bold;
  font-size: 0.88rem;
  color: #ff7301;
}
.ticket-stage-notice > p {
  font-size: 0.8rem;
  color: #ff7301;
  margin-top: 0.5rem;
}
.ticket-stage-notice > .timetable-button {
  margin-top: 1rem;
  background-color: #ff7301;
  color: white;
}
.ticket-date-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 2rem 0;
}
@media screen and (max-width: 767px) {
  .ticket-date-list {
    grid-template-columns: 1fr;
  }
}
.ticket-date-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: column;
  padding: 1rem;
  background-color: rgba(255, 115, 1, 0.1215686275);
  color: #ff7301;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .ticket-date-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
.ticket-date-item-day {
  font-size: 1.5rem;
  font-weight: bold;
}
.ticket-date-item-date {
  font-size: 1rem;
  font-weight: bold;
}
.ticket-date-item .notice {
  margin-top: 0.5rem;
  font-size: 0.7rem;
  opacity: 0.5;
}
.ticket-apply-stage-description {
  margin-top: 1rem;
}
.ticket-apply-description {
  padding-bottom: 1rem;
}
.ticket-apply-button {
  background-color: #ff7301;
  color: white;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  width: 100%;
  text-align: center;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .ticket-apply-button {
    width: 100%;
    justify-content: center;
    flex-flow: column;
  }
}
.ticket-apply-button:hover {
  opacity: 0.8;
}
.ticket-heading {
  width: 100%;
  height: auto;
  min-height: 250px;
  background: center/cover no-repeat url("/backnumber/v28/wp-content/themes/redone2/assets/images/tickets/ticket_backdrop.jpg");
  display: flex;
  justify-content: center;
  align-items: center;
}
.ticket-heading-container {
  color: white;
  font-weight: bold;
  text-align: center;
  letter-spacing: -10%;
}
.ticket-heading-container h1 {
  font-size: 3rem;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.4));
}
@media screen and (max-width: 767px) {
  .ticket-heading-container h1 {
    font-size: 2.5rem;
  }
}
.ticket-heading-container .emp {
  background-color: white;
  color: #ff7301;
  padding: 0.5rem;
}
.ticket-stage {
  background: #fff;
  border-radius: 10px;
  padding: 1rem;
  border: 1px solid #ff7301;
}
.ticket-stage-disclaimer {
  font-size: 0.8rem;
  margin: 0.5rem 0;
}
.ticket-stage-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 2rem 0;
}
@media screen and (max-width: 767px) {
  .ticket-stage-list {
    grid-template-columns: 1fr;
  }
}
.ticket-stage-price {
  font-size: 1.25rem;
  font-weight: bold;
}
.ticket-stage > h3 {
  font-weight: bold;
  font-size: 1.2rem;
  color: #ff7301;
}
.ticket-stage-description {
  font-size: 0.88rem;
  margin: 0.5rem 0;
}
.ticket-schedule-table {
  display: grid;
  grid-template-columns: auto 1fr;
}
.ticket-schedule-table p {
  padding: 0.88rem;
  border: #b3b3b3 1px solid;
  margin-top: -1px;
  margin-left: -1px;
  font-size: 0.8rem;
}
.ticket-schedule-table-datetime {
  font-weight: bold;
  font-size: 0.8rem;
}
.ticket-baseWidth {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media screen and (max-width: 767px) {
  .ticket-baseWidth {
    padding: 1rem;
  }
}