:root{
  --forest-dark:#0B251A;
  --forest-med:#1B4332;
  --forest-light:#D8F3DC;

  --sauna-sand:#F4F1DE;

  --water-blue:#457B9D;
  --water-light:#A8DADC;

  --leaf-green:#74C69D;
  --wood-brown:#B78A62;
}



        /* 自然界の有機的なスラッシュカット（木の葉や風の流れをイメージ） */
        .skew-bg-forest {
            clip-path: polygon(0 0, 100% 2%, 100% 98%, 0 100%);
        }
        
        .skew-bg-sand {
            clip-path: polygon(0 2%, 100% 0, 100% 100%, 0 98%);
        }

        
        

        /* 木漏れ日や葉っぱのドットパターン */
        .leaf-pattern {
            background-image: radial-gradient(rgba(116, 198, 157, 0.15) 15%, transparent 15%);
            background-size: 16px 16px;
        }
        
        .mist-pattern {
            background-image: radial-gradient(rgba(168, 220, 220, 0.1) 10%, transparent 10%);
            background-size: 24px 24px;
        }

        /* 薪の木目模様 */
        .wood-stripes {
            background: repeating-linear-gradient(
                45deg,
                #0B251A,
                #0B251A 15px,
                #113827 15px,
                #113827 30px
            );
        }

        .löyly-stripes {
            background: repeating-linear-gradient(
                -45deg,
                #1B4332,
                #1B4332 12px,
                #122F22 12px,
                #122F22 24px
            );
        }

        /* 心地よいそよ風・湯気のアニメーション */
        @keyframes gentle-sway {
            0% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(4px, -6px) rotate(1deg); }
            100% { transform: translate(0, 0) rotate(0deg); }
        }
        .wind-sway {
            animation: gentle-sway 6s ease-in-out infinite;
        }

        /* ゆらゆら立ち上るロウリュ（湯気） */
        @keyframes steam-rise {
            0% { transform: translateY(10px) scale(0.9); opacity: 0; }
            50% { opacity: 0.5; }
            100% { transform: translateY(-20px) scale(1.1); opacity: 0; }
        }
        .steam-ani {
            animation: steam-rise 3s ease-in-out infinite;
        }

        /* 森の自然なフォント帯 */
        .wood-label {
            background: #B78A62;
            color: #0B251A;
            transform: rotate(-2deg);
            display: inline-block;
            padding: 4px 14px;
            font-weight: 900;
            border: 2px solid #F4F1DE;
            box-shadow: 4px 4px 0px #1B4332;
        }
        
        .water-label {
            background: #457B9D;
            color: #F4F1DE;
            transform: rotate(1deg);
            display: inline-block;
            padding: 6px 18px;
            font-weight: 900;
            border: 2px solid #A8DADC;
            box-shadow: 4px 4px 0px #0B251A;
        }

        /* スクロールバー */
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #0B251A;
        }
        ::-webkit-scrollbar-thumb {
            background: #1B4332;
            border-radius: 5px;
            border: 2px solid #0B251A;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #74C69D;
        }

        /* トントゥのスタンプ風フォント */
        .tonttu-font-char {
            display: inline-block;
            background: #F4F1DE;
            color: #1B4332;
            font-weight: 900;
            padding: 5px 10px;
            margin: 3px;
            transform: rotate(var(--rot));
            border: 2px solid #0B251A;
            box-shadow: 3px 3px 0px rgba(11,37,26,0.3);
            border-radius: 4px;
        }

        .tonttu-font-char:nth-child(even) {
            background: #74C69D;
            color: #0B251A;
        }

        /* 森へのズームインアニメーション */
        @keyframes zoomInForest {
            from {
                transform: scale(1.08);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }
        .animate-forest-in {
            animation: zoomInForest 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        /* ================================
   LOADER
================================ */

.loader {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  background: #0B251A;
  transition: opacity 1000ms ease-out;
}

.loader__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.loader__logo {
  padding: 4px 12px;
  border: 2px solid #D8F3DC;
  background: #74C69D;
  color: #0B251A;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.12em;
  transform: rotate(-1deg);
}

.loader__breath {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #A8DADC;
  font-family: monospace;
  font-size: 14px;
  letter-spacing: 0.12em;
}

.loader__center {
  position: relative;
  text-align: center;
}

.loader__mark {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}

.loader__svg {
  width: 144px;
  height: 144px;
  margin-inline: auto;
  color: #74C69D;
  opacity: 0.85;
}

.loader__steam-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader__steam-text span {
  color: #F4F1DE;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.loader__title {
  color: #F4F1DE;
  font-size: 24px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.12em;
}

.loader__bar {
  width: 256px;
  height: 6px;
  margin: 16px auto 0;
  overflow: hidden;
  border: 1px solid #74C69D;
  border-radius: 9999px;
  background: #1B4332;
}

.loader__bar-fill {
  width: 0;
  height: 100%;
  background: #74C69D;
  transition: width 300ms;
}

.loader__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.loader__copy {
  color: rgba(116, 198, 157, 0.6);
  font-size: 12px;
}

.loader__tags {
  display: flex;
  align-items: center;
  gap: 8px;
}

.loader__tag {
  padding: 4px 12px;
  border: 1px solid;
  font-size: 14px;
  font-weight: 900;
}

.loader__tag--loyly {
  border-color: #F4F1DE;
  background: #1B4332;
  color: #F4F1DE;
  transform: rotate(-3deg);
}

.loader__tag--kiuas {
  border-color: #0B251A;
  background: #F4F1DE;
  color: #0B251A;
  transform: rotate(2deg);
}

.loader__tag--totonoi {
  padding-inline: 16px;
  border-color: #A8DADC;
  background: #457B9D;
  color: #F4F1DE;
  transform: rotate(-1deg);
}

@media (min-width: 640px) {
  .loader__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
  }
}

/* ================================
   HEADER / NAVIGATION
================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;

  width: 100%;

  padding: 24px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: transparent;
}

.site-header__brand-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-logo {
  display: inline-block;
  padding: 12px;
  border: 2px solid #74C69D;
  background: #0B251A;
  color: #F4F1DE;
  transform: rotate(-2deg);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
  transition: transform 300ms;
}

.site-logo:hover {
  transform: rotate(1deg);
}

.site-logo__main {
  color: #F4F1DE;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.site-logo__amp {
  color: #74C69D;
}

.site-logo__badge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  background: #457B9D;
  color: #F4F1DE;
  font-size: 10px;
  font-weight: 700;
  transform: skewX(12deg);
}

.site-nav {
  display: none;
}

.site-nav__link {
  position: relative;
  padding: 8px 16px;
}

.site-nav__text {
  position: relative;
  z-index: 10;
  color: #F4F1DE;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: color 300ms;
}

.site-nav__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  border: 1px solid #0B251A;
  transform: skewX(-12deg) scaleY(0);
  transform-origin: bottom;
  transition: transform 200ms;
}

.site-nav__link:hover .site-nav__text {
  color: #0B251A;
}

.site-nav__link:hover .site-nav__bg {
  transform: skewX(-12deg) scaleY(1);
}

.site-nav__link--concept .site-nav__bg {
  background: #74C69D;
}

.site-nav__link--experience .site-nav__bg {
  background: #F4F1DE;
}

.site-nav__link--routine .site-nav__bg {
  background: #A8DADC;
}

.site-nav__link--generator .site-nav__bg {
  background: #FDE68A;
}

.site-nav__reserve {
  padding: 8px 24px;
  border: 1px solid #0B251A;
  background: #74C69D;
  color: #0B251A;
  font-size: 14px;
  font-weight: 900;
  transform: rotate(-2deg);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
  transition:
    background 300ms,
    color 300ms,
    transform 300ms;
}

.site-nav__reserve:hover {
  background: #F4F1DE;
  color: #0B251A;
  transform: rotate(2deg);
}

.mobile-menu-btn {
  color: #F4F1DE;
  font-size: 30px;
  border: none;
  background: transparent;
  outline: none;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  background: #0B251A;
  color: #F4F1DE;
  font-size: 24px;
  font-weight: 900;
  transform: translateX(100%);
  transition: transform 300ms;
}

.mobile-menu:not(.translate-x-full) {
  transform: translateX(0);
}

.mobile-menu.translate-x-full {
  transform: translateX(100%);
}

.mobile-menu__close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #F4F1DE;
  font-size: 30px;
  border: none;
  background: transparent;
}

.mobile-menu__link {
  color: #F4F1DE;
  transition: color 200ms;
}

.mobile-menu__link:hover {
  color: #74C69D;
}

.mobile-menu__link--accent {
  color: #74C69D;
}

.mobile-menu__link--accent:hover {
  color: #F4F1DE;
}

.mobile-menu__reserve {
  padding: 12px 32px;
  border: 2px solid #F4F1DE;
  background: #74C69D;
  color: #0B251A;
  transform: rotate(-3deg);
}

@media (min-width: 1024px) {
  .site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
  }

  .mobile-menu-btn {
    display: none;
  }
}

/* ================================
   HERO
================================ */

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 96px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__symbol {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.1;
}

.hero__symbol-svg {
  width: 95vw;
  height: 95vw;
  max-width: 900px;
  max-height: 900px;
  color: #74C69D;
}

.hero__stripe {
  position: absolute;
  z-index: 0;
  width: 120%;
  right: auto;
  border-color: #0B251A;
}

.hero__stripe--forest {
  top: 25%;
  left: -40px;
  height: 128px;
  border-top: 4px solid #0B251A;
  border-bottom: 4px solid #0B251A;
  background-color: #1B4332;
  opacity: 0.7;
  transform: rotate(-4deg);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero__stripe--water {
  right: -40px;
  bottom: 25%;
  height: 192px;
  border-top: 2px solid #0B251A;
  border-bottom: 2px solid #0B251A;
  background-color: #457B9D;
  opacity: 0.2;
  transform: rotate(3deg);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero__container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero__content {
  width: 100%;
  text-align: left;
}

.hero__title {
  margin-bottom: 24px;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.25;
  font-size: 36px;
}

.hero__title-main {
  display: block;
  color: #F4F1DE;
  filter: drop-shadow(3px 3px 0 #0B251A);
}

.hero__title-accent {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 16px;
  border: 4px solid #0B251A;
  background: #74C69D;
  color: #0B251A;
  transform: rotate(-1.5deg);
  box-shadow: 6px 6px 0 #F4F1DE;
  transition: transform 300ms;
}

.hero__title-accent:hover {
  transform: rotate(1deg);
}

.hero__lead {
  max-width: 512px;
  margin-bottom: 32px;
  padding-left: 16px;
  border-left: 4px solid #74C69D;
  color: #F4F1DE;
  font-size: 16px;
  line-height: 1.625;
  font-weight: 600;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 4px solid #0B251A;
  color: #0B251A;
  text-align: center;
  transition:
    transform 200ms,
    background 200ms,
    color 200ms;
}

.hero__btn:hover {
  transform: scale(1.05);
}

.hero__btn:active {
  transform: scale(0.95);
}

.hero__btn--primary {
  padding: 16px 32px;
  background: #74C69D;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.12em;
  box-shadow: 6px 6px 0 #0B251A;
}

.hero__btn--primary:hover {
  background: #F4F1DE;
}

.hero__btn--secondary {
  padding: 16px 32px;
  background: #F4F1DE;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.025em;
  transform: rotate(-2deg);
  box-shadow: 6px 6px 0 #1B4332;
}

.hero__btn--secondary:hover {
  background: #A8DADC;
  transform: rotate(-2deg) scale(1.05);
}

.hero__btn--secondary:active {
  transform: rotate(-2deg) scale(0.95);
}

.hero__visual-wrap {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__card {
  position: relative;
  width: 320px;
  height: 384px;
  overflow: hidden;
  border: 8px solid #F4F1DE;
  background: #1B4332;
  transform: rotate(2deg);
  box-shadow: 16px 16px 0 #1B4332;
}

.hero__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1000ms;
}

.hero__card:hover .hero__image {
  transform: scale(1.05);
}

.hero__image-grad {
  position: absolute;
  inset: 0;
  opacity: 0.9;
  background: linear-gradient(to top, #0B251A, transparent, transparent);
}

.hero__steam {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 33.333%;
  z-index: 10;
  display: flex;
  justify-content: space-around;
  pointer-events: none;
  opacity: 0.6;
}

.hero__steam-cloud {
  color: rgba(244, 241, 222, 0.2);
}

.hero__steam-cloud--one {
  font-size: 48px;
}

.hero__steam-cloud--two {
  font-size: 36px;
  color: rgba(244, 241, 222, 0.3);
}

.hero__steam-cloud--three {
  font-size: 60px;
  color: rgba(244, 241, 222, 0.25);
}

.hero__caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 32px;
  z-index: 10;
}

.hero__caption-title {
  padding: 12px;
  border: 2px solid #F4F1DE;
  background: rgba(11, 37, 26, 0.9);
  color: #F4F1DE;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(1.5deg);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero__caption-meta {
  margin-top: 8px;
  color: #74C69D;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero__slash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-top: 4px solid #74C69D;
  opacity: 0.5;
  transform: translateY(75%) skewY(-12deg);
}

@media (min-width: 640px) {
  .hero__title {
    font-size: 60px;
  }

  .hero__lead {
    font-size: 18px;
  }

  .hero__actions {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .hero__card {
    width: 420px;
    height: 520px;
  }

  .hero__caption-title {
    font-size: 24px;
  }

  .hero__caption-meta {
    font-size: 14px;
  }
}

@media (min-width: 1024px) {
  .hero__container {
    flex-direction: row;
  }

  .hero__content,
  .hero__visual-wrap {
    width: 50%;
  }

  .hero__title {
    font-size: 72px;
  }
}

/* ================================
   STORY / CONCEPT
================================ */

.story {
  position: relative;
  padding-block: 96px;
  overflow: hidden;
  background: #F4F1DE;
  color: #0B251A;
  clip-path: polygon(0 0, 100% 2%, 100% 98%, 0 100%);
}

.story__inner {
  padding-block: 64px;
  background: #0B251A;
  color: #F4F1DE;
  transform: rotate(-1deg) skewY(1deg);
}

.story__container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 24px;
}

.story__layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.story__visual-wrap {
  width: 100%;
}

.story__visual-card {
  position: relative;
  overflow: hidden;
  padding: 16px;
  border: 4px solid #F4F1DE;
  background: #1B4332;
  transform: rotate(-2.5deg);
  box-shadow: 12px 12px 0 #0B251A;
}

.story__image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0B251A;
}

.story__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: transform 700ms;
}

.story__visual-card:hover .story__image {
  transform: scale(1.05);
}

.story__image-overlay {
  position: absolute;
  inset: 0;
  background: #1B4332;
  mix-blend-mode: multiply;
  opacity: 0.55;
}

.story__image-label {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 8px;
  background: #F4F1DE;
  color: #0B251A;
  font-size: 12px;
  font-weight: 900;
  transform: rotate(2deg);
}

.story__content {
  width: 100%;
  text-align: left;
}

.story__label {
  display: inline-block;
  margin-bottom: 24px;
  padding: 8px 24px;
  border: 2px solid #0B251A;
  background: #F4F1DE;
  color: #0B251A;
  font-weight: 900;
  transform: rotate(1deg);
}

.story__title {
  margin-bottom: 24px;
  color: #F4F1DE;
  font-size: 30px;
  line-height: 1.25;
  letter-spacing: -0.025em;
  font-weight: 900;
}

.story__lead {
  margin-bottom: 16px;
  color: #74C69D;
  font-size: 16px;
  line-height: 1.625;
  font-weight: 700;
}

.story__text {
  color: rgba(244, 241, 222, 0.9);
  font-size: 16px;
  line-height: 1.625;
  opacity: 0.9;
}

@media (min-width: 640px) {
  .story__title {
    font-size: 48px;
  }

  .story__lead {
    font-size: 18px;
  }
}

@media (min-width: 1024px) {
  .story__layout {
    flex-direction: row;
  }

  .story__visual-wrap,
  .story__content {
    width: 50%;
  }
}

/* ================================
   EXPERIENCE
================================ */

.experience {
  position: relative;
  padding-block: 96px;
  overflow: hidden;
  background: #0B251A;
}

.experience__container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 24px;
}

.experience__header {
  margin-bottom: 64px;
  text-align: center;
}

.experience__label {
  margin-bottom: 16px;
}

.experience__title {
  color: #F4F1DE;
  font-size: 30px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.12em;
  transform: rotate(-1deg);
}

.experience__subtitle {
  margin-top: 8px;
  color: #74C69D;
  font-size: 14px;
  font-weight: 700;
}

.experience__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.experience__tab {
  padding: 12px 20px;
  border: 4px solid #1B4332;
  background: #1B4332;
  color: #F4F1DE;
  font-size: 14px;
  font-weight: 900;
  transform: rotate(1.5deg);
  transition:
    background 200ms,
    color 200ms,
    border-color 200ms,
    transform 200ms;
}

.experience__tab:hover {
  background: #74C69D;
  color: #0B251A;
}

.experience__tab.active {
  border-color: #F4F1DE;
  background: #74C69D;
  color: #0B251A;
  transform: rotate(-2deg);
}

.experience__card {
  position: relative;
  min-height: 500px;
  max-width: 1024px;
  margin-inline: auto;
  overflow: hidden;
  padding: 24px;
  border: 8px solid #74C69D;
  background: #1B4332;
  clip-path: polygon(0 0, 100% 6%, 100% 100%, 0 94%);
}

.experience__card-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  pointer-events: none;
}

