@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700&display=swap");

:root {
  --design-width: 1200px;
  --site-mobile-max-width: 430px;
  --site-desktop-max-width: 1080px;
  --site-desktop-gutter: clamp(36px, 4vw, 72px);
  --site-max-width: var(--site-mobile-max-width);
  --render-width: min(100vw, var(--site-max-width));
  --render-scale: calc(var(--render-width) / var(--design-width));
  --page-bg: #f4f2ed;
  --jp-serif: "Noto Serif JP", "Noto Serif CJK JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  background: var(--page-bg);
  color: #050505;
  font-family: var(--jp-serif);
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
}

.site-loader {
  display: none;
}

.has-js .site-loader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  background: #0d0c09;
  color: #f8f3e8;
  opacity: 1;
  visibility: visible;
  transition: opacity 520ms ease, visibility 520ms ease;
}

.has-js .site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader[hidden] {
  display: none !important;
}

.site-loader-inner {
  display: grid;
  gap: 22px;
  justify-items: center;
}

.site-loader-mark {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
}

.site-loader-line {
  position: relative;
  width: 150px;
  height: 2px;
  overflow: hidden;
  background: rgba(248, 243, 232, 0.26);
}

.site-loader-line::before {
  content: "";
  position: absolute;
  inset: 0;
  width: var(--loader-progress, 0%);
  background: #f8f3e8;
  transition: width 380ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

body[data-page="index"] {
  background-color: #ece9df;
  background-image: url("background.jpg");
  background-position: top center;
  background-repeat: repeat-y;
  background-size: 100% auto;
}

.site-shell {
  width: var(--render-width);
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background: #f8f7f0;
}

body[data-page="index"] .site-shell,
body[data-page="index"] .render-section,
body[data-page="index"] .psd-section {
  background: transparent;
}

.site-home-button {
  position: fixed;
  left: max(10px, calc((100vw - var(--render-width)) / 2 + 10px));
  top: 10px;
  z-index: 90000;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(83, 99, 63, 0.32);
  border-radius: 6px;
  background: rgba(248, 247, 240, 0.92);
  color: #2f3c26;
  font-family: var(--jp-serif);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(20, 24, 18, 0.12);
  backdrop-filter: blur(8px);
  pointer-events: none;
  transition:
    opacity 240ms ease,
    transform 240ms ease,
    visibility 0s linear 240ms;
}

.site-home-button.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 0s;
}

.site-home-button:focus-visible {
  outline: 2px solid #53633f;
  outline-offset: 3px;
}

.render-section {
  position: relative;
  display: block;
  width: 100%;
  height: calc(var(--section-height) * var(--render-scale));
  overflow: hidden;
  background: #ffffff;
}

body[data-page="index"] .render-index-04 {
  display: none;
}

body[data-page="index"] .render-index-02 {
  --section-height: 2265px !important;
}

body[data-page="index"] .render-index-02 .section-stage,
body[data-page="index"] .render-index-02 .section-index-02 {
  --section-height: 2265px !important;
  height: 2265px !important;
}

body[data-page="index"] .render-index-01 {
  height: max(calc(var(--section-height) * var(--render-scale)), 100svh);
}

body[data-page="index"] .render-index-01 .section-stage {
  --hero-cover-scale: max(var(--render-scale), calc(100svh / var(--section-height)));
  left: 50%;
  transform: translateX(-50%) scale(var(--hero-cover-scale));
  transform-origin: top center;
}

.section-stage {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--section-width);
  height: var(--section-height);
  transform: scale(var(--render-scale));
  transform-origin: top left;
}

.psd-section {
  position: relative;
  display: block;
  width: var(--section-width);
  height: var(--section-height);
  overflow: hidden;
  background: #ffffff;
}

.layer {
  position: absolute;
}

img.layer {
  vertical-align: bottom;
}

.type-text {
  margin: 0;
  color: #050505;
  font-family: var(--jp-serif) !important;
  font-weight: 600;
  text-rendering: geometricPrecision;
  line-break: strict;
}

.section-hotspots {
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
}

.hotspot {
  position: absolute;
  display: block;
  text-indent: -9999px;
  overflow: hidden;
  pointer-events: auto;
}

.hotspot-inasan {
  left: 6.583333%;
  top: 77.377049%;
  width: 86.833333%;
  height: 18.922717%;
}

.psd-carousel {
  overflow: hidden;
  background-color: #ffffff;
  cursor: pointer;
  touch-action: pan-y;
  user-select: none;
}

