@charset "utf-8";

/*-----( hero )-----*/

.sub-hero-frame {
  background: url(../img/event/bg_kv.jpg) center top / cover no-repeat;
}

.sub-hero__index {
  background: url(../img/event/bg_kv_index.jpg) center top / cover no-repeat;
}


/*-----( common )-----*/

.bg-01 {
  background: #006428;
}

.bg-02 {
  background: #D9B200;
}

.bg-03 {
  background: #DE782C;
}

.bg-04 {
  background: #936761;
}

.bg-05 {
  background: #95A579;
}

.bg-06 {
  background: #1F518B;
}

.bg-07 {
  background: #AF4F8A;
}


/*-----------------------------------------------
  index
-----------------------------------------------*/


/*-----( calendar )-----*/

.calendar {
  overflow: hidden;
  margin: 0 auto 127px;
}

.calendar-box {
  height: 864px;
  margin: 40px auto;
}

.calendar-box iframe {
  width: 100%;
  height: 100%;
}

.calendar-box .bubble {
  width: 80% !important;
}

.calendar .cmn__btn-01 {
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .calendar {
    margin: 0 auto;
  }
  .calendar-box {
    height: 600px;
    overflow: scroll;
  }
}

/*-----( kujanso )-----*/
.img-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.img-container img {
    width: 32% !important;
    height: auto;
}
@media (max-width: 768px) {
    .img-container {
        flex-wrap: wrap;
    }
    .img-container img {
        width: 45%;
        margin-bottom: 20px;
    }
}

/*-----( pickup )-----*/

.pickup {
  /* padding: 60px 0 20px; */
}

.pickup-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 40px auto 0;
}

.pickup-cards li {
  width: 47.27%;
  margin-bottom: 40px;
}

.pickup__tag {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 110px;
  height: 30px;
  margin: 30px 0 10px;
  color: #fff;
  font-weight: 500;
}

.pickup__ttl {
  color: #006428;
  font-size: 22px;
  font-weight: 700;
}

.pickup-cards p {
  margin: 10px 0 26px;
  font-weight: 500;
  line-height: 1.8;
}

.pickup-date {
  display: flex;
  padding: 25px 0 0;
  border-top: 1px solid #006428;
}

.pickup-date dt {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 100px;
  height: 30px;
  margin: 0 16px 0 0;
  border-radius: 15px;
  background: #3C1A1A;
  color: #fff;
  font-weight: 700;
}

.pickup-date dd {
  font-size: 20px;
  font-weight: 700;
}

.bnr__index-btm {
  display: block;
  margin: 80px auto 0;
}

@media only screen and (max-width: 767px) {
  .pickup {
    padding: 0;
  }
  .pickup-cards {
    display: block;
    margin: 30px auto 0;
  }
  .pickup-cards li {
    width: 100%;
  }
  .pickup__tag {
    width: 100px;
    height: 26px;
    margin: 20px 0 8px;
  }
  .pickup__ttl {
    font-size: 20px;
  }
  .pickup-cards p {
    margin: 0px 0 20px;
  }
  .pickup-date {
    display: block;
    padding: 20px 0 0;
  }
  .pickup-date dt {
    margin: 0 0 6px;
  }
  .pickup-date dd {
    font-size: 16px;
  }
}


/*-----------------------------------------------
  details
-----------------------------------------------*/

.details-nav {
  display: flex;
  margin: 43px auto 0;
}

.details-nav li {
  width: 14.28%;
  border-right: 1px solid #3C1A1A;
}

.details-nav li:first-child {
  border-left: 1px solid #3C1A1A;
}

.details-nav a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 40px;
  color: #006428;
  text-decoration: none;
  font-weight: 500;
}

.details-nav a::after {
  content: "";
  display: block;
  width: 9px;
  height: 5px;
  background: url(../img/common/arw_07.svg) left top / cover no-repeat;
}

.events {
  padding-top: 80px;
}

.e-head {
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
  margin: 0 auto 40px;
  padding: 0 0 0 4%;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.e-list {
  display: flex;
  flex-wrap: wrap;
}

.e-list li {
  width: 22.2727%;
  margin-left: 3.637%;
}

.e-list li:nth-child(4n+1) {
  margin-left: 0;
}

.e-list li:nth-child(n+5) {
  margin-top: 40px;
}

.e__ttl {
  padding: 23px 0 18px;
  border-bottom: 1px solid #006428;
  color: #006428;
  font-size: 16px;
  font-weight: 700;
}

.e-list p {
  margin: 8px 0 0;
  font-weight: 500;
  line-height: 1.9;
}

.e__day {
  display: inline-block;
  max-width: 100%;
  margin-top: 21px;
  padding: 2px 18px;
  background: #F8F7F2;
  border: 1px solid #006428;
  border-radius: 15px;
  color: #006428;
  font-size: 12px;
  font-weight: 700;
}

.e__sp {
  display: block;
  margin: 20px 0 0;
  color: #006428;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}

.e__note {
  display: block;
  margin-top: 16px;
  font-size: 12px;
}

@media only screen and (max-width: 767px) {
  .details-nav {
    flex-wrap: wrap;
    margin: 20px auto 0;
  }
  .details-nav li {
    width: 25%;
  }
  .details-nav li,
  .details-nav li:first-child {
    border: none;
  }
  .details-nav a {
    justify-content: center;
    height: 60px;
  }
  .details-nav a::after {
    margin-top: 10px;
  }
  .e-head {
    height: 40px;
    margin: 0 auto 30px;
    padding: 0 0 0 4%;
    font-size: 18px;
  }
  .events {
    padding-top: 40px;
  }
  .e-list {
    justify-content: space-between;
  }
  .e-list li {
    width: 47%;
    margin-left: 0;
  }
  .e-list li:nth-child(n+3),
  .e-list li:nth-child(n+5) {
    margin-top: 24px;
  }
}