.experience__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.experience__image-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.experience__image-frame {
  position: relative;
  width: 256px;
  height: 320px;
  overflow: hidden;
  border: 4px solid #F4F1DE;
  background: #0B251A;
  transform: rotate(-2deg);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.experience__image {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: #74C69D;
  font-size: 36px;
  font-weight: 900;
}

.experience__image-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 37, 26, 0.9), transparent);
}

.experience__image-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: #F4F1DE;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.025em;
}

.experience__text {
  width: 100%;
  text-align: left;
}

.experience__codename {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 16px;
  background: #F4F1DE;
  color: #0B251A;
  font-size: 12px;
  font-weight: 900;
  transform: rotate(-1.5deg);
}

.experience__name {
  margin-bottom: 8px;
  color: #F4F1DE;
  font-size: 30px;
  font-weight: 900;
}

.experience__persona {
  margin-bottom: 24px;
  color: #74C69D;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.experience__desc-wrap {
  padding-top: 16px;
  border-top: 1px solid rgba(116, 198, 157, 0.3);
}

.experience__desc {
  margin-bottom: 24px;
  color: rgba(244, 241, 222, 0.9);
  font-size: 14px;
  line-height: 1.625;
  font-weight: 600;
}

.experience__specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.experience__spec {
  padding: 12px;
  border: 1px solid #74C69D;
  background: rgba(11, 37, 26, 0.6);
}