.carousel-track {
  position: absolute;
  inset: 0;
  display: flex;
  height: 100%;
  transform: translate3d(var(--carousel-offset, 0%), 0, 0);
  transition: transform 680ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.carousel-track.is-jump-reset {
  transition: none;
}

.carousel-panel {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.carousel-slide {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.carousel-slide.is-active {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .site-loader-line::before {
    transition: none;
  }
}

.site-footer-stage {
  background: #000000;
}

.s-index-01-layer-4 {
  width: 1200px !important;
  height: 2135px !important;
  object-fit: cover !important;
}

.footer-logo-only {
  left: 534px;
  top: 78px;
  width: 132px;
  height: 386px;
  display: block;
  object-fit: fill;
  z-index: 2;
}

@media (min-width: 720px) {
  :root {
    --site-max-width: min(var(--site-desktop-max-width), calc(100vw - (var(--site-desktop-gutter) * 2)));
  }

  html,
  body {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }

  body {
    padding: 0;
  }

  body[data-page="index"] {
    background-image: none;
  }

  body[data-page="index"] .site-shell {
    background-color: #f8f7f0;
    background-image: url("background.jpg");
    background-position: top center;
    background-repeat: repeat-y;
    background-size: 100% auto;
  }

  body[data-page="index"] .render-index-01 {
    height: calc(var(--section-height) * var(--render-scale));
  }

  body[data-page="index"] .render-index-01 .section-stage {
    left: 0;
    transform: scale(var(--render-scale));
    transform-origin: top left;
  }

  .site-shell {
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
  }
}

@media (min-width: 720px) and (orientation: landscape) {
  body[data-page="index"] .site-shell {
    overflow: visible;
  }

  body[data-page="index"] .render-index-01 {
    left: 50%;
    width: 100vw;
    height: 100vh;
    height: 100svh;
    margin-left: -50vw;
    overflow: hidden;
  }

  body[data-page="index"] .render-index-01 .section-stage {
    left: 0;
    width: 100%;
    height: 100%;
    transform: none;
    transform-origin: top left;
  }

  body[data-page="index"] .render-index-01 .psd-section {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  body[data-page="index"] .render-index-01 .s-index-01-layer-4.hero-background,
  body[data-page="index"] .render-index-01 .s-index-01-layer-4.hero-background-fallback {
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
    object-fit: cover !important;
  }
}

@media (min-width: 900px) and (min-height: 1400px) and (orientation: portrait) {
  body[data-page="index"] .site-shell {
    overflow: visible;
  }

  body[data-page="index"] .render-index-01 {
    left: 50%;
    width: 100vw;
    height: 100vh;
    height: 100svh;
    margin-left: -50vw;
    overflow: hidden;
  }

  body[data-page="index"] .render-index-01 .section-stage {
    left: 0;
    width: 100%;
    height: 100%;
    transform: none;
    transform-origin: top left;
  }

  body[data-page="index"] .render-index-01 .psd-section {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  body[data-page="index"] .render-index-01 .s-index-01-layer-4.hero-background,
  body[data-page="index"] .render-index-01 .s-index-01-layer-4.hero-background-fallback {
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
    object-fit: cover !important;
  }

  body[data-page="index"] .render-index-01 .hero-title {
    left: calc(50% - 55px) !important;
    top: clamp(82px, 6svh, 116px) !important;
    width: 110px !important;
    height: 421px !important;
  }

  body[data-page="index"] .render-index-01 .s-index-01-layer-3.hero-body {
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: clamp(520px, 30svh, 620px) !important;
    width: 350px !important;
    height: 760px !important;
    font-size: 54px !important;
  }
}

@media (min-width: 1200px) and (orientation: landscape) {
  body[data-page="index"] .render-index-01 .s-index-01-layer-4.hero-background,
  body[data-page="index"] .render-index-01 .s-index-01-layer-4.hero-background-fallback {
    height: 100% !important;
  }
}


.section-index-01 {
  width: 1200px;
  height: 2135px;
}

.s-index-01-layer-1 {
  left: 858px;
  top: 1492px;
  width: 301px;
  height: 302px;
  z-index: 9999;
  opacity: 0.2;
  display: block;
  object-fit: fill;
}
.s-index-01-layer-2 {
  left: 545px;
  top: 112px;
  width: 110px;
  height: 421px;
  z-index: 9998;
  display: block;
  object-fit: fill;
}
.s-index-01-layer-3 {
  left: 448px;
  top: 571px;
  width: 287px;
  height: 707px;
  z-index: 9997;
  display: block;
  object-fit: fill;
}
.s-index-01-layer-4 {
  left: 0px;
  top: 0px;
  width: 1200px;
  height: 2135px;
  z-index: 9996;
  display: block;
  object-fit: fill;
}

.section-index-02 {
  width: 1200px;
  height: 2135px;
}

.s-index-02-layer-1 {
  left: 79px;
  top: 1652px;
  width: 1042px;
  height: 404px;
  z-index: 9999;
  display: block;
  object-fit: fill;
}
.s-index-02-layer-2 {
  left: 838px;
  top: 1364px;
  width: 282px;
  height: 86px;
  z-index: 9998;
  display: block;
  margin: 0;
  overflow: visible;
  font-family: "游明朝体 Pr6N", "Yu Mincho Pr6N D", "YuMinPr6N-Demi", "Yu Mincho", "Hiragino Mincho ProN", "Yu Gothic", sans-serif;
  font-size: 20px;
  text-align: right;
  word-break: keep-all;
  white-space: pre-wrap;
  overflow-wrap: normal;
  line-height: 1.2;
}
.s-index-02-layer-3 {
  left: 80px;
  top: 818px;
  width: 1040px;
  height: 479px;
  z-index: 9997;
  display: block;
  margin: 0;
  overflow: visible;
  font-family: "游明朝体 Pr6N", "Yu Mincho Pr6N D", "YuMinPr6N-Demi", "Yu Mincho", "Hiragino Mincho ProN", "Yu Gothic", sans-serif;
  font-size: 20px;
  text-align: left;
  word-break: keep-all;
  white-space: pre-wrap;
  overflow-wrap: normal;
  line-height: 1.2;
}
.s-index-02-layer-4 {
  left: 79px;
  top: 208px;
  width: 1042px;
  height: 569px;
  z-index: 9996;
  display: block;
  object-fit: fill;
}
.s-index-02-layer-5 {
  left: 511px;
  top: 87px;
  width: 189px;
  height: 60px;
  z-index: 9995;
  display: block;
  margin: 0;
  overflow: visible;
  font-family: "游明朝体 StdN", "Yu Mincho StdN B", "YuMinStdN-Bold", "Yu Mincho", "Hiragino Mincho ProN", "Yu Gothic", sans-serif;
  font-size: 40px;
  text-align: center;
  word-break: keep-all;
  white-space: pre;
  overflow-wrap: normal;
  font-weight: 700;
  line-height: 1.2;
}
.s-index-02-layer-6 {
  left: 0px;
  top: 0px;
  width: 1200px;
  height: 2135px;
  z-index: 9994;
  display: block;
  object-fit: fill;
}

.section-index-03 {
  width: 1200px;
  height: 2135px;
}

.s-index-03-layer-1 {
  left: 470px;
  top: 1970px;
  width: 260px;
  height: 83px;
  z-index: 9999;
}
.s-index-03-layer-2 {
  left: 64px;
  top: 25px;
  width: 169px;
  height: 47px;
  z-index: 9998;
  display: block;
  margin: 0;
  overflow: visible;
  font-family: "游明朝体 Pr6N", "Yu Mincho Pr6N D", "YuMinPr6N-Demi", "Yu Mincho", "Hiragino Mincho ProN", "Yu Gothic", sans-serif;
  font-size: 30px;
  text-align: left;
  word-break: keep-all;
  white-space: pre;
  overflow-wrap: normal;
  line-height: 1.2;
}
.s-index-03-layer-3 {
  left: 0px;
  top: 0px;
  width: 260px;
  height: 83px;
  z-index: 9997;
  display: block;
  object-fit: fill;
}
.s-index-03-layer-4 {
  left: 80px;
  top: 1307px;
  width: 1040px;
  height: 641px;
  z-index: 9996;
  display: block;
  object-fit: fill;
}
.s-index-03-layer-5 {
  left: 79px;
  top: 1118px;
  width: 1042px;
  height: 126px;
  z-index: 9995;
  display: block;
  object-fit: fill;
}
.s-index-03-layer-6 {
  left: 467px;
  top: 1151px;
  width: 295px;
  height: 54px;
  z-index: 9994;
  display: block;
  margin: 0;
  overflow: visible;
  font-family: "游明朝体 StdN", "Yu Mincho StdN B", "YuMinStdN-Bold", "Yu Mincho", "Hiragino Mincho ProN", "Yu Gothic", sans-serif;
  font-size: 35px;
  text-align: left;
  word-break: keep-all;
  white-space: pre;
  overflow-wrap: normal;
  font-weight: 700;
  line-height: 1.2;
}
.s-index-03-layer-7 {
  left: 80px;
  top: 375px;
  width: 1040px;
  height: 641px;
  z-index: 9993;
  display: block;
  object-fit: fill;
}
.s-index-03-layer-8 {
  left: 79px;
  top: 187px;
  width: 1042px;
  height: 126px;
  z-index: 9992;
  display: block;
  object-fit: fill;
}
.s-index-03-layer-9 {
  left: 452px;
  top: 220px;
  width: 322px;
  height: 54px;
  z-index: 9991;
  display: block;
  margin: 0;
  overflow: visible;
  font-family: "游明朝体 StdN", "Yu Mincho StdN B", "YuMinStdN-Bold", "Yu Mincho", "Hiragino Mincho ProN", "Yu Gothic", sans-serif;
  font-size: 35px;
  text-align: left;
  word-break: keep-all;
  white-space: pre;
  overflow-wrap: normal;
  font-weight: 700;
  line-height: 1.2;
}
.s-index-03-layer-10 {
  left: 393px;
  top: 65px;
  width: 410px;
  height: 62px;
  z-index: 9990;
  display: block;
  margin: 0;
  overflow: visible;
  font-family: "游明朝体 StdN", "Yu Mincho StdN B", "YuMinStdN-Bold", "Yu Mincho", "Hiragino Mincho ProN", "Yu Gothic", sans-serif;
  font-size: 40px;
  text-align: center;
  word-break: keep-all;
  white-space: pre;
  overflow-wrap: normal;
  font-weight: 700;
  line-height: 1.2;
}
.s-index-03-layer-11 {
  left: 0px;
  top: 0px;
  width: 1200px;
  height: 2135px;
  z-index: 9989;
  display: block;
  object-fit: fill;
}

.section-index-04 {
  width: 1200px;
  height: 2135px;
}

.s-index-04-layer-1 {
  left: 78px;
  top: 1552px;
  width: 1039px;
  height: 479px;
  z-index: 9999;
  display: block;
  margin: 0;
  overflow: visible;
  font-family: "游明朝体 Pr6N", "Yu Mincho Pr6N D", "YuMinPr6N-Demi", "Yu Mincho", "Hiragino Mincho ProN", "Yu Gothic", sans-serif;
  font-size: 20px;
  text-align: left;
  word-break: keep-all;
  white-space: pre-wrap;
  overflow-wrap: normal;
  line-height: 1.2;
}
.s-index-04-layer-2 {
  left: 79px;
  top: 200px;
  width: 1039px;
  height: 1288px;
  z-index: 9998;
  display: block;
  object-fit: fill;
}
.s-index-04-layer-3 {
  left: 359px;
  top: 72px;
  width: 476px;
  height: 60px;
  z-index: 9997;
  display: block;
  margin: 0;
  overflow: visible;
  font-family: "游明朝体 StdN", "Yu Mincho StdN B", "YuMinStdN-Bold", "Yu Mincho", "Hiragino Mincho ProN", "Yu Gothic", sans-serif;
  font-size: 40px;
  text-align: center;
  word-break: keep-all;
  white-space: pre;
  overflow-wrap: normal;
  font-weight: 700;
  line-height: 1.2;
}
.s-index-04-layer-4 {
  left: 0px;
  top: 0px;
  width: 1200px;
  height: 2135px;
  z-index: 9996;
  display: block;
  object-fit: fill;
}

.section-index-05 {
  width: 1200px;
  height: 2135px;
}

.s-index-05-layer-1 {
  left: 0px;
  top: 1289px;
  width: 1200px;
  height: 846px;
  z-index: 9999;
}
.s-index-05-layer-2 {
  left: 534px;
  top: 78px;
  width: 132px;
  height: 386px;
  z-index: 9998;
  display: block;
  object-fit: fill;
}
.s-index-05-layer-3 {
  left: 356px;
  top: 551px;
  width: 205px;
  height: 25px;
  z-index: 9997;
  display: block;
  margin: 0;
  overflow: visible;
  font-family: "游明朝体 StdN", "Yu Mincho StdN B", "YuMinStdN-Bold", "Yu Mincho", "Hiragino Mincho ProN", "Yu Gothic", sans-serif;
  font-size: 16px;
  text-align: left;
  word-break: keep-all;
  white-space: pre;
  overflow-wrap: normal;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.75;
}
.s-index-05-layer-4 {
  left: 619px;
  top: 551px;
  width: 250px;
  height: 24px;
  z-index: 9996;
  display: block;
  margin: 0;
  overflow: visible;
  font-family: "游明朝体 StdN", "Yu Mincho StdN B", "YuMinStdN-Bold", "Yu Mincho", "Hiragino Mincho ProN", "Yu Gothic", sans-serif;
  font-size: 16px;
  text-align: left;
  word-break: keep-all;
  white-space: pre;
  overflow-wrap: normal;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.75;
}
.s-index-05-layer-5 {
  left: 267px;
  top: 640px;
  width: 663px;
  height: 28px;
  z-index: 9995;
}
.s-index-05-layer-6 {
  left: 532px;
  top: 0px;
  width: 131px;
  height: 28px;
  z-index: 9994;
  display: block;
  object-fit: fill;
}
.s-index-05-layer-7 {
  left: 0px;
  top: 0px;
  width: 273px;
  height: 28px;
  z-index: 9993;
  display: block;
  object-fit: fill;
}
.s-index-05-layer-8 {
  left: 296px;
  top: 0px;
  width: 208px;
  height: 28px;
  z-index: 9992;
  display: block;
  object-fit: fill;
}
.s-index-05-layer-9 {
  left: 316px;
  top: 546px;
  width: 568px;
  height: 36px;
  z-index: 9991;
}
.s-index-05-layer-10 {
  left: 0px;
  top: 0px;
  width: 2px;
  height: 36px;
  z-index: 9990;
  display: block;
  object-fit: fill;
}
.s-index-05-layer-11 {
  left: 283px;
  top: 0px;
  width: 285px;
  height: 36px;
  z-index: 9989;
  display: block;
  object-fit: fill;
}
.s-index-05-layer-12 {
  left: 0px;
  top: 0px;
  width: 1200px;
  height: 846px;
  z-index: 9988;
  display: block;
  object-fit: fill;
}
.s-index-05-layer-13 {
  left: 324px;
  top: 2025px;
  width: 552px;
  height: 27px;
  z-index: 9987;
  display: block;
  margin: 0;
  overflow: visible;
  font-family: "游明朝体 StdN", "Yu Mincho StdN B", "YuMinStdN-Bold", "Yu Mincho", "Hiragino Mincho ProN", "Yu Gothic", sans-serif;
  font-size: 16px;
  text-align: left;
  word-break: keep-all;
  white-space: pre;
  overflow-wrap: normal;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.75;
}
.s-index-05-layer-14 {
  left: 448px;
  top: 1032px;
  width: 306px;
  height: 46px;
  z-index: 9986;
  display: block;
  margin: 0;
  overflow: visible;
  font-family: "游明朝体 StdN", "Yu Mincho StdN B", "YuMinStdN-Bold", "Yu Mincho", "Hiragino Mincho ProN", "Yu Gothic", sans-serif;
  font-size: 30px;
  text-align: center;
  word-break: keep-all;
  white-space: pre;
  overflow-wrap: normal;
  font-weight: 700;
  line-height: 1.2;
}
.s-index-05-layer-15 {
  left: 554px;
  top: 1143px;
  width: 93px;
  height: 19px;
  z-index: 9985;
  display: block;
  margin: 0;
  overflow: visible;
  font-family: "游明朝体 Pr6N", "Yu Mincho Pr6N M", "YuMinPr6N-Medium", "Yu Mincho", "Hiragino Mincho ProN", "Yu Gothic", sans-serif;
  font-size: 13px;
  text-align: center;
  word-break: keep-all;
  white-space: pre;
  overflow-wrap: normal;
  font-weight: 500;
  line-height: 1.2;
}
.s-index-05-layer-16 {
  left: 399px;
  top: 1124px;
  width: 402px;
  height: 59px;
  z-index: 9984;
  display: block;
  object-fit: fill;
}
.s-index-05-layer-17 {
  left: 257px;
  top: 850px;
  width: 681px;
  height: 87px;
  z-index: 9983;
  display: block;
  margin: 0;
  overflow: visible;
  font-family: "游明朝体 Pr6N", "Yu Mincho Pr6N D", "YuMinPr6N-Demi", "Yu Mincho", "Hiragino Mincho ProN", "Yu Gothic", sans-serif;
  font-size: 20px;
  text-align: center;
  word-break: keep-all;
  white-space: pre;
  overflow-wrap: normal;
  line-height: 1.2;
}
.s-index-05-layer-18 {
  left: 79px;
  top: 175px;
  width: 1042px;
  height: 616px;
  z-index: 9982;
  display: block;
  object-fit: fill;
}
.s-index-05-layer-19 {
  left: 467px;
  top: 61px;
  width: 261px;
  height: 51px;
  z-index: 9981;
  display: block;
  margin: 0;
  overflow: visible;
  font-family: "游明朝体 StdN", "Yu Mincho StdN B", "YuMinStdN-Bold", "Yu Mincho", "Hiragino Mincho ProN", "Yu Gothic", sans-serif;
  font-size: 40px;
  text-align: center;
  word-break: keep-all;
  white-space: pre;
  overflow-wrap: normal;
  font-weight: 700;
  line-height: 1.2;
}
.s-index-05-layer-20 {
  left: 0px;
  top: 0px;
  width: 1200px;
  height: 2135px;
  z-index: 9980;
  display: block;
  object-fit: fill;
}

.section-inasan-01 {
  width: 1200px;
  height: 2134px;
}

.s-inasan-01-layer-1 {
  left: 139px;
  top: 343px;
  width: 929px;
  height: 259px;
  z-index: 9999;
  display: block;
  object-fit: fill;
}
.s-inasan-01-layer-2 {
  left: 80px;
  top: 1010px;
  width: 1044px;
  height: 86px;
  z-index: 9998;
  display: block;
  margin: 0;
  overflow: visible;
  font-family: "游明朝体 Pr6N", "Yu Mincho Pr6N D", "YuMinPr6N-Demi", "Yu Mincho", "Hiragino Mincho ProN", "Yu Gothic", sans-serif;
  font-size: 20px;
  text-align: left;
  word-break: keep-all;
  white-space: pre-wrap;
  overflow-wrap: normal;
  line-height: 1.2;
}
.s-inasan-01-layer-3 {
  left: 81px;
  top: 1163px;
  width: 1039px;
  height: 860px;
  z-index: 9997;
}
.s-inasan-01-layer-4 {
  left: 0px;
  top: 0px;
  width: 1039px;
  height: 860px;
  z-index: 9996;
  display: block;
  margin: 0;
  overflow: visible;
  font-family: "游明朝体 Pr6N", "Yu Mincho Pr6N D", "YuMinPr6N-Demi", "Yu Mincho", "Hiragino Mincho ProN", "Yu Gothic", sans-serif;
  font-size: 35px;
  text-align: left;
  word-break: keep-all;
  white-space: pre-wrap;
  overflow-wrap: normal;
  line-height: 1.2;
}
.s-inasan-01-layer-5 {
  left: 0px;
  top: 0px;
  width: 1039px;
  height: 860px;
  z-index: 9995;
  display: block;
  margin: 0;
  overflow: visible;
  font-family: "游明朝体 Pr6N", "Yu Mincho Pr6N D", "YuMinPr6N-Demi", "Yu Mincho", "Hiragino Mincho ProN", "Yu Gothic", sans-serif;
  font-size: 35px;
  text-align: left;
  word-break: keep-all;
  white-space: pre-wrap;
  overflow-wrap: normal;
  line-height: 1.2;
}
.s-inasan-01-layer-6 {
  left: 0px;
  top: 0px;
  width: 1200px;
  height: 939px;
  z-index: 9994;
  display: block;
  object-fit: fill;
}
.s-inasan-01-layer-7 {
  left: 0px;
  top: 938px;
  width: 1200px;
  height: 1196px;
  z-index: 9993;
  display: block;
  object-fit: fill;
}

.section-inasan-02 {
  width: 1200px;
  height: 2134px;
}

.s-inasan-02-layer-1 {
  left: 0px;
  top: 78px;
  width: 1200px;
  height: 2056px;
  z-index: 9999;
  display: block;
  object-fit: fill;
}
.s-inasan-02-layer-2 {
  left: 362px;
  top: 771px;
  width: 477px;
  height: 46px;
  z-index: 9998;
  display: block;
  margin: 0;
  overflow: visible;
  font-family: "游明朝体 Pr6N", "Yu Mincho Pr6N D", "YuMinPr6N-Demi", "Yu Mincho", "Hiragino Mincho ProN", "Yu Gothic", sans-serif;
  font-size: 30px;
  text-align: left;
  word-break: keep-all;
  white-space: pre;
  overflow-wrap: normal;
  line-height: 1.2;
}
.s-inasan-02-layer-3 {
  left: 200px;
  top: 923px;
  width: 800px;
  height: 1041px;
  z-index: 9997;
  display: block;
  object-fit: fill;
}
.s-inasan-02-layer-4 {
  left: 363px;
  top: 2016px;
  width: 464px;
  height: 47px;
  z-index: 9996;
  display: block;
  margin: 0;
  overflow: visible;
  font-family: "游明朝体 Pr6N", "Yu Mincho Pr6N D", "YuMinPr6N-Demi", "Yu Mincho", "Hiragino Mincho ProN", "Yu Gothic", sans-serif;
  font-size: 30px;
  text-align: left;
  word-break: keep-all;
  white-space: pre;
  overflow-wrap: normal;
  line-height: 1.2;
}
.s-inasan-02-layer-5 {
  left: 0px;
  top: 0px;
  width: 1200px;
  height: 2134px;
  z-index: 9995;
  display: block;
  object-fit: fill;
}

.section-inasan-03 {
  width: 1200px;
  height: 2134px;
}

.s-inasan-03-layer-1 {
  left: 425px;
  top: 195px;
  width: 347px;
  height: 780px;
  z-index: 9999;
  display: block;
  object-fit: fill;
}
.s-inasan-03-layer-2 {
  left: 0px;
  top: 0px;
  width: 1200px;
  height: 2134px;
  z-index: 9998;
  display: block;
  object-fit: fill;
}


/* PSD text tuning. Photoshop exposes text sizes as points; browser CSS needs
   adjusted pixel sizes and leading to visually match the reference PNGs. */
.s-index-01-layer-4.hero-background {
  width: 1200px !important;
  height: 2135px !important;
  overflow: hidden;
}

.hero-background-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-background-loop {
  z-index: 1;
}

.hero-background-intro {
  z-index: 2;
  transition: opacity 360ms ease;
}

  .render-index-01.is-loop-active .hero-background-intro {
    opacity: 0;
  }

  @media (min-width: 720px), (orientation: landscape) {
    body[data-page="index"] .render-index-01 .hero-background-intro {
      display: none !important;
    }
  }

  .has-js body[data-page="index"] .hero-background {
    opacity: 0;
  transition: opacity 1800ms ease;
}

.has-js body[data-page="index"] .render-index-01.is-background-visible .hero-background {
  opacity: 1;
}

.s-index-01-layer-3.hero-body {
  display: flex !important;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
  width: 350px !important;
  height: 760px !important;
  margin: 0;
  color: #ffffff !important;
  font-family: var(--jp-serif) !important;
  font-size: 54px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  text-align: start !important;
  white-space: nowrap;
  text-shadow:
    0 3px 4px rgba(0, 0, 0, 0.98),
    3px 6px 8px rgba(0, 0, 0, 0.92),
    0 10px 22px rgba(0, 0, 0, 0.9),
    0 0 12px rgba(18, 8, 3, 0.96),
    0 0 30px rgba(18, 8, 3, 0.88);
}

@media (max-width: 719px) and (orientation: portrait) {
  body[data-page="index"] .render-index-01 .s-index-01-layer-3.hero-body {
    left: 50% !important;
    transform: translateX(calc(-50% - 8px)) !important;
  }
}

@media (min-width: 720px) and (orientation: landscape) {
  body[data-page="index"] .render-index-01 .hero-title {
    left: calc(50% - 25px) !important;
    top: 112px !important;
    width: 50px !important;
    height: 192px !important;
    left: calc(50% - clamp(21px, 2.8vh, 25px)) !important;
    top: clamp(72px, 12.5vh, 112px) !important;
    width: clamp(42px, 5.6vh, 50px) !important;
    height: clamp(160px, 21.3vh, 192px) !important;
  }

  body[data-page="index"] .render-index-01 .s-index-01-layer-3.hero-body {
    left: 50% !important;
    top: 368px !important;
    width: 260px !important;
    height: 416px !important;
    font-size: 32px !important;
    transform: translateX(-50%) !important;
    top: calc(clamp(72px, 12.5vh, 112px) + clamp(160px, 21.3vh, 192px) + clamp(42px, 7vh, 64px)) !important;
    width: clamp(220px, 29vh, 300px) !important;
    height: clamp(325px, 46.2vh, 442px) !important;
    font-size: clamp(25px, 3.55vh, 34px) !important;
  }

  body[data-page="index"] .render-index-01 .hero-body-column:nth-child(2) {
    margin-top: 5px;
  }

  body[data-page="index"] .render-index-01 .hero-body-column:nth-child(3) {
    margin-top: 9px;
  }

  .has-js body[data-page="index"] .hero-title {
    transform: none !important;
    animation: none !important;
    transition: opacity 720ms ease;
  }

  .has-js body[data-page="index"] .render-index-01.is-title-visible .hero-title {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

}

@media (min-width: 720px) and (min-height: 960px) and (orientation: landscape) {
  body[data-page="index"] .render-index-01 .hero-title {
    left: calc(50% - clamp(29px, 2.65vh, 32px)) !important;
    top: 112px !important;
    width: clamp(58px, 5.3vh, 64px) !important;
    height: clamp(220px, 20.4vh, 245px) !important;
  }

  body[data-page="index"] .render-index-01 .s-index-01-layer-3.hero-body {
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: calc(112px + clamp(220px, 20.4vh, 245px) + clamp(70px, 6.5vh, 78px)) !important;
    width: clamp(320px, 31.8vh, 370px) !important;
    height: clamp(550px, 53vh, 650px) !important;
    font-size: clamp(42px, 4.08vh, 48px) !important;
  }
}

.hero-body-column {
  display: block;
  min-width: 1em;
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.hero-body-column:nth-child(2) {
  margin-top: 10px;
}

.hero-body-column:nth-child(3) {
  margin-top: 18px;
}

.hero-char {
  display: inline-block;
}

.has-js body[data-page="index"] .hero-title {
  opacity: 0;
  transform: translateY(28px);
}

.has-js body[data-page="index"] .render-index-01.is-title-visible .hero-title {
  animation: hero-title-in 950ms ease forwards;
}

.has-js body[data-page="index"] .hero-body {
  opacity: 0 !important;
  visibility: hidden !important;
}

.has-js body[data-page="index"] .render-index-01.is-body-visible .hero-body {
  opacity: 1 !important;
  visibility: visible !important;
}

.has-js body[data-page="index"] .hero-body .hero-char {
  opacity: 0;
  transform: translateY(0.48em);
  filter: blur(4px);
}

.has-js body[data-page="index"] .render-index-01.is-body-visible .hero-body .hero-char {
  animation: hero-char-in 520ms ease both;
  animation-delay: calc(var(--hero-char-index) * 74ms);
}

@keyframes hero-title-in {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-char-in {
  0% {
    opacity: 0;
    transform: translateY(0.48em);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .has-js body[data-page="index"] .hero-background,
  .has-js body[data-page="index"] .hero-title,
  .has-js body[data-page="index"] .hero-body .hero-char {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
    transition: none;
  }
}

.section-heading {
  width: 620px !important;
  height: 88px !important;
  margin: 0 !important;
  font-size: 56px !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  white-space: nowrap !important;
}

.google-map-embed {
  display: block;
  border: 0;
  background: #e6e2d7;
}

.s-index-02-layer-5 {
  left: 50% !important;
  top: 76px !important;
  width: 320px !important;
  height: 80px !important;
  transform: translateX(-50%);
  font-size: 56px !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  text-align: center !important;
}

.s-index-02-layer-3 {
  top: 790px !important;
  height: 830px !important;
  box-sizing: border-box;
  padding-top: 16px;
  padding-bottom: 18px;
  font-size: 40px !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
}

.index-greeting-copy {
  display: block;
  padding: 24px 32px 26px;
  border: 1px solid rgba(109, 100, 72, 0.18);
  border-radius: 4px;
  background: rgba(248, 247, 240, 0.94);
  box-shadow: 0 10px 28px rgba(32, 30, 24, 0.08);
  white-space: pre-wrap;
}

.index-priest-signature {
  display: block;
  margin-top: 12px;
  text-align: right;
  white-space: pre-line;
}

.index-inasan-banner {
  display: block;
  margin-top: 50px;
  width: 100%;
  line-height: 0;
}

.index-inasan-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.s-index-02-layer-2 {
  left: 360px !important;
  top: 1518px !important;
  width: 760px !important;
  height: 118px !important;
  font-size: 40px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  word-break: normal !important;
  white-space: pre !important;
  overflow-wrap: normal !important;
}

.s-index-02-layer-4 {
  object-fit: cover !important;
  object-position: center 52% !important;
}

.s-index-03-layer-2,
.s-index-03-layer-6,
.s-index-03-layer-9,
.s-index-03-layer-10,
.s-index-04-layer-3,
.s-index-05-layer-14,
.s-index-05-layer-19 {
  font-weight: 700 !important;
}

.s-index-03-layer-1 {
  left: 50% !important;
  top: 2050px !important;
  height: 104px !important;
  transform: translateX(-50%);
}

.s-index-03-layer-2 {
  left: 0 !important;
  top: 19px !important;
  width: 100% !important;
  height: 64px !important;
  font-size: 36px !important;
  line-height: 1.25 !important;
  text-align: center !important;
}

.s-index-03-layer-4 {
  top: 1387px !important;
}

.s-index-03-layer-5 {
  top: 1198px !important;
}

.s-index-03-layer-6 {
  top: 1231px !important;
}

.keidai-caption {
  left: 0 !important;
  top: 19px !important;
  width: 100% !important;
  height: 64px !important;
  z-index: 2;
  margin: 0;
  color: #1a1711;
  font-family: var(--jp-serif) !important;
  font-size: 36px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  text-align: center !important;
  white-space: nowrap !important;
}

.keidai-caption-decoration {
  left: 0 !important;
  top: 0 !important;
  z-index: 1;
  width: 260px !important;
  height: 83px !important;
  display: block;
  object-fit: fill;
}

.keidai-caption-frame {
  left: 50% !important;
  top: 1034px !important;
  z-index: 9998;
  width: 260px !important;
  height: 83px !important;
  transform: translateX(-50%);
}

.s-index-03-layer-6,
.s-index-03-layer-9,
.s-index-03-layer-10,
.s-index-04-layer-3,
.s-index-05-layer-14,
.s-index-05-layer-17,
.s-index-05-layer-19,
.s-inasan-02-layer-2,
.s-inasan-02-layer-4 {
  left: 50% !important;
  transform: translateX(-50%);
  text-align: center !important;
}

.s-index-04-layer-3 {
  top: 63px !important;
  width: 560px !important;
  height: 88px !important;
  font-size: 56px !important;
  line-height: 1.15 !important;
}

.s-index-04-layer-1 {
  top: 1538px !important;
  height: 560px !important;
  font-size: 36px !important;
  font-weight: 600 !important;
  line-height: 1.46 !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
}

.section-index-history {
  width: 1200px;
  height: 2400px;
}

.index-info-heading {
  left: 50% !important;
  top: 84px !important;
  width: 780px !important;
  height: 88px !important;
  transform: translateX(-50%);
  text-align: center !important;
}

.index-info-list {
  left: 80px;
  top: 232px;
  width: 1040px;
  z-index: 10;
  color: #16130d;
  font-family: var(--jp-serif);
}

.index-info-block {
  position: relative;
  margin: 0;
  padding: 56px 48px 46px;
  overflow: hidden;
  background: rgba(255, 252, 242, 0.84);
  border: 1px solid rgba(75, 89, 60, 0.28);
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(36, 31, 18, 0.08);
}

.index-info-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  background: #53633f;
}

.index-info-block + .index-info-block {
  margin-top: 48px;
}

.index-info-block h3 {
  margin: 0 0 22px;
  font-family: var(--jp-serif);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: 0;
}

.index-info-block:first-child {
  margin-top: 18px;
}

.index-info-block p,
.index-info-block li {
  margin: 0;
  font-family: var(--jp-serif);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.68;
  letter-spacing: 0;
  word-break: normal;
  overflow-wrap: anywhere;
}

.index-info-block:first-child p {
  line-height: 1.56;
}

.index-info-block:last-child li {
  line-height: 1.44;
}

.index-info-block p + p {
  margin-top: 5px;
}

.index-info-block ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.index-info-block li {
  position: relative;
  padding-left: 36px;
}

.index-info-block li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.74em;
  width: 12px;
  height: 12px;
  background: #53633f;
  border-radius: 50%;
  transform: translateY(-50%);
}

.s-index-05-layer-18.google-map-embed {
  width: 1042px !important;
  height: 616px !important;
}

.s-index-05-layer-3,
.s-index-05-layer-4,
.s-index-05-layer-13 {
  font-weight: 600 !important;
}

.s-index-05-layer-3,
.s-index-05-layer-4,
.s-index-05-layer-5,
.s-index-05-layer-9,
.s-index-05-layer-12,
.s-index-05-layer-13,
.s-index-05-layer-14,
.s-index-05-layer-15,
.s-index-05-layer-16 {
  display: none !important;
}

.section-index-05 {
  height: 1610px !important;
}

.s-index-05-layer-1 {
  top: 1050px !important;
  height: 560px !important;
  background: #000000;
}

.s-index-05-layer-17 {
  left: 50% !important;
  width: 1040px !important;
  height: 120px !important;
  font-size: 38px !important;
  line-height: 1.38 !important;
}

.section-inasan-03 {
  height: 1120px !important;
}

.section-inasan-02 {
  height: 2400px !important;
}

.s-inasan-02-layer-5 {
  height: 2400px !important;
}

.s-inasan-01-layer-4.inasan-story {
  box-sizing: border-box;
  padding-top: 50px;
  padding-bottom: 50px;
  font-family: var(--jp-serif) !important;
  font-size: initial !important;
  font-weight: 600 !important;
  height: 1060px !important;
  line-height: normal !important;
  white-space: normal !important;
}

.inasan-story .story-block {
  margin: 0;
}

.inasan-story .story-block + .story-block {
  margin-top: 38px;
}

.inasan-story h2 {
  margin: 0 0 10px;
  font-family: var(--jp-serif);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.32;
}

.inasan-story p {
  margin: 0;
  font-family: var(--jp-serif);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.42;
  word-break: normal;
  overflow-wrap: anywhere;
}

.s-inasan-02-layer-2,
.s-inasan-02-layer-4 {
  height: 64px !important;
  font-size: 38px !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
}

.s-inasan-02-source-note {
  left: 80px;
  top: 2152px;
  z-index: 10000;
  width: 1040px;
  height: auto;
  margin: 0;
  color: #1a1711;
  font-family: var(--jp-serif) !important;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.42;
  text-align: left;
  white-space: normal;
  word-break: normal;
  overflow-wrap: anywhere;
}

@media (min-width: 720px) and (orientation: landscape) {
  body[data-page="inasan"] .render-inasan-02 {
    --section-height: 2350px !important;
  }

  body[data-page="inasan"] .section-inasan-02,
  body[data-page="inasan"] .s-inasan-02-layer-5 {
    --section-height: 2350px !important;
    height: 2350px !important;
  }

  body[data-page="index"] .render-index-history {
    --section-height: 1800px !important;
  }

  body[data-page="index"] .section-index-history {
    --section-height: 1800px !important;
    height: 1800px !important;
  }

  body[data-page="index"] .section-heading,
  body[data-page="index"] .s-index-02-layer-5,
  body[data-page="index"] .s-index-04-layer-3 {
    height: 70px !important;
    font-size: 44px !important;
    line-height: 1.18 !important;
  }

  body[data-page="index"] .s-index-02-layer-3 {
    top: 790px !important;
    height: 640px !important;
    padding-top: 12px;
    padding-bottom: 14px;
    font-size: 25px !important;
    line-height: 1.52 !important;
  }

  body[data-page="index"] .index-greeting-copy {
    padding: 20px 28px 22px;
  }

  body[data-page="index"] .render-index-02 {
    --section-height: 1720px !important;
  }

  body[data-page="index"] .render-index-02 .section-stage,
  body[data-page="index"] .render-index-02 .section-index-02 {
    --section-height: 1720px !important;
    height: 1720px !important;
  }

  body[data-page="index"] .s-index-02-layer-2 {
    height: 94px !important;
    font-size: 30px !important;
    line-height: 1.28 !important;
  }

  body[data-page="index"] .s-index-03-layer-2,
  body[data-page="index"] .keidai-caption {
    height: 52px !important;
    font-size: 28px !important;
    line-height: 1.28 !important;
  }

  body[data-page="index"] .s-index-04-layer-1 {
    font-size: 28px !important;
    line-height: 1.58 !important;
  }

  body[data-page="index"] .index-info-block {
    padding: 46px 42px 38px;
  }

  body[data-page="index"] .index-info-block + .index-info-block {
    margin-top: 42px;
  }

  body[data-page="index"] .index-info-block h3 {
    margin-bottom: 16px;
    font-size: 34px;
    line-height: 1.36;
  }

  body[data-page="index"] .index-info-block p,
  body[data-page="index"] .index-info-block li {
    font-size: 20px;
    line-height: 1.72;
  }

  body[data-page="index"] .index-info-block:first-child {
    margin-top: 16px;
  }

  body[data-page="index"] .index-info-block:first-child p {
    line-height: 1.54;
  }

  body[data-page="index"] .index-info-block:last-child li {
    line-height: 1.42;
  }

  body[data-page="index"] .s-index-05-layer-17 {
    font-size: 25px !important;
    line-height: 1.45 !important;
  }

  body[data-page="inasan"] .s-inasan-02-layer-2,
  body[data-page="inasan"] .s-inasan-02-layer-4 {
    font-size: 30px !important;
    line-height: 1.4 !important;
  }

  body[data-page="inasan"] .inasan-story h2 {
    font-size: 32px;
  }

  body[data-page="inasan"] .inasan-story p {
    font-size: 25px;
    line-height: 1.56;
  }

  body[data-page="inasan"] .s-inasan-02-source-note {
    height: auto;
    font-size: 25px;
    line-height: 1.56;
  }

  body[data-page="inasan"] .s-inasan-03-character-name {
    font-size: 34px;
  }

  body[data-page="inasan"] .s-inasan-03-character-credit {
    font-size: 24px;
  }
}

.s-inasan-03-character-name,
.s-inasan-03-character-credit {
  left: 50%;
  z-index: 10000;
  width: 720px;
  margin: 0;
  color: #1a1711;
  font-family: var(--jp-serif) !important;
  text-align: center;
  transform: translateX(-50%);
  white-space: nowrap;
}

.s-inasan-03-character-name {
  top: 992px;
  height: 58px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
}

.s-inasan-03-character-credit {
  top: 1052px;
  height: 42px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
}
