@charset "UTF-8";
:root {
  --black: black;
}

body.no-scroll {
  overflow: hidden;
}

@media (max-width: 767px) {
  .max767none {
    display: none;
  }
}
@media (min-width: 768px) {
  .min768none {
    display: none;
  }
}
#fv {
  background-color: var(--bgc_article);
}
#fv .fv_img {
  width: 100%;
  margin: 0 auto;
}

#aboutus {
  background-color: var(--bgc_article);
  padding: 40px 80px;
  display: flex;
}
#aboutus .about_left {
  width: 60%;
}
#aboutus .about_left h1 {
  margin-bottom: 20px;
}
#aboutus .about_left p {
  color: var(--black);
}
#aboutus .about_right {
  padding-left: 20px;
  width: 40%;
}

@media (max-width: 767px) {
  #aboutus {
    display: block;
    padding: 20px;
  }
  #aboutus .about_left, #aboutus .about_right {
    width: 100%;
  }
  #aboutus .about_left h1 {
    font-size: 1.3rem;
  }
  #aboutus .about_left p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  #aboutus .about_right {
    padding-left: 0;
    width: 100%;
  }
}
#activities {
  padding: 20px 0;
  margin: 0 auto;
  background-color: #A1E3F9;
}
#activities h2 {
  margin-bottom: 20px;
  text-align: center;
}
#activities .note {
  text-align: right;
  padding-right: 60px;
  font-size: 0.8rem;
  margin-bottom: 5px;
}
#activities .calendar_container {
  margin: 0 auto 40px;
  display: grid;
  gap: 40px 10px;
  grid-template-columns: repeat(6, 1fr);
  width: 90%;
}
#activities .calendar_container .month {
  margin-bottom: 10px;
  text-align: center;
}
#activities .calendar_container .event {
  height: 120px;
}
#activities .calendar_container .event ul {
  list-style-position: inside;
}
#activities .calendar_container .month_box:nth-child(odd) .month,
#activities .calendar_container .month_box:nth-child(odd) .event {
  background-color: #D1F8EF;
}
#activities .calendar_container .month_box:nth-child(even) .month,
#activities .calendar_container .month_box:nth-child(even) .event {
  background-color: #daefb3;
}
#activities .calendar_container .month, #activities .calendar_container .event {
  padding: 10px;
  border-radius: 5px;
}
#activities .popup-button {
  cursor: pointer;
  color: #007BFF; /* ブルー系でリンクっぽく */
  text-decoration: underline; /* 下線をつける */
}
#activities .popup-button:hover {
  color: #0056b3;
  text-decoration: none;
}
#activities #popup-overlay {
  width: 100dvw;
  height: 100dvh;
  background-color: black;
  opacity: 0.8;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
}
#activities #popup-overlay.is-active {
  display: block;
}
#activities #popup {
  width: 80dvw;
  max-height: 100dvh;
  position: fixed;
  top: 0;
  left: 10dvw;
  background-color: #fffff9;
  z-index: 4;
  transition: transform 1s ease;
  transform: scale(0.5);
  opacity: 0;
  pointer-events: none;
}
#activities #popup .close_btn {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 50px;
}
#activities #popup.is-active {
  transform: scale(1);
  opacity: 1;
  pointer-events: auto;
}

#popup_event {
  max-height: 100vh; /* 高さ制限 */
  overflow-y: auto; /* スクロール可能に */
}
#popup_event h2 {
  margin-top: 40px;
  font-size: 2rem;
}
#popup_event p {
  display: block;
  width: 60%;
  margin: 0 auto 40px;
  line-height: 1.6;
}
#popup_event .activity {
  margin: 0 auto 40px;
  width: 50%;
}
#popup_event .swiper {
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}
#popup_event .swiper-slide {
  position: relative;
}
#popup_event .swiper-slide h2 {
  position: absolute;
  background-color: #fff;
  border: 1px solid black;
}
#popup_event .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
#popup_event .swiper-button-next, #popup_event .swiper-button-prev {
  color: #fffff9;
}

@media (max-width: 767px) {
  #activities {
    padding: 20px;
  }
  #activities .note {
    text-align: center;
    padding-right: 0;
    font-size: 0.7rem;
  }
  #activities .calendar_container {
    margin: 0 auto 40px;
    gap: 10px;
    grid-template-columns: repeat(1, 1fr);
    width: 90%;
  }
  #activities .calendar_container .month_box {
    width: fit-content;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 50px 260px;
    gap: 10px;
    height: fit-content;
  }
  #activities .calendar_container .month_box .month {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  #activities #popup {
    width: 100dvw;
    left: 0;
  }
  #activities #popup .close_btn {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 50px;
  }
  #popup_event {
    max-height: 100vh; /* 高さ制限 */
    overflow-y: auto; /* スクロール可能に */
  }
  #popup_event p {
    width: 85%;
  }
  #popup_event .activity {
    width: 80%;
  }
}
#info {
  background-color: #a1e3f9;
  padding: 40px 0;
}
#info .info_wrap {
  display: flex;
  height: fit-content;
}
#info .info_wrap .next_event {
  width: 400px;
  height: 500px;
  margin: 0 auto;
}
#info .info_wrap .calendar {
  width: 440px;
  height: 440px;
  margin: 0 auto;
}

.bg_pattern1 {
  width: 100%;
  height: 100%;
  background-image: url(../img/bg_pattern1.png);
  background-size: conver;
  background-repeat: no-repeat;
}/*# sourceMappingURL=style.css.map */