.experience__spec-label {
  display: block;
  color: #74C69D;
  font-size: 10px;
  font-weight: 900;
}

.experience__spec-text {
  color: #F4F1DE;
  font-size: 12px;
  font-weight: 700;
}

.experience__sound-btn {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 2px solid #0B251A;
  background: #74C69D;
  color: #0B251A;
  font-weight: 700;
  transform: rotate(1deg);
  transition:
    background 200ms,
    transform 200ms;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.experience__sound-btn:hover {
  background: #F4F1DE;
}

.experience__sound-btn i {
  color: #0B251A;
}

.experience__leaf {
  position: absolute;
  right: -32px;
  bottom: -32px;
  color: rgba(116, 198, 157, 0.1);
  pointer-events: none;
}

.experience__leaf i {
  font-size: 128px;
}

@media (min-width: 640px) {
  .experience__title {
    font-size: 60px;
  }

  .experience__tab {
    font-size: 16px;
  }

  .experience__card {
    padding: 48px;
  }

  .experience__image-frame {
    width: 320px;
    height: 384px;
  }

  .experience__name {
    font-size: 36px;
  }

  .experience__desc {
    font-size: 16px;
  }

  .experience__spec-text {
    font-size: 14px;
  }
}

@media (min-width: 1024px) {
  .experience__content {
    flex-direction: row;
    gap: 48px;
  }

  .experience__image-wrap,
  .experience__text {
    width: 50%;
  }
}

/* ================================
   ROUTINE
================================ */

.routine {
  position: relative;
  padding-block: 96px;
  overflow: hidden;
  background: #F4F1DE;
  color: #0B251A;
}

.routine__container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 24px;
}

.routine__header {
  margin-bottom: 64px;
  text-align: center;
}

.routine__label {
  display: inline-block;
  margin-bottom: 16px;
  padding: 4px 14px;
  border: 2px solid #F4F1DE;
  background: #1B4332;
  color: #F4F1DE;
  font-weight: 900;
  box-shadow: 4px 4px 0 #1B4332;
  transform: rotate(-2deg);
}

.routine__title {
  color: #0B251A;
  font-size: 30px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.12em;
  transform: rotate(2deg);
}

.routine__subtitle {
  margin-top: 8px;
  color: #1B4332;
  font-size: 14px;
  font-weight: 700;
}

.routine__grid {
  display: grid;
  gap: 32px;
  max-width: 1024px;
  margin-inline: auto;
}

.routine-card {
  padding: 24px;
  border: 4px solid #0B251A;
  color: #F4F1DE;
  transition: transform 300ms;
}

.routine-card:hover {
  transform: scale(1.01);
}

.routine-card--heat {
  background: #0B251A;
  box-shadow: 8px 8px 0 #1B4332;
  clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%);
}

.routine-card--cool {
  background: #457B9D;
  box-shadow: 8px 8px 0 #0B251A;
}

.routine-card--rest {
  background: #1B4332;
  box-shadow: 8px 8px 0 #74C69D;
  clip-path: polygon(0 0, 100% 6%, 100% 100%, 0 94%);
}

.routine-card__image-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  margin-bottom: 24px;
  overflow: hidden;
  border: 2px solid #F4F1DE;
}

.routine-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.routine-card__image--heat,
.routine-card__image--rest {
  opacity: 0.8;
}

.routine-card__image--cool {
  opacity: 0.85;
}

.routine-card__grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0B251A, transparent);
}

.routine-card__badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 4px 12px;
  color: #0B251A;
  font-size: 12px;
  font-weight: 900;
}

.routine-card__badge--heat {
  background: #74C69D;
  transform: rotate(-2deg);
}

.routine-card__badge--cool {
  background: #F4F1DE;
  transform: rotate(2deg);
}

.routine-card__badge--rest {
  background: #FDE68A;
  transform: rotate(-1deg);
}

.routine-card__title {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 900;
}

.routine-card__title--green {
  color: #74C69D;
}

.routine-card__title--white {
  color: #ffffff;
}

.routine-card__text {
  color: rgba(244, 241, 222, 0.9);
  font-size: 12px;
  line-height: 1.625;
  font-weight: 600;
}

@media (min-width: 640px) {
  .routine__title {
    font-size: 60px;
  }

  .routine-card {
    padding: 32px;
  }

  .routine-card__title {
    font-size: 24px;
  }

  .routine-card__text {
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  .routine__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ================================
   INVITATION GENERATOR
================================ */

.generator {
  position: relative;
  padding-block: 96px;
  overflow: hidden;
  border-top: 8px solid #74C69D;
  background: #0B251A;
}

.generator__container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 24px;
}

.generator__header {
  margin-bottom: 64px;
  text-align: center;
}

.generator__label {
  display: inline-block;
  margin-bottom: 16px;
  padding: 4px 14px;
  border: 2px solid #0B251A;
  background: #74C69D;
  color: #0B251A;
  font-weight: 900;
  box-shadow: 4px 4px 0 #1B4332;
  transform: rotate(-2deg);
}

.generator__title {
  color: #F4F1DE;
  font-size: 30px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.12em;
  transform: rotate(-2deg);
}

.generator__subtitle {
  margin-top: 8px;
  color: #74C69D;
  font-weight: 700;
}

.generator__panel {
  position: relative;
  max-width: 896px;
  margin-inline: auto;
  padding: 24px;
  border: 8px solid #F4F1DE;
  background: #1B4332;
  box-shadow: 16px 16px 0 #1B4332;
}

.generator__layout {
  display: grid;
  gap: 32px;
}

.generator__form-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
}

.generator__preview-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.generator__side-title {
  padding-bottom: 8px;
  border-bottom: 2px solid;
  font-size: 20px;
  font-weight: 900;
  text-align: left;
}

.generator__side-title i {
  margin-right: 8px;
}

.generator__side-title--green {
  color: #74C69D;
  border-color: #74C69D;
}

.generator__side-title--cream {
  margin-bottom: 16px;
  color: #F4F1DE;
  border-color: transparent;
}

.generator__field {
  width: 100%;
}

.generator__label-text {
  display: block;
  margin-bottom: 8px;
  color: #F4F1DE;
  font-size: 12px;
  font-weight: 900;
}

.generator__input,
.generator__textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #74C69D;
  background: #0B251A;
  color: #F4F1DE;
  font-weight: 700;
  outline: none;
}

.generator__input {
  font-size: 16px;
}

.generator__input--small,
.generator__textarea {
  font-size: 14px;
}

.generator__input:focus,
.generator__textarea:focus {
  border-color: #FCD34D;
}

.generator__color-list {
  display: flex;
  gap: 16px;
}

.generator__color-btn {
  width: 40px;
  height: 40px;
  border: 2px solid #F4F1DE;
  border-radius: 9999px;
  outline: none;
}

.generator__color-btn:focus {
  box-shadow: 0 0 0 4px #FDE68A;
}

.generator__color-btn--green {
  background: #74C69D;
}

.generator__color-btn--wood {
  background: #B78A62;
}

.generator__color-btn--water {
  background: #457B9D;
}

/* Preview Card */
.calling-card {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  padding: 24px;
  border: 4px solid #F4F1DE;
  background: #0B251A;
  color: #F4F1DE;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: rotate(1deg);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: all 300ms;
}

.calling-card--wood {
  border-color: #0B251A;
  background: #B78A62;
  transform: rotate(-1deg);
}

.calling-card--water {
  border-color: #A8DADC;
  background: #457B9D;
  transform: rotate(2deg);
}

.calling-card__bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
}

