/*====================================
# sec-ticket
==================================== */
.sec-ticket .ticket-info {
  padding: 1.5rem;
  border-radius: 10px 10px 0 0;
  color: var(--black);
}

.ticket-info h4 {
  margin-bottom: 20px;
  font-size: 20px;
  letter-spacing: 2px;
}

.ticket-info h4 span {
  font-size: 19px;
}

.ticket-box {
  border-radius: 10px 10px 0 0;
  background-color: #fff;
  margin: 10px 0;
  text-align: center;
  height: 90%;
  padding-bottom: 1rem;
  box-shadow: 0 3px 8px #b3b3b350;
  transition: all 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}

.ticket-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px #d1d1d150;
}

.ticket-title {
  color: #fff;
  padding: 1rem;
  border-radius: 13px 13px 0 0;
}

.ticket-box .ep01 {
  background-color: #fd5647;
}

.ticket-box .ep02 {
  background-color: #37c275;
}

.ticket-box .ep03 {
  background-color: #7cabf1;
}

.ticket-box .ep04 {
  background-color: #c57bff;
}

.ticket-title h3 {
  margin-bottom: 0;
}

.ticket-date {
  font-size: 20px;
  padding-top: 20px;
}

.ticket-price {
  line-height: 1.6;
  font-size: 40px;
  font-weight: bolder;
  color: #444;
}

.ticket-price p {
  font-size: 23px;
}

.ticket-price span {
  font-size: 21px;
}

.ticket-box .ticket-btn {
  border: none;
  position: relative;
  display: block;
  padding: 0.5rem 3rem;
  background-color: var(--C2);
  border-radius: 50px;
  color: #fff;
  line-height: 1.5;
  margin: 0.5rem auto;
}

.ticket-box .ticket-btn p {
  margin: 0;
  font-size: 20px;
}

.ticket-box .ticket-btn:hover {
  background-color: rgba(81, 135, 214, 0.8);
}

.ticket-box .btn-none {
  background-color: #b4b4b4;
}

.ticket-box .btn-none:hover {
  background-color: #b4b4b4;
}

.ticket-box .ticket-btn.btn-mail {
  background-color: #fd9047;
}

.ticket-box .ticket-btn.btn-mail:hover {
  background-color: rgba(253, 144, 71, 0.8);
}

.ticket-notice {
  background-color: #fff;
}

@media (max-width:768px) {
  .sec-ticket .ticket-info {
    padding: 20px;
  }

  .ticket-info p {
    letter-spacing: 0;
  }
}