/* info_time
----------------------------------- */
#info_time {
  max-width: 1260px;
  padding: 0 30px;
  margin: 90px auto 50px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
#info_time hgroup {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  font-weight: 500;
  margin-bottom: 15px;
}
#info_time hgroup h2 {
  font-size: 3.2rem;
}
#info_time hgroup .en {
  font-family: "Baloo 2", sans-serif;
  font-size: 2.4rem;
  color: var(--color-blue1);
  text-transform: uppercase;
  line-height: 1.3;
  transform: translateY(10%);
}
#info_time .info dl {
  max-width: 550px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 15px 30px;
}
#info_time .info dl dd a {
  text-decoration: underline;
}
#info_time .time {
  flex-basis: 580px;
}
#info_time .time table {
  width: 100%;
  border-top: solid 1px var(--color-gray1);
  margin-bottom: 20px;
  border-collapse: collapse;
}
#info_time .time table th,
#info_time .time table td {
  border-bottom: solid 1px var(--color-gray1);
  font-size: 1.6rem;
  font-weight: 500;
  vertical-align: middle;
  line-height: 1.2;
}
#info_time .time table thead th {
  padding: 0.3em 0;
}
#info_time .time table tbody th,
#info_time .time table tbody td {
  padding: 0.6em 0 0.4em;
}
#info_time .time table tbody th {
  font-family: "Baloo 2", sans-serif;
  font-weight: 500;
  width: 20%;
}
#info_time .time table tbody td {
  text-align: center;
  width: 11.42%;
  font-family: "Baloo 2", sans-serif;
}
#info_time .time table tbody tr:last-child th,
#info_time .time table tbody tr:last-child td {
  padding: 0;
}
#info_time .time > p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  #info_time {
    display: block;
  }
  #info_time .time {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  #info_time {
    padding: 0 2rem;
    margin: 4rem auto 3rem;
  }
  #info_time hgroup {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  #info_time hgroup h2 {
    font-size: 2.2rem;
  }
  #info_time hgroup .en {
    font-size: 1.4rem;
  }
  #info_time .info dl {
    max-width: none;
    gap: 1.5rem 1.5rem;
  }
  #info_time .time {
    margin-top: 3rem;
  }
  #info_time .time table {
    margin-bottom: 1rem;
  }
  #info_time .time table th,
  #info_time .time table td {
    font-size: 1.4rem;
  }
  #info_time .time table thead th.holiday {
    width: 13%;
  }
  #info_time .time table tbody th {
    width: 24%;
  }
  #info_time .time table tbody td {
    width: auto;
  }
  #info_time .time table tbody td.pm {
    width: 12%;
    font-size: 1.4rem;
  }
  #info_time .time p {
    font-size: 1.4rem;
  }
}