.calling-card__top {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.calling-card__tag {
  padding: 4px 12px;
  border: 1px solid #0B251A;
  background: #74C69D;
  color: #0B251A;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.calling-card__emoji {
  color: #FDE68A;
  font-size: 18px;
  font-weight: 900;
}

.calling-card__target {
  position: relative;
  z-index: 10;
  margin-bottom: 16px;
  text-align: left;
}

.calling-card__target-label {
  display: block;
  margin-bottom: 4px;
  color: rgba(244, 241, 222, 0.8);
  font-size: 10px;
  font-weight: 700;
}

.calling-card__target-name {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.calling-card__body-wrap {
  position: relative;
  z-index: 10;
  margin-block: 12px;
  padding: 16px;
  border: 1px solid rgba(116, 198, 157, 0.2);
  border-radius: 4px;
  background: rgba(27, 67, 50, 0.8);
}

.calling-card__body {
  color: rgba(244, 241, 222, 0.9);
  font-size: 12px;
  line-height: 1.625;
  font-weight: 600;
  text-align: left;
}

.calling-card__bottom {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 16px;
  border-top: 1px solid rgba(244, 241, 222, 0.2);
}

.calling-card__message {
  color: #74C69D;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: left;
}

.calling-card__message span {
  color: #F4F1DE;
  font-weight: 900;
}

.calling-card__sender-wrap {
  text-align: right;
}

.calling-card__sender-label {
  display: block;
  color: rgba(244, 241, 222, 0.7);
  font-size: 9px;
  font-weight: 600;
}

.calling-card__sender {
  display: inline-block;
  padding: 2px 8px;
  border: 1px solid #0B251A;
  border-radius: 4px;
  background: #F4F1DE;
  color: #0B251A;
  font-size: 12px;
  font-weight: 900;
  transform: rotate(-3deg);
}

.calling-card__watermark {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 112px;
  height: 112px;
  color: rgba(116, 198, 157, 0.1);
  pointer-events: none;
  transform: rotate(12deg);
}

.calling-card__watermark i {
  font-size: 100px;
}

.generator__share-wrap {
  margin-top: 24px;
}

.generator__share-btn {
  width: 100%;
  padding: 14px 0;
  border: 4px solid #0B251A;
  background: #74C69D;
  color: #0B251A;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: rotate(-1deg);
  transition: background 200ms;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.generator__share-btn:hover {
  background: #F4F1DE;
}

@media (min-width: 640px) {
  .generator__panel {
    padding: 48px;
  }

  .generator__title {
    font-size: 48px;
  }

  .generator__side-title {
    font-size: 24px;
  }

  .calling-card__body {
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  .generator__layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ================================
   RESERVE
================================ */

.reserve {
  position: relative;
  padding-block: 96px;
  overflow: hidden;
  border-top: 8px solid #0B251A;
  border-bottom: 8px solid #0B251A;
  background-color: #74C69D;
  color: #0B251A;
  clip-path: polygon(0 2%, 100% 0, 100% 100%, 0 98%);
}

.reserve__container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 24px;
}

.reserve__inner {
  max-width: 768px;
  margin-inline: auto;
  text-align: center;
}

.reserve__label {
  display: inline-block;
  margin-bottom: 24px;
  padding: 8px 32px;
  border: 2px solid #F4F1DE;
  background: #0B251A;
  color: #F4F1DE;
  font-size: 14px;
  font-weight: 900;
  transform: rotate(-2.5deg);
}

.reserve__title {
  margin-bottom: 16px;
  color: #0B251A;
  font-size: 36px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.025em;
  filter: drop-shadow(2px 2px 0 #F4F1DE);
}

.reserve__lead {
  max-width: 576px;
  margin: 0 auto 32px;
  color: #0B251A;
  font-size: 14px;
  line-height: 1.625;
  font-weight: 700;
}

.reserve__lead span {
  display: inline-block;
  padding: 2px 8px;
  background: #0B251A;
  color: #74C69D;
  font-weight: 700;
}

/* Form */
.reserve-form {
  max-width: 512px;
  margin-inline: auto;
  padding: 24px;
  border: 4px solid #0B251A;
  background: #0B251A;
  transform: rotate(1deg);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.reserve-form__title {
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(116, 198, 157, 0.3);
  color: #74C69D;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: left;
}

.reserve-form__row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reserve-form__input {
  width: 100%;
  padding: 16px;
  border: 2px solid #74C69D;
  border-radius: 0;
  background: #1B4332;
  color: #F4F1DE;
  font-size: 14px;
  font-weight: 700;
  outline: none;
}

.reserve-form__input:focus {
  border-color: #FDE68A;
}

.reserve-form__button {
  padding: 16px 24px;
  border: 2px solid #0B251A;
  border-radius: 0;
  background: #74C69D;
  color: #0B251A;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.12em;
  transition:
    background 200ms,
    transform 200ms;
}

.reserve-form__button:hover {
  background: #F4F1DE;
  transform: scale(1.05);
}

.reserve-form__button:active {
  transform: scale(0.95);
}

.reserve-form__note {
  margin-top: 16px;
  color: rgba(244, 241, 222, 0.6);
  font-size: 11px;
  line-height: 1.625;
  text-align: left;
}

/* Success Modal */
.success-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(11, 37, 26, 0.95);
}

.success-modal.hidden {
  display: none;
}

.success-modal__box {
  position: relative;
  width: 100%;
  max-width: 448px;
  padding: 32px;
  border: 8px solid #74C69D;
  background: #1B4332;
  text-align: center;
  transform: rotate(-1.5deg);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.success-modal__icon {
  margin-bottom: 16px;
  color: #F4F1DE;
  font-size: 48px;
}

.success-modal__label {
  display: inline-block;
  margin-bottom: 24px;
  padding: 8px 24px;
  border: 2px solid #0B251A;
  background: #74C69D;
  color: #0B251A;
  font-size: 14px;
  font-weight: 900;
  transform: rotate(2deg);
}

.success-modal__title {
  margin-bottom: 12px;
  color: #F4F1DE;
  font-size: 20px;
  font-weight: 900;
}

.success-modal__message {
  margin-bottom: 24px;
  padding: 16px;
  border: 1px solid rgba(116, 198, 157, 0.2);
  background: #0B251A;
  color: #F4F1DE;
  font-size: 12px;
  line-height: 1.625;
  font-weight: 700;
  text-align: left;
}

.success-modal__message p + p {
  margin-top: 12px;
}

.success-modal__signature {
  color: #74C69D;
  font-weight: 700;
  text-align: right;
}

.success-modal__button {
  padding: 10px 32px;
  border: 4px solid #0B251A;
  background: #F4F1DE;
  color: #0B251A;
  font-weight: 900;
  transform: rotate(1deg);
  transition:
    background 200ms,
    color 200ms;
}

.success-modal__button:hover {
  background: #74C69D;
  color: #0B251A;
}

@media (min-width: 640px) {
  .reserve__title {
    font-size: 60px;
  }

  .reserve__lead {
    font-size: 16px;
  }

  .reserve-form {
    padding: 32px;
  }

  .reserve-form__row {
    flex-direction: row;
  }

  .reserve-form__input {
    flex: 1;
  }

  .success-modal__title {
    font-size: 24px;
  }

  .success-modal__message {
    font-size: 14px;
  }
}

/* ================================
   FOOTER
================================ */

.site-footer {
  overflow: hidden;
  padding-block: 64px;
  border-top: 8px solid #74C69D;
  background: #0B251A;
  color: #F4F1DE;
}

.site-footer__container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 24px;
}

.site-footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
}

.site-footer__brand {
  text-align: center;
}

.site-footer__logo {
  display: inline-block;
  margin-bottom: 16px;
  padding: 16px;
  border: 4px solid #0B251A;
  background: #74C69D;
  color: #0B251A;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.12em;
  transform: rotate(-2deg);
  box-shadow:
    0 20px 25px -5px rgba(0,0,0,.2),
    0 10px 10px -5px rgba(0,0,0,.15);
}

.site-footer__desc {
  max-width: 380px;
  margin-inline: auto;
  color: rgba(244,241,222,.8);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.site-footer__nav a {
  color: #F4F1DE;
  font-size: 13px;
  font-weight: 700;
  transition: color .2s ease;
}

.site-footer__nav a:hover {
  color: #74C69D;
}

.site-footer__nav--active {
  color: #74C69D !important;
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid #1B4332;
}

.site-footer__copyright {
  color: rgba(244,241,222,.5);
  font-size: 12px;
  text-align: center;
}

.site-footer__social {
  display: flex;
  gap: 16px;
}

.site-footer__social a {
  color: rgba(244,241,222,.7);
  font-size: 18px;
  transition: color .2s ease;
}

.site-footer__social a:hover {
  color: #ffffff;
}

@media (min-width:1024px) {

  .site-footer__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .site-footer__brand {
    text-align: left;
  }

  .site-footer__desc {
    margin-inline: 0;
  }

  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .site-footer__copyright {
    text-align: left;
  }

}



/* ================================
   BASE RESET
================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
svg {
  display: block;
}

.site-body {
  background: #0B251A;
  color: #F4F1DE;
  font-family: 'Noto Sans JP', 'Montserrat', sans-serif;
}

::selection {
  background: #74C69D;
  color: #0B251A;
}

.hero{
  position:relative;
  min-height:100vh;

  background:
    linear-gradient(
      rgba(0,0,0,.18),
      rgba(0,0,0,.28)
    ),
    url("images/3.jpg");

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  background-attachment: fixed;
}

.hero::before{
  background:rgba(0,0,0,.12);
}

.hero::after{
  background:
    radial-gradient(
      circle at center,
      transparent 35%,
      rgba(0,0,0,.18) 100%
    );
}

.hero__image {
  position: relative;
  overflow: hidden;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero__bg{
  filter:
    saturate(.7)
    brightness(.7)
    contrast(.9);
}



@media (max-width: 639px) {
  .hero__content {
    max-width: 360px;
    margin-inline: auto;
    text-align: left;
  }

  .hero__title {
    margin-bottom: 12px;
    font-size: clamp(27px, 8.4vw, 36px);
    line-height: 1.12;
  }

  .hero__title-main {
    display: inline-block;
  }

  .hero__title-accent {
    margin-top: 6px;
    padding: 5px 10px;
    border-width: 2px;
    box-shadow: 3px 3px 0 #F4F1DE;
    font-size: .92em;
  }

  .hero__lead {
    margin-bottom: 16px;
    padding: 12px 14px;
    font-size: 17px;
    line-height: 1.65;
  }

  .hero__actions {
    gap: 9px;
  }

  .hero__btn--primary,
  .hero__btn--secondary {
    min-height: 44px;
    padding: 10px 14px;
    font-size: 12px;
    letter-spacing: .06em;
    border-width: 2px;
    box-shadow: 3px 3px 0 #0B251A;
  }

  .hero__btn i {
    font-size: 12px;
  }
}

@media (max-width:639px){

  .hero__container{
    display:flex;
    flex-direction:column;
  }

  .hero__visual-wrap{
    order:1;
  }

  .hero__content{
    order:2;
  }

}

@media (max-width:639px){

  .hero__visual-wrap{
    margin-bottom:20px;
  }

  .hero__content{
    max-width:340px;
    margin:auto;
  }

}

@media (max-width:639px){

  .hero__content{
    order: 2;
    margin-top: -74px;
  }

}

.mobile-menu-btn{
  width:72px;
  height:72px;
  border-radius:50%;
  background:rgba(11,37,26,.75);
  border:2px solid rgba(244,241,222,.3);
  backdrop-filter:blur(10px);

  color:#F4F1DE;
  font-size:12px;
  font-weight:900;
  letter-spacing:.2em;
}

.hero__lead{
  position:relative;
  max-width:520px;
  padding:18px 22px 18px 26px;

  border-left:0;
  border:1px solid rgba(244,241,222,.24);
  background:
    linear-gradient(135deg,
      rgba(11,37,26,.72),
      rgba(27,67,50,.38)
    );

  color:#F4F1DE;
  font-size:18px;
  line-height:1.9;
  font-weight:700;
  letter-spacing:.04em;

  backdrop-filter:blur(12px);
  box-shadow:0 18px 50px rgba(0,0,0,.22);
}

.hero__lead::before{
  
  display:block;
  margin-bottom:10px;

  color:#74C69D;
  font-family:'Montserrat',sans-serif;
  font-size:10px;
  font-weight:900;
  letter-spacing:.24em;
}

.hero__lead::after{
  content:"";
  position:absolute;
  left:14px;
  top:18px;
  bottom:18px;
  width:2px;
  background:linear-gradient(
    to bottom,
    transparent,
    #74C69D,
    transparent
  );
}

@media (max-width:639px){
  .hero__lead{
    padding:15px 16px 15px 20px;
    font-size:14px;
    line-height:1.85;
  }

  .hero__lead::before{
    font-size:9px;
    margin-bottom:8px;
  }

  .hero__lead::after{
    left:10px;
  }
}



  @media (max-width:639px){

  .site-header{
    padding:14px 14px;
    gap:10px;
  }

  .site-logo{
    transform:rotate(-2deg) scale(.82);
    transform-origin:left center;
  }

  .site-logo__main{
    font-size:24px;
  }

  .site-logo__badge{
    font-size:10px;
  }

  .mobile-reserve-btn{
    display:flex;
    align-items:center;
    justify-content:center;

    width:70px;
    height:70px;
    flex:0 0 70px;

    border-radius:50%;
    background:#74C69D;
    color:#0B251A;

    font-size:12px;
    font-weight:900;
    letter-spacing:.08em;
    text-decoration:none;

    border:2px solid rgba(244,241,222,.55);
    box-shadow:0 10px 28px rgba(0,0,0,.28);
    transform:rotate(-8deg);
  }

}

.mobile-menu-btn{
  width:74px;
  height:74px;

  display:flex;
  align-items:center;
  justify-content:center;

  flex:0 0 74px;

  border-radius:50%;
  background:rgba(11,37,26,.85);

  border:2px solid rgba(244,241,222,.35);
  backdrop-filter:blur(12px);

  color:#F4F1DE;

  font-size:11px;
  font-weight:900;
  letter-spacing:.08em;
  line-height:1;
}

.site-header{
  align-items:center;
}

/* PCでは非表示 */
@media (min-width:1024px){

  .mobile-reserve-btn{
    display:none !important;
  }

  .mobile-menu-btn{
    display:none !important;
  }

}

@media (min-width:768px){
    .mobile-reserve-btn{
    display:none !important;
  } 
}

.mobile-menu__close{
  z-index:10001;
}

.mobile-menu{
  z-index:10000;
}

.experience__title{
  display:flex;
  justify-content:center;
  align-items:flex-end;
  gap:8px;
}

.experience__title-number{
  font-size:clamp(72px,10vw,120px);
  line-height:.8;
  color:#74C69D;
  font-weight:900;
}

.experience__title-text{
  font-size:clamp(24px,3vw,42px);
  color:#F4F1DE;
}

@media (max-width:639px){

  .experience__card{
    clip-path: polygon(
      0 0,
      100% 3%,
      100% 100%,
      0 97%
    );
  }

}

.experience__card{
    padding-top:0;
  border-top:none;

  margin-top:-40px;
}

.experience__text{
    padding-top:0;
  border-top:none;

  margin-top:-40px;
}

/* =========================
   WHAT TO EXPECT / DATA
   既存ROUTINE寄せ
========================= */

.expect {
  position: relative;
  padding-block: 96px;
  overflow: hidden;
  background: #F4F1DE;
  color: #0B251A;
}

.expect__container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 24px;
}

.expect__header {
  margin-bottom: 64px;
  text-align: center;
}

.expect__label {
  display: inline-block;
  margin-bottom: 16px;
  padding: 4px 14px;
  border: 2px solid #F4F1DE;
  background: #1B4332;
  color: #F4F1DE;
  font-weight: 900;
  box-shadow: 4px 4px 0 #1B4332;
  transform: rotate(-2deg);
}

.expect__title {
  margin: 0;
  color: #0B251A;
  font-size: 30px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.04em;
  line-height: 1.25;
  transform: rotate(1deg);
}

.expect__subtitle {
  max-width: 620px;
  margin: 12px auto 0;
  color: #1B4332;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

.expect__grid {
  display: grid;
  gap: 24px;
  max-width: 1024px;
  margin-inline: auto;
}

.expect-card {
  position: relative;
  min-height: 230px;
  padding: 28px;
  border: 4px solid #0B251A;
  background: #1B4332;
  color: #F4F1DE;
  box-shadow: 8px 8px 0 #0B251A;
  overflow: hidden;
  transition: transform 300ms;
}

.expect-card:hover {
  transform: scale(1.01) rotate(-0.5deg);
}

.expect-card:nth-child(1),
.expect-card:nth-child(4) {
  background: #0B251A;
  box-shadow: 8px 8px 0 #1B4332;
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}

.expect-card:nth-child(2),
.expect-card:nth-child(5) {
  background: #1B4332;
  box-shadow: 8px 8px 0 #74C69D;
}

.expect-card:nth-child(3),
.expect-card:nth-child(6) {
  background: #457B9D;
  box-shadow: 8px 8px 0 #0B251A;
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
}

.expect-card__num {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(244, 241, 222, 0.18);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.expect-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 2px solid #F4F1DE;
  background: #F4F1DE;
  color: #0B251A;
  font-size: 26px;
  transform: rotate(-3deg);
  box-shadow: 4px 4px 0 rgba(11, 37, 26, 0.45);
}

.expect-card__label {
  display: inline-block;
  margin: 0 0 12px;
  padding: 4px 10px;
  background: #74C69D;
  color: #0B251A;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  transform: rotate(1.5deg);
}

.expect-card__title {
  margin: 0 0 12px;
  color: #F4F1DE;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
}

.expect-card__text {
  margin: 0;
  color: rgba(244, 241, 222, 0.9);
  font-size: 13px;
  line-height: 1.75;
  font-weight: 600;
}

@media (min-width: 640px) {
  .expect__title {
    font-size: 54px;
  }

  .expect-card {
    padding: 30px;
  }

  .expect-card__title {
    font-size: 24px;
  }

  .expect-card__text {
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  .expect__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  .expect {
    padding-block: 78px;
  }

  .expect__header {
    margin-bottom: 42px;
  }

  .expect__title {
    font-size: 34px;
  }

  .expect__subtitle {
    font-size: 13px;
  }

  .expect__grid {
    gap: 20px;
  }

  .expect-card {
    min-height: auto;
    padding: 24px;
  }
}

/* ==========================
   GALLERY PREVIEW
========================== */

.gallery-preview {
  padding: 120px 20px;
  background: #0b251a;
  position: relative;
  overflow: hidden;
}

.gallery-preview__container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-preview__header {
  text-align: center;
  margin-bottom: 60px;
}

.gallery-preview__label {
  display: inline-block;
  padding: 6px 16px;
  background: #74C69D;
  color: #0B251A;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  transform: rotate(-2deg);
}

.gallery-preview__title {
  margin-top: 20px;
  color: #F4F1DE;
  font-size: clamp(38px,6vw,72px);
  font-weight: 900;
  font-style: italic;
}

.gallery-preview__subtitle {
  margin-top: 16px;
  color: rgba(244,241,222,.8);
  line-height: 1.9;
}

.gallery-preview__visual {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.gallery-preview__image {
  overflow: hidden;
  border: 6px solid #F4F1DE;
  box-shadow: 10px 10px 0 #1B4332;
}

.gallery-preview__image--large {
  grid-row: span 2;
}

.gallery-preview__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: .6s;
}

.gallery-preview__image:hover img {
  transform: scale(1.08);
}

.gallery-preview__action {
  text-align: center;
  margin-top: 50px;
}

.gallery-preview__button {
  display: inline-block;
  padding: 18px 40px;
  background: #74C69D;
  color: #0B251A;
  font-weight: 900;
  letter-spacing: .15em;
  border: 4px solid #0B251A;
  box-shadow: 8px 8px 0 #1B4332;
  transform: rotate(-2deg);
  transition: .25s;
}

.gallery-preview__button:hover {
  transform: rotate(1deg) scale(1.05);
  background: #F4F1DE;
}

@media(max-width:768px){

  .gallery-preview {
    padding: 90px 16px;
  }

  .gallery-preview__visual {
    grid-template-columns: 1fr;
  }

  .gallery-preview__image--large {
    grid-row: auto;
  }

  .gallery-preview__image {
    height: 240px;
  }

}

/* ==========================
   OUR ROOTS PREVIEW
========================== */


.roots-preview {
  position: relative;
  padding: 120px 20px;
  background: #F4F1DE;
  color: #0B251A;
  overflow: hidden;
}

.roots-preview::before {
  
  position: absolute;
  top: 30px;
  right: -20px;
  color: rgba(11,37,26,.06);
  font-size: clamp(90px, 16vw, 220px);
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: 1;
}

.roots-preview__container {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}

.roots-preview__media {
  position: relative;
  min-height: 520px;
}

.roots-preview__image {
  position: absolute;
  overflow: hidden;
  border: 6px solid #0B251A;
  background: #1B4332;
  box-shadow: 12px 12px 0 #1B4332;
}

.roots-preview__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  filter: saturate(.85) contrast(1.05);
  transition: transform .7s ease;
}

.roots-preview__image:hover img {
  transform: scale(1.06);
}

.roots-preview__image--main {
  left: 0;
  top: 0;
  width: 72%;
  height: 410px;
  transform: rotate(-2deg);
}

.roots-preview__image--sub {
  right: 0;
  bottom: 0;
  width: 52%;
  height: 260px;
  transform: rotate(3deg);
  border-color: #F4F1DE;
  box-shadow: 10px 10px 0 #0B251A;
}

.roots-preview__content {
  position: relative;
}

.roots-preview__label {
  display: inline-block;
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 2px solid #F4F1DE;
  background: #1B4332;
  color: #F4F1DE;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  box-shadow: 4px 4px 0 #1B4332;
  transform: rotate(-2deg);
}

.roots-preview__title {
  margin: 0;
  color: #0B251A;
  font-size: clamp(38px, 5.6vw, 72px);
  font-weight: 900;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -.04em;
}

.roots-preview__lead {
  margin-top: 28px;
  color: #1B4332;
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}

.roots-preview__keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.roots-preview__keywords span {
  display: inline-block;
  padding: 6px 12px;
  background: #74C69D;
  color: #0B251A;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  border: 2px solid #0B251A;
  transform: rotate(-1deg);
}

.roots-preview__keywords span:nth-child(2) {
  background: #B78A62;
  transform: rotate(2deg);
}

.roots-preview__keywords span:nth-child(3) {
  background: #457B9D;
  color: #F4F1DE;
  transform: rotate(-2deg);
}

.roots-preview__button {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 42px;
  padding: 16px 34px;
  border: 4px solid #0B251A;
  background: #74C69D;
  color: #0B251A;
  font-weight: 900;
  box-shadow: 8px 8px 0 #1B4332;
  transform: rotate(-2deg);
  transition: transform .25s ease, background .25s ease;
}

.roots-preview__button:hover {
  background: #F4F1DE;
  transform: rotate(1deg) scale(1.04);
}

.roots-preview__button span {
  font-size: 11px;
  letter-spacing: .18em;
}

.roots-preview__button strong {
  font-size: 18px;
}

@media(max-width: 900px) {
  .roots-preview__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .roots-preview__media {
    min-height: 430px;
  }
}

@media(max-width: 640px) {
  .roots-preview {
    padding: 90px 16px;
  }

  .roots-preview__media {
    min-height: 350px;
  }

  .roots-preview__image--main {
    width: 82%;
    height: 270px;
  }

  .roots-preview__image--sub {
    width: 58%;
    height: 170px;
  }

  .roots-preview__lead {
    font-size: 14px;
    line-height: 1.9;
  }
}

.roots-preview__keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;

  justify-content: center;
}

.roots-preview__button {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 42px;

  /* 追加 */
  margin-left: auto;
  margin-right: auto;

  padding: 16px 34px;
  border: 4px solid #0B251A;
  background: #74C69D;
  color: #0B251A;
  font-weight: 900;
  box-shadow: 8px 8px 0 #1B4332;
  transform: rotate(-2deg);
  transition: transform .25s ease, background .25s ease;
}

.roots-preview__cta{
  display:flex;
  justify-content:center;
  margin-top:42px;
}

.roots-preview__button{
  margin-top:0;
}

.roots-preview__button {
  animation: rootsFloat 3.5s ease-in-out infinite;
}

@keyframes rootsFloat {
  0%,100%{
    transform: translateY(0) rotate(-2deg);
  }
  50%{
    transform: translateY(-8px) rotate(-2deg);
  }
}

.roots-preview__button{
  position:relative;
  overflow:hidden;
}

.roots-preview__button::before{
  content:"";
  position:absolute;
  top:0;
  left:-120%;

  width:60%;
  height:100%;

  background:
  linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.35),
    transparent
  );

  animation:buttonShine 4s linear infinite;
}

@keyframes buttonShine{
  100%{
    left:180%;
  }
}

.gallery-preview__button{
  position: relative;
  overflow: hidden;

  animation: galleryFloat 3.5s ease-in-out infinite;
}

/* ふわふわ */

@keyframes galleryFloat{
  0%,100%{
    transform: translateY(0) rotate(-2deg);
  }
  50%{
    transform: translateY(-8px) rotate(-2deg);
  }
}

/* 光 */

.gallery-preview__button::before{
  content:"";
  position:absolute;
  top:0;
  left:-120%;

  width:60%;
  height:100%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.35),
      transparent
    );

  animation: galleryShine 4s linear infinite;
}

