    :root {
      --brand: #2f7a6f;
      --accent: #ffb400;
      --ink: #262a0f;
      --muted: #475569;
      --bg: #ffffff;
      --bg-soft: transparent;
      --bg-softhero: #edf5d4;
      --line: #ebe9e5;
      --radius: 16px;
      --shadow: 0 10px 30px rgba(42, 27, 15, 0.08);
      --pop-gap: .76em;
      --body-safe: 0px;
      --header-height: 35px;
    }

    @font-face {
      font-family: "KoniHeadline";
      src:
        url("../../fonts/UtsukushiMincho.ttf") format("truetype-variations"),
        url("../../fonts/YasashisaGothic.otf") format("opentype-variations");
      font-weight: 100 900;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: "KonikoniDisplay";
      src:
        url("../../fonts/Hannari.otf") format("opentype-variations"),
        url("../../fonts/FLOPDESIGNFONT.ttf") format("truetype-variations");
      font-weight: 300 900;
      font-style: normal;
      font-display: swap;
    }

    .font-hero {
      font-family: "KoniHeadline", "Hiragino Kaku Gothic ProN", "Noto Sans JP",
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Meiryo", system-ui, sans-serif;
      letter-spacing: .02em;
    }

    html,
    body {
      margin: 0;
      padding: 0;
      background: linear-gradient(135deg, rgba(224, 247, 255, 0.6) 0%, rgba(255, 255, 255, 0.4) 40%, rgba(255, 238, 249, 0.2) 100%),
        url('../../images/background_texture.jpg');
      background-size: cover;
      background-attachment: fixed;
      background-position: center;
      color: var(--ink);
      font-family: "Hiragino Kaku Gothic ProN", "KonikoniDisplay", "Noto Sans JP", Segoe UI, Roboto, Meiryo, system-ui, -apple-system, sans-serif;
      line-height: 1.8;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: calc(var(--header-height) + 8px);
    }

    * {
      box-sizing: border-box;
    }

    body {
      padding-bottom: calc(var(--body-safe, 0px) + env(safe-area-inset-bottom, 0px));
    }

    h1,
    h2 {
      text-shadow:
        0 0 6px rgba(255, 255, 255, 1),
        0 0 14px rgba(255, 255, 255, 0.9),
        0 0 22px rgba(113, 143, 139, 0.5);
    }

    h1 {
      margin: .2em 0 .4em;
      font-size: 1.8rem;
      letter-spacing: .02em;
    }

    h2 {
      font-size: clamp(22px, 3.2vw, 32px);
      line-height: 1.3;
      margin: 0 0 16px;
    }

    h3 {
      font-size: clamp(18px, 2.6vw, 22px);
      margin: 0;
    }

    h4 {
      font-size: clamp(16px, 2.2vw, 18px);
      margin: 2px 0 4px;
    }

    p {
      font-size: clamp(16px, 2.4vw, 19px);
      line-height: 1.9;
      margin: 10px 0;
    }

    p,
    li,
    span,
    a,
    strong {
      text-shadow:
        0 0 4px rgba(255, 255, 255, 0.85),
        0 0 8px rgba(127, 124, 102, 0.35);
    }

    strong,
    b {
      font-weight: 600;
    }

    h1 strong,
    h2 strong {
      font-weight: 800;
    }

    ul,
    ol {
      padding-left: 1.2em;
    }

    li {
      margin: 8px 0;
    }

    a {
      color: var(--brand);
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    code {
      background: rgba(255, 255, 255, .06);
      padding: .1em .4em;
      border-radius: 6px;
    }

    .muted {
      color: var(--muted);
    }

    .h2-sm {
      font-size: clamp(20px, 2.4vw, 28px);
      line-height: 1.35;
    }

    .h2-md {
      font-size: clamp(24px, 3.2vw, 30px);
      line-height: 1.3;
    }

    .h2-lg {
      font-size: clamp(28px, 4vw, 38px);
      line-height: 1.2;
    }

    .h3-large {
      font-size: 1.6rem;
      line-height: 1.9;
      font-weight: 600;
    }

    .h-center {
      text-align: center;
    }

    .container {
      width: min(1080px, 92vw);
      margin-inline: auto;
    }

    section {
      padding: 72px 0;
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(26, 49, 39, 0.7);
      backdrop-filter: saturate(140%) blur(10px);
      border-bottom: 1px solid var(--line);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      padding: 8px 0;
    }

    .header-nav {
      display: flex;
      gap: 5px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      letter-spacing: .04em;
      color: var(--brand);
    }

    .logo .dot {
      display: none;
    }

    .logo span {
      display: none;
    }

    .logo::after {
      content: '';
      display: block;
      background: url('../../images/hanakanola_logo.png') no-repeat center;
      background-size: contain;
      width: 260px;
      height: 80px;
    }

    .btn {
      appearance: none;
      border: none;
      cursor: pointer;
      font-weight: 700;
      letter-spacing: .02em;
      border-radius: 999px;
      padding: 12px 18px;
    }

    .btn:hover,
    .btn:focus {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    }

    .btn-primary {
      background: var(--brand);
      color: #fff;
    }

    .btn-outline {
      background: rgba(255, 255, 255, .85);
      color: var(--brand);
      border: 2px solid var(--brand);
    }

    .btn-header {
      display: inline-block;
      padding: 6px 14px;
      margin-left: 2px;
      background-color: #1c3329;
      color: #fff;
      border-radius: 4px;
      text-decoration: none;
      font-size: 14px;
      transition: background-color 0.3s ease;
    }

    .btn-header:hover {
      background-color: #2a4a3c;
    }

    .cta {
      margin-left: auto;
      display: flex;
      gap: 12px;
    }

    .deco-button {
      font-size: 1.1rem;
      padding: 10px 24px;
      border-radius: 6px;
      background: linear-gradient(135deg, #28a17b, #3fc18c);
      color: #fff;
      border: none;
      cursor: pointer;
      transition: var(--bg) 0.3s ease;
    }

    .deco-button:hover {
      background: linear-gradient(135deg, #23976d, #36b07e);
    }

    .deco-button[disabled] {
      opacity: .6;
      cursor: not-allowed;
    }

    .deco-button.is-loading {
      position: relative;
    }

    .hero {
      padding: 28px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
      min-height: clamp(360px, 58vh, 600px);
      background: linear-gradient(135deg, #dff8ff 0%, #ffffff 40%, #fff1ea 100%);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      background: url('../../images/黒　ゴールド　白　かっこいい　ブラックフライデー　セール　はてなブログアイキャッチ.jpg') center/100% no-repeat;
      -webkit-mask-image:
        radial-gradient(ellipse 82% 74% at 50% 50%, #000 72%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%),
        linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%);
      -webkit-mask-composite: destination-in;
      mask-image:
        radial-gradient(ellipse 82% 74% at 50% 50%, #000 72%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%),
        linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%);
      mask-composite: intersect;
      mask-repeat: no-repeat;
      mask-position: center;
      mask-size: cover;
    }

    .hero .container {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: inherit;
      text-align: center;
    }

    .hero-glass {
      background: rgba(255, 255, 255, .3);
      backdrop-filter: blur(6px) saturate(120%);
      -webkit-backdrop-filter: blur(6px) saturate(120%);
      border: 1px solid rgba(255, 255, 255, .6);
      box-shadow: 0 12px 36px rgba(42, 35, 15, 0.08);
      border-radius: 20px;
      margin-top: 265px;
      padding: clamp(16px, 3vw, 28px) clamp(80px, 4vw, 36px);
      display: inline-block;
    }

    .hero::after,
    .hero::before {
      pointer-events: none;
    }

    .hero h1 {
      font-size: clamp(30px, 1vw, 42px);
      line-height: 1.18;
      margin: 0;
      color: #04645b;
      text-shadow:
        0 0 6px rgba(20, 184, 154, .45),
        0 0 14px rgba(20, 184, 154, .36),
        0 0 28px rgba(180, 255, 234, .40),
        0 1px 0 rgba(255, 255, 255, .85);
      -webkit-text-stroke: .3px rgba(255, 255, 255, .15);
    }

    .hero .highlight {
      color: var(--brand) !important;
    }

    .hero p {
      color: #064d3b;
      text-shadow:
        0 0 6px rgba(0, 128, 96, .35),
        0 0 14px rgba(0, 180, 140, .28),
        0 0 24px rgba(255, 255, 255, .35);
    }

    .mint-glow {
      color: #04645b;
      text-shadow:
        0 0 6px rgba(20, 196, 146, .55),
        0 0 14px rgba(20, 196, 146, .40),
        0 0 24px rgba(255, 255, 255, .55);
    }

    .mint-glow.strong {
      text-shadow:
        0 0 6px rgba(20, 196, 146, .65),
        0 0 16px rgba(20, 196, 146, .50),
        0 0 28px rgba(160, 255, 220, .35),
        0 0 36px rgba(255, 255, 255, .60);
    }

    .gold-glow {
      text-shadow:
        0 0 6px rgba(255, 220, 140, .85),
        0 0 12px rgba(255, 210, 120, .55),
        0 0 22px rgba(255, 195, 90, .35);
    }

    .highlight {
      position: relative;
      z-index: 0;
      display: inline;
      font-weight: 700;
      color: #2a220f;
      font-size: 1.15em;
    }

    .highlight::after {
      content: '';
      position: absolute;
      left: -0.08em;
      right: -0.08em;
      bottom: 0.08em;
      height: 0.65em;
      background: rgba(255, 221, 0, 0.45);
      border-radius: 12px;
      pointer-events: none;
      z-index: -1;
    }

    .badge {
      display: inline-block;
      background: #fff;
      padding: 3px 25px;
      border-radius: 999px;
      font-size: 12px;
      margin-top: 10px;
    }

    .card {
      background: rgba(255, 255, 255, 0.55);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 4px 24px 8px;
    }

    .card:hover {
      transform: translateY(-12px);
      box-shadow: 0 16px 48px rgba(15, 23, 42, .15);
    }

    .card.has-wallpaper {
      position: relative;
      overflow: hidden;
      border-radius: 16px;
      box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
      background-color: #fff;
      --bg-size: cover;
      --bg-position: center;
      --bg-repeat: no-repeat;
      --bg-opacity: 1;
      --bg-brightness: 1;
      --bg-contrast: 1;
      --bg-saturate: 1;
      --film-r: 255;
      --film-g: 255;
      --film-b: 255;
      --film-alpha: .80;
    }

    .card.has-wallpaper::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: var(--bg-url);
      background-size: var(--bg-size);
      background-position: var(--bg-position);
      background-repeat: var(--bg-repeat);
      opacity: var(--bg-opacity);
      filter: brightness(var(--bg-brightness)) contrast(var(--bg-contrast)) saturate(var(--bg-saturate));
      z-index: 0;
      pointer-events: none;
      border-radius: inherit;
    }

    .card.has-wallpaper::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(var(--film-r), var(--film-g), var(--film-b), var(--film-alpha));
      z-index: 1;
      pointer-events: none;
      border-radius: inherit;
    }

    .card.has-wallpaper>* {
      position: relative;
      z-index: 2;
    }

    .card.wallpaper-cover {
      --bg-size: cover;
      --bg-repeat: no-repeat;
    }

    .card.wallpaper-contain {
      --bg-size: contain;
      --bg-repeat: no-repeat;
    }

    .card.wallpaper-fixed::before {
      background-attachment: fixed;
    }

    .card.film-weak {
      --film-alpha: .65;
    }

    .card.film-medium {
      --film-alpha: .80;
    }

    .card.film-strong {
      --film-alpha: .92;
    }

    .card.film-none {
      --film-alpha: 0;
    }

    .card.film-slight {
      --film-alpha: .18;
    }

    .card.film-light {
      --film-alpha: .28;
    }

    .card.film-warm {
      --film-r: 255;
      --film-g: 247;
      --film-b: 235;
    }

    .card.film-cool {
      --film-r: 245;
      --film-g: 250;
      --film-b: 255;
    }

    .card.bg-fade-weak {
      --bg-opacity: .85;
    }

    .card.bg-fade {
      --bg-opacity: .70;
    }

    .card.bg-fade-strong {
      --bg-opacity: .55;
    }

    .card.bg-soft {
      --bg-brightness: 1.05;
      --bg-contrast: .9;
    }

    .card.bg-washed {
      --bg-brightness: 1.12;
      --bg-contrast: .85;
      --bg-saturate: .85;
    }

    .card.bg-desat {
      --bg-saturate: .6;
    }

    .card.wallpaper-bg-transparent {
      background-color: transparent;
    }

    .mock,
    .image-stack img,
    .media-center>img {
      border: none !important;
      display: block;
      margin-inline: auto;
      filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.7)) drop-shadow(0 0 28px rgba(47, 122, 111, 0.25));
      -webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 78%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
      -webkit-mask-composite: destination-in;
      mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 78%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
      mask-composite: intersect;
      -webkit-mask-repeat: no-repeat;
      -webkit-mask-position: center;
      -webkit-mask-size: cover;
      mask-repeat: no-repeat;
      mask-position: center;
      mask-size: cover;
    }

    .mock {
      border-radius: 12px;
      width: 90%;
      height: auto;
    }

    .mock.before {
      width: 60%;
      display: block;
      margin-inline: auto;
    }

    .image-stack img:hover {
      filter: drop-shadow(0 10px 24px rgba(15, 23, 42, .14)) drop-shadow(0 0 22px rgba(255, 255, 255, .65)) drop-shadow(0 0 36px rgba(255, 180, 0, .30));
    }

    .image-stack {
      --stack-w: 320px;
      --stack-ratio: 0.66;
      --stack-offset: 18px;
      position: relative;
      display: block;
      width: var(--stack-w);
      height: calc(var(--stack-w) * var(--stack-ratio) + var(--stack-offset) * 2);
      margin-inline: auto;
      place-self: center;
    }

    .image-stack img:first-child {
      margin-left: 0;
    }

    .image-stack img:nth-child(1) {
      transform: translate(0, 0);
      z-index: 3;
    }

    .image-stack img:nth-child(2) {
      transform: translate(var(--stack-offset), var(--stack-offset));
      z-index: 2;
    }

    .image-stack img:nth-child(3) {
      transform: translate(calc(var(--stack-offset) * 2), calc(var(--stack-offset) * 2));
      z-index: 1;
    }

    .image-stack:hover img {
      transform: translate(0, 0);
      z-index: 3;
    }

    .media-center {
      text-align: center;
    }

    .media-center>img,
    .media-center picture>img {
      display: block;
      margin-inline: auto;
      width: var(--img-w, clamp(260px, 60vw, 880px));
      max-width: 100%;
      height: auto;
    }

    .img-sm {
      --img-w: 320px;
    }

    .img-md {
      --img-w: 520px;
    }

    .img-lg {
      --img-w: 720px;
    }

    .img-xl {
      --img-w: 880px;
    }

    .edge-blur-soft {
      -webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
      mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
    }

    .edge-blur-strong {
      -webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 72%, rgba(0, 0, 0, 0) 100%);
      mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 72%, rgba(0, 0, 0, 0) 100%);
    }

    .img-reveal {
      animation: fadeIn linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 40%;
    }

    .js-scroll {
      opacity: 0;
      transform: translateY(12px);
      transition: opacity .7s ease, transform .7s ease;
      will-change: opacity, transform;
    }

    .is-active {
      opacity: 1;
      transform: none;
    }

    .scrub {
      --p: 0;
      opacity: calc(0.2 + 0.8 * var(--p, 0));
      transform: scale(calc(1.02 - 0.02 * var(--p, 0)));
      filter: blur(calc(1.5px * (1 - var(--p, 0))));
      transition: opacity 280ms ease-out, transform 280ms ease-out, filter 280ms ease-out;
      will-change: opacity, transform, filter;
    }

    .scrub.leaving {
      --p: 0;
    }

    .scrub.reveal {
      transform-origin: center;
      transition: opacity 280ms ease-out, transform 280ms ease-out;
    }

    .scrub-bleed {
      position: relative;
      overflow: clip;
    }

    .scrub-bleed .scrub-img {
      display: block;
      width: 100vw;
      max-width: none;
      margin-left: calc(50% - 50vw);
      transform-origin: center;
    }

    .scrub-bleed .scrub-img.scrub:not(.dir-rt-lb):not(.dir-lt-rb):not(.dir-lb-rb) {
      clip-path: inset(calc((1 - var(--p, 0)) * 30%) round calc(24px * (1 - var(--p, 0))));
      transition: clip-path 280ms ease-out;
      will-change: clip-path;
    }

    .scrub.dir-lt-rb {
      -webkit-mask-image: linear-gradient(135deg, #000 0%, #000 calc(var(--p, 0) * 100%), transparent calc(var(--p, 0) * 100%));
      mask-image: linear-gradient(135deg, #000 0%, #000 calc(var(--p, 0) * 100%), transparent calc(var(--p, 0) * 100%));
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
      -webkit-mask-size: 100% 100%;
      mask-size: 100% 100%;
      clip-path: initial !important;
    }

    .scrub.dir-rt-lb {
      -webkit-mask-image: linear-gradient(225deg, #000 0%, #000 calc(var(--p, 0) * 100%), transparent calc(var(--p, 0) * 100%));
      mask-image: linear-gradient(225deg, #000 0%, #000 calc(var(--p, 0) * 100%), transparent calc(var(--p, 0) * 100%));
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
      -webkit-mask-size: 100% 100%;
      mask-size: 100% 100%;
      clip-path: initial !important;
    }

    .scrub.dir-lb-rb {
      -webkit-mask-image: linear-gradient(0deg, #000 0%, #000 calc(var(--p, 0) * 100%), transparent calc(var(--p, 0) * 100%));
      mask-image: linear-gradient(0deg, #000 0%, #000 calc(var(--p, 0) * 100%), transparent calc(var(--p, 0) * 100%));
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
      -webkit-mask-size: 100% 100%;
      mask-size: 100% 100%;
      clip-path: initial !important;
    }

    .scrub-img {
      width: 80%;
      height: auto;
      max-width: 600px;
    }

    .scrub-img.sm {
      width: 15vw;
      max-width: 180px;
    }

    .scrub-img.md {
      width: 60vw;
      max-width: 270px;
    }

    .scrub-img.lg {
      width: 80vw;
      max-width: 360px;
    }

    .scrub-img.w-240 {
      width: 240px;
      height: auto;
      display: block;
    }

    .scrub-img.h-sm {
      height: 120px;
      object-fit: cover;
    }

    .scrub-img.h-md {
      height: 180px;
      object-fit: cover;
    }

    .scrub-img.h-lg {
      height: 240px;
      object-fit: cover;
    }

    .scrub-img.left {
      margin-left: 0;
      margin-right: auto;
      display: block;
    }

    .scrub-img.right {
      margin-left: auto;
      margin-right: 0;
      display: block;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        clip-path: inset(45% 20% 45% 20%);
      }

      to {
        opacity: 1;
        clip-path: inset(0% 0% 0% 0%);
      }
    }

    @keyframes popIn {
      0% {
        opacity: 0;
        transform: scale(.72);
        filter: blur(10px);
      }

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

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

    @keyframes bloomFloatIn {
      0% {
        opacity: 0;
        transform: translateY(18px) scale(.92);
        filter: blur(2px);
      }

      55% {
        opacity: 1;
        transform: translateY(-3px) scale(1.06);
        filter: blur(0);
      }

      72% {
        transform: translateY(0) scale(.995);
      }

      100% {
        transform: translateY(0) scale(1);
      }
    }

    @keyframes bloomInLeft {
      0% {
        opacity: 0;
        transform: translateX(-24px) scale(.6) rotate(-6deg);
      }

      60% {
        opacity: 1;
        transform: translateX(0) scale(1.04) rotate(1deg);
      }

      100% {
        opacity: 1;
        transform: translateX(0) scale(1) rotate(0deg);
      }
    }

    @keyframes bloomInRight {
      0% {
        opacity: 0;
        transform: translateX(24px) scale(.6) rotate(6deg);
      }

      60% {
        opacity: 1;
        transform: translateX(0) scale(1.04) rotate(-1deg);
      }

      100% {
        opacity: 1;
        transform: translateX(0) scale(1) rotate(0deg);
      }
    }

    @keyframes scrolldown {
      0% {
        opacity: 1;
        transform: translateY(0);
      }

      100% {
        opacity: 0;
        transform: translateY(22px);
      }
    }

    @keyframes contentFade {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    #indexLogo {
      position: fixed;
      inset: 0;
      display: grid;
      place-items: center;
      background: #1c3329;
      z-index: 10000;
      opacity: 1;
      transition: opacity .6s ease;
    }

    #indexLogo.is-hidden {
      opacity: 0;
      pointer-events: none;
    }

    #indexLogo .logo-illust {
      width: 140px;
      height: auto;
      display: block;
    }

    #indexLogo .logo-block {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    #indexLogo .logo-illust {
      width: 140px;
      height: auto;
      margin-bottom: 12px;
    }

    #indexLogo .logo-sub {
      width: 220px;
      height: auto;
    }

    #indexLogo .logo-block img {
      opacity: 0;
      transform: translateY(6px);
      transition: opacity .5s ease, transform .5s ease;
      will-change: opacity, transform;
    }

    #indexLogo.is-on .logo-block img {
      opacity: 1;
      transform: none;
    }

    #indexLogo.is-on .logo-block img:nth-child(2) {
      transition-delay: .25s;
    }

    .grid {
      display: grid;
      gap: 24px;
    }

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

    .grid-2.rev {
      grid-template-columns: .8fr 1.2fr;
      align-items: center;
    }

    .ba-grid {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 24px;
    }

    .ba-arrow {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .ba-arrow .triangle {
      width: 0;
      height: 0;
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-left: 22px solid var(--brand);
      opacity: .7;
    }

    .pop-row {
      display: flex;
      justify-content: center;
      align-items: center;
      row-gap: clamp(20px, 5vw, 40px);
      column-gap: clamp(32px, 7vw, 88px);
      flex-wrap: wrap;
      margin-top: 14px;
      padding: 6px 0;
      list-style: none;
      grid-column: 1 / -1;
    }

    .pop-row.js-scroll {
      opacity: 1 !important;
      transform: none !important;
    }

    .pop {
      background: transparent !important;
      border: 0 !important;
      box-shadow: none !important;
      width: auto !important;
      height: auto !important;
      list-style: none;
      flex: 0 0 auto;
      opacity: 0;
      transform: scale(.78);
      filter: blur(6px);
    }

    .pop .pop-inner {
      width: clamp(160px, 22vw, 260px);
      aspect-ratio: 1 / 1;
      border-radius: 9999px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-weight: 800;
      color: #262a0f;
      box-shadow: 0 0 0 10px #fff, 0 12px 30px rgba(42, 34, 15, 0.14);
      line-height: 1 !important;
      gap: var(--pop-gap);
    }

    .pop-inner .pop-head {
      font-size: clamp(1.6em, 3.6vw, 2.6em);
      font-weight: 900;
      margin: 0;
      line-height: 1;
      display: block;
    }

    .pop-inner .pop-sub {
      font-size: clamp(1.05em, 2.2vw, 1.35em);
      font-weight: 800;
      margin: 0;
      line-height: 1;
      display: block;
    }

    .pop-row .pop:nth-child(1) .pop-inner {
      background: radial-gradient(120% 120% at 30% 30%, #fff7c8 0%, #ffe07a 55%, #ffd24a 100%);
    }

    .pop-row .pop:nth-child(2) .pop-inner {
      background: radial-gradient(120% 120% at 30% 30%, #ffe7b8 0%, #ffc06a 55%, #ff9a3d 100%);
    }

    .pop-row .pop:nth-child(3) .pop-inner {
      background: radial-gradient(120% 120% at 30% 30%, #ffd6e2 0%, #ff9fc1 55%, #ff78a8 100%);
    }

    .pop-row.is-active .pop {
      animation: popIn 1.35s cubic-bezier(.18, .8, .2, 1) forwards;
    }

    .pop-row.is-active .pop:nth-child(1) {
      animation-delay: .25s;
    }

    .pop-row.is-active .pop:nth-child(2) {
      animation-delay: .65s;
    }

    .pop-row.is-active .pop:nth-child(3) {
      animation-delay: 1.05s;
    }

    .feature-row {
      list-style: none;
      padding: 0;
      margin: 18px 0 0;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
      grid-column: 1 / -1;
    }

    .feature-card {
      background: transparent;
      border: 1px solid rgba(0, 0, 0, .06);
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 10px 24px rgba(15, 23, 42, .10), inset 0 1px 0 rgba(255, 255, 255, .6);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
      max-width: none;
    }

    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 32px rgba(15, 23, 42, .14), inset 0 1px 0 rgba(255, 255, 255, .6);
      border-color: rgba(0, 0, 0, .1);
    }

    .feature-photo {
      width: 100%;
      aspect-ratio: 16 / 9;
      background: transparent;
      overflow: hidden;
    }

    .feature-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .feature-inner {
      padding: 14px 16px 16px;
      color: #111827;
      text-align: center;
    }

    .feature-head {
      display: block;
      font-weight: 800;
      font-size: 1.55rem;
      line-height: 1.5;
      letter-spacing: .02em;
      margin-bottom: 20px;
    }

    .feature-sub {
      display: inline-block;
      font-size: 1.2rem;
      line-height: 1.6;
      color: #374151;
    }

    .menu-head {
      text-align: center;
      margin-bottom: 28px;
    }

    .menu-sub {
      color: var(--muted);
      font-size: .95em;
      margin-top: 6px;
    }

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

    .menu-card {
      background: #fff;
      opacity: 0;
      transform: translateY(16px) scale(.96);
      transition: opacity .7s ease, transform .7s ease, box-shadow .7s ease;
      border-radius: 18px;
      box-shadow: 0 4px 14px rgba(15, 23, 42, .08);
      padding: 32px 28px;
      position: relative;
    }

    .menu-card.is-active {
      opacity: 1;
      transform: none;
    }

    .menu-card:hover {
      transform: translateY(-6px) scale(1.02);
      box-shadow: 0 18px 48px rgba(15, 23, 42, .15);
    }

    .menu-card::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 18px;
      padding: 1px;
      background: linear-gradient(135deg, rgba(47, 122, 111, .35), rgba(255, 180, 0, .35));
      -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
    }

    .menu-grid .menu-card:nth-child(1) {
      transition-delay: 0ms;
    }

    .menu-grid .menu-card:nth-child(2) {
      transition-delay: 120ms;
    }

    .menu-grid .menu-card:nth-child(3) {
      transition-delay: 240ms;
    }

    .menu-card h3 {
      margin: 0 0 6px;
      font-size: clamp(18px, 2.4vw, 22px);
    }

    .menu-feat {
      margin: 8px 0 12px;
      color: var(--muted);
      line-height: 1.8;
      font-size: .98em;
    }

    .price-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .price-pill {
      padding: 8px 12px;
      border-radius: 999px;
      font-weight: 700;
      background: linear-gradient(180deg, #ffffff, #f6faf7);
      border: 1px solid var(--line);
      box-shadow: 0 6px 18px rgba(15, 23, 42, .06);
      font-size: .95em;
    }

    .menu-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(47, 122, 111, .08);
      color: var(--brand);
      font-weight: 700;
      font-size: .85em;
      margin-bottom: 10px;
    }

    .menu-note {
      margin-top: 18px;
      background: rgba(255, 255, 255, .7);
      border: 1px dashed var(--line);
      border-radius: 12px;
      padding: 12px 14px;
      color: var(--muted);
    }

    .members {
      max-width: 1440px;
      margin: 0 auto;
      padding-bottom: 0;
    }

    .person {
      --text-gap: clamp(16px, 3vw, 40px);
      margin-left: 0;
      padding-left: 0;
      position: relative;
      display: flex;
      margin-bottom: 2vh;
      align-items: flex-start;
      gap: var(--text-gap, 36px);
    }

    .person:last-child {
      margin-bottom: 0;
    }

    .person .photo {
      width: 50%;
      max-width: 480px;
      height: auto;
      clip-path: circle(39% at 50% 50%);
      transform: scale(1.3);
      opacity: 1;
      align-self: flex-start;
      margin-top: 200px;
    }

    .person>.side-text,
    .person>.info.side-text {
      margin: 0 0 0 var(--text-gap, 30px);
      flex: 1 1 auto;
      max-width: 200ch;
    }

    .person:nth-child(2n) {
      flex-direction: row-reverse;
      justify-content: flex-start;
    }

    .person:nth-child(2n)>.side-text,
    .person:nth-child(2n)>.info.side-text {
      margin: 0 var(--text-gap, 30px) 0 0;
      text-align: left;
    }

    .side-text,
    .info {
      margin: 0;
      text-align: left;
      max-width: 56ch;
    }

    .side-text.glass {
      background: rgba(255, 255, 255, .55);
      border: 1px solid rgba(255, 255, 255, .65);
      border-radius: 16px;
      padding: clamp(14px, 2.6vw, 22px);
      box-shadow: 0 10px 24px rgba(15, 23, 42, .10);
      backdrop-filter: blur(8px) saturate(120%);
      -webkit-backdrop-filter: blur(8px) saturate(120%);
    }

    .side-text.glass p,
    .side-text.glass li {
      text-shadow: 0 1px 0 rgba(255, 255, 255, .6);
    }

    .name {
      position: absolute;
      bottom: 1vw;
      left: 0;
      display: inline-block;
      font-size: clamp(28px, 3.4vw, 3.2rem);
      font-weight: 700;
      line-height: 1.3;
      padding: clamp(22px, 3vw, 40px);
      color: #ffffff;
    }

    .name.name-top {
      top: 0;
      bottom: auto;
    }

    .name::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--name-bg, rgba(98, 75, 1, .34));
      transform: scaleX(var(--name-bg-scale, 0));
      transform-origin: left center;
      transition: transform .8s linear;
    }

    .name span {
      position: relative;
      display: block;
      clip-path: polygon(0 0, var(--name-clip-increase, 0) 0, var(--name-clip-increase, 0) 100%, 0 100%);
      transform: var(--name-position-reset, translate3d(-40px, 0, 0));
      transition: clip-path .8s linear, transform 1.2s ease-out;
    }

    .name.is-visible {
      --name-clip-increase: 100%;
      --name-clip-decrease: 0%;
      --name-bg-scale: 1;
      --name-position-reset: translate3d(0, 0, 0);
    }

    .person:nth-child(2n) .name {
      left: auto;
      right: 0;
    }

    .person:nth-child(2n) .name::before {
      transform-origin: right center;
    }

    .person:nth-child(2n) .name span {
      clip-path: polygon(var(--name-clip-decrease, 100%) 0, 100% 0, 100% 100%, var(--name-clip-decrease, 100%) 100%);
      transform: var(--name-position-reset, translateX(40px));
    }

    .name-bg-brand {
      --name-bg: rgba(47, 122, 111, .42);
    }

    .name-bg-amber {
      --name-bg: rgba(255, 180, 0, .42);
    }

    .name-bg-rose {
      --name-bg: rgba(255, 140, 160, .40);
    }

    .name-bg-orange {
      --name-bg: rgba(98, 75, 1, 0.34);
    }

    .name-bg-sky {
      --name-bg: rgba(80, 160, 255, .40);
    }

    .name-bg-mint {
      --name-bg: rgba(72, 200, 170, .40);
    }

    .name-bg-lavender {
      --name-bg: rgba(160, 130, 255, .40);
    }

    .name-bg-coral {
      --name-bg: rgba(255, 120, 100, .42);
    }

    .name-bg-white {
      --name-bg: rgba(255, 255, 255, .55);
      color: #ccb503;
    }

    .name-bg-grad-brand {
      --name-bg: linear-gradient(90deg, rgba(47, 122, 111, .66), rgba(47, 122, 111, .18));
    }

    .person:nth-child(2n) .name.name-bg-grad-brand {
      --name-bg: linear-gradient(270deg, rgba(47, 122, 111, .66), rgba(47, 122, 111, .18));
    }

    .name-glass::before {
      backdrop-filter: blur(6px) saturate(120%);
      -webkit-backdrop-filter: blur(6px) saturate(120%);
    }

    section.bloom {
      position: relative;
      overflow: visible;
    }

    section.bloom::before,
    section.bloom::after {
      content: "";
      position: absolute;
      top: 8%;
      width: 160px;
      height: 160px;
      background-repeat: no-repeat;
      background-size: contain;
      opacity: 0;
      transform: scale(.6);
      filter: drop-shadow(0 6px 16px rgba(0, 0, 0, .12));
      pointer-events: none;
    }

    section.bloom::before {
      left: -80px;
      background-image: url('../../images/flower_left.png');
      transform-origin: right center;
    }

    section.bloom::after {
      right: -80px;
      background-image: url('');
      transform-origin: left center;
    }

    section.bloom.is-active::before {
      animation: bloomInLeft .9s ease-out .05s forwards;
    }

    section.bloom.is-active::after {
      animation: bloomInRight 1s ease-out .15s forwards;
    }

    section.bloom:has(.is-active)::before {
      animation: bloomInLeft .9s ease-out .05s forwards;
    }

    section.bloom:has(.is-active)::after {
      animation: bloomInRight 1s ease-out .15s forwards;
    }

    .line {
      display: block;
      position: relative;
      height: 1px;
      margin: 60px 0;
      isolation: isolate;
    }

    .line::after {
      background: linear-gradient(to right, #f3e1b1 0%, #f0d896 50%, #f1cf72 100%);
      box-shadow: 0 0 4px rgba(255, 212, 120, 0.35);
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      height: 2px;
      width: 0;
      transition: width 1.8s cubic-bezier(0.22, 1, 0.36, 1);
      transition-delay: .3s;
    }

    .line.is-active::after {
      width: 50%;
    }

    .line::before {
      content: '';
      position: absolute;
      inset: auto 0 0 0;
      left: 50%;
      transform: translateX(-50%);
      width: 50%;
      height: 4px;
      background: rgba(255, 255, 255, .9);
      filter: blur(6px);
      z-index: -1;
    }

    .h2-band {
      display: block;
      position: relative;
      left: 0%;
      right: 50%;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      width: 100vw;
      padding: clamp(12px, 2.6vw, 18px) 0;
      text-align: center;
      background: linear-gradient(135deg, rgba(243, 242, 234, .95), rgba(255, 255, 255, .8));
      border-top: 1px solid rgba(15, 23, 42, .06);
      border-bottom: 1px solid rgba(15, 23, 42, .06);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      isolation: isolate;
    }

    .h2-band>span {
      display: inline-block;
      font-weight: 800;
      letter-spacing: .02em;
    }

    .h2-card {
      display: block;
      margin: 10px auto clamp(12px, 2.6vw, 18px);
      padding: clamp(10px, 2.2vw, 16px) clamp(14px, 3vw, 22px);
      max-width: 100%;
      text-align: center;
      background: rgba(255, 255, 255, .7);
      border: 1px solid rgba(15, 23, 42, .08);
      border-radius: 14px;
      box-shadow: 0 8px 22px rgba(15, 23, 42, .08);
      backdrop-filter: blur(6px) saturate(120%);
      -webkit-backdrop-filter: blur(6px) saturate(120%);
    }

    .h2-card strong {
      font-weight: 800;
    }

    .section-tight {
      padding-top: 0 !important;
    }

    .note {
      font-size: .92em;
      color: #475569;
      background: var(--bg-soft);
      border-left: 4px solid var(--brand);
      padding: 12px 14px;
      border-radius: 10px;
      margin: 10px 0;
    }

    .meta {
      color: var(--muted);
      font-size: .95rem;
      margin-bottom: 20px;
      text-align: right;
    }

    .check-text {
      position: relative;
      padding-left: 52px;
    }

    .check-text::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      background: url("../../images/check.png") no-repeat center center;
      background-size: contain;
    }

    .footer {
      background: #fdfcf7;
      padding: 56px 20px;
      text-align: center;
      color: #333;
    }

    .footer__inner {
      max-width: 1080px;
      margin: 0 auto;
    }

    .footer__txt01 {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--brand);
    }

    .footer__txt02 {
      font-size: 1rem;
      margin-bottom: 28px;
      color: var(--muted);
    }

    .footer__contact-head {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-bottom: 6px;
    }

    .footer__icon {
      width: 22px;
      height: 22px;
      object-fit: contain;
      flex: 0 0 22px;
      filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .12));
    }

    .footer__pyramid {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0 auto 20px;
    }

    .footer__pyramid-img {
      width: 160px;
      height: auto;
      display: block;
      filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .12));
    }

    .footer__contact {
      display: flex;
      justify-content: center;
      align-items: stretch;
      gap: 20px;
      margin-bottom: 32px;
      flex-wrap: wrap;
    }

    .footer__contact-item {
      flex: 1;
      max-width: 320px;
      min-width: 220px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 24px 28px;
      text-decoration: none;
      color: var(--ink);
      box-shadow: var(--shadow);
      transition: all .3s ease;
    }

    .footer__contact-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, .1);
    }

    .footer__contact-item-txt01 {
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .footer__contact-item-txt02 {
      font-size: .9rem;
      color: var(--muted);
    }

    .footer__contact-item.contact-phone,
    .footer__contact-item.contact-mail {
      background: #f5ffd9;
    }

    .footer__copyright {
      display: block;
      font-size: 20px;
      font-weight: 500;
      color: #333;
    }

    .sticky-cta {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 9999;
      background: rgba(47, 122, 111, .92);
      color: #fff;
      border-top: 1px solid rgba(255, 255, 255, .25);
      padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px)) 16px;
      will-change: transform;
      transform: translate3d(0, calc(-1 * var(--push-up, 0px)), 0);
      transition: transform 0ms ease;
    }

    .sticky-cta .inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      white-space: nowrap;
    }

    .sticky-cta .js-scroll {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
    }

    .sticky-cta .btn {
      background: #fff;
      color: var(--brand);
      display: inline-flex;
      align-items: center;
    }

    #scrollTopBtn {
      position: fixed;
      bottom: 90px;
      right: 20px;
      width: 48px;
      height: 48px;
      background: #1c3329;
      color: #fff;
      text-align: center;
      line-height: 48px;
      border-radius: 50%;
      font-size: 20px;
      text-decoration: none;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
      z-index: 9999;
    }

    #scrollTopBtn.show {
      opacity: 0.9;
      pointer-events: auto;
    }

    #scrollTopBtn:hover {
      opacity: 1;
    }

    #access {
      scroll-margin-top: 40px;
      padding: 48px 0;
    }

    .map-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 10px 24px rgba(15, 23, 42, .10);
      background: #eef3f1;
    }

    .map-wrap .gmap {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    @supports not (aspect-ratio: 16 / 9) {
      .map-wrap {
        padding-top: 56.25%;
      }

      .map-wrap .gmap {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
      }
    }

    .shop-info {
      width: 100%;
      border-collapse: collapse;
      margin-top: 12px;
      font-size: 20px;
    }

    .shop-info th,
    .shop-info td {
      padding: 10px 12px;
      border-bottom: 1px solid #ddd;
    }

    .shop-info th {
      text-align: center;
      white-space: nowrap;
      background: #f7f7f7;
      color: #333;
      font-weight: 600;
    }

    .shop-info td {
      color: #444;
    }

    .video-center {
      display: flex;
      justify-content: center;
    }

    .video-frame {
      border-radius: 12px;
      overflow: hidden;
      display: inline-block;
    }

    .video-center iframe {
      border-radius: 12px;
      overflow: hidden;
    }

    .contact-section {
      background: linear-gradient(135deg, #2aa87a, #37c18c);
      padding: 60px 0;
      display: flex;
      justify-content: center;
    }

    .comform-wrap {
      max-width: 900px;
      width: min(90%, 900px);
      margin: 40px auto;
      padding: 40px 50px;
      background: rgba(255, 255, 255, 0.95);
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      font-size: 1.1rem;
      line-height: 1.8;
    }

    .comform-title {
      text-align: center;
      font-size: 1.8rem;
      margin-bottom: 24px;
      letter-spacing: 0.05em;
    }

    .comform-container {
      row-gap: 14px;
    }

    .comform-row {
      margin: 10px 0;
    }

    .comform-table {
      width: 100%;
      border-collapse: collapse;
    }

    .comform-table th,
    .comform-table td {
      border: 1px solid #ddd;
      padding: 14px 16px;
      vertical-align: top;
    }

    .comform-table th {
      background: #f5f7fa;
      width: 30%;
      text-align: left;
      font-weight: 600;
      white-space: nowrap;
    }

    .comform-table td {
      background: #fff;
    }

    .comform-table input[type="text"],
    .comform-table input[type="email"],
    .comform-table input[type="tel"],
    .comform-table select,
    .comform-table textarea {
      font-size: 1rem;
      padding: 6px 8px;
      width: 100%;
      max-width: 500px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }

    .comform-table textarea {
      height: 8em;
      resize: vertical;
    }

    .itemTitle {
      font-weight: 600;
      margin-bottom: 6px;
    }

    .itemInput {
      margin-left: 8px;
      font-size: .9rem;
      color: #666;
    }

    .req-mark {
      color: crimson;
      font-size: 0.9em;
      margin-left: 4px;
    }

    .form-buttons {
      text-align: center;
      margin-top: 24px;
    }

    input:focus,
    textarea:focus {
      caret-color: transparent;
    }

    .contact-section * {
      caret-color: transparent;
    }

    .contact-section input[type="text"],
    .contact-section input[type="email"],
    .contact-section input[type="tel"],
    .contact-section input[type="password"],
    .contact-section textarea {
      caret-color: #111;
    }

    .contact-section [contenteditable="true"] {
      caret-color: transparent;
    }

    .contact-section input:focus,
    .contact-section textarea:focus {
      outline: 2px solid #2aa87a;
      outline-offset: 2px;
      box-shadow: 0 0 0 3px rgba(42, 168, 122, .25);
    }

    .zipcode-row {
      display: flex;
      align-items: center;
      gap: 6px;
      flex-wrap: wrap;
    }

    .zipcode-row input[type="text"] {
      width: 4em;
      text-align: center;
      font-size: 1rem;
      padding: 4px 6px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }

    #zipcode1,
    #zipcode2 {
      color: #111;
      background: #fff;
      caret-color: #111;
      outline: 2px solid transparent;
      outline-offset: 2px;
      pointer-events: auto;
    }

    #zipcode1:focus,
    #zipcode2:focus {
      outline-color: #2aa87a;
      box-shadow: 0 0 0 3px rgba(42, 168, 122, 0.25);
    }

    .search-address-button {
      background: #2aa87a;
      color: #fff;
      border: none;
      border-radius: 4px;
      padding: 5px 12px;
      cursor: pointer;
      font-size: 0.95rem;
      transition: var(--bg) 0.3s ease;
    }

    .search-address-button:hover {
      background: #219265;
    }

    .email-grid {
      display: grid;
      grid-template-columns: 1fr auto;
      column-gap: .5rem;
      row-gap: .5rem;
      align-items: center;
      max-width: 100%;
    }

    .email-grid input[type="email"] {
      width: 100%;
    }

    .email-input {
      width: min(100%, 35ch);
    }

    #email.email-input,
    #email_confirm.email-input {
      width: min(100%, 35ch) !important;
    }

    .email-inline {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
    }

    .checkLabel {
      white-space: nowrap;
      font-size: .9em;
      color: var(--muted, #666);
    }

    .checkLabel.placeholder {
      visibility: hidden;
    }

    .hp {
      position: absolute !important;
      left: -9999px !important;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }

    #pageRoot {
      visibility: hidden;
    }

    #pageRoot.is-visible {
      visibility: visible;
      animation: contentFade .6s ease both;
    }

    details {
      background: #fff;
      border-radius: 12px;
      padding: 14px 16px;
      box-shadow: var(--shadow);
    }

    details+details {
      margin-top: 10px;
    }

    summary {
      cursor: pointer;
      font-weight: 700;
    }

    summary::-webkit-details-marker {
      display: none;
    }

    sup a {
      color: var(--accent);
      text-decoration: none;
    }

    sup a:hover {
      text-decoration: underline;
    }

    #reserve .card {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    #reserve .card>.js-scroll:not(.cta) {
      flex: 1 1 auto;
      min-width: 0;
    }

    #reserve .card>.cta {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: nowrap;
      white-space: nowrap;
    }

    #reserve .card .btn {
      display: inline-flex;
      align-items: center;
    }

    #program,
    #targets,
    #mechanism,
    #problem,
    #before-after,
    #faq,
    #reserve,
    #references {
      border-top: none !important;
      border-bottom: none !important;
    }

    main section,
    #menu-wrap,
    section[style*="border-top"],
    section[style*="border-bottom"] {
      border-top: none !important;
      border-bottom: none !important;
      box-shadow: none;
    }

    @media (max-width: 1024px) {
      .feature-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
      }
    }

    @media (max-width: 960px) {

      .grid-2,
      .grid-2.rev {
        grid-template-columns: 1fr;
      }

      .ba-grid {
        grid-template-columns: 1fr;
      }

      .ba-arrow {
        padding: 6px 0;
      }

      .ba-arrow .triangle {
        border-left: none;
        border-top: 22px solid var(--brand);
        border-right: 14px solid transparent;
        border-left: 14px solid transparent;
        border-bottom: none;
      }

      .image-stack {
        --stack-w: 260px;
        --stack-offset: 14px;
      }

      .menu-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 720px) {
      section {
        padding: 56px 0;
      }

      .person {
        flex-direction: column !important;
      }

      .person>.side-text,
      .person>.info.side-text {
        margin: 8px 0 0 0;
        text-align: left;
      }

      .person .photo {
        align-self: center;
      }

      .person .name-top {
        top: 4px;
      }

      section.bloom::before,
      section.bloom::after {
        width: 110px;
        height: 110px;
        top: 4%;
      }

      section.bloom::before {
        left: -52px;
      }

      section.bloom::after {
        right: -52px;
      }

      .footer__pyramid-img {
        width: 120px;
      }
    }

    @media (max-width: 640px) {
      h1 {
        font-size: 1.5rem;
      }

      .feature-row {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .feature-inner {
        padding: 12px 14px 14px;
      }

      .pop-row {
        flex-wrap: wrap;
      }
    }

    @media (max-width: 560px) {
      .image-stack {
        --stack-w: 200px;
        --stack-offset: 10px;
      }

      .media-center>img,
      .media-center picture>img {
        width: var(--img-w, clamp(220px, 86vw, 720px));
      }
    }

    @media (max-width: 520px) {
      #reserve .card {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }

      #reserve .card>.cta {
        margin-left: 0;
        align-self: stretch;
        justify-content: flex-end;
        white-space: normal;
        flex-wrap: wrap;
        gap: 10px;
      }
    }

    @media (max-width: 480px) {
      .email-input {
        width: 100% !important;
      }

      .email-inline {
        display: flex;
        flex-wrap: wrap;
      }

      .email-inline .checkLabel {
        order: 2;
        margin-left: 0;
        margin-top: .25rem;
      }

      .email-grid {
        grid-template-columns: 1fr;
      }

      .checkLabel.placeholder {
        display: none;
      }
    }

    @media (max-width: 420px) {
      .pop {
        width: clamp(96px, 28vw, 140px);
      }

      .grid-2>.pop-row {
        flex-wrap: wrap;
      }
    }

    @media (max-width: 600px) {
      .card.has-wallpaper.mobile-top {
        --bg-position: center top;
      }
    }

    @supports not (animation-timeline: view()) {
      .img-reveal {
        opacity: 0;
        clip-path: inset(45% 20% 45% 20%);
        transition: opacity .9s ease, clip-path .9s ease;
      }

      .img-reveal.is-active {
        opacity: 1;
        clip-path: inset(0% 0% 0% 0%);
      }
    }

    @media (prefers-reduced-motion: reduce) {

      .img-reveal,
      .img-reveal.is-active {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        clip-path: none !important;
      }

      .scrub,
      .scrub.reveal {
        transition: none;
        opacity: 1;
        transform: none;
        filter: none;
      }

      .js-scroll {
        opacity: 1;
        transform: none;
        transition: none;
      }

      .pop-row.is-active .pop {
        animation: none;
        opacity: 1;
        transform: none;
        filter: none;
      }
    }
    
    @media (max-width: 768px) {
      .header-inner {
        flex-direction: column;
        align-items: stretch;
      }

      .header-nav {
        flex-wrap: wrap;
      }

      .header-nav .btn-header {
        flex: 1 1 auto;
      }

      .cta {
        flex-wrap: wrap;
      }
    }

    @media (max-width: 960px) {
      .grid-2 {
        grid-template-columns: 1fr;
      }

      .grid-2.rev {
        grid-auto-flow: row;
      }
    }

    @media (max-width: 480px) {
      .feature-card {
        flex-basis: 100%;
      }
    }

    @media (max-width: 640px) {
      .ba-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto 32px auto;
      }

      .ba-arrow {
        justify-self: center;
      }

      .ba-arrow .triangle {
        transform: rotate(90deg);
      }
    }

    .map-wrap {
      width: 100%;
      aspect-ratio: 16/9;
    }

    .gmap {
      width: 100%;
      height: 100%;
      border: 0;
    }

    @media (max-width: 480px) {
      .shop-info th {
        width: 32%;
      }
    }
