@charset "UTF-8";

/* ----------------------------------------
.calendar
---------------------------------------- */

.calendar-img {
  max-width: 118rem;
  margin: 0 auto 4rem;
}

.calendar-img img {
  width: 100%;
  height: auto;
}

.calendar-table {
  width: 100%;
  margin: 0 0 6rem 0;
  /* table-layout: fixed; */
}

.calendar-table th,
.calendar-table td {
  font-size: 1.6rem;
  line-height: 1.5;
  border: 1px solid #e9ecee;
  box-sizing: border-box;
  border-collapse: collapse;
  text-align: left;
}

.calendar-table th {
  background-color: #d0d5da;
  font-weight: bold;
  text-align: center;
  padding: 1.05rem 2rem;
}

.calendar-table td:first-child {
  background-color: #f2f6f8;
  width: auto;
  /* width: 25rem; */
}
.calendar-table td:nth-child(2),
.calendar-table td:last-child {
  /* width: calc((100% - 25rem) / 2); */
}
.calendar-table td {
  width: 40.8%;
  padding: 1.75rem 2rem;
}

.calendar-table a {
  position: relative;
  display: inline-block;
  padding-left: 2rem;
  font-size: 1.6rem;
  transition: color 0.12s;
}

.calendar-table a::before {
  content: "";
  position: absolute;
  top: 0.9rem;
  left: 0;
  transform: rotate(45deg);
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1px solid #0068b7;
  border-right: 1px solid #0068b7;
}

.calendar-table a.hover {
  color: #0068b7;
  text-decoration: underline;
}

.calendar-note {
  font-size: 1.4rem;
  line-height: 1.5;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.calendar-note::before {
  content: "※";
}