@keyframes galleryShine{
  100%{
    left:180%;
  }
}

/* ホバー */

.gallery-preview__button:hover{
  transform: rotate(0deg) scale(1.05);
  box-shadow: 14px 14px 0 #1B4332;
}

.roots-preview__media {
  position: relative;
}

.roots-preview__ghost {
  position: absolute;
  top: -58px;
  left: -52px;
  z-index: 0;

  font-size: clamp(92px, 15vw, 220px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.08em;

  color: rgba(11, 37, 26, 0.08);
  pointer-events: none;
}

.roots-preview__ghost--line {
  z-index: 4;

  color: transparent;
  -webkit-text-stroke: 2px rgba(244, 241, 222, 0.82);
  

  opacity: 0.9;
  mix-blend-mode: screen;
}

.roots-preview__image {
  z-index: 2;
}

.roots-preview__ghost{
  color:transparent;

  -webkit-text-stroke:1px rgba(11,37,26,.18);

  opacity:.8;

  
}

.roots-preview__ghost{
  top:-40px;
  left:40px;
}

/* ROOTS文字を画像の上に薄く重ねる */
.roots-preview__ghost {
  top: -34px;
  left: 32px;
  z-index: 6;

  font-size: clamp(100px, 18vw, 230px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.08em;

 color: rgba(250, 250, 250, 0.58);
mix-blend-mode: soft-light;
  opacity: 1;

  mix-blend-mode: overlay;
  pointer-events: none;
}

/* 白線版は使わない */
.roots-preview__ghost--line {
  display: none;
}

/* 画像はROOTSより下 */
.roots-preview__image {
  z-index: 2;
}

.roots-preview__ghost{
  top:-80px;
  left:70px;
}
.roots-preview__ghost{
  display:none;
}

@media (max-width:1023px){

  .roots-preview__ghost{
    display:block;
  }

}

.gallery-preview__visual{
  display:flex;
  justify-content:center;
}

/* ==========================
   PRICE GUIDE
========================== */

.price-guide{
  position:relative;
  padding:140px 20px;
  background:#F4F1DE;
  overflow:hidden;
}

.price-guide__container{
  max-width:1200px;
  margin:0 auto;
  position:relative;
}

.price-guide__bg{
  position:absolute;
  inset:0;

  display:flex;
  justify-content:center;
  align-items:center;

  font-size:clamp(120px,18vw,280px);
  font-weight:900;
  letter-spacing:-0.08em;

  color:rgba(11,37,26,.05);

  pointer-events:none;
}

.price-guide__content{
  position:relative;
  z-index:2;

  text-align:center;
}

.price-guide__label{
  display:inline-block;

  padding:6px 16px;

  background:#74C69D;
  color:#0B251A;

  font-size:12px;
  font-weight:900;
  letter-spacing:.18em;

  transform:rotate(-2deg);
}

.price-guide__title{
  margin-top:24px;

  font-size:clamp(48px,6vw,88px);
  font-weight:900;
  font-style:italic;

  color:#0B251A;
  line-height:1.1;
}

.price-guide__text{
  max-width:520px;
  margin:20px auto 0;

  color:#1B4332;
  line-height:1.9;
}

.price-guide__button{
  position:relative;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  margin-top:40px;
  padding:18px 42px;

  background:#0B251A;
  color:#F4F1DE;

  border:4px solid #74C69D;

  font-weight:900;
  letter-spacing:.16em;

  overflow:hidden;

  animation:priceFloat 3.5s ease-in-out infinite;
}

.price-guide__button::before{
  content:"";

  position:absolute;
  top:0;
  left:-120%;

  width:60%;
  height:100%;

  background:
  linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.25),
    transparent
  );

  animation:priceShine 4s linear infinite;
}

