@charset "UTF-8";

.content-box dl {
  display: flex;
  border-bottom: var(--aqua) solid 1px;
  padding: 2rem;
}
.content-box dl:first-child {
  padding-top: 0;
}
.content-box dt {
  width: 400px;
}
.content-box dd {
  line-height: 2;
}
.ticket-price {
  display: flex;
  text-align: right;
}
.ticket-price span {
  margin-right: 5rem;
}
@media (max-width: 1024px) {
  .content-box dl {
    display: block;
    width: 100%;
    padding: 0;
    padding-bottom: 1rem;
  }
  .content-box dt {
    width: 100%;
    margin: 1rem 0;
  }
  .ticket-price {
    text-align: left;
  }
  .ticket-price span {
    text-align: right;
    margin-right: 2rem;
  }
}
