@charset "UTF-8";
/* color */
/* font-size */
/* padding */
/* border */
.wrapper {
  margin: 0 auto;
  padding: 0 0 2rem;
  position: relative;
  width: 900px;
  color: #333333;
  text-align: left;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  scroll-behavior: smooth;
  /* min-height: 100vh; */
  min-height: calc(
    100vh - var(--footer-height, 0px)
  ); /* 変数の値が取得できない場合0で計算される */
  opacity: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.wrapper *,
.wrapper *::before,
.wrapper *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.wrapper :where(h1, h2, h3, h4, h5, ul, li, a, p) {
  overflow-wrap: break-word;
  line-height: 1em;
  text-wrap: wrap;
  padding: 0;
  margin: 0;
}
.wrapper h1,
.wrapper h2,
.wrapper h3,
.wrapper h4,
.wrapper h5 {
  margin: 0 0 calc(1em + 0.5rem) 0;
  text-align: center;
}
.wrapper p,
.wrapper li,
.wrapper a {
  line-height: 1.6;
}
.wrapper ul li {
  list-style: none;
}
.wrapper a {
  text-decoration: none;
  display: block;
}
.wrapper a:hover {
  text-decoration: none;
}
.wrapper img {
  max-width: 100%;
  vertical-align: bottom;
  max-inline-size: 100%;
  block-size: auto;
  line-height: 1px;
}
.wrapper section,
.wrapper div {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
}
.wrapper .date p {
  text-align: right;
}
.wrapper h1 {
  font-size: 28px;
  font-weight: 700;
}
.wrapper p {
  text-align: center;
}
.wrapper p span {
  border: 1px solid #606060;
  border-width: 0 0 1px 0;
  display: inline-block;
  padding: 0 0.5rem;
  margin-bottom: 0.5rem;
}
.wrapper .schedule {
  padding: 2rem 15%;
  border: 1px solid #606060;
  margin: 2rem auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
}
.wrapper .schedule h2 {
  font-size: 24px;
  font-weight: 700;
  display: block;
  width: 100%;
  margin-bottom: 0.5rem;
}
.wrapper .schedule .holiday_period {
  width: 100%;
  margin: 1rem 0 0;
}
.wrapper .schedule .holiday_period .period {
  padding-bottom: 0.3rem;
  font-size: 19px;
  font-weight: 500;
}
.wrapper .schedule .holiday_period .note {
  font-size: 14px;
}
.wrapper .caution {
  margin: 0 auto;
  padding: 1rem 1.5rem;
  background-color: #f5f5f5;
}
.wrapper .caution ul li {
  text-indent: -1.25em;
  padding-left: 1.25em;
}
.wrapper .caution ul li::before {
  content: "※";
  margin-right: 0.25em;
}
