html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0 auto;
  background-color: #fdf5e6;
  color: #333;
}

.logo_link {
  display: block;
  width: 3rem;
  position: fixed;
  top: 3rem;
  right: 1rem;
  z-index: 10;
}

.time_outer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #b1b1b1;
  z-index: 10;
  width: 100%;
}
.time_outer .time {
  text-align: center;
  color: #fdf5e6;
}
.time_outer .time:nth-child(odd) {
  background-color: #802b00;
}
.time_outer .time:nth-child(even) {
  background-color: #933100;
}

.area_outer {
  padding-bottom: 4rem;
}
.area_outer.first {
  padding-top: 4rem;
}
.area_outer.last {
  padding-bottom: 16rem;
}
.area_outer .area {
  font-family: "Darumadrop One", sans-serif;
  font-size: 2rem;
  margin-bottom: 2rem;
  scroll-margin-top: 4rem;
  width: -moz-max-content;
  width: max-content;
  margin-right: 0;
  margin-left: auto;
  padding: 1rem 2rem;
  color: #fff;
  background-color: #802b00;
  border-radius: 20px 0 0 20px;
}
.area_outer .field {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
  width: -moz-max-content;
  width: max-content;
  background: linear-gradient(transparent 60%, #f4bc5e 60%);
}
.area_outer .program {
  position: relative;
  height: -moz-max-content;
  height: max-content;
  margin-bottom: 1rem;
}
.area_outer .program.last {
  margin-bottom: 4rem;
}
.area_outer .program .bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.area_outer .program .bar .block {
  display: block;
  width: 100%;
  border: solid 1px #fff;
}
.area_outer .program .bar .block.a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #ffe7b9;
}
.area_outer .program .text {
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  display: block;
  padding-left: 2rem;
  padding: 1rem;
}
.area_outer .program .text .label {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.area_outer .program .text .time {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.area_outer .program .text .etc {
  font-size: 0.9rem;
  color: rgb(169, 0, 0);
}

.controller {
  font-family: "Darumadrop One", sans-serif;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background-color: rgb(255, 255, 255);
  z-index: 10;
  width: 100%;
  box-shadow: 0px 1px 9px rgba(0, 0, 0, 0.2);
}
.controller .day {
  font-size: 1.6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 50%;
  max-width: 30rem;
  margin: 1.5rem auto;
  text-align: center;
}
.controller .day > a {
  display: block;
  position: relative;
}
.controller .day > a.sat {
  color: rgb(169, 0, 0);
}
.controller .day > a.sat::after {
  background-color: rgb(169, 0, 0);
}
.controller .day > a.sun {
  color: rgb(0, 0, 181);
}
.controller .day > a.sun::after {
  background-color: rgb(0, 0, 181);
}
.controller .day > a::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  position: absolute;
  bottom: -1rem;
}
.controller .day > a.current::after {
  width: 100%;
}
.controller .btn {
  font-size: 1.6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 90%;
  max-width: 45rem;
  margin: 3rem auto 3rem;
  text-align: center;
}
.controller .btn > a {
  background-color: #b35900;
  color: #fff;
  display: block;
  padding: 0.5rem;
  border-radius: 10px;
}/*# sourceMappingURL=style.css.map */