/* --------------------------------------------------
  #event__info
-------------------------------------------------- */
/* #event__info pc */
/* ============================================ */
#event__info {
  position: relative;
  z-index: 2;
  border-radius: 0;
}

#event__info .inner {
  display: flex;
  flex-direction: column;
  width: 600px;
  padding: 0;
  margin: 0 auto;
}

#event__info .inner .text__wrap h1 {
  margin: 20px 0 0;
  font-weight: 600;
}

#event__info .inner .text__wrap p {
  margin: 15px 0 0;
  font-size: 12px;
}

/* --------------------------------------------------
    #event__flow
  -------------------------------------------------- */
/* #event__flow pc */
/* ============================================ */
#event__flow {
  max-width: 1100px;
  padding: 0 50px;
  margin: 40px auto 0;
}

#event__flow ul {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
}

#event__flow ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25%;
  height: 60px;
  text-align: center;
}

#event__flow ul li p {
  line-height: 1.3;
  padding: 4px 0 0 10px;
}

#event__flow ul .step01 {
  z-index: 5;
  border-radius: 8px 0 0 8px;
}

#event__flow ul .step02 {
  z-index: 4;
}

#event__flow ul .step03 {
  z-index: 3;
}

#event__flow ul .step04 {
  z-index: 2;
}

#event__flow ul .step05 {
  z-index: 1;
  border-radius: 0 8px 8px 0;
}

#event__flow ul .step05::before {
  display: none;
}

#event__flow ul .past {
  position: relative;
  background-color: #E8EAFF;
}

#event__flow ul .past::before {
  position: absolute;
  top: 0;
  right: -12px;
  width: 12px;
  height: 60px;
  content: "";
  background-image: url("../img/common/img_arrow_past.png");
  background-size: cover;
}

#event__flow ul .past p {
  color: #4367c3;
}

#event__flow ul .current {
  position: relative;
  background-color: #0C6DFF;
}

#event__flow ul .current::before {
  position: absolute;
  top: 0;
  right: -12px;
  width: 12px;
  height: 60px;
  content: "";
  background-image: url("../img/common/img_arrow_current.png");
  background-size: cover;
}

#event__flow ul .current p {
  color: #fff;
}

#event__flow ul .future {
  position: relative;
  background-color: #E0E0E0;
}

#event__flow ul .future::before {
  position: absolute;
  top: 0;
  right: -12px;
  width: 12px;
  height: 60px;
  content: "";
  background-image: url("../img/common/img_arrow_future.png");
  background-size: cover;
}

#event__flow ul .future:last-child::before {
  display: none;
}

#event__flow ul .future p {
  color: #bbb;
}

/* #event__flow sp */
/* ============================================ */
@media screen and (max-width: 767px) {
  #event__flow {
    max-width: 100%;
    padding: 0;
  }

  #event__flow ul .step01 {
    border-radius: 0;
  }

  #event__flow ul .step05 {
    border-radius: 0;
  }
}

/* --------------------------------------------------
    #event__head
  -------------------------------------------------- */
/* #event__head pc */
/* ============================================ */
.border{
  border-bottom: 1px solid #d6d6d6;
  width: 1000px;
  padding: 0 50px;
  margin: 0 auto;
}

#event__head {
  padding: 40px 0;
  margin: 0 auto ;
  width: 1100px;
}

#event__head .calendar__title-wrap {
  display: flex;
  align-items: center;
  position: relative;
}

#event__head .back__btn {
  display: inline-block;
}

#event__head .back__btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px 12px 30px;
  margin: 0 0 30px;
  border: 1px solid #1d1d1d;
  border-radius: 8px;
  box-shadow: 0 0 10px 0 #f4f4f4;
  transition: all .3s;
}

#event__head .back__btn a:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 12px;
  width: 6px;
  height: 6px;
  margin: auto;
  content: "";
  border: 0;
  border-top: solid 1px #1d1d1d;
  border-right: solid 1px #1d1d1d;
  transform: rotate(-135deg);
}

/* hover */
#event__head .back__btn a:hover {
  background-color: #1d1d1d;
}

#event__head .back__btn a:hover p {
  color: #fff;
}

#event__head .back__btn a:hover::after {
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
}


#event__head .next {
  margin: 0 0 0 10px;
}

#event__head .number {
  position: absolute;
  left: 110px;
}

#event__head .number p.calendar__title-year {
  font-size: 20px;
}

#event__head .number h1.calendar__title {
  font-size: 20px;
  line-height: 1;
}

#event__head .last a,
#event__head .next a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #1d1d1d;
  border-radius: 20px;
  box-shadow: 0 0 10px 0 #f4f4f4;
  transition: all 0.3s;
}

#event__head .last a::after,
#event__head .next a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6px;
  height: 6px;
  margin: auto;
  content: "";
  border: 0;
  border-top: solid 1px #1d1d1d;
  border-right: solid 1px #1d1d1d;
}

/* hover */
#event__head .last a:hover,
#event__head .next a:hover {
  background-color: #1d1d1d;
}

#event__head .last a:hover:after,
#event__head .next a:hover:after {
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
}


#event__head .last a::after {
  left: 17px;
  transform: rotate(-135deg);
}

#event__head .next a::after {
  right: 17px;
  transform: rotate(45deg);
}

/* 月選択クリック　disabled付与時 */
#event__head .disabled a {
  pointer-events: none;
  border: 1px solid #D6D6D6;
  box-shadow: none;
}

#event__head .disabled a:after {
  border-top: solid 1px #D6D6D6;
  border-right: solid 1px #D6D6D6;
}

/* #event__head sp */
/* ============================================ */
@media screen and (max-width: 767px) {
  #event__head {
    width: 100%;
  }

  #event__head .calendar__title-wrap {
    justify-content: space-between;
  }

  #event__head .next {
    margin: 0;
  }

  #event__head .number {
    position: static;
  }

}