@charset "UTF-8";
/*
Theme Name: PODCAST EXPO - Ticket / LP Module
*/

/* ----------------------------------------------------------
   BANNER AREA
---------------------------------------------------------- */
.event-bnr-area {
  position: relative;
}

.event-bnr-area.type_pcwe {
  background-image: url('//podcastweekend.jp/wp-content/themes/pcwe/images/2024/icatch/all.gif');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 70vh;
}

.event-bnr-area.type_p7 {
  background-image: url('../../images/p7/bnr.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  height: 20vw;
}

.event-bnr-area .p7_logo {
  width: 14vw;
  position: absolute;
  left: 5%;
  top: 5vw;
}

.event-bnr-area .pcwe_logo {
  width: 20vw;
  position: absolute;
  left: 5%;
  top: 5.9vw;
}

.event-bnr-area h2 {
  position: absolute;
  right: 5%;
  top: 8vw;
  font-size: 1.8vw;
  font-weight: 500;
}


/* ----------------------------------------------------------
   HEADINGS & TEXTS
---------------------------------------------------------- */
h3 {
  font-size: 2em;
  font-weight: 500;
  margin-top: 6em;
  margin-bottom: 1em;
  padding-bottom: 0em;
  border-bottom: var(--w-line) dashed var(--c-line);
}
h3.catch_phrase {
border-bottom: none;
font-size: 2.3em;
margin-top: 1.6em;
margin-bottom: 1em;
}

.catch_phrase_text {
  font-size: 1.1em;
  line-height: 2.4em;
  margin-bottom: 6em;
  color: rgba(255, 255, 255, 0.7);
}

.catch_phrase_text strong {
  color: rgba(255, 255, 255, 1);
  font-weight: 400;
}

h4 {
  margin-top: 2em;
  margin-bottom: 0.7em;
  font-size: 1.1em;
  border-bottom: var(--w-line) dashed var(--c-line);
}


/* ----------------------------------------------------------
   CAUTION LIST
---------------------------------------------------------- */
ul.caution li {
  list-style: disc;
  margin-bottom: .8em;
  font-size: .8em;
  font-weight: 200;
  margin-left: 2em;
}

ul.caution li strong {
  display: inline-block;
  font-weight: 500;
  padding: 0 .3em;
}


/* ----------------------------------------------------------
   TICKET PRICING TABLE
---------------------------------------------------------- */
.ticket-box-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 3em auto;
  box-sizing: border-box;
}

.ticket-col {
  display: flex;
  flex-direction: column;
}

.ticket-header {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px 10px;
  text-align: center;
  letter-spacing: 1px;
  font-weight: 500;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  border-right: 2px solid #000;
}

.col-2day .ticket-header {
  border-right: 0;
}

.ticket-body {
  padding: 40px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.col-action {
  width: 36%;
}

.col-1day,
.col-2day {
  width: 32%;
}

.action-text-top {
  color: #00ebd6;
  font-weight: bold;
  margin: 0 0 15px;
  font-size: 1.1em;
}

.ticket-btn {
  display: inline-block;
  background-color: #fff;
  color: #000 !important;
  text-decoration: none;
  font-weight: 500;
  padding: 14px 30px;
  border-radius: 999px;
  margin-bottom: 15px;
  transition: opacity 0.3s;
  width: 100%;
  max-width: 280px;
  text-align: center;
  font-size: 1.2rem;
}

.ticket-btn:hover {
  opacity: 0.8;
}

.action-note {
  line-height: 1.6;
  margin: 0;
  color: #c4c4c4;
  font-size: .8em;
}

.action-note span {
  color: #fff;
  font-weight: 500;
}

.price-label {
  font-weight: bold;
  margin: 0 0 5px;
}

.price-value {
  color: #00ebd6;
  font-weight: 500;
  margin: 0 0 4px;
  font-size: 2em;
}

.price-normal {
  margin: 0 0 5px;
}

.price-normal span {
  font-size: .8em;
}

.price-note {
  opacity: 0.6;
  margin: 0;
  font-size: .7em;
}

.ticket-body.end {
  opacity: .4;
}

.ticket-body.end .ticket-btn {
  background: #a7a7a7;
}

/* SP Responsive */
@media (max-width: 768px) {
  .col-action {
    order: 3;
    width: 100%;
    border-right: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .col-1day {
    order: 1;
    width: 50%;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .col-2day {
    order: 2;
    width: 50%;
  }

  .price-value {
    font-size: 26px;
  }
}


/* ----------------------------------------------------------
   INFO LIST (DL/DT/DD)
---------------------------------------------------------- */
.event-info-dl {
  display: grid;
  grid-template-columns: 12em 1fr;
  margin: 0 auto;
  font-size: 1.2em;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.event-info-dl strong {
  font-weight: 500;
  display: contents;
}

.event-info-dl dt,
.event-info-dl dd {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0;
  box-sizing: border-box;
}

.event-info-dl dt {
  padding-right: 20px;
  display: flex;
  align-items: baseline;
  font-size: 1.1em;
}

.event-info-dl dd {
  display: block;
  align-items: center;
  flex-wrap: wrap;
}

.event-info-dl dd p {
  margin-bottom: 1em;
  display: block;
}

@media (max-width: 768px) {
  .event-info-dl {
    display: block;
  }

  .event-info-dl dt {
    border-bottom: none;
    padding-bottom: 5px;
    opacity: 0.6;
    font-size: 12px;
  }

  .event-info-dl dd {
    padding-top: 0;
    padding-left: 0;
  }
}