@charset "UTF-8";
.mv-bnr {
  position: fixed;
  bottom: 0;
  right: 0;
  display: block;
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .mv-bnr {
    width: 100%;
    bottom: 15px;
  }
}

.nav-openbtn {
  z-index: 1100;
}

.nav-wrapper {
  z-index: 1100;
}

.mv-bnr summary {
  display: inline-block;
  max-width: 600px;
  min-width: 300px;
  width: 25vw;
}
@media screen and (max-width: 767px) {
  .mv-bnr summary {
    max-width: none;
    width: 100%;
  }
}

.mv-bnr .modal-content {
  margin: 0 auto;
  padding: 50px 5px;
}

.info-img {
  max-width: 1280px;
  margin: 0 auto 60px;
}

.info-img a picture img {
  width: 100%;
}

/* モーダルウィンドウのスタイル */
details[open] .modal-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
}

details > summary {
  list-style: none;
  cursor: pointer;
}

/* モーダルコンテンツのスタイル */
.modal-inner {
  width: auto;
  height: 100%;
  display: flex;
  margin: 0 auto;
  padding: 0 50px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .modal-inner {
    display: block;
  }
}

.modal-inner img {
  height: auto;
  width: auto;
  max-height: 100%;
}

.modal-inner .modalClose {
  right: 0px;
  top: 0px;
  max-width: 50px;
}

/* モーダル内の閉じるボタン */
details[open] > .modal-inner > button {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: red;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}

details[open] > .modal-content > button:hover {
  background-color: darkred;
}

