@charset "UTF-8";
/* Universal box-sizing reset */
*,
*::before,
*::after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  zoom: 1;
  min-height: auto;
}

/* Set default styles for html */
html {
  -webkit-text-size-adjust: none;
  overflow-x: hidden;
  overflow-y: scroll;
  box-sizing: border-box;
  font-size: 100%;
}

/* Reset margin for common block-level elements */
body,
h1,
h2,
h3,
h4,
p,
a,
figure,
blockquote,
dl,
dd,
input,
textarea,
label {
  margin: 0;
  padding: 0;
}

/* Remove list styles on ul, ol elements with a list role */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core root defaults */
/* Set core body defaults */
body {
  word-break: auto-phrase;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  font-size-adjust: 0.5;
}

html,
body {
  font-weight: normal;
  font-style: normal;
  font-optical-sizing: auto;
  font-style: normal;
  max-width: 100vw;
  overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: normal;
}

strong {
  font-style: normal;
  line-height: 1;
  font-weight: 600;
}

/* Reset default link styles */
a {
  text-decoration: none; /* Remove underlines from all links */
  color: inherit; /* Make sure the link color inherits the surrounding text color */
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  outline: none;
  cursor: pointer;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
  -ms-interpolation-mode: bicubic;
  vertical-align: bottom;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

/* Reset styles for form elements */
input,
button,
textarea,
select {
  font: inherit;
  border: none; /* Remove borders on form elements */
  background: transparent; /* Make background transparent */
}

/* Remove animations and transitions for users with reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
li {
  list-style-type: none;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="submit"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  justify-content: center;
}

iframe {
  border: none;
  display: block;
}

.pc-none {
  display: block;
}
@media (min-width: 768px) {
  .pc-none {
    display: none;
  }
}

.sp-none {
  display: none;
}
@media (min-width: 768px) {
  .sp-none {
    display: block;
  }
}

.lg-none {
  display: none;
}
@media (min-width: 992px) {
  .lg-none {
    display: block;
  }
}

.lg-bk {
  display: block;
}
@media (min-width: 992px) {
  .lg-bk {
    display: none;
  }
}

.sp-br {
  display: block;
}
@media (min-width: 768px) {
  .sp-br {
    display: none;
  }
}

.tab-br {
  display: block;
}
@media (min-width: 992px) {
  .tab-br {
    display: none;
  }
}

.xl-br {
  display: block;
}
@media (min-width: 1200px) {
  .xl-br {
    display: none;
  }
}

.reverse-x {
  transform: scale(-1, 1);
}

.reverse-y {
  transform: scale(1, -1);
}

.reverse-xy {
  transform: scale(-1, -1);
}

html.is-resizing *,
html.is-resizing *::before,
html.is-resizing *::after {
  transition: none !important;
}

a {
  display: inline-block;
}
a:hover {
  text-decoration: none;
}

.is-scroll-lock {
  overflow: hidden;
}

.js-stagger > * {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(20px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-stagger.is-show > * {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.js-tick {
  overflow: hidden;
  white-space: nowrap;
}

.js-tick-track {
  display: inline-flex;
  will-change: transform;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-animation: loopText var(--loop-duration, 10s) linear infinite;
  animation: loopText var(--loop-duration, 10s) linear infinite;
}

.js-tick-item {
  display: inline-block;
  padding-right: 4rem;
}

@-webkit-keyframes loopText {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--loop-distance, 0px)), 0, 0);
  }
}

@keyframes loopText {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--loop-distance, 0px)), 0, 0);
  }
}
.js-typein {
  opacity: 0;
}
.js-typein > * {
  opacity: 0;
}

.js-tab-panel {
  display: none;
  opacity: 0;
}
.js-tab-panel.is-show {
  display: block;
  -webkit-animation: panel-show 0.6s ease forwards;
  animation: panel-show 0.6s ease forwards;
}

@-webkit-keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
:root {
  --moro-paper: #f7f1df;
  --moro-paper-light: #fffaf0;
  --moro-ink: #3f2d1a;
  --moro-green: #84a943;
  --moro-green-dark: #698936;
  --moro-sage: #acbc8f;
  --moro-sand: #e2cda6;
  --moro-sand-dark: #c4b496;
  --moro-gold: #bc8c25;
  --moro-shadow: 0 18px 55px rgba(73, 52, 23, 0.1);
  --moro-concept-heading-top: clamp(220px, 37svh, 580px);
  --maru: "Zen Maru Gothic", "Yu Gothic", "YuGothic", "Hiragino Sans",
    "Noto Sans JP", "Meiryo", sans-serif;
  --kaku: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    "Yu Gothic", "YuGothic", "Noto Sans JP", "Meiryo", sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

html.is-opening-locked,
html.is-opening-locked body {
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

html.is-opening-locked body {
  touch-action: none;
}

html.is-moro-menu-open,
html.is-moro-menu-open body {
  overflow: hidden;
}

html.is-resizing *,
html.is-resizing *::before,
html.is-resizing *::after {
  transition: none !important;
}

body {
  position: relative;
  z-index: 1;
  font-family: var(--zenmaru);
  line-height: 1.8;
  letter-spacing: 1.2px;
  font-size: clamp(0.813rem, 0.711rem + 0.44vw, 1.125rem);
  font-weight: 500;
}
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../../../images/bg.webp) center/contain repeat;
}

.zenmaru {
  font-family: var(--zenmaru) !important;
}

.gothic {
  font-family: var(--gothic) !important;
}

.moro-fv {
  height: 680vh;
  height: 680svh;
  min-height: 0;
  max-height: none;
  margin-bottom: 0;
}

.p-opening {
  position: relative;
  z-index: 40;
  width: 100%;
  height: 680vh;
  height: 680svh;
  min-height: 0;
  max-height: none;
  isolation: isolate;
  margin-bottom: 0;
}
.p-opening.is-playing {
  z-index: 99;
}
.p-opening.is-complete {
  pointer-events: none;
}
.p-opening__viewport {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: max(100vh, 76.190476vw);
  overflow: hidden;
}
.p-opening.is-playing .p-opening__viewport {
  position: fixed;
  right: 0;
}
.p-opening__scene {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100vh;
  min-height: 700px;
  transform: translateX(-50%);
  transform-origin: center;
  will-change: transform, opacity, filter;
}
.p-opening__background,
.p-opening__trees,
.p-opening__weeds {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.p-opening__background {
  z-index: 1;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-opening__trees {
  z-index: 2;
  pointer-events: none;
}
.p-opening__tree {
  position: absolute;
  display: block;
  max-width: none;
  height: auto;
  will-change: transform, opacity, filter;
}
.p-opening__tree--1 {
  z-index: 3;
  top: 36%;
  left: -13vw;
  width: 41%;
}
@media (min-width: 576px) {
  .p-opening__tree--1 {
    left: -8%;
    width: 38%;
  }
}
@media (min-width: 768px) {
  .p-opening__tree--1 {
    left: -16%;
    width: 38%;
  }
}
@media (min-width: 992px) {
  .p-opening__tree--1 {
    left: -15%;
  }
}
.p-opening__tree--2 {
  z-index: 2;
  top: -6%;
  left: -21%;
  width: 63%;
}
@media (min-width: 576px) {
  .p-opening__tree--2 {
    left: -27%;
  }
}
@media (min-width: 768px) {
  .p-opening__tree--2 {
    left: -33%;
    width: 69%;
  }
}
@media (min-width: 1200px) {
  .p-opening__tree--2 {
    top: -19%;
    left: -33%;
    width: 64%;
  }
}
.p-opening__tree--3 {
  z-index: 3;
  top: 36%;
  right: -13vw;
  width: 41%;
}
@media (min-width: 576px) {
  .p-opening__tree--3 {
    right: -8%;
    width: 38%;
  }
}
@media (min-width: 768px) {
  .p-opening__tree--3 {
    right: -16%;
    width: 38%;
  }
}
@media (min-width: 992px) {
  .p-opening__tree--3 {
    right: -15%;
  }
}
.p-opening__tree--4 {
  z-index: 2;
  top: -6%;
  right: -21%;
  width: 63%;
}
@media (min-width: 576px) {
  .p-opening__tree--4 {
    right: -27%;
  }
}
@media (min-width: 768px) {
  .p-opening__tree--4 {
    right: -33%;
    width: 69%;
  }
}
@media (min-width: 1200px) {
  .p-opening__tree--4 {
    top: -19%;
    right: -33%;
    width: 64%;
  }
}
.p-opening__tree--5 {
  z-index: 3;
  top: -29%;
  left: 27%;
  width: 49%;
}
@media (min-width: 992px) {
  .p-opening__tree--5 {
    top: -46%;
  }
}
@media (min-width: 1500px) {
  .p-opening__tree--5 {
    top: -630px;
  }
}
@media (max-height: 750px) and (min-width: 1200px) {
  .p-opening__tree--5 {
    top: -62%;
  }
}
.p-opening__tree--6 {
  z-index: 1;
  width: 30%;
  top: -15%;
  left: 13%;
}
@media (min-width: 576px) {
  .p-opening__tree--6 {
    top: -16%;
    left: 0%;
    width: 43%;
  }
}
@media (min-width: 992px) {
  .p-opening__tree--6 {
    top: -35%;
    left: -5%;
    width: 45%;
  }
}
@media (min-width: 1200px) {
  .p-opening__tree--6 {
    top: -32%;
    left: 9%;
    width: 30%;
  }
}
.p-opening__tree--7 {
  z-index: 1;
  width: 30%;
  top: -15%;
  right: 13%;
}
@media (min-width: 576px) {
  .p-opening__tree--7 {
    top: -16%;
    right: 0%;
    width: 43%;
  }
}
@media (min-width: 992px) {
  .p-opening__tree--7 {
    top: -35%;
    right: -5%;
    width: 45%;
  }
}
@media (min-width: 1200px) {
  .p-opening__tree--7 {
    top: -32%;
    right: 9%;
    width: 30%;
  }
}
.p-opening__weeds {
  z-index: 4;
  pointer-events: none;
}
.p-opening__weed {
  position: absolute;
  display: block;
  bottom: -6%;
  width: 64%;
  max-width: none;
  height: auto;
  will-change: transform, opacity, filter;
}
@media (min-width: 768px) {
  .p-opening__weed {
    bottom: -15%;
  }
}
.p-opening__weed--left {
  left: -5%;
}
.p-opening__weed--right {
  right: -5%;
}
.p-opening__family {
  position: absolute;
  z-index: 1;
  right: 0;
  left: 0;
  display: block;
  margin-inline: auto;
  max-width: none;
  height: auto;
  transform-origin: center bottom;
  will-change: transform, opacity;
  bottom: -2%;
  width: 52%;
}
@media (min-width: 768px) {
  .p-opening__family {
    width: 40%;
    bottom: 1.3vw;
  }
}
@media (min-width: 992px) {
  .p-opening__family {
    width: 35%;
  }
}
.p-opening__intro {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  place-items: center;
  background: #fff;
  pointer-events: none;
  will-change: opacity;
}
.p-opening__copy {
  position: relative;
  width: min(68%, 980px);
  color: #34200d;
  text-align: center;
  margin-bottom: 45px;
}
.p-opening__brand,
.p-opening__title,
.p-opening__lead {
  margin: 0;
  line-height: 1.45;
}
.p-opening__brand {
  margin-bottom: 0.6em;
  color: #a96c16;
  font-size: clamp(1.25rem, 2.55vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.46em;
  text-indent: 0.46em;
}
.p-opening__title {
  font-family: var(--maru);
  font-size: clamp(1.375rem, 0.504rem + 3.77vw, 4.063rem);
  font-weight: 500;
  line-height: normal;
  text-shadow: 0 0 11px #f4e9d1, 0 0 11px #f4e9d1, 0 0 13px #f4e9d1;
}
.p-opening__lead {
  margin-top: 0.45em;
  font-size: clamp(0.75rem, 1.25vw, 1.45rem);
  text-shadow: 0 0 11px #f4e9d1, 0 0 11px #f4e9d1, 0 0 13px #f4e9d1;
}
.p-opening__char {
  display: inline-block;
  will-change: transform, opacity, filter;
}
.p-opening__veil {
  --opening-hole-start: 10vmax;
  --opening-hole-end: 70vmax;
  --opening-hole: var(--opening-hole-start);
  position: absolute;
  z-index: 8;
  top: 0;
  right: 0;
  left: 0;
  height: 100vh;
  height: 100vh;
  background: #fff;
  -webkit-mask-image: radial-gradient(
    circle at 50% 48%,
    transparent 0,
    transparent var(--opening-hole),
    rgba(0, 0, 0, 0.18) calc(var(--opening-hole) + 2.5vmax),
    rgba(0, 0, 0, 0.72) calc(var(--opening-hole) + 5vmax),
    #000 calc(var(--opening-hole) + 8vmax)
  );
  mask-image: radial-gradient(
    circle at 50% 48%,
    transparent 0,
    transparent var(--opening-hole),
    rgba(0, 0, 0, 0.18) calc(var(--opening-hole) + 2.5vmax),
    rgba(0, 0, 0, 0.72) calc(var(--opening-hole) + 5vmax),
    #000 calc(var(--opening-hole) + 8vmax)
  );
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: opacity;
}
.p-opening__whiteout {
  position: absolute;
  z-index: 9;
  inset: 0;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: opacity;
}
.p-opening__skip {
  position: fixed;
  z-index: 999;
  right: max(18px, 2.5vw);
  bottom: max(18px, 2.5vw);
  padding: 0.35rem 0.2rem;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: #49341f;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.p-opening__skip:hover,
.p-opening__skip:focus-visible {
  opacity: 0.58;
}
.p-opening__scroll {
  position: absolute;
  z-index: 12;
  top: calc(100vh - 25%);
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #49341f;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 0.65s ease, visibility 0.65s ease, transform 0.65s ease;
}
.p-opening__scroll-label {
  font-size: 0.625rem;
  line-height: 1;
  letter-spacing: 0.22em;
  text-indent: 0.22em;
}
.p-opening__scroll-line {
  position: relative;
  display: block;
  width: 1px;
  height: 42px;
  overflow: hidden;
  background: rgba(73, 52, 31, 0.22);
}
.p-opening__scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: currentColor;
  -webkit-animation: opening-scroll-line 1.8s ease-in-out infinite;
  animation: opening-scroll-line 1.8s ease-in-out infinite;
}
.p-opening.is-scroll-ready:not(.is-scroll-started) .p-opening__scroll {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.p-opening.is-scroll-started .p-opening__scroll,
.p-opening.is-complete .p-opening__scroll {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
}
.p-opening.is-complete .p-opening__skip {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.p-opening.is-reduced-motion {
  height: 100vh;
}
.p-opening.is-reduced-motion .p-opening__intro,
.p-opening.is-reduced-motion .p-opening__veil {
  display: none;
}

@-webkit-keyframes opening-scroll-line {
  0% {
    transform: translateY(0);
  }
  55%,
  100% {
    transform: translateY(200%);
  }
}

@keyframes opening-scroll-line {
  0% {
    transform: translateY(0);
  }
  55%,
  100% {
    transform: translateY(200%);
  }
}
@media (max-width: 767px) {
  .p-opening__copy {
    width: 78%;
  }
  .p-opening__title {
    white-space: normal;
  }
  .p-opening__weed {
    bottom: -13%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-opening__scene,
  .p-opening__tree,
  .p-opening__family,
  .p-opening__veil,
  .p-opening__char {
    will-change: auto;
  }
}
.header {
  position: fixed;
  z-index: 997;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  pointer-events: none;
}
.header__inner {
  pointer-events: none;
}
.header__brand {
  pointer-events: all;
}
.header__nav {
  pointer-events: all;
  position: fixed;
  z-index: 997;
  inset: 0;
  width: 100%;
  height: 100dvh;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--);
  transition: all 0.4s ease;
  opacity: 0;
  margin-left: auto;
  justify-content: center;
  padding-block: 50px;
  padding-inline: 20px;
  overflow-y: auto;
  gap: 30px;
}
.header__nav::-webkit-scrollbar {
  width: 10px;
  background: transparent;
}
.header__nav::-webkit-scrollbar-track {
  background-color: transparent;
}
.header__nav::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background: var(--);
}
@media (max-height: 750px) {
  .header__nav {
    justify-content: flex-start;
  }
}
@media screen and (max-height: 600px) and (orientation: landscape) {
  .header__nav {
    justify-content: flex-start;
  }
}
@media (min-width: 1400px) {
  .header__nav {
    position: static;
    opacity: 1;
    height: auto;
    visibility: visible;
    padding-block: 0px;
    padding-inline: 0px;
    background-color: transparent;
  }
}
.header__nav.open {
  visibility: visible;
  opacity: 1;
}
.header__nav-lists {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}
@media (min-width: 1400px) {
  .header__nav-lists {
    flex-direction: row;
    align-items: center;
  }
}
.header__nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (min-width: 1400px) {
  .header__nav-list {
    flex: 1;
    flex-direction: row;
    align-items: center;
  }
}
.header__nav-link:hover {
  opacity: 0.7;
}

#hum-btn {
  position: fixed;
  top: 50px;
  right: 25px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  margin-block: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: auto;
}
@media (min-width: 768px) {
  #hum-btn {
    top: 60px;
    right: 40px;
  }
}
@media (min-width: 1400px) {
  #hum-btn {
    display: none;
  }
}

.btn-trigger {
  position: relative;
  z-index: 9999;
  display: inline-block;
  transition: all 0.5s ease;
  box-sizing: border-box;
  width: 30px;
  height: 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .btn-trigger {
    width: 40px;
    height: 30px;
  }
}
.btn-trigger__bar {
  position: absolute;
  width: 100%;
  box-sizing: border-box;
  display: inline-block;
  height: 1.5px;
  transition: all 0.5s ease;
  background-color: var(--gold);
  border-radius: 99px;
}
@media (min-width: 768px) {
  .btn-trigger__bar {
    height: 2px;
  }
}
.btn-trigger__bar:nth-of-type(1) {
  top: 0;
  left: 0;
  -webkit-animation: menu-bar01 0.75s forwards;
  animation: menu-bar01 0.75s forwards;
}
.btn-trigger__bar:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.btn-trigger__bar:nth-of-type(3) {
  bottom: 0;
  left: 0;
  -webkit-animation: menu-bar02 0.75s forwards;
  animation: menu-bar02 0.75s forwards;
}

.is-nav-open .btn-trigger {
  flex-direction: row;
  transition: all 0.5s ease;
}
.is-nav-open .btn-trigger__bar:nth-of-type(1) {
  -webkit-animation: active-menu-bar01 0.75s forwards;
  animation: active-menu-bar01 0.75s forwards;
}
.is-nav-open .btn-trigger__bar:nth-of-type(2) {
  opacity: 0;
}
.is-nav-open .btn-trigger__bar:nth-of-type(3) {
  -webkit-animation: active-menu-bar02 0.75s forwards;
  animation: active-menu-bar02 0.75s forwards;
}

@-webkit-keyframes menu-bar01 {
  0% {
    transform: translateY(14px) rotate(45deg);
  }
  50% {
    transform: translateY(14px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

@keyframes menu-bar01 {
  0% {
    transform: translateY(14px) rotate(45deg);
  }
  50% {
    transform: translateY(14px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(14px) rotate(0);
  }
  100% {
    transform: translateY(14px) rotate(45deg);
  }
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(14px) rotate(0);
  }
  100% {
    transform: translateY(14px) rotate(45deg);
  }
}
@-webkit-keyframes menu-bar02 {
  0% {
    transform: translateY(-14px) rotate(-45deg);
  }
  50% {
    transform: translateY(-14px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar02 {
  0% {
    transform: translateY(-14px) rotate(-45deg);
  }
  50% {
    transform: translateY(-14px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes active-menu-bar02 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-14px) rotate(0);
  }
  100% {
    transform: translateY(-14px) rotate(-45deg);
  }
}
@keyframes active-menu-bar02 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-14px) rotate(0);
  }
  100% {
    transform: translateY(-14px) rotate(-45deg);
  }
}
@media (max-width: 767px) {
  @-webkit-keyframes active-menu-bar01 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(7px) rotate(0);
    }
    100% {
      transform: translateY(7px) rotate(45deg);
    }
  }
  @keyframes active-menu-bar01 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(7px) rotate(0);
    }
    100% {
      transform: translateY(7px) rotate(45deg);
    }
  }
  @-webkit-keyframes active-menu-bar02 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(-7px) rotate(0);
    }
    100% {
      transform: translateY(-7px) rotate(-45deg);
    }
  }
  @keyframes active-menu-bar02 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(-7px) rotate(0);
    }
    100% {
      transform: translateY(-7px) rotate(-45deg);
    }
  }
  @-webkit-keyframes menu-bar01 {
    0% {
      transform: translateY(7px) rotate(45deg);
    }
    50% {
      transform: translateY(7px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  @keyframes menu-bar01 {
    0% {
      transform: translateY(7px) rotate(45deg);
    }
    50% {
      transform: translateY(7px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  @-webkit-keyframes menu-bar02 {
    0% {
      transform: translateY(-7px) rotate(-45deg);
    }
    50% {
      transform: translateY(-7px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  @keyframes menu-bar02 {
    0% {
      transform: translateY(-7px) rotate(-45deg);
    }
    50% {
      transform: translateY(-7px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
}
.blob-mask {
  width: 600px;
  aspect-ratio: 1031/721;
  overflow: hidden;
  -webkit-mask-image: url("/images/test.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("/images/test.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.blob-mask img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.moro-page {
  margin: 0;
  color: var(--moro-ink);
  font-family: var(
    --zenmaru,
    "Zen Maru Gothic",
    "Hiragino Maru Gothic ProN",
    "Yu Gothic",
    sans-serif
  );
  line-height: 1.9;
  overflow-x: clip;
}

.moro-page *,
.moro-page *::before,
.moro-page *::after {
  box-sizing: border-box;
}

.moro-page img {
  max-width: 100%;
}

.moro-page a {
  color: inherit;
}

.moro-page button,
.moro-page a {
  -webkit-tap-highlight-color: transparent;
}

.moro-skip-link {
  position: fixed;
  z-index: 1200;
  top: 10px;
  left: 10px;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: #fff;
  transform: translateY(-160%);
}
.moro-skip-link:focus {
  transform: translateY(0);
}

.moro-container {
  position: relative;
  z-index: 2;
  width: min(1120px, 100% - 64px);
  margin-inline: auto;
}
.moro-container--narrow {
  width: min(1040px, 100% - 64px);
}

.moro-section {
  position: relative;
}

.moro-eyebrow {
  color: var(--moro-green-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: center;
}
@media (min-width: 768px) {
  .moro-eyebrow {
    margin: 0 0 0.65rem;
    font-size: 1rem;
  }
}
.moro-eyebrow::before {
  content: "";
  display: block;
  width: 25px;
  height: 12px;
  margin: 0 auto;
  background: url("../../../images/icon.svg") center/contain no-repeat;
}
.moro-eyebrow--light {
  color: #f8f2df;
}
.moro-eyebrow--light::before {
  filter: brightness(0) invert(1);
}

.moro-heading {
  margin: 0;
  font-size: clamp(1.375rem, 0.849rem + 2.28vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.8;
  text-align: center;
}

.moro-section-lead {
  margin: 1.4rem auto 0;
  font-size: clamp(0.875rem, 0.673rem + 0.88vw, 1.5rem);
  text-align: center;
}

.moro-wave {
  width: 100%;
  height: 100px;
  background-position: center;
  background-repeat: repeat-x;
  background-size: auto 100px;
  pointer-events: none;
}
@media (min-width: 768px) {
  .moro-wave {
    height: 176px;
    background-size: auto 176px;
  }
}
.moro-wave--gr-top {
  margin-bottom: -1px;
  background-image: url("../../../images/wave_gr-top.webp");
}
.moro-wave--gr-bottom {
  margin-top: -1px;
  background-image: url("../../../images/wave_gr-bottom.webp");
}
.moro-wave--br-top {
  margin-bottom: -1px;
  background-image: url("../../../images/wave_br-top.webp");
}
.moro-wave--br-bottom {
  margin-top: -1px;
  background-image: url("../../../images/wave_br-bottom.webp");
}
.moro-wave--dbr-top {
  margin-bottom: -1px;
  background-image: url("../../../images/wave_dbr-top.webp");
}
.moro-wave--dbr-bottom {
  margin-top: -1px;
  background-image: url("../../../images/wave_dbr-bottom.webp");
}

.moro-round {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100px;
  pointer-events: none;
  margin-bottom: -1px;
  background-image: url("../../../images/semicircle.webp");
  width: 100%;
  background-size: 100% 85px;
  height: 85px;
}
@media (min-width: 576px) {
  .moro-round {
    height: 100px;
    background-size: 100% 100px;
  }
}
@media (min-width: 768px) {
  .moro-round {
    height: 10vw;
    background-size: 100% 10vw;
  }
}

.moro-pop {
  position: absolute;
  z-index: 5;
  display: block;
  height: auto;
  pointer-events: none;
}

.moro-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 34px;
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.moro-header__logo,
.moro-header__menu-button {
  pointer-events: auto;
}
.moro-header__logo {
  display: block;
  width: clamp(92px, 8vw, 122px);
  line-height: 0;
  transition: all 0.3s ease;
}
.moro-header__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.moro-header__logo:hover {
  opacity: 0.8;
}
.moro-header__menu-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 40px;
  padding: 0.45rem 0.7rem;
  border: 0;
  border-radius: 5px;
  background: rgba(255, 250, 240, 0.93);
  color: var(--moro-ink);
  font-size: 0.74rem;
  box-shadow: 0 7px 24px rgba(69, 47, 17, 0.08);
  cursor: pointer;
  font-family: var(--kaku);
}
.moro-header__menu-button:hover img {
  -webkit-animation: purupuru 0.8s linear 0s 1;
  animation: purupuru 0.8s linear 0s 1;
}
.moro-header__menu-lines {
  position: relative;
  display: block;
  width: 15px;
  height: 11px;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}
@media (min-width: 768px) {
  .moro-header__menu-lines {
    width: 20px;
    height: 14px;
    border-top: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
  }
}
.moro-header__menu-lines::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  border-top: 1px solid currentColor;
}
@media (min-width: 768px) {
  .moro-header__menu-lines::before {
    border-top: 2px solid currentColor;
  }
}

html.is-opening-locked .moro-header,
html.is-opening-active .moro-header {
  opacity: 0;
  transform: translateY(-16px);
}

.moro-menu {
  position: fixed;
  z-index: 1100;
  top: 24px;
  right: 34px;
  display: flex;
  flex-direction: column;
  width: min(318px, 100vw - 32px);
  min-height: min(600px, 100dvh - 48px);
  max-height: calc(100dvh - 48px);
  padding: 58px 52px 40px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border-radius: 6px;
  background: var(--moro-paper-light);
  box-shadow: 0 18px 48px rgba(48, 31, 10, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateX(calc(100% + 72px));
  transition: opacity 0.35s ease, visibility 0.35s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.moro-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.moro-menu__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.moro-menu__close span::before,
.moro-menu__close span::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 10px;
  width: 18px;
  border-top: 1px solid var(--moro-ink);
  transform: rotate(45deg);
}
@media (min-width: 768px) {
  .moro-menu__close span::before,
  .moro-menu__close span::after {
    top: 13px;
    border-top: 2px solid var(--moro-ink);
    width: 20px;
  }
}
.moro-menu__close span::after {
  transform: rotate(-45deg);
}
.moro-menu__nav {
  display: flex;
  flex-direction: column;
}
.moro-menu__nav-primary,
.moro-menu__nav-secondary {
  display: grid;
}
.moro-menu__nav-primary {
  gap: 20px;
}
.moro-menu__nav-primary a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
}
.moro-menu__nav-primary a img {
  flex: 0 0 20px;
  display: block;
  width: 20px;
  height: auto;
}
.moro-menu__nav-secondary {
  gap: 11px;
  margin-top: 30px;
}
.moro-menu__nav-secondary a {
  display: block;
  padding: 0;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.55;
  text-decoration: none;
}
.moro-menu__nav a {
  color: var(--moro-ink);
  transition: color 0.25s ease, transform 0.25s ease;
}
.moro-menu__nav a:hover,
.moro-menu__nav a:focus-visible {
  color: var(--moro-green-dark);
  transform: translateX(3px);
}

.moro-menu-backdrop {
  position: fixed;
  z-index: 1050;
  inset: 0;
  background: rgba(45, 32, 17, 0.06);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.moro-menu-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.moro-button {
  display: grid;
  place-items: center;
  min-height: 58px;
  padding: 0.8rem 1.4rem;
  border-radius: 8px;
  background: var(--moro-green);
  color: #fff !important;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
.moro-button--menu {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 64px;
  margin-top: 43px;
  padding: 8px 13px;
  border-radius: 6px;
  font-size: 0.84rem;
  line-height: 1.4;
}
.moro-button--menu img {
  display: block;
  width: 34px;
  height: auto;
  max-height: 50px;
  -o-object-fit: contain;
  object-fit: contain;
  transform-origin: 50% 90%;
}
.moro-button--menu span {
  white-space: nowrap;
}

@-webkit-keyframes moro-menu-character-wiggle {
  0%,
  100% {
    transform: rotate(0deg) translateX(0);
  }
  20% {
    transform: rotate(-7deg) translateX(-1px);
  }
  40% {
    transform: rotate(6deg) translateX(1px);
  }
  60% {
    transform: rotate(-4deg) translateX(-1px);
  }
  80% {
    transform: rotate(3deg) translateX(0);
  }
}

@keyframes moro-menu-character-wiggle {
  0%,
  100% {
    transform: rotate(0deg) translateX(0);
  }
  20% {
    transform: rotate(-7deg) translateX(-1px);
  }
  40% {
    transform: rotate(6deg) translateX(1px);
  }
  60% {
    transform: rotate(-4deg) translateX(-1px);
  }
  80% {
    transform: rotate(3deg) translateX(0);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .moro-button--menu:hover img,
  .moro-button--menu:focus-visible img {
    -webkit-animation: moro-menu-character-wiggle 0.6s ease-in-out;
    animation: moro-menu-character-wiggle 0.6s ease-in-out;
  }
}
html.is-opening-active .p-opening {
  margin-bottom: var(--opening-concept-flow-space, 0px);
}

html.is-opening-active .moro-concept-stage {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  margin: 0;
  z-index: 0;
}

html.is-opening-active [data-story-leaf-parallax] {
  visibility: hidden;
}

.p-opening.is-skipping + .moro-concept-stage .moro-concept > .moro-container {
  visibility: hidden !important;
}

.moro-concept {
  position: relative;
  z-index: 1;
  min-height: clamp(910px, 83vw, 1240px);
  padding-block: 0 clamp(150px, 11vw, 200px);
}
.moro-concept__intro {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-shadow: 0 0 11px #f4e9d1, 0 0 11px #f4e9d1, 0 0 13px #f4e9d1;
}
.moro-concept-stage {
  position: relative;
  isolation: isolate;
  margin-top: -100vh;
}
.moro-concept-stage::after {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../../images/bg.jpg) center/cover repeat;
}
.moro-concept__sticky {
  position: -webkit-sticky;
  position: sticky;
  z-index: 0;
  top: 0;
  height: 100vh;
  margin-bottom: -100vh;
  pointer-events: none;
}
.moro-concept__sticky img {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: max(100%, 1120px);
  height: auto;
  max-width: none;
  transform: translateX(-50%);
}
.moro-concept__catch {
  margin: 0;
  font-size: clamp(1.25rem, 3vw, 2.25rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
}
.moro-concept__copy {
  position: relative;
  z-index: 1;
  display: grid;
  isolation: isolate;
  gap: 1rem;
  margin: 100px auto 0px;
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: clamp(80px, 17vw, 250px) 0px;
}
@media (min-width: 768px) {
  .moro-concept__copy {
    padding: clamp(80px, 17vw, 250px) clamp(0px, 7vw, 100px);
  }
}
.moro-concept__copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(244, 233, 209, 0.7) 0%,
    rgba(244, 233, 209, 0.7) 60%,
    rgba(255, 255, 255, 0) 72%
  );
  filter: blur(18px);
  pointer-events: none;
  transform: translate(-50%, -50%);
  width: 380px;
}
@media (min-width: 576px) {
  .moro-concept__copy::before {
    width: 500px;
  }
}
@media (min-width: 768px) {
  .moro-concept__copy::before {
    width: 820px;
  }
}
.moro-concept__copy p {
  margin: 0;
  border-bottom: solid 1px #d2b57f;
  padding-bottom: 10px;
}

.p-opening.is-reduced-motion + .moro-concept-stage {
  margin-top: 0;
}

.moro-gallery {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 28px;
  margin-top: 0;
  padding: 70px 0 150px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .moro-gallery {
    gap: 46px;
  }
}
.moro-gallery__slider {
  width: 100%;
  min-width: 0;
  max-width: 100vw;
  overflow: visible;
}
.moro-gallery__slider .swiper-wrapper {
  align-items: center;
  transition-timing-function: linear !important;
}
.moro-gallery__slider .swiper-slide {
  width: clamp(270px, 29.4vw, 454px);
  aspect-ratio: 454/302;
  border-radius: 20px;
  box-shadow: 0 8px 22px rgba(82, 57, 24, 0.08);
  overflow: hidden;
}
.moro-gallery__slider img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.moro-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 180px;
  background: var(--moro-paper-light);
  border-radius: clamp(20px, 2.5vw, 30px);
  overflow: hidden;
}
.moro-media > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.moro-media--journey {
  min-height: 0;
  aspect-ratio: 487/325;
  border-radius: 28px;
}

.moro-story {
  position: relative;
  z-index: 3;
  color: #fffaf0;
  padding-block: 0;
}
.moro-story .wrapper {
  background: var(--moro-sage);
}
.moro-story__opening {
  position: relative;
  padding-top: clamp(40px, 4vw, 64px);
}
.moro-story__visual {
  width: 182px;
  margin: clamp(50px, 4.5vw, 68px) auto 0;
}
.moro-story__visual img {
  display: block;
  width: 100%;
}
.moro-story__message {
  position: relative;
  z-index: 2;
  font-size: clamp(1rem, 0.757rem + 1.05vw, 1.75rem);
  line-height: 2;
  text-align: center;
}
.moro-story__message p {
  margin: 0;
}
.moro-story__decor {
  position: absolute;
  z-index: 1;
  top: 0px;
  right: 5%;
  display: flex;
  align-items: flex-start;
  pointer-events: none;
}
.moro-story__decor img {
  display: block;
  height: auto;
}
.moro-story__decor-sprig {
  width: clamp(90px, 10.2vw, 154px);
  margin-top: 12px;
}
.moro-story__decor-leaf {
  width: clamp(145px, 16.3vw, 247px);
  margin-left: -18px;
}
.moro-story__side-leaf {
  position: absolute;
  z-index: 4;
  bottom: -50px;
  left: 4vw;
  display: block;
  width: clamp(130px, 13.6vw, 206px);
  height: auto;
  pointer-events: none;
  will-change: transform;
}
.moro-story__book {
  display: grid;
  justify-items: center;
  gap: 2.3rem;
  margin-top: 130px;
  text-align: center;
}
@media (max-width: 767px) {
  .moro-story__opening {
    padding-top: 24px;
  }
  .moro-story__message {
    font-size: 0.9rem;
    line-height: 1.9;
  }
  .moro-story__decor-sprig {
    width: 48px;
    margin-top: 8px;
  }
  .moro-story__decor-leaf {
    width: 80px;
    margin-left: -12px;
  }
  .moro-story__side-leaf {
    bottom: 32px;
    left: 16px;
    width: 74px;
  }
}
.moro-story__book-stage {
  --book-flip-duration: 1.05s;
  --book-z-delay: 0.525s;
  position: relative;
  width: min(994px, 94vw);
  max-width: 100%;
  aspect-ratio: 994/700;
  margin-inline: auto;
  perspective: 2200px;
  transform: translateX(0);
  transform-style: preserve-3d;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  touch-action: pan-y;
}
.moro-story__book-stage.is-closed {
  transform: translateX(-25%);
}
.moro-story__book-sheet {
  position: absolute;
  z-index: calc(var(--sheet-count) - var(--sheet-index));
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  transform: rotateY(0deg);
  transform-origin: left center;
  transform-style: preserve-3d;
  transition: transform var(--book-flip-duration) cubic-bezier(0.65, 0, 0.35, 1),
    z-index 0s linear var(--book-z-delay);
  will-change: transform;
}
.moro-story__book-sheet.is-turned {
  z-index: calc(var(--sheet-index) + 1);
  transform: rotateY(-180deg);
}
.moro-story__book-face {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 2px 8px 8px 2px;
  background: #fffaf0;
  box-shadow: 0 18px 32px rgba(40, 47, 29, 0.19);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.moro-story__book-face::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7%;
  background: linear-gradient(90deg, rgba(49, 39, 22, 0.16), transparent);
  pointer-events: none;
}
.moro-story__book-face--front {
  transform: rotateY(0.01deg);
}
.moro-story__book-face--back {
  border-radius: 8px 2px 2px 8px;
  transform: rotateY(180deg);
}
.moro-story__book-face--back::after {
  inset: 0 0 0 auto;
  background: linear-gradient(270deg, rgba(49, 39, 22, 0.16), transparent);
}
.moro-story__book-face img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.moro-story__book-hit {
  position: absolute;
  z-index: 50;
  top: 0;
  width: 50%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.moro-story__book-hit--prev {
  left: 0;
}
.moro-story__book-hit--next {
  right: 0;
}
.moro-story__book-hit:disabled {
  cursor: default;
  pointer-events: none;
}
.moro-story__book-hit:focus-visible {
  outline: 3px solid rgba(255, 250, 240, 0.88);
  outline-offset: -7px;
}
.moro-story__book-stage.is-animating .moro-story__book-hit {
  pointer-events: none;
}
.moro-story__book-controls {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.moro-story__book-controls button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 250, 240, 0.72);
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: background-color 0.25s ease, opacity 0.25s ease;
}
.moro-story__book-controls button:hover,
.moro-story__book-controls button:focus-visible {
  background: rgba(255, 250, 240, 0.14);
}
.moro-story__book-controls button:disabled {
  opacity: 0.35;
  cursor: default;
}
.moro-story__book-controls p {
  margin: 0;
  font-variant-numeric: tabular-nums;
}

.moro-explore {
  position: relative;
  z-index: 2;
  padding-block: 0;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .moro-explore {
    margin-bottom: 100px;
  }
}
.moro-explore .moro-bunting {
  position: relative;
  height: clamp(320px, 27.5vw, 416px);
  margin: -200px 0 clamp(4.375rem, 3.059rem + 5.69vw, 8.438rem);
  pointer-events: none;
}
.moro-explore .moro-bunting__image {
  position: absolute;
  top: 0;
  display: block;
  width: clamp(24.375rem, 6.96rem + 75.31vw, 78.125rem);
  max-width: none;
  height: auto;
}
.moro-explore .moro-bunting__image--left {
  z-index: 2;
  left: -100px;
}
.moro-explore .moro-bunting__image--right {
  right: -100px;
}

.moro-floor {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 32px;
  margin-top: 86px;
  padding: 58px 64px 64px;
  border-radius: 56px;
  background: #f7e89e;
}
.moro-floor__column h3 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
}
.moro-floor__plan {
  position: relative;
}
.moro-floor__plan > img {
  display: block;
  width: 100%;
  height: auto;
}
.moro-floor__point {
  position: absolute;
  z-index: 2;
  top: var(--point-y);
  left: var(--point-x);
  width: clamp(38px, 4vw, 55px);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  filter: drop-shadow(0 7px 7px rgba(65, 75, 42, 0.17));
  transform: translate(-50%, -72%);
  transition: filter 0.25s ease, transform 0.25s ease;
}
.moro-floor__point img {
  display: block;
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}
.moro-floor__point img:hover {
  transform: scale(1.05);
}
.moro-floor__point:hover,
.moro-floor__point:focus-visible {
  filter: drop-shadow(0 10px 10px rgba(65, 75, 42, 0.24));
  transform: translate(-50%, -77%) scale(1.08);
}

.moro-floor-dialog {
  position: fixed;
  inset: 0;
  width: 95%;
  margin: auto;
  border: 0;
  border-radius: 28px;
  background: var(--moro-paper-light);
  color: var(--moro-ink);
  text-align: center;
  box-shadow: 0 28px 80px rgba(52, 40, 22, 0.26);
  border: solid clamp(2px, 1vw, 5px) var(--moro-green);
  padding-right: 10px;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .moro-floor-dialog {
    max-width: 550px;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .moro-floor-dialog {
    max-width: 750px;
  }
}
@media (min-width: 1200px) {
  .moro-floor-dialog {
    max-width: 830px;
  }
}
.moro-floor-dialog__wrapper {
  padding: 40px 15px;
}
@media (min-width: 768px) {
  .moro-floor-dialog__wrapper {
    padding: 40px;
  }
}
@media (min-width: 992px) {
  .moro-floor-dialog__wrapper {
    padding: 40px 75px;
  }
}
@media (min-width: 1200px) {
  .moro-floor-dialog__wrapper {
    padding: 55px clamp(20px, 7vw, 100px);
  }
}
.moro-floor-dialog::-webkit-backdrop {
  background: rgba(44, 39, 28, 0.48);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  -webkit-animation: moro-dialog-backdrop-in 0.4s ease both;
  animation: moro-dialog-backdrop-in 0.4s ease both;
}
.moro-floor-dialog::backdrop {
  background: rgba(44, 39, 28, 0.48);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  -webkit-animation: moro-dialog-backdrop-in 0.4s ease both;
  animation: moro-dialog-backdrop-in 0.4s ease both;
}
.moro-floor-dialog[open]:not(.is-closing) {
  -webkit-animation: moro-dialog-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation: moro-dialog-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.moro-floor-dialog.is-closing {
  pointer-events: none;
  -webkit-animation: moro-dialog-out 0.36s cubic-bezier(0.4, 0, 0.2, 1) both;
  animation: moro-dialog-out 0.36s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.moro-floor-dialog.is-closing::-webkit-backdrop {
  -webkit-animation: moro-dialog-backdrop-out 0.36s ease both;
  animation: moro-dialog-backdrop-out 0.36s ease both;
}
.moro-floor-dialog.is-closing::backdrop {
  -webkit-animation: moro-dialog-backdrop-out 0.36s ease both;
  animation: moro-dialog-backdrop-out 0.36s ease both;
}
.moro-floor-dialog__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: clamp(35px, 4vw, 50px);
  height: clamp(35px, 4vw, 50px);
  padding: 0;
  border: 1px solid var(--moro-ink);
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
@media (min-width: 992px) {
  .moro-floor-dialog__close {
    top: 32px;
    right: 34px;
  }
}
.moro-floor-dialog-img {
  display: block;
  max-width: 80% !important;
  width: 100%;
  height: auto;
  margin: 0 auto 24px;
  border-radius: clamp(20px, 2.5vw, 30px);
}
@media (min-width: 768px) {
  .moro-floor-dialog-img {
    max-width: 360px !important;
  }
}
@media (min-width: 992px) {
  .moro-floor-dialog-img {
    max-width: 430px !important;
  }
}
.moro-floor-dialog-img[hidden] {
  display: none;
}
.moro-floor-dialog-text {
  width: 100%;
  white-space: pre-line;
  overflow-wrap: anywhere;
  line-break: strict;
}
.moro-floor-dialog__label {
  margin: 0 0 0.65rem;
  color: var(--moro-green-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.moro-floor-dialog h3 {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--moro-green);
}
@media (min-width: 768px) {
  .moro-floor-dialog h3 {
    font-size: clamp(1.375rem, 1.011rem + 1.58vw, 2.5rem);
  }
}
.moro-floor-dialog > p:last-child {
  margin: 0;
  font-size: 0.9375rem;
}
@media (min-width: 768px) {
  .moro-floor-dialog > p:last-child {
    font-size: clamp(1rem, 0.757rem + 1.05vw, 1.75rem);
  }
}

@-webkit-keyframes moro-dialog-in {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes moro-dialog-in {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@-webkit-keyframes moro-dialog-out {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
}
@keyframes moro-dialog-out {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
}
@-webkit-keyframes moro-dialog-backdrop-in {
  from {
    background: rgba(44, 39, 28, 0);
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
  }
  to {
    background: rgba(44, 39, 28, 0.48);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  }
}
@keyframes moro-dialog-backdrop-in {
  from {
    background: rgba(44, 39, 28, 0);
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
  }
  to {
    background: rgba(44, 39, 28, 0.48);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  }
}
@-webkit-keyframes moro-dialog-backdrop-out {
  from {
    background: rgba(44, 39, 28, 0.48);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  }
  to {
    background: rgba(44, 39, 28, 0);
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
  }
}
@keyframes moro-dialog-backdrop-out {
  from {
    background: rgba(44, 39, 28, 0.48);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  }
  to {
    background: rgba(44, 39, 28, 0);
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
  }
}
.moro-journey .wrapper {
  background: var(--moro-sand);
}
.moro-journey__moro {
  top: 0px;
  right: max(20px, 6vw);
  width: clamp(62px, 7vw, 95px);
}
.moro-journey .moro-wave.moro-wave--br-bottom {
  bottom: -97px;
}
@media (min-width: 768px) {
  .moro-journey .moro-wave.moro-wave--br-bottom {
    bottom: -173px;
  }
}

.moro-timeline-wrap {
  position: relative;
  margin-top: 60px;
}

.moro-timeline {
  position: relative;
  display: grid;
  gap: clamp(125px, 13vw, 195px);
  margin: 0;
  padding: 0;
  list-style: none;
  padding-block: 75px;
}
.moro-timeline__progress {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: url("../../images/dot-line.svg") center top/4px 26px repeat-y;
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
  pointer-events: none;
  transform: translateX(-50%);
  will-change: clip-path;
}
.moro-timeline__item {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(72px, 10vw, 135px);
}
.moro-timeline__item::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--moro-gold);
  box-shadow: 0 0 0 7px rgba(188, 140, 37, 0.08);
  transform: translate(-50%, -50%) scale(0.74);
  transition: background-color 0.35s ease, box-shadow 0.35s ease,
    transform 0.35s ease;
}
.moro-timeline__item:nth-child(even) .moro-media {
  order: 2;
}
.moro-timeline__item.is-line-active::before {
  background: var(--moro-green-dark);
  box-shadow: 0 0 0 8px rgba(105, 137, 54, 0.16);
  transform: translate(-50%, -50%) scale(1);
}
.moro-timeline__copy time {
  color: var(--moro-green);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}
.moro-timeline__copy h3 {
  margin: 0.3rem 0 0.8rem;
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
}
.moro-timeline__copy p {
  margin: 0;
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  line-height: 1.9;
}

.moro-nightscape {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  background: #253349;
  overflow: hidden;
  padding-bottom: 4vw;
}
.moro-nightscape img {
  display: block;
  width: 100%;
  min-height: 680px;
  -o-object-fit: cover;
  object-fit: cover;
  will-change: transform;
}
.moro-nightscape .moro-wave--br-bottom {
  position: absolute;
  top: 0;
  inset-inline: 0;
  z-index: 3;
}

.moro-amenities {
  padding-top: 0px;
}
.moro-amenities .wrapper {
  position: relative;
  background: var(--moro-sand-dark);
  padding-bottom: 88px;
}
.moro-amenities .moro-wave.moro-wave--br-top {
  transform: scale(-1, 1);
}
.moro-amenities__moro {
  right: max(24px, 8vw);
  bottom: -40px;
  width: clamp(52px, 7vw, 95px);
}

.moro-spec-list {
  display: grid;
  gap: 18px;
  margin-top: 70px;
}
@media (min-width: 768px) {
  .moro-spec-list {
    gap: 30px;
  }
}
.moro-spec-list article {
  display: grid;
  grid-template-columns: minmax(190px, 0.78fr) 1.1fr;
  gap: 30px;
  padding: 26px 36px;
  border-radius: 18px;
  background: var(--moro-paper-light);
}
.moro-spec-list h3 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.125rem;
}
@media (min-width: 992px) {
  .moro-spec-list h3 {
    font-size: 1.25rem;
    display: inline;
  }
}
.moro-spec-list h3::before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background-color: var(--moro-ink);
}
@media (min-width: 576px) {
  .moro-spec-list h3::before {
    width: 15px;
  }
}
@media (min-width: 992px) {
  .moro-spec-list h3::before {
    display: none;
  }
}
.moro-spec-list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.2rem 1.2rem;
  margin: 0;
  padding: 0;
}
.moro-spec-list li {
  position: relative;
  padding-left: 1em;
  list-style: none;
  font-size: 0.8125rem;
}
@media (min-width: 768px) {
  .moro-spec-list li {
    font-size: 1rem;
  }
}
@media (min-width: 992px) {
  .moro-spec-list li {
    font-size: 1.25rem;
  }
}
.moro-spec-list li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.moro-spec-list__note {
  margin: 34px 0 0;
  font-size: 0.72rem;
  text-align: center;
}

.moro-information {
  padding-top: 0;
}
.moro-information .moro-wave--br-top {
  transform: scale(-1, 1);
  background-color: var(--moro-sand-dark);
}
.moro-information .wrapper {
  background-color: var(--moro-sand);
}

.moro-info-list {
  display: grid;
  margin: 68px 0 0;
  font-size: clamp(1rem, 0.919rem + 0.35vw, 1.25rem);
  gap: 18px;
}
@media (min-width: 768px) {
  .moro-info-list {
    gap: 30px;
  }
}
.moro-info-list > div {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) 1.4fr;
  gap: 50px;
  padding: 25px 34px;
  border-radius: 17px;
  background: var(--moro-paper-light);
}
.moro-info-list dt {
  font-weight: 500;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.125rem;
}
@media (min-width: 992px) {
  .moro-info-list dt {
    font-size: 1.25rem;
    display: inline;
  }
}
.moro-info-list dt::before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background-color: var(--moro-ink);
}
@media (min-width: 576px) {
  .moro-info-list dt::before {
    width: 15px;
  }
}
@media (min-width: 992px) {
  .moro-info-list dt::before {
    display: none;
  }
}
.moro-info-list dd {
  margin: 0;
  font-weight: 500;
}

.moro-access {
  padding-block: clamp(80px, 12vw, 150px);
  background-color: var(--moro-sand);
}
.moro-access address {
  margin: 1.1rem 0 2.5rem;
  font-style: normal;
  text-align: center;
}
.moro-access__wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (min-width: 768px) {
  .moro-access__wrapper {
    gap: 30px;
  }
}
.moro-access__route {
  display: grid;
  gap: 28px;
  grid-template-columns: 0.9fr 2fr;
  padding: 25px 32px;
  border-radius: 17px;
  background: var(--moro-paper-light);
}
.moro-access__route h3 {
  margin: 0;
  display: flex;
  gap: 8px;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .moro-access__route h3 {
    font-size: 1.125rem;
  }
}
@media (min-width: 992px) {
  .moro-access__route h3 {
    font-size: 1.25rem;
    display: inline;
  }
}
.moro-access__route h3::before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background-color: var(--moro-ink);
  margin-top: 13px;
}
@media (min-width: 576px) {
  .moro-access__route h3::before {
    width: 15px;
  }
}
@media (min-width: 768px) {
  .moro-access__route h3::before {
    margin-top: 15px;
  }
}
@media (min-width: 992px) {
  .moro-access__route h3::before {
    display: none;
  }
}

.moro-map {
  position: relative;
  min-height: 520px;
  background: #fff;
  overflow: hidden;
  border-radius: 15px;
  border: solid 5px var(--moro-paper-light);
}
@media (min-width: 768px) {
  .moro-map {
    border: solid 10px var(--moro-paper-light);
  }
}
.moro-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  min-height: inherit;
}

.moro-notes .wrapper {
  position: relative;
  padding-bottom: 230px;
  background: var(--moro-sand);
}
.moro-notes__moro {
  bottom: 0;
  left: max(18px, 6vw);
  width: clamp(52px, 6vw, 74px);
}
.moro-notes .moro-wave--br-bottom {
  transform: scale(-1, 1);
}

.moro-notes__box {
  margin-top: 65px;
  padding: clamp(42px, 6vw, 72px);
  border-radius: 20px;
  background: var(--moro-paper-light);
}
.moro-notes__box ul {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding-left: 1.2rem;
}
.moro-notes__box li {
  list-style: disc;
  font-size: 0.88rem;
}

.moro-faq {
  padding-top: 100px;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .moro-faq {
    padding-top: 190px;
    padding-bottom: 250px;
  }
}
.moro-faq__list {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (min-width: 768px) {
  .moro-faq__list {
    gap: 30px;
  }
}
.moro-faq__item {
  background-color: var(--moro-paper-light);
  border-radius: clamp(20px, 2vw, 30px);
  padding: 45px clamp(20px, 5vw, 65px);
}
@media (min-width: 768px) {
  .moro-faq__item {
    padding: 45px clamp(20px, 5vw, 65px);
  }
}
.moro-faq__item.is-open .moro-faq__toggle::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.moro-faq__item.is-open .moro-faq__toggle::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.moro-faq__question {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 32px;
  align-items: center;
  gap: clamp(16px, 2.4vw, 30px);
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.moro-faq__question > img {
  display: block;
  width: 42px;
  height: 42px;
}
.moro-faq__toggle {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
}
.moro-faq__toggle::before,
.moro-faq__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  border-top: 1px solid #777052;
  transform: translate(-50%, -50%);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.moro-faq__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.moro-faq__answer {
  height: 0;
  overflow: hidden;
}
.moro-faq__answer-inner {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: clamp(16px, 2.4vw, 30px);
  padding: 15px 64px 0 0;
}
.moro-faq__answer-inner img {
  display: block;
  width: 42px;
  height: 42px;
}
.moro-faq__question span,
.moro-faq__answer span {
  padding-block: 6px;
}
@media (min-width: 768px) {
  .moro-faq__question span,
  .moro-faq__answer span {
    padding-block: 5px;
  }
}

.moro-reservation {
  position: relative;
  display: grid;
  min-height: 850px;
  padding-top: 150px;
  background: url("../../../images/river.png") center bottom/cover no-repeat;
}
@media (min-width: 1200px) {
  .moro-reservation {
    min-height: 980px;
  }
}
.moro-reservation h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.55rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
}
.moro-reservation__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  width: min(760px, 100%);
  margin: 64px auto 0;
}
.moro-reservation__links a {
  display: grid;
  place-items: center;
  gap: 1rem;
  min-height: 180px;
  padding: 28px;
  border: 3px solid #c4b496;
  border-radius: 18px;
  background: rgba(255, 250, 240, 0.95);
  text-decoration: none;
  box-shadow: var(--moro-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.moro-reservation__links a:hover,
.moro-reservation__links a:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(73, 52, 23, 0.16);
}
.moro-reservation__links img {
  width: auto;
  max-width: min(250px, 80%);
  max-height: 62px;
}

.moro-reserve-float {
  position: fixed;
  z-index: 100;
  right: clamp(12px, 2.2vw, 34px);
  bottom: clamp(12px, 2.2vw, 34px);
  display: grid;
  place-items: center;
  width: 96px;
  aspect-ratio: 1;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--moro-green);
  color: #fff !important;
  font-size: 0.8125rem;
  line-height: 1.55;
  letter-spacing: normal;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 38px rgba(56, 72, 29, 0.25);
  opacity: 1;
  visibility: visible;
  will-change: opacity, transform;
  transform: translateY(0) scale(1);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s, background-color 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 576px) {
  .moro-reserve-float {
    font-size: 1rem;
    width: 120px;
  }
}
@media (min-width: 768px) {
  .moro-reserve-float {
    font-size: 1.25rem;
    border: 3px solid #fff;
    width: 150px;
  }
}
.moro-reserve-float::before {
  content: "";
  position: absolute;
  background: url("../../../images/reserve-moro.png") center/contain no-repeat;
  top: -34px;
  width: 37px;
  height: 49px;
}
@media (min-width: 576px) {
  .moro-reserve-float::before {
    top: -37px;
    width: 44px;
    height: 61px;
  }
}
@media (min-width: 768px) {
  .moro-reserve-float::before {
    top: -50px;
    width: 57px;
    height: 79px;
  }
}
.moro-reserve-float:hover,
.moro-reserve-float:focus-visible {
  background: #94be4c;
}
.moro-reserve-float:hover::before,
.moro-reserve-float:focus-visible::before {
  -webkit-animation: purun 0.8s linear 0s 1;
  animation: purun 0.8s linear 0s 1;
}
.moro-reserve-float.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(20px) scale(0.96);
  transition: opacity 0.35s ease, transform 0.35s ease,
    visibility 0s linear 0.35s, background-color 0.3s ease, box-shadow 0.3s ease;
}

.moro-footer {
  position: relative;
  z-index: 3;
  padding: 105px 0 42px;
  background: var(--moro-sand-dark);
}
.moro-footer .moro-wave--dbr-top {
  position: absolute;
  top: -100px;
  inset-inline: 0;
}
@media (min-width: 768px) {
  .moro-footer .moro-wave--dbr-top {
    top: -176px;
  }
}
.moro-footer__moro {
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
}
@media (min-width: 768px) {
  .moro-footer__moro {
    top: -160px;
    width: 68px;
  }
}
.moro-footer__left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .moro-footer__left {
    align-items: flex-start;
  }
}
.moro-footer__left a {
  transition: all 0.3s ease;
}
.moro-footer__left a:hover {
  color: var(--moro-green-dark);
}
.moro-footer__inner {
  display: grid;
  gap: 50px 30px;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  .moro-footer__inner {
    grid-template-columns: 0.6fr 1fr;
  }
}
.moro-footer__inner nav {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px clamp(0.938rem, 0.35rem + 2.54vw, 2.75rem);
  max-width: 620px;
  width: 100%;
  margin-inline: auto;
}
@media (min-width: 576px) {
  .moro-footer__inner nav {
    align-items: flex-start;
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .moro-footer__inner nav {
    max-width: 100%;
    width: 100%;
    margin-inline: auto;
    justify-content: flex-end;
  }
}
@media (max-width: 991px) {
  .moro-footer__inner nav {
    grid-template-columns: repeat(2, 1fr);
  }
}
.moro-footer__inner nav a {
  text-decoration: none;
  transition: all 0.3s ease;
}
.moro-footer__inner nav a:hover {
  color: var(--moro-green-dark);
}
.moro-footer__inner nav .main-link {
  font-size: clamp(1.063rem, 0.84rem + 0.96vw, 1.75rem);
  display: flex;
  align-items: center;
  gap: 7px;
}
.moro-footer__inner nav .main-link > img {
  width: 30px;
}
.moro-footer__inner nav .main-link:hover img {
  -webkit-animation: purupuru 0.8s linear 0s 1;
  animation: purupuru 0.8s linear 0s 1;
}
.moro-footer__inner nav .other-links {
  max-width: 350px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 25px;
  justify-content: center;
}
@media (min-width: 576px) {
  .moro-footer__inner nav .other-links {
    max-width: 400px;
  }
}
@media (min-width: 992px) {
  .moro-footer__inner nav .other-links {
    justify-content: flex-end;
  }
}
.moro-footer__inner small {
  font-size: 0.7rem;
  font-weight: 400;
}
@media (min-width: 576px) {
  .moro-footer__inner small {
    font-size: 1rem;
  }
}
@media (min-width: 992px) {
  .moro-footer__inner small {
    grid-column: auto;
  }
}
.moro-footer__inner address {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 0.76rem;
  font-style: normal;
}
@media (min-width: 768px) {
  .moro-footer__inner address {
    font-size: 1rem;
  }
}
@media (min-width: 992px) {
  .moro-footer__inner address {
    font-size: 1.125rem;
  }
}
.moro-footer__bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 40px 20px;
  width: 100%;
  grid-column: 1/-1;
}
@media (min-width: 992px) {
  .moro-footer__bottom {
    flex-direction: row-reverse;
    align-items: flex-end;
  }
}
.moro-footer__logo {
  width: 180px;
  margin: 0;
}
.moro-footer .insta-link {
  background-color: var(--moro-green);
  padding: 8px 20px;
  border-radius: 100px;
  color: white;
  gap: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.moro-footer .insta-link .wrap {
  gap: 7px;
}
.moro-footer .insta-link .arrow {
  transition: all 0.3s ease;
}
.moro-footer .insta-link:hover .arrow {
  transform: translateX(5px);
}

@-webkit-keyframes purupuru {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  20% {
    transform: scale(1, 1.06) translate(-5%, -4%) skew(6deg, 0deg);
  }
  50% {
    transform: scale(1, 0.94) translate(5%, 4%) skew(-6deg, 0deg);
  }
  65% {
    transform: scale(1, 1.03) translate(2%, -2%) skew(-3deg, 0deg);
  }
  80% {
    transform: scale(1, 0.97) translate(-2%, 2%) skew(3deg, 0deg);
  }
  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}

@keyframes purupuru {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  20% {
    transform: scale(1, 1.06) translate(-5%, -4%) skew(6deg, 0deg);
  }
  50% {
    transform: scale(1, 0.94) translate(5%, 4%) skew(-6deg, 0deg);
  }
  65% {
    transform: scale(1, 1.03) translate(2%, -2%) skew(-3deg, 0deg);
  }
  80% {
    transform: scale(1, 0.97) translate(-2%, 2%) skew(3deg, 0deg);
  }
  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}
@-webkit-keyframes purun {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  15% {
    transform: scale(0.9, 0.9) translate(0%, 5%);
  }
  30% {
    transform: scale(1.2, 0.8) translate(0%, 10%);
  }
  50% {
    transform: scale(0.8, 1.2) translate(0%, -10%);
  }
  70% {
    transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}
@keyframes purun {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  15% {
    transform: scale(0.9, 0.9) translate(0%, 5%);
  }
  30% {
    transform: scale(1.2, 0.8) translate(0%, 10%);
  }
  50% {
    transform: scale(0.8, 1.2) translate(0%, -10%);
  }
  70% {
    transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}
[data-reveal] {
  will-change: transform, opacity;
}

@media (max-width: 991px) {
  .moro-fv {
    height: 620vh;
    height: 620svh;
    min-height: 0;
  }
  .moro-fv .p-opening__viewport {
    top: 0;
    width: 100%;
    height: 100vh;
  }
  .moro-fv .p-opening__scene {
    width: max(100vw, 110vh);
    height: max(100vh, 90.9090909091vw);
  }
  .moro-fv .p-opening__copy {
    width: 78%;
  }
  .moro-spec-list ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.2rem 1.2rem;
    margin: 0;
    padding: 0;
  }
  .moro-spec-list article,
  .moro-info-list > div,
  .moro-access__route {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 24px 20px;
  }
}
@media (max-width: 767px) {
  :root {
    --moro-concept-heading-top: clamp(180px, 32svh, 300px);
  }
  html {
    scroll-padding-top: 70px;
  }
  .moro-container,
  .moro-container--narrow {
    width: min(100% - 32px, 620px);
  }
  .moro-header {
    padding: 14px 16px;
  }
  .moro-header__logo {
    width: 92px;
  }
  .moro-header__menu-button span:nth-child(2) {
    display: none;
  }
  .moro-menu {
    top: 12px;
    right: 12px;
    width: calc(100vw - 24px);
    min-height: min(600px, 100dvh - 24px);
    max-height: calc(100dvh - 24px);
    padding: 56px 34px 28px;
  }
  .moro-menu__nav-primary {
    gap: 17px;
  }
  .moro-menu__nav-primary a {
    font-size: 1rem;
  }
  .moro-menu__nav-secondary {
    gap: 9px;
    margin-top: 26px;
  }
  .moro-menu__nav-secondary a {
    font-size: 0.82rem;
  }
  .moro-button--menu {
    min-height: 58px;
    font-size: 0.8rem;
  }
  .moro-button--menu img {
    width: 30px;
    max-height: 44px;
  }
  .moro-concept {
    min-height: 980px;
  }
  .moro-concept__sticky img {
    width: max(100%, 760px);
  }
  .moro-concept__copy {
    gap: 0.75rem;
  }
  .moro-gallery {
    gap: 14px;
    margin-top: 0;
    padding: 36px 0 105px;
  }
  .moro-gallery__slider .swiper-slide {
    width: 230px;
    border-radius: 14px;
  }
  .moro-story {
    padding: 0;
  }
  .moro-story__visual {
    width: 25%;
    max-width: 125px;
    margin-top: 70px;
  }
  .moro-story__book {
    margin-top: 40px;
  }
  .moro-story__book-stage {
    width: min(92vw, 600px);
  }
  .moro-story__book-controls button {
    width: 42px;
    height: 42px;
  }
  .moro-explore .moro-bunting {
    height: 27.5vw;
    margin: -80px 0 clamp(4.375rem, 3.059rem + 5.69vw, 8.438rem);
  }
  .moro-floor {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 55px;
    padding: 28px 18px;
    border-radius: 30px;
  }
  .moro-floor__point {
    width: 37px;
  }
  .moro-floor-dialog {
    border-radius: 22px;
  }
  .moro-journey {
    margin-top: 145px;
  }
  .moro-journey__moro {
    top: -22px;
    right: 18px;
    width: 56px;
  }
  .moro-timeline {
    --moro-timeline-mobile-gutter: clamp(48px, 10vw, 56px);
    gap: 90px;
    padding-left: var(--moro-timeline-mobile-gutter);
  }
  .moro-timeline__progress {
    left: 8px;
  }
  .moro-timeline__item {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .moro-timeline__item::before {
    content: none;
  }
  .moro-timeline__item:nth-child(even) .moro-media {
    order: initial;
  }
  .moro-timeline__copy time {
    position: relative;
    display: inline-block;
    line-height: 1.4;
  }
  .moro-timeline__copy time::before {
    content: "";
    position: absolute;
    z-index: 3;
    top: 50%;
    left: calc(8px - var(--moro-timeline-mobile-gutter));
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--moro-gold);
    box-shadow: 0 0 0 7px rgba(188, 140, 37, 0.08);
    transform: translate(-50%, -50%) scale(0.74);
    transition: background-color 0.35s ease, box-shadow 0.35s ease,
      transform 0.35s ease;
  }
  .moro-timeline__copy {
    order: -1;
  }
  .moro-timeline__item.is-line-active .moro-timeline__copy time::before {
    background: var(--moro-green-dark);
    box-shadow: 0 0 0 8px rgba(105, 137, 54, 0.16);
    transform: translate(-50%, -50%) scale(1);
  }
  .moro-nightscape {
    min-height: 500px;
    padding-bottom: 40px;
  }
  .moro-nightscape img {
    min-height: 450px;
  }
  .moro-amenities__moro {
    width: 48px;
  }
  .moro-spec-list {
    max-width: 500px;
    margin-inline: auto;
  }
  .moro-spec-list ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .moro-map {
    min-height: 330px;
    border-width: 6px;
  }
  .moro-notes__box {
    padding: 28px 24px;
  }
  .moro-faq__list {
    margin-top: 48px;
  }
  .moro-faq__question {
    grid-template-columns: 36px minmax(0, 1fr) 28px;
    gap: 12px;
  }
  .moro-faq__question > img {
    width: 36px;
    height: 36px;
  }
  .moro-faq__answer-inner {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
  }
  .moro-faq__answer-inner img {
    width: 36px;
    height: 36px;
  }
  .moro-reservation {
    min-height: 850px;
    padding: 120px 0;
  }
  .moro-reservation__links {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 45px;
  }
  .moro-reservation__links a {
    transition: all 0.3s ease;
    min-height: 140px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .moro-menu,
  .moro-menu-backdrop,
  .moro-header,
  .moro-reserve-float,
  [data-reveal] {
    transition-duration: 0.01ms !important;
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .moro-story__book-stage,
  .moro-story__book-sheet {
    transition-duration: 0.01ms !important;
  }
  .moro-story__book-stage {
    --book-z-delay: 0.01ms;
  }
}