.price-guide__button:hover{
  transform:scale(1.05);
}

@keyframes priceFloat{
  0%,100%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(-8px);
  }
}

@keyframes priceShine{
  100%{
    left:180%;
  }
}

@media(max-width:768px){

  .price-guide{
    padding:100px 16px;
  }

  .price-guide__bg{
    font-size:110px;
  }

}

.price-guide__preview{
  margin-top:40px;
  margin-bottom:50px;

  display:flex;
  justify-content:center;
}

.price-guide__preview-frame{

  width:min(900px,100%);
  height:420px;

  overflow:hidden;

  border:8px solid #0B251A;

  background:#fff;

  box-shadow:
    16px 16px 0 #1B4332;
}

.price-guide__preview-scroll{
  animation:
    pricingScroll 18s linear infinite;
}

.price-guide__preview img{
  width:100%;
  display:block;
}

.price-guide__preview-grid{
  display:flex;
  justify-content:center;
  gap:24px;

  margin-top:40px;
  margin-bottom:50px;
}

.price-shot{

  width:220px;
  height:280px;

  overflow:hidden;

  border:5px solid #0B251A;

  background:#fff;

  box-shadow:
    10px 10px 0 #1B4332;

  transform:rotate(-2deg);
}

.price-shot:nth-child(2){
  transform:rotate(1deg);
}

