@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --mainBg:#D6DCE7;
}

body.jh {
  background: #fff;
  overflow-x: clip;
}

.l-section {
  width: 100%;
}
.l-section__inner {
  max-width: 1440px;
  width: 100%;
  height: auto;
  margin-inline: auto;
  padding-inline: clamp(1rem, -0.143rem + 5.71vw, 5rem);
}

.jh-logo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  margin-inline: auto;
  padding-block: 24px;
  padding-inline: clamp(1rem, -0.143rem + 5.71vw, 5rem);
  z-index: 10000;
  background-color: transparent; /* 初期は透明 */
  transition: background-color 0.3s ease; /* ふわっと切替 */
}
.jh-logo.jh-logo.scrolled {
  background-color: #ffffff;
  filter: drop-shadow(0px 4px 6px rgba(150, 150, 150, 0.4));
}
.jh-logo > a {
  display: block;
}
.jh-logo > a > img {
  max-width: 240px;
  height: auto;
  width: 100%;
}
@media (max-width: 768px) {
  .jh-logo > a > img {
    max-width: 200px;
  }
}

.jh-section {
  height: 100vh;
  min-height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .jh-section {
    height: auto;
    min-height: 0;
    margin-block: 120px 46px;
  }
}

.jh-front-image {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 46px;
}
.jh-front-title {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 46px;
}
.jh-front-summary {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.jh-front-image, .jh-front-title, .jh-front-summary {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1s ease, transform 0.8s ease;
}
.jh-front-image.show, .jh-front-title.show, .jh-front-summary.show {
  opacity: 1;
  transform: translateY(0);
}

.jh-flag {
  height: auto;
  min-height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 80px;
  margin-bottom: 80px;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 30%, rgb(214, 220, 231) 30%, rgb(214, 220, 231) 100%);
}
@media (max-width: 768px) {
  .jh-flag {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
.jh-flag__inner {
  position: relative;
}
.jh-flag-image {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 46px;
  position: relative;
  bottom: clamp(-6vw, -80px, -100px);
}
.jh-flag-image > img {
  width: 100%;
}
.jh-flag-summary {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.jh-spiral {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 80px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .jh-spiral {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
.jh-spiral-title {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 54px;
}
.jh-spiral-image {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 46px;
}
.jh-spiral-image > img {
  width: 100%;
}
.jh-spiral-summary {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 46px;
}
.jh-spiral__content-box {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 42px;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .jh-spiral__content-box {
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }
}
.jh-spiral__content-item {
  width: 100%;
  max-width: 480px;
}

.jh-schedule {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 80px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .jh-schedule {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
.jh-schedule-image {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 46px;
}

.jh-map {
  padding-bottom: 80px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .jh-map {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
.jh-map__inner h2 {
  max-width: 400px;
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .jh-map__content {
    max-width: none;
    width: 100%;
  }
}
.jh-map__content.js-scrollable {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0;
  white-space: nowrap;
}
.jh-map__content.js-scrollable > img {
  display: inline-block;
  width: 1200px;
  max-width: none;
  margin: 0 auto;
}

.js-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.js-fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

footer.l-footer {
  padding: 0;
  margin: 0;
  background: #D6DCE7;
}
footer .jh-footer__content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 5vw;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding-inline: clamp(1rem, -0.143rem + 5.71vw, 5rem);
  padding-top: 46px;
}
@media (max-width: 768px) {
  footer .jh-footer__content {
    flex-direction: column;
    align-items: center;
  }
}
footer .jh-footer__content-logo {
  max-width: 360px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
}
@media (max-width: 768px) {
  footer .jh-footer__content-logo {
    max-width: 400;
    align-items: center;
  }
}
footer .jh-footer__content-logo a {
  display: block;
  width: 100%;
}
footer .jh-footer__content-logo a.jh-foot-logo {
  max-width: 360px;
  text-decoration: none;
}
@media (max-width: 768px) {
  footer .jh-footer__content-logo a.jh-foot-logo {
    max-width: 320px;
  }
}
footer .jh-footer__content-logo a.jh-foot-logo .jh-foot-logo__note {
  display: block;
  margin-top: 6px;
}
footer .jh-footer__content-logo p > span {
  font-weight: 600;
}
@media (max-width: 768px) {
  footer .jh-footer__content-logo p {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  footer .jh-footer__content-logo p .sp-none {
    display: none;
  }
}
footer .jh-foot-logo {
  display: block;
  max-width: 360px;
  width: 100%;
}
footer p > small {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  text-align: center;
  padding-block: 16px 24px;
  margin: 0 auto;
}/*# sourceMappingURL=style.css.map */