@charset "UTF-8";
/* IRカレンダー
---------------------------------------------------------- */
.calendar {
  margin-top: clamp(3.75rem, 3.25rem + 2.5vw, 6.25rem);
}

.calendar_wrap {
  display: grid;
  gap: 7.8125rem 1.25rem;
  margin-top: clamp(1.875rem, 1.75rem + 0.625vw, 2.5rem);
  padding-bottom: 6.25rem;
}
@media screen and (min-width: 576px) {
  .calendar_wrap {
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 7.5rem;
  }
}
@media screen and (min-width: 992px) {
  .calendar_wrap {
    gap: clamp(0.9375rem, 0.825rem + 0.5625vw, 1.5rem);
    grid-template-columns: repeat(4, 1fr);
  }
}

.calendar_head {
  display: grid;
  place-content: center;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  font-weight: 700;
  color: #FFFFFF;
  padding: 0.35em;
  background-color: #8A8A8A;
}

.calendar_list {
  display: grid;
  gap: clamp(0.625rem, 0.5rem + 0.625vw, 1.25rem);
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(0.9375rem, 0.875rem + 0.3125vw, 1.25rem);
}

.calendar_item {
  display: grid;
  place-content: center;
  height: clamp(4.125rem, 3.875rem + 1.25vw, 5.375rem);
  background-color: #F5F5F5;
}

.calendar_item-num {
  font-size: clamp(1.375rem, 1.3rem + 0.375vw, 1.75rem);
  font-weight: 500;
}

.calendar_item-num .month {
  display: inline-block;
  font-size: 0.5714285714em;
  margin-left: 0.2em;
}

.calendar_item--note {
  position: relative;
  color: #FFFFFF;
  background-color: #1397E1;
}

.calendar_note {
  position: absolute;
  bottom: 0;
  font-size: 10px;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
  display: grid;
  width: 100%;
  padding-top: 1.625rem;
}
@media screen and (min-width: 400px) {
  .calendar_note {
    width: 116px;
  }
}

.calendar_note-wrap {
  position: relative;
  display: block;
}
.calendar_note-wrap::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 1px;
  height: 1.625rem;
  background-color: #333;
}
.calendar_note-wrap::after {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #333;
}

.calendar_note--may {
  left: -20%;
  bottom: -6.25rem;
}
@media screen and (min-width: 576px) {
  .calendar_note--may {
    left: -57%;
  }
}
@media screen and (min-width: 768px) {
  .calendar_note--may {
    left: -40%;
  }
}
@media screen and (min-width: 992px) {
  .calendar_note--may {
    bottom: -7.5rem;
    left: -85%;
  }
}
@media screen and (min-width: 1200px), print {
  .calendar_note--may {
    left: -60%;
  }
}
.calendar_note--may .calendar_note-wrap {
  padding-top: 4.375rem;
}
@media screen and (min-width: 992px) {
  .calendar_note--may .calendar_note-wrap {
    padding-top: 5.625rem;
  }
}
.calendar_note--may .calendar_note-wrap::before {
  height: 4.0625rem;
}
@media screen and (min-width: 992px) {
  .calendar_note--may .calendar_note-wrap::before {
    height: 5.3125rem;
  }
}

.calendar_note--jun01 {
  bottom: -3.75rem;
  left: -66%;
}
@media screen and (min-width: 576px) {
  .calendar_note--jun01 {
    left: -95%;
  }
}
@media screen and (min-width: 768px) {
  .calendar_note--jun01 {
    left: -70%;
  }
}
@media screen and (min-width: 992px) {
  .calendar_note--jun01 {
    left: -110%;
  }
}
@media screen and (min-width: 1200px), print {
  .calendar_note--jun01 {
    left: -100%;
  }
}
.calendar_note--jun01 .calendar_note-wrap {
  padding-top: 1.875rem;
}
.calendar_note--jun01 .calendar_note-wrap::before {
  height: 1.5625rem;
}

.calendar_note--jun02 {
  left: 12%;
  bottom: -6.5rem;
}
@media screen and (min-width: 992px) {
  .calendar_note--jun02 {
    left: 0;
    bottom: -8.375rem;
  }
}
.calendar_note--jun02 .calendar_note-wrap {
  padding-top: 3.75rem;
}
@media screen and (min-width: 992px) {
  .calendar_note--jun02 .calendar_note-wrap {
    padding-top: 5.625rem;
  }
}
.calendar_note--jun02 .calendar_note-wrap::before {
  height: 3.4375rem;
}
@media screen and (min-width: 992px) {
  .calendar_note--jun02 .calendar_note-wrap::before {
    height: 5.3125rem;
  }
}

.calendar_note--jul,
.calendar_note--oct,
.calendar_note--jan {
  left: 20%;
  bottom: -4.625rem;
}
@media screen and (min-width: 576px) {
  .calendar_note--jul,
  .calendar_note--oct,
  .calendar_note--jan {
    left: 10%;
  }
}
@media screen and (min-width: 992px) {
  .calendar_note--jul,
  .calendar_note--oct,
  .calendar_note--jan {
    left: -15%;
  }
}
.calendar_note--jul .calendar_note-wrap,
.calendar_note--oct .calendar_note-wrap,
.calendar_note--jan .calendar_note-wrap {
  padding-top: 1.875rem;
}
.calendar_note--jul .calendar_note-wrap::before,
.calendar_note--oct .calendar_note-wrap::before,
.calendar_note--jan .calendar_note-wrap::before {
  height: 1.5625rem;
}

.home__calender_more {
  margin-top: 1.875rem;
  text-align: center;
}

.home__calender_more .button {
  width: clamp(16.25rem, 15.75rem + 2.5vw, 18.75rem);
}

.s_eirModule_date {
  width: auto;
}

.s_yearController {
  display: inline-block;
  position: relative;
}

.s_yearController::after {
  content: "";
  position: absolute;
  top: 45%;
  right: 10px;
  transition: 0.3s;
  transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  width: 7px;
  height: 7px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  pointer-events: none;
}

.s_eirSelect {
  border: 1px solid #333;
}

.s_eirSelect:hover {
  cursor: pointer;
}

.eirHeading {
  position: relative;
  font-size: clamp(1.375rem, 1.3rem + 0.375vw, 1.75rem);
  font-weight: 700;
  padding-bottom: 0.2857142857em;
  margin-bottom: 2.5rem;
  margin-top: 1.25rem;
}

.eirHeading::before,
.eirHeading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  height: 2px;
}

.eirHeading::before {
  width: 100%;
  background-color: #DCDCDC;
}/*# sourceMappingURL=style-calendar.css.map */