.price-shot:nth-child(3){
  transform:rotate(-1deg);
}

.price-shot img{
  width:100%;
  display:block;
}

@media(max-width:768px){

  .price-guide__preview-grid{
    gap:12px;
  }

  .price-shot{
    width:110px;
    height:170px;
  }

}

.price-guide__preview-grid{
  display:flex;
  justify-content:center;
  gap:48px;
}

.gallery-preview__visual{
  overflow:hidden;
  display:block;
}

.gallery-preview__track{
  display:flex;
  gap:24px;
  width:max-content;

  animation:
    galleryMarquee 40s linear infinite;
}

.gallery-preview__image{
  flex:none;

  width:420px;
  height:280px;
}

.gallery-preview__image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

@keyframes galleryMarquee{
  from{
    transform:translateX(0);
  }

  to{
    transform:translateX(-50%);
  }
}

.gallery-preview__image:nth-child(3n){
  transform:rotate(-3deg);
}

.gallery-preview__image:nth-child(3n+1){
  transform:rotate(2deg);
}

.gallery-preview__image:nth-child(3n+2){
  transform:rotate(-1deg);
}

.gallery-preview__visual{
  overflow:hidden;
  padding:20px 0;
}

/* ==========================
   RESERVE DESK
========================== */

.reserve--desk {
  padding: 120px 20px;
  background: #0B251A;
  color: #0B251A;
  overflow: hidden;
}

.reserve-desk {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 40px;
  background: #F4F1DE;
  border: 8px solid #74C69D;
  box-shadow: 16px 16px 0 #1B4332;
  text-align: center;
  transform: rotate(-1deg);
}

.reserve-desk__label {
  display: inline-block;
  margin-bottom: 20px;
  padding: 6px 16px;
  background: #0B251A;
  color: #F4F1DE;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  transform: rotate(2deg);
}

.reserve-desk__title {
  margin: 0;
  color: #0B251A;
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 900;
  font-style: italic;
  line-height: 1.05;
}

.reserve-desk__lead {
  max-width: 520px;
  margin: 24px auto 0;
  color: #1B4332;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
}

.reserve-desk__button {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;

  margin-top: 38px;
  padding: 18px 42px;

  background: #74C69D;
  color: #0B251A;

  border: 4px solid #0B251A;
  box-shadow: 8px 8px 0 #1B4332;

  font-weight: 900;
  overflow: hidden;

  animation: reserveFloat 3.5s ease-in-out infinite;
}

.reserve-desk__button span {
  font-size: 11px;
  letter-spacing: .18em;
}

.reserve-desk__button strong {
  font-size: 20px;
}

.reserve-desk__button::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -120%;
  width: 60%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.35),
    transparent
  );
  animation: reserveShine 4s linear infinite;
}

.reserve-desk__button:hover {
  background: #0B251A;
  color: #F4F1DE;
}

.reserve-desk__note {
  margin-top: 24px;
  color: rgba(11,37,26,.65);
  font-size: 12px;
  font-weight: 700;
}

@keyframes reserveFloat {
  0%,100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-8px) rotate(-2deg);
  }
}

@keyframes reserveShine {
  100% {
    left: 180%;
  }
}

@media(max-width: 640px) {
  .reserve--desk {
    padding: 90px 16px;
  }

  .reserve-desk {
    padding: 48px 22px;
    border-width: 6px;
  }
}

.site-footer__logo{
  display:inline-block;
  margin-bottom:20px;

  padding:0;
  border:none;
  background:none;
  box-shadow:none;
  transform:none;
}

.site-footer__logo img{
  width:90px;
  height:90px;
  display:block;
  object-fit:contain;
}

.reserve__stripes{
  position:absolute;
  inset:0;

  background:
    repeating-linear-gradient(
      -45deg,
      rgb(255, 255, 255) 0px,
      rgba(13, 234, 35, 0.292) 2px,
      transparent 2px,
      transparent 80px
    );

  pointer-events:none;
}

.site-nav__link{
  position:relative;
  overflow:hidden;
}

.site-nav__text{
  position:relative;
  z-index:2;
  transition:.25s ease;
}

.site-nav__bg{
  position:absolute;
  left:-120%;
  top:50%;

  width:120%;
  height:80%;

  transform:
    translateY(-50%)
    skewX(-25deg);

  background:#74C69D;

  transition:.3s ease;
}

.site-nav__link:hover .site-nav__bg{
  left:-10%;
}

.site-nav__link:hover .site-nav__text{
  color:inherit;
}

/* ==========================
   PERSONA-LIKE MOBILE MENU
========================== */

.mobile-menu{
  overflow:hidden;
  padding:90px 24px 40px;
  background:#0B251A;
}

.mobile-menu__bg-text{
  position:absolute;
  right:-30px;
  bottom:40px;

  color:rgba(244,241,222,.04);
  font-size:clamp(90px,32vw,160px);
  font-weight:900;
  font-style:italic;
  letter-spacing:-.08em;

  transform:rotate(-8deg);
  pointer-events:none;
}

.mobile-menu__close{
  top:24px;
  right:20px;

  padding:12px 18px;
  border:2px solid #74C69D;
  background:#F4F1DE;
  color:#0B251A;

  font-size:12px;
  font-weight:900;
  letter-spacing:.16em;

  transform:rotate(3deg);
  box-shadow:6px 6px 0 #1B4332;
}

.mobile-menu__nav{
  position:relative;
  z-index:2;

  width:100%;
  max-width:360px;

  display:flex;
  flex-direction:column;
  gap:14px;
}

.mobile-menu__link{
  position:relative;

  display:flex;
  align-items:center;
  gap:16px;

  width:100%;
  padding:16px 18px;

  color:#F4F1DE;

  overflow:hidden;
  transform:skewX(-8deg);

  border:2px solid rgba(244,241,222,.14);
  background:rgba(27,67,50,.38);

  box-shadow:8px 8px 0 rgba(0,0,0,.22);
}

.mobile-menu__link::before{
  content:"";

  position:absolute;
  left:-120%;
  top:50%;

  width:130%;
  height:82%;

  background:#74C69D;

  transform:translateY(-50%) skewX(-24deg);
  transition:.28s ease;
}

.mobile-menu__link:active::before,
.mobile-menu__link:hover::before{
  left:-8%;
}

.mobile-menu__link span,
.mobile-menu__link strong{
  position:relative;
  z-index:2;
  transform:skewX(8deg);
}

.mobile-menu__link span{
  color:#74C69D;
  font-size:12px;
  font-weight:900;
  letter-spacing:.16em;
}

.mobile-menu__link strong{
  color:#F4F1DE;
  font-size:24px;
  font-weight:900;
  font-style:italic;
  letter-spacing:.06em;
}

.mobile-menu__link:active span,
.mobile-menu__link:hover span{
  color:#0B251A;
}

.mobile-menu__reserve{
  position:relative;
  display:block;

  margin-top:12px;
  padding:18px 24px;

  border:4px solid #0B251A;
  background:#74C69D;
  color:#0B251A;

  font-size:22px;
  font-weight:900;
  font-style:italic;
  letter-spacing:.12em;
  text-align:center;

  transform:rotate(-3deg);
  box-shadow:10px 10px 0 #F4F1DE;
}

@media (max-width:639px){

  .site-header{
    padding:14px;
    align-items:center;
  }

  .site-header__brand-wrap{
    display:flex;
    align-items:center;
    gap:10px;
  }

  .site-logo{
    padding:9px 11px;
    border:2px solid #74C69D;
    background:#0B251A;
    color:#F4F1DE;
    transform:rotate(-2deg);
    box-shadow:5px 5px 0 rgba(0,0,0,.35);
  }

  .site-logo__main{
    font-size:18px;
    letter-spacing:.08em;
  }

  .site-logo__badge{
    margin-left:5px;
    font-size:8px;
  }

  .mobile-reserve-btn,
  .mobile-menu-btn{
    width:auto;
    height:auto;
    flex:0 0 auto;

    border-radius:0;
    padding:12px 14px;

    font-size:11px;
    font-weight:900;
    letter-spacing:.12em;

    border:2px solid #0B251A;
    box-shadow:5px 5px 0 rgba(0,0,0,.35);
    backdrop-filter:none;
  }

  .mobile-reserve-btn{
    background:#74C69D;
    color:#0B251A;
    transform:rotate(-5deg);
  }

  .mobile-menu-btn{
    background:#F4F1DE;
    color:#0B251A;
    transform:rotate(4deg);
  }

  .mobile-reserve-btn:active,
  .mobile-menu-btn:active{
    transform:scale(.94);
  }

}

@media (max-width:639px){

  .site-header{
    padding:14px 12px;
    gap:8px;
  }

  .site-header__brand-wrap{
    flex:1;
    min-width:0;
    gap:8px;
  }

  .site-logo{
    padding:10px 12px;
    max-width:210px;
  }

  .site-logo__main{
    font-size:18px;
    white-space:nowrap;
  }

  .mobile-reserve-btn,
  .mobile-menu-btn{
    min-width:64px;
    min-height:48px;

    padding:14px 16px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:11px;
    font-weight:900;
    letter-spacing:.12em;

    border:2px solid #0B251A;
    box-shadow:5px 5px 0 rgba(0,0,0,.35);
  }

  .mobile-reserve-btn{
    background:#74C69D;
    color:#0B251A;
    transform:rotate(-4deg);
  }

  .mobile-menu-btn{
    background:#F4F1DE;
    color:#0B251A;
    transform:rotate(3deg);
  }

}

@media (max-width:639px){

  .site-header__brand-wrap{
    display:flex;
    align-items:center;
    gap:0;

    flex:1;
    min-width:0;

    transform:rotate(-1.5deg);
    filter:drop-shadow(7px 7px 0 rgba(0,0,0,.28));
  }

  .site-logo{
    display:none;
  }

  .mobile-brand{
    position:relative;

    flex:1;
    min-width:0;

    padding:10px 14px 11px;

    background:rgba(11,37,26,.92);
    color:#F4F1DE;

    border:2px solid #74C69D;
    border-right:none;

    overflow:hidden;
  }

  .mobile-brand::before{
    content:"";

    position:absolute;
    inset:0;

    background:
      linear-gradient(
        120deg,
        transparent 0%,
        rgba(116,198,157,.16) 45%,
        transparent 70%
      );

    transform:translateX(-100%);
    animation:mobileBrandShine 5s ease-in-out infinite;
    pointer-events:none;
  }

  .mobile-brand__eyebrow{
    display:block;

    color:#74C69D;
    font-size:8px;
    font-weight:900;
    letter-spacing:.18em;
    line-height:1;
  }

  .mobile-brand__name{
    display:block;

    margin-top:4px;

    color:#F4F1DE;
    font-size:19px;
    font-weight:900;
    letter-spacing:.08em;
    line-height:1;
    white-space:nowrap;
  }

  .mobile-brand-reserve{
    min-width:58px;
    align-self:stretch;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#74C69D;
    color:#0B251A;

    border:2px solid #74C69D;

    font-size:12px;
    font-weight:900;
    letter-spacing:.12em;
  }

  @keyframes mobileBrandShine{
    0%,70%{
      transform:translateX(-100%);
    }
    100%{
      transform:translateX(100%);
    }
  }

}

.mobile-brand{
  display:flex;
  align-items:center;
  gap:10px;

  padding:10px 14px;

  background:rgba(11,37,26,.92);

  border:2px solid #74C69D;
  border-right:none;

  flex:1;
}

.mobile-brand__logo{
  flex-shrink:0;
}

.mobile-brand__logo img{
  width:42px;
  height:42px;
  display:block;
  object-fit:contain;
}

.mobile-brand__eyebrow{
  display:block;

  color:#74C69D;

  font-size:8px;
  font-weight:900;
  letter-spacing:.18em;
}

.mobile-brand__name{
  display:block;

  color:#F4F1DE;

  font-size:18px;
  font-weight:900;
  line-height:1.1;
}

.hero__card{
  width:360px;
  height:480px;
}

@media (min-width:640px){

  .hero__card{
    width:520px;
    height:680px;
  }

}

.loader__mark{
  display:flex;
  align-items:center;
  justify-content:center;

  width:auto;
  height:auto;

  background:transparent;
  border:none;
  box-shadow:none;
  border-radius:0;
  overflow:visible;
}

.loader__logo{
  display:block;

  width:140px; /* 好みで調整 */
  height:auto;

  background:transparent;
  border:none;
  box-shadow:none;

  object-fit:contain;

  animation: loaderFloat 4s ease-in-out infinite;
}

@keyframes loaderFloat{
  0%{
    transform:translateY(0) scale(1);
  }
  50%{
    transform:translateY(-6px) scale(1.03);
  }
  100%{
    transform:translateY(0) scale(1);
  }
}

.loader__temp{
  margin-top:18px;
  margin-bottom:12px;

  display:flex;
  justify-content:center;
  align-items:flex-end;
  gap:4px;

  color:#F4F1DE;
}

.loader__temp-unit{
  font-size:18px;
  font-weight:700;
  opacity:.7;
}

#loader-temp-value{
  font-size:72px;
  line-height:1;
  font-weight:900;

  color:#74C69D;

  font-family:'Montserrat',sans-serif;
  letter-spacing:-0.05em;

  text-shadow:
    0 0 12px rgba(116,198,157,.25);
}

.loader__logo{
  display:block;

  width:300px;

  height:auto;
  object-fit:contain;

  opacity:.45;

  filter:
    drop-shadow(0 0 25px rgba(255,255,255,.12));

  animation: loaderFloat 4s ease-in-out infinite;
}

@keyframes loaderFloat{
  0%{
    transform:translateY(40px);
  }
  50%{
    transform:translateY(34px) scale(1.03);
  }
  100%{
    transform:translateY(40px);
  }
}

.loader{
  overflow:hidden;
}

.loader::after{
  content:"";

  position:absolute;
  inset:0;

  background:
    radial-gradient(
      circle at center,
      rgba(255,255,255,.18),
      rgba(255,255,255,0)
    );

  opacity:0;
  pointer-events:none;
}

.loader--leave{
  animation:
    loaderSteamOut 1.4s ease forwards;
}

.loader--leave::after{
  animation:
    loaderMist 1.4s ease forwards;
}

@keyframes loaderSteamOut{

  0%{
    opacity:1;
    transform:scale(1);
    filter:blur(0);
  }

  100%{
    opacity:0;
    transform:scale(1.08);
    filter:blur(24px);
  }
}

@keyframes loaderMist{

  0%{
    opacity:0;
  }

  40%{
    opacity:.9;
  }

  100%{
    opacity:0;
  }
}

.loader--leave .loader__logo{
  animation:
    logoForestEnter 1.2s cubic-bezier(.22,1,.36,1) forwards;
}

@keyframes logoForestEnter{

  0%{
    opacity:.45;
    transform:translateY(40px) scale(1);
  }

  70%{
    opacity:.35;
    transform:translateY(40px) scale(4);
  }

  100%{
    opacity:0;
    transform:translateY(40px) scale(12);
  }
}

.hero__symbol{
  display:none;
}


.mobile-brand-reserve{
  display:none;
}

@media (max-width:639px){

  .mobile-brand,
  .mobile-brand-reserve{
    display:flex;
  }

}

.mobile-brand{
  border-right:2px solid #74C69D;
}

@media (min-width: 1024px){

  .hero__title-accent{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:0.05em;
  }

  .hero__title-accent span{
    display:block;
    line-height:0.9;
  }

}

.hero__title-accent span:nth-child(1){
  transform:translateX(-100px);
}

.hero__title-accent span:nth-child(3){
  transform:translateX(150px);
}

.hero__title-accent{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:0.3em;
}

.sauna-badge{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:0.5rem;
}

.sauna-badge__top,
.sauna-badge__bottom{
  position:relative;
  padding:.35em .8em;
  background:#82d4a8;
  color:#05281c;
  font-weight:900;
}

.sauna-badge__cross{
  font-size:.8em;
  font-weight:900;
  color:#05281c;
}

.expect-access{
  max-width:1024px;
  margin:56px auto 0;
  padding:28px;
  background:#0B251A;
  border:4px solid #74C69D;
  box-shadow:10px 10px 0 #1B4332;

  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:28px;
  align-items:center;
}

.expect-access__title{
  margin:0 0 14px;
  color:#F4F1DE;
  font-size:32px;
  font-weight:900;
}

.expect-access__desc{
  margin:0;
  color:rgba(244,241,222,.85);
  font-size:14px;
  line-height:1.9;
  font-weight:700;
}

.expect-access__map{
  height:320px;
  overflow:hidden;
  border:4px solid #F4F1DE;
  box-shadow:8px 8px 0 #74C69D;
  transform:rotate(1deg);
}

.expect-access__map iframe{
  display:block;
  filter:saturate(.8) contrast(1.05);
}

@media(max-width:768px){
  .expect-access{
    grid-template-columns:1fr;
    padding:22px;
  }

  .expect-access__map{
    height:260px;
  }
}

.expect-access__link{
  display:inline-flex;
  align-items:center;
  gap:8px;

  color:#F4F1DE;
  font-size:15px;
  font-weight:800;
  text-decoration:none;

  transition:.25s ease;
}

.expect-access__link:hover{
  color:#74C69D;
  transform:translateX(4px);
}