.schedule-archive {
  padding: 150px 15px 0;
  max-width: 1140px;
  margin: 0 auto 100px;
}
.schedule-archive a {
  color: #000;
}
.schedule-archive a:hover {
  opacity: 0.8;
}
.schedule-archive h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 40px;
  font-family: "Baskervville", serif;
}
.schedule-archive p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 30px;
}
.schedule-archive p span {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  color: #B2B2B2;
}
.schedule-archive .day-list .selectbox-3 {
  display: inline-flex;
  align-items: center;
  position: relative;
}
.schedule-archive .day-list .selectbox-3::after {
  position: absolute;
  right: 15px;
  width: 10px;
  height: 7px;
  background-color: #535353;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  pointer-events: none;
}
.schedule-archive .day-list .selectbox-3 select {
  appearance: none;
  min-width: 230px;
  height: 2.8em;
  padding: 0.4em calc(0.8em + 30px) 0.4em 0.8em;
  border: 1px solid #d0d0d0;
  border-radius: 25px;
  background-color: #fff;
  color: #333333;
  font-size: 1em;
  cursor: pointer;
}
.schedule-archive .day-list .list {
  padding-top: 15px;
  display: flex;
  align-items: end;
  justify-content: center;
}
.schedule-archive .day-list .list li {
  padding: 20px 2vw;
  position: relative;
}
@media screen and (max-width: 640px) {
  .schedule-archive .day-list .list li {
    padding: 5px;
  }
}
.schedule-archive .day-list .list li a {
  font-size: 20px;
}
.schedule-archive .day-list .list li span {
  position: absolute;
  top: -10px;
  font-size: 12px;
  color: #B2B2B2;
}
@media screen and (max-width: 640px) {
  .schedule-archive .day-list .list li span {
    top: auto;
    bottom: -20px;
  }
}
.schedule-archive .day-list .list li.current {
  font-size: 25px;
}
.schedule-archive .day-list .list li.current a {
  font-size: 25px;
  text-decoration: none;
  pointer-events: none;
  color: #000;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .schedule-archive .day-list .list {
    font-size: 11px;
    zoom: 0.8;
    padding-top: 10px;
    padding-bottom: 35px;
  }
}
.schedule-archive .s-list .inner .box {
  padding: 30px 0;
  border-top: 1px solid #B2B2B2;
  border-bottom: 1px solid #B2B2B2;
  border-bottom: none;
  transition: 0.3s;
}
@media screen and (max-width: 640px) {
  .schedule-archive .s-list .inner .box {
    padding: 30px 0 60px;
  }
}
.schedule-archive .s-list .inner .box:last-child {
  border-bottom: 1px solid #B2B2B2;
}
.schedule-archive .s-list .inner .box details {
  transition: 0.3s;
  position: relative;
}
.schedule-archive .s-list .inner .box details::after {
  left: 50%;
  bottom: 5px;
  position: absolute;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
  transform: rotate(-45deg);
  transition: 0.3s;
  margin: -10px;
}
@media screen and (max-width: 640px) {
  .schedule-archive .s-list .inner .box details::after {
    bottom: -20px;
  }
}
.schedule-archive .s-list .inner .box details[open]::after {
  transform: rotate(135deg);
}
.schedule-archive .s-list .inner .box details summary {
  width: 100%;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
@media screen and (max-width: 640px) {
  .schedule-archive .s-list .inner .box details summary {
    flex-flow: column;
  }
}
.schedule-archive .s-list .inner .box details summary .date {
  padding: 20px 30px 20px 0;
  font-size: 18px;
}
@media screen and (max-width: 640px) {
  .schedule-archive .s-list .inner .box details summary .date {
    font-size: 16px;
    padding: 0 0 20px;
  }
}
.schedule-archive .s-list .inner .box details summary .container {
  display: flex;
  width: 100%;
  flex: 1;
}
.schedule-archive .s-list .inner .box details summary .container .img {
  width: 200px;
  height: 200px;
}
.schedule-archive .s-list .inner .box details summary .container .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 640px) {
  .schedule-archive .s-list .inner .box details summary .container .img {
    margin: 0 auto 20px;
  }
}
.schedule-archive .s-list .inner .box details summary .container .title {
  flex: 1;
  display: flex;
  flex-flow: column;
  width: 100%;
  padding-left: 20px;
  position: relative;
}
.schedule-archive .s-list .inner .box details summary .container .title h2 {
  font-family: "Baskervville", serif;
  width: 100%;
  font-size: 30px;
}
.schedule-archive .s-list .inner .box details summary .container .title p {
  margin: 0;
  font-family: "Baskervville", serif;
  font-weight: 400;
  font-size: 25px;
  color: #B2B2B2;
  position: absolute;
  bottom: 10px;
  right: 0;
  text-align: right;
  display: flex;
  align-items: center;
}
.schedule-archive .s-list .inner .box details summary .container .title p span {
  margin: 0 10px 0 0;
  font-size: 22px;
}
@media screen and (max-width: 640px) {
  .schedule-archive .s-list .inner .box details summary .container .title {
    padding-bottom: 45px;
    padding-left: 0;
  }
  .schedule-archive .s-list .inner .box details summary .container .title h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 640px) {
  .schedule-archive .s-list .inner .box details summary .container {
    flex-flow: column;
  }
}
.schedule-archive .s-list .inner .box details summary:hover {
  opacity: 0.5;
}
.schedule-archive .s-list .inner .box details summary:hover .title p {
  color: #fff;
}
.schedule-archive .s-list .inner .box details summary:hover .title p span, .schedule-archive .s-list .inner .box details summary:hover .title p strong {
  color: #000;
}
@media screen and (max-width: 640px) {
  .schedule-archive .s-list .inner .box details summary:hover .title {
    background-color: #fff;
  }
  .schedule-archive .s-list .inner .box details summary:hover .title p {
    color: #333333;
  }
  .schedule-archive .s-list .inner .box details summary:hover .title p span, .schedule-archive .s-list .inner .box details summary:hover .title p strong {
    color: #333333;
  }
}
.schedule-archive .s-list .inner .box details .contents {
  border-top: 1px solid #B2B2B2;
  margin-top: 30px;
  padding: 30px 10px;
  animation: fadeIn 0.5s ease;
  color: #666;
}
.schedule-archive .s-list .inner .box details .contents p {
  font-size: 16px;
  font-weight: 400;
}
.schedule-archive .s-list .inner .box details .contents .btn-01 {
  transition: 0.3s;
  display: block;
  margin: 30px auto;
  max-width: 195px;
  text-align: center;
  padding: 10px 0;
  background-color: #fff;
  border: 1px solid #666;
  color: #000;
  border-radius: 50px;
  text-decoration: none;
  font-family: "Noto Serif JP", serif;
  z-index: 1000;
}
.schedule-archive .s-list .inner .box details .contents .btn-01:hover {
  background-color: #666;
  color: #fff;
}
@media screen and (max-width: 640px) {
  .schedule-archive {
    padding: 90px 15px 0;
  }
}

@keyframes s-fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.l-contents {
  top: 15px;
}
@media screen and (max-width: 640px) {
  .l-contents {
    zoom: 0.8;
  }
}

.l-nav {
  top: 32px;
}

.l-nav-wrapper nav {
  top: 82px;
}

.l-header {
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  width: 100%;
  z-index: 30;
}
.l-header .logo {
  padding: 15px 0 15px 80px;
}
.l-header .logo h1 {
  max-width: 140px;
}
.l-header .logo h1 img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 640px) {
  .l-header .logo {
    padding: 15px 0 15px 13px;
  }
}/*# sourceMappingURL=style.css.map */