@charset "UTF-8";

.event .l-inner {
  max-width: 1280px;
}

.event-lead {
  text-align: center;
  margin-bottom: 80px;
  font-size: 2.4rem;
}

.event-list {
  list-style: none;
}

.event-item {
  background: #fff;
  box-sizing: border-box;
  padding-bottom: 80px;
  border-radius: 0 0 20px 20px;
  filter: drop-shadow(0 1px 20px rgba(0, 0, 0, .1));
}

.event-item:not(:last-of-type) {
  margin-bottom: 80px;
}

.event-item__title {
  font-size: 3rem;
  text-align: center;
  padding: 14px 10px;
  box-sizing: border-box;
  background: linear-gradient(45deg, #DAA520, #DAD120, #DAA520);
  color: #fff;
  font-weight: 700;
  border-radius: 20px 20px 0 0;
}

.l-col__event {
  padding: 60px 40px;
  justify-content: space-around;
  box-sizing: border-box;
}

.event-item__img {
  width: 45%;
}

.event-item__inner {
  width: 45%;
}

.event-item__lead {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.event-info {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.event-info>dt {
  width: 22.5%;
  background: rgba(0, 0, 0, .1);
  text-align: center;
  border-radius: 4px;
  font-weight: 700;
}

.event-info>dt:not(:last-of-type),
.event-info>dd:not(:last-of-type) {
  margin-bottom: 4px;
}

.event-info>dd {
  width: 75%;
}

.price-title {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.price-title::before {
  display: block;
  content: '';
  width: 14px;
  height: 14px;
  background: #FDD070;
  border-radius: 50vh;
  margin-right: 8px;
  flex-shrink: 0;
}

.price-title::after {
  display: block;
  content: '';
  flex: 1;
  border-top: 1px solid #e5e7eb;
  margin-left: 8px;
}

.price-list {
  display: flex;
}

.price-list__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.4;
  width: 50%;
  padding: 14px;
  box-sizing: border-box;
  background: #EAEEF6;
}

.price-list__title-sub {
  font-size: 1.4rem;
}

.price-list__title-main {
  font-size: 2rem;
  font-weight: 700;
}

.price-list__inner {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 10px;
  box-sizing: border-box;
  background: #F6F7FB;
}

.price-time {
  padding: 0 14px;
  background: var(--bg-orange);
  color: #fff;
  border-radius: 50vh;
  font-size: 1.8rem;
  font-weight: 700;
  margin-right: 10px;
}

.price-num {
  font-size: 1.8rem;
}

.price-num>span {
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: -.05em;
  margin-right: 5px;
  line-height: 1;
}

.event-link {
  width: 70%;
  margin: 0 auto;
}

.event-link__lead-wrapper {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.event-link__lead {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.event-link__lead::before,
.event-link__lead::after {
  display: block;
  content: '';
  width: 2px;
  height: 30px;
  border-left: 2px solid #ccc;
}

.event-link__lead::before {
  transform: rotate(-20deg);
  margin-right: 24px;
}

.event-link__lead::after {
  transform: rotate(20deg);
  margin-left: 24px;
}

@media screen and (max-width:1280px) {
  .event-item__img {
    width: 50%;
  }
}

@media screen and (max-width:1024px) {
  .l-col__event {
    flex-direction: column;
    align-items: center;
    padding: 60px 10%;
  }

  .event-item__img {
    width: 100%;
    margin-bottom: 30px;
  }

  .event-item__inner {
    width: 100%;
  }

  .event-link {
    width: 95%;
    margin: 0 auto;
  }
}

@media screen and (max-width:896px) {
  .l-col__event {
    padding: 60px 7.5%;
  }
}

@media screen and (max-width:787px) {}

@media screen and (max-width:680px) {}

@media screen and (max-width:480px) {
  .event-lead {
    width: 95%;
    font-size: 1.8rem;
    text-align: justify;
    margin: 0 auto 30px auto;
  }

  .event-lead br:nth-of-type(1) {
    display: none;
  }

  .event-item__title {
    font-size: 2.4rem;
    padding: 10px;
  }

  .l-col__event {
    padding: 20px 5%;
  }

  .event-item {
    padding-bottom: 40px;
  }

  .event-item__lead {
    font-size: 1.6rem;
  }

  .price-list {
    flex-direction: column;
  }

  .event-item:not(:last-of-type) {
    margin-bottom: 40px;
  }

  .price-list__title {
    width: 100%;
  }

  .price-list__inner {
    width: 100%;
  }

  .price-notice {
    text-align: center;
  }

  .event-link {
    width: 90%;
  }
}