/* 資訊 */
.sec-ticket {
  background-color: var(--black);
}

.sec-ticket .ticket-area {
  margin: 30px auto;
  padding: 30px 100px;
  border-radius: 2rem;
  background-color: var(--c4);
}

.ticket-area h3 {
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #fff;
}

.ticket-area h3 span {
  color: #fff;
}

.ticket-area h3 span small {
  font-size: 20px;
}

.ticket-area h4 {
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #fff;
  line-height: 1.6;
  font-size: 20px;
  letter-spacing: 2px;
}

.ticket-area h4 span {
  color: #fff;
  font-size: 17px;
}

.ticket-area h4 a {
  color: var(--c1);
}

.ticket-area h4 a:hover,
.ticket-area h4 a:focus {
  color: var(--c2);
}

/* 票 */
.ticket-box {
  border-radius: 2rem;
  margin: 1rem 0 4rem;
  text-align: center;
  border: 2px solid #fff;
}

.t01 {
  background-color: #7e4af7;
}

.t02 {
  background-color: #1e84e4;
}

.t03 {
  background-color: #1db56d;
}

.t04 {
  background-color: #d42d51;
}

.ticket-price {
  padding: 1rem;
}

.ticket-price h3 {
  padding-top: 0.5rem;
}

.ticket-price h4 {
  font-size: 40px;
  color: #fffd8c;
  letter-spacing: 1px;
}

.ticket-price h4 span {
  font-size: 25px;
}

.ticket-price p {
  margin-bottom: 0;
}

.ticket-box .btn-none {
  pointer-events: none;
}

.ticket-box .m-second-btn {
  padding: 15px 60px;
  margin: 0 auto 1rem;
  box-shadow: none;
  width: 100%;
  background-color: var(--c4);
  color: var(--c1);
  border: 2px solid var(--c1);
}

@media (max-width:768px) {
  .sec-ticket .ticket-area {
    margin: 0;
    padding: 25px;
  }

  .ticket-box {
    margin: 0.5rem 0;
  }
}