:root {
      --navy: #0b2742;
      --paper: #f7f4ee;
      --paper-2: #f1eee8;
      --ink: #1b252d;
      --muted: #6b747c;
      --line: rgba(11, 39, 66, .18);
      --red: #b13a32;
      --content-width: min(1360px, calc(100% - 80px));
      --content-left: max(40px, calc((100vw - 1360px) / 2));
      --section-space: 132px;
    }

    * { box-sizing: border-box; }

    html,
    body {
      width: 100%;
      min-height: 100%;
      margin: 0;
      scroll-behavior: smooth;
    }

    body {
      color: var(--ink);
      background: var(--paper);
      font-family: "Noto Sans JP", "Apple SD Gothic Neo", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    }

    main.page {
      position: relative;
      min-height: 1120px;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(255,255,255,.58), rgba(255,255,255,.22)),
        url("../images/design/background-assets/store-paper-texture-v1.webp") center top / 900px auto repeat,
        var(--paper);
    }

    main.page::before {
      content: "";
      position: absolute;
      inset: 0;
      display: none;
      opacity: .11;
      background-image:
        radial-gradient(circle at 22% 18%, rgba(11, 39, 66, .08) 0 1px, transparent 1.5px),
        radial-gradient(circle at 72% 64%, rgba(11, 39, 66, .06) 0 1px, transparent 1.8px),
        radial-gradient(circle at 45% 82%, rgba(255, 255, 255, .9) 0 1px, transparent 1.5px);
      background-size: 38px 42px, 54px 46px, 31px 36px;
      pointer-events: none;
    }

    main.page::after {
      content: "";
      position: absolute;
      inset: 0;
      display: none;
      z-index: 0;
      opacity: .16;
      pointer-events: none;
      background-image:
        repeating-linear-gradient(90deg, transparent 0 18px, rgba(11,39,66,.03) 18px 19px, transparent 19px 38px),
        repeating-linear-gradient(90deg, transparent 0 46px, rgba(255,255,255,.74) 46px 47px, transparent 47px 82px);
      mix-blend-mode: multiply;
    }

    .site-header {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      z-index: 30;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 112px;
      padding: 34px 56px 0;
      pointer-events: none;
    }

    .header-brand {
      position: relative;
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      pointer-events: auto;
    }

    .header-mark {
      width: 58px;
      height: auto;
      display: block;
    }

    .header-logo {
      width: 154px;
      height: auto;
      display: block;
    }

    .header-stamp {
      position: absolute;
      right: -21px;
      bottom: 5px;
      width: 15px;
      height: auto;
      display: block;
    }

    .hamburger-button {
      position: relative;
      z-index: 42;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      border: 0;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.92);
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
      cursor: pointer;
      transition: background-color 0.4s ease, transform 0.4s ease;
      pointer-events: auto;
    }

    .hamburger-button span {
      position: relative;
      display: block;
      width: 32px;
      height: 18px;
    }

    .hamburger-button i {
      position: absolute;
      right: 0;
      display: block;
      height: 2px;
      background: #111;
      border-radius: 999px;
      transition: transform 0.34s ease, top 0.34s ease, width 0.34s ease, background-color 0.34s ease;
    }

    .hamburger-button i:first-child {
      top: 2px;
      left: 0;
      width: 32px;
    }

    .hamburger-button i:last-child {
      top: 12px;
      width: 23px;
    }

    main.page.is-menu-open .hamburger-button i:first-child {
      top: 8px;
      transform: rotate(-45deg);
    }

    main.page.is-menu-open .hamburger-button i:last-child {
      top: 8px;
      width: 32px;
      transform: rotate(45deg);
    }

    .drawer-menu {
      position: fixed;
      inset: 0;
      z-index: 35;
      display: grid;
      place-items: center;
      padding: 120px 9vw;
      background: rgba(8, 39, 54, .90);
      color: #fff;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .62s ease, visibility .62s ease;
    }

    main.page.is-menu-open .drawer-menu {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .drawer-watermark {
      position: absolute;
      left: 50%;
      top: 54%;
      width: 330px;
      transform: translate(-50%, -50%);
      opacity: .13;
      filter: brightness(0) invert(1);
      pointer-events: none;
    }

    .drawer-nav {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: row-reverse;
      align-items: flex-start;
      justify-content: center;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .drawer-nav li {
      position: relative;
      width: 112px;
      min-height: 250px;
      display: flex;
      justify-content: center;
    }

    .drawer-nav a {
      display: block;
      color: rgba(255, 255, 255, .92);
      text-decoration: none;
    }

    .drawer-nav-label {
      display: inline-block;
      writing-mode: vertical-rl;
      text-orientation: upright;
      font-size: 25px;
      font-weight: 800;
      line-height: 1.25;
      letter-spacing: .14em;
      text-shadow: 0 3px 16px rgba(0, 0, 0, .28);
    }

    @media (min-width: 761px) {
      .drawer-nav li {
        width: auto;
        align-items: flex-start;
        padding-top: 10px;
      }

      .drawer-nav-label {
        position: relative;
        z-index: 1;
        color: inherit;
        padding: 8px 36px;
        border-right: 1px solid rgba(255, 255, 255, .32);
        transition: color .4s cubic-bezier(.4, 0, .2, 1);
      }

      .drawer-nav li:last-child .drawer-nav-label {
        border-left: 1px solid rgba(255, 255, 255, .32);
      }

      .drawer-nav-label::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        background: #fff;
        transform: scaleY(0);
        transform-origin: top;
        transition: transform .4s cubic-bezier(.4, 0, .2, 1);
      }

      .drawer-nav a:hover .drawer-nav-label {
        color: #0b2742;
        text-shadow: none;
      }

      .drawer-nav a:hover .drawer-nav-label::before {
        transform: scaleY(1);
      }
    }

    .shop-band {
      position: relative;
      min-height: 306px;
      padding: 124px 56px 0;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(255,255,255,.36), rgba(255,255,255,.20)),
        url("../images/design/assets/washi-header-texture-v1.jpg") center / cover no-repeat,
        #f2f0ea;
      color: var(--navy);
    }

    .shop-band::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: .28;
      background:
        radial-gradient(ellipse at 13% 34%, rgba(255,255,255,.74), transparent 34%),
        radial-gradient(ellipse at 82% 45%, rgba(11,39,66,.05), transparent 38%);
      pointer-events: none;
    }

    .shop-band::after {
      content: "";
      position: absolute;
      inset: 0;
      opacity: .18;
      background: linear-gradient(90deg, rgba(255,255,255,.62), transparent 42%, rgba(255,255,255,.34));
      pointer-events: none;
    }

    .shop-band-title {
      position: absolute;
      left: var(--content-left);
      bottom: 28px;
      margin: 0;
      color: rgba(11, 39, 66, .92);
      font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
      font-size: 108px;
      font-weight: 800;
      line-height: .8;
      letter-spacing: .04em;
    }

    .breadcrumb-row {
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: var(--content-width);
      margin: 0 auto;
      padding: 28px 0 17px;
      border-bottom: 1px solid rgba(11, 39, 66, .20);
      color: #111;
      font-size: 14px;
      font-weight: 700;
    }

    .breadcrumb {
      display: flex;
      gap: 14px;
      align-items: center;
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      font-weight: 600;
    }

    .breadcrumb b {
      color: var(--red);
    }

    .store-hero {
      position: relative;
      z-index: 2;
      width: var(--content-width);
      margin: 0 auto;
      padding: 52px 0 var(--section-space);
    }

    .store-title-row {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 0 48px;
    }

    .store-title-lockup {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      width: fit-content;
      margin: 0 auto;
    }

    .store-title-logo {
      width: 78px;
      height: auto;
      display: block;
    }

    .store-title {
      margin: 0;
      color: #191512;
      text-align: center;
      font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
      font-size: 46px;
      font-weight: 800;
      letter-spacing: .06em;
      line-height: 1.35;
    }

    .store-title-mobile-break {
      display: none;
    }

    .store-title-desktop-space {
      display: inline;
    }

    .store-title-brand {
      display: inline-block;
    }

    .store-title-suffix {
      display: inline-block;
      margin-left: .55em;
    }

    .store-visual-grid {
      display: grid;
      grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
      gap: 28px;
      align-items: stretch;
      width: 100%;
      overflow: hidden;
    }

    .store-main {
      position: relative;
      min-width: 0;
      min-height: 0;
      aspect-ratio: 1 / 1;
      padding: 44px 48px;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
      background: #ded9cf;
      width: 100%;
    }

    .store-main::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(5, 13, 22, .56), rgba(5, 13, 22, .08) 48%, rgba(5, 13, 22, .22)),
        linear-gradient(180deg, rgba(5, 13, 22, .06), rgba(5, 13, 22, .42));
      z-index: 1;
      pointer-events: none;
    }

    .store-main-photo {
      position: absolute;
      inset: 0;
      z-index: 0;
      margin: 0;
      width: 100%;
    }

    .store-main-photo img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 54%;
    }

    .store-statement {
      position: relative;
      z-index: 2;
      width: 100%;
      color: #fff;
    }

    .store-statement h2 {
      margin: 0;
      color: #fff;
      font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
      font-size: 38px;
      font-weight: 800;
      line-height: 1.58;
      letter-spacing: .06em;
      text-shadow: 0 4px 22px rgba(0,0,0,.38);
    }

    .store-atmosphere {
      position: relative;
      min-width: 0;
      min-height: 100%;
      overflow: hidden;
      background: #d6d0c7;
    }

    .atmosphere-slider {
      position: relative;
      width: 100%;
      height: 100%;
      min-height: 100%;
      overflow: hidden;
      touch-action: pan-y;
      cursor: grab;
      user-select: none;
    }

    .atmosphere-slider.is-dragging {
      cursor: grabbing;
    }

    .atmosphere-track {
      display: flex;
      height: 100%;
      transform: translateX(0);
      transition: transform .58s cubic-bezier(.22, .61, .36, 1);
      will-change: transform;
    }

    .atmosphere-slider.is-dragging .atmosphere-track {
      transition: none;
    }

    .atmosphere-slide {
      position: relative;
      flex: 0 0 100%;
      height: 100%;
      min-width: 100%;
      margin: 0;
      overflow: hidden;
    }

    .atmosphere-slide::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(5, 13, 22, .08);
      pointer-events: none;
    }

    .atmosphere-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      pointer-events: none;
    }

    .atmosphere-dots {
      position: absolute;
      right: 30px;
      bottom: 32px;
      z-index: 3;
      display: flex;
      gap: 10px;
    }

    .atmosphere-dot {
      width: 9px;
      height: 9px;
      padding: 0;
      border: 1px solid rgba(255,255,255,.84);
      border-radius: 50%;
      background: transparent;
      cursor: pointer;
      transition: background-color .25s ease, transform .25s ease;
    }

    .atmosphere-dot.is-active {
      background: #fff;
      transform: scale(1.18);
    }

    .store-overview {
      position: relative;
      z-index: 2;
      padding: 0 0 var(--section-space);
    }

    .store-overview-inner {
      width: var(--content-width);
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(340px, 0.36fr) minmax(660px, 0.64fr);
      gap: 92px;
      align-items: start;
      padding-top: 0;
    }

    .section-heading {
      position: relative;
      padding-left: 34px;
    }

    .section-heading::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 5px;
      height: 96px;
      background: var(--navy);
    }

    .section-kicker {
      display: block;
      margin-bottom: 16px;
      color: var(--red);
      font-family: "Noto Sans JP", "Apple SD Gothic Neo", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .18em;
      text-transform: uppercase;
    }

    .section-title {
      margin: 0;
      color: var(--ink);
      font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
      font-size: 44px;
      font-weight: 800;
      line-height: 1.45;
      letter-spacing: .08em;
    }

    .section-heading.is-centered {
      padding-left: 0;
      text-align: center;
    }

    .section-heading.is-centered::before {
      content: none;
    }

    .section-heading.is-centered .section-kicker {
      margin-bottom: 14px;
    }

    .section-heading.is-centered .section-title::after {
      content: "";
      display: block;
      width: 64px;
      height: 3px;
      margin: 22px auto 0;
      background: var(--navy);
    }

    .overview-lead {
      margin: 38px 0 0;
      color: #2b3339;
      font-size: 16px;
      font-weight: 700;
      line-height: 2.25;
      letter-spacing: .05em;
    }

    .overview-body {
      position: relative;
      padding: 5px 0 0;
    }

    .store-info-panel {
      position: relative;
      padding: 0;
    }

    .store-info-panel::before {
      content: none;
    }

    .store-info-list {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 42px;
      margin: 0;
      border-top: 2px solid rgba(11, 39, 66, .82);
    }

    .store-info-row {
      margin: 0;
      padding: 30px 0 28px;
      border-bottom: 1px solid rgba(11, 39, 66, .14);
    }

    .store-info-row:last-child {
      border-bottom: 1px solid rgba(11, 39, 66, .14);
    }

    .store-info-row dt {
      margin: 0 0 16px;
      color: var(--navy);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .12em;
    }

    .store-info-row dd {
      margin: 0;
      color: #25313a;
      font-size: 16px;
      font-weight: 800;
      line-height: 1.9;
      letter-spacing: .04em;
    }

    .store-info-row dd.has-map-link {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 22px;
    }

    .store-map-mini {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      flex: 0 0 auto;
      margin-top: 2px;
      min-width: 92px;
      padding: 9px 18px 10px;
      color: #fff;
      border-radius: 999px;
      background: var(--navy);
      font-family: "Noto Sans JP", "Apple SD Gothic Neo", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .08em;
      text-decoration: none;
      text-transform: uppercase;
      transition: background-color .25s ease, transform .25s ease;
    }

    .store-map-mini:hover {
      color: #fff;
      background: #061d33;
      transform: translateY(-1px);
    }

    .store-map-pin {
      position: relative;
      display: inline-block;
      width: 11px;
      height: 11px;
      border: 2px solid currentColor;
      border-radius: 50% 50% 50% 0;
      transform: rotate(-45deg);
    }

    .store-map-pin::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: currentColor;
      transform: translate(-50%, -50%);
    }

    .store-map-mini span:last-child {
      transform: translateY(1px);
    }

    .store-sns-link {
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      gap: 14px;
      margin-top: 24px;
      color: var(--navy);
      font-size: 14px;
      font-weight: 800;
      letter-spacing: .04em;
      text-decoration: none;
      transition: color .25s ease;
    }

    .store-sns-link::before {
      content: none;
    }

    .store-sns-link::after {
      content: none;
    }

    .store-sns-link:hover {
      color: var(--red);
    }

    .store-sns-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      color: currentColor;
    }

    .store-sns-icon svg {
      width: 36px;
      height: 36px;
      display: block;
    }

    .store-map-block {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: minmax(340px, .35fr) minmax(680px, .65fr);
      min-height: 360px;
      margin-top: 74px;
      background: var(--navy);
      box-shadow: 0 28px 80px rgba(11, 39, 66, .13);
    }

    .store-map-copy {
      position: relative;
      padding: 54px 48px;
      color: #fff;
      overflow: hidden;
    }

    .store-map-copy::before {
      content: "";
      position: absolute;
      left: -68px;
      bottom: -92px;
      width: min(430px, 86%);
      aspect-ratio: 551 / 375;
      background: url("../images/design/access-brush-wave.png") center / contain no-repeat;
      opacity: .24;
      pointer-events: none;
    }

    .store-map-copy::after {
      content: none;
    }

    .store-map-kicker,
    .store-map-copy h3,
    .store-map-copy p {
      position: relative;
      z-index: 1;
    }

    .store-map-kicker {
      display: block;
      margin-bottom: 24px;
      color: rgba(255,255,255,.72);
      font-family: "Noto Sans JP", "Apple SD Gothic Neo", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .18em;
      text-transform: uppercase;
    }

    .store-map-copy h3 {
      margin: 0 0 24px;
      font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
      font-size: 30px;
      line-height: 1.7;
      letter-spacing: .08em;
    }

    .store-map-copy p {
      margin: 0;
      color: rgba(255,255,255,.82);
      font-size: 15px;
      font-weight: 700;
      line-height: 2.05;
      letter-spacing: .04em;
    }

    .store-map-frame {
      min-height: 360px;
      background:
        linear-gradient(135deg, rgba(255,255,255,.86), rgba(241,238,232,.86)),
        repeating-linear-gradient(0deg, rgba(11,39,66,.08) 0 1px, transparent 1px 42px),
        repeating-linear-gradient(90deg, rgba(11,39,66,.08) 0 1px, transparent 1px 42px);
    }

    .store-map-frame iframe {
      display: block;
      width: 100%;
      height: 100%;
      min-height: 360px;
      border: 0;
      filter: grayscale(.85) contrast(.92) brightness(1.04);
    }

    .other-stores {
      position: relative;
      z-index: 2;
      padding: 0 0 var(--section-space);
      overflow: hidden;
    }

    .other-stores::before,
    .other-stores::after {
      content: "";
      position: absolute;
      z-index: 0;
      pointer-events: none;
      background-repeat: no-repeat;
      background-size: contain;
      opacity: .72;
    }

    .other-stores::before {
      content: none;
    }

    .other-stores::after {
      right: -5%;
      bottom: -8px;
      width: min(860px, 62vw);
      aspect-ratio: 716 / 134;
      background-image: url("../images/design/store-brush-wave-right.png");
      background-position: right center;
    }

    .other-stores-inner {
      position: relative;
      z-index: 1;
      width: var(--content-width);
      margin: 0 auto;
    }

    .other-stores-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 40px;
      margin-bottom: 46px;
      padding-bottom: 28px;
      border-bottom: 1px solid rgba(11, 39, 66, .18);
    }

    .other-stores-lead {
      max-width: 520px;
      margin: 0;
      color: #33404a;
      font-size: 15px;
      font-weight: 700;
      line-height: 2;
      letter-spacing: .04em;
    }

    .other-stores-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .other-store-card {
      position: relative;
      display: grid;
      grid-template-rows: auto 1fr auto;
      min-height: 300px;
      padding: 34px 28px 28px;
      color: var(--ink);
      background: rgba(255, 255, 255, .62);
      border: 1px solid rgba(11, 39, 66, .16);
      text-decoration: none;
      transition: border-color .25s ease, background-color .25s ease, transform .25s ease;
    }

    .other-store-card:hover {
      background: rgba(255, 255, 255, .82);
      border-color: rgba(11, 39, 66, .34);
      transform: translateY(-4px);
    }

    .other-store-logo {
      display: block;
      width: 62px;
      height: 68px;
      object-fit: contain;
      object-position: left center;
      margin-bottom: 28px;
    }

    .other-store-card.is-placeholder .other-store-logo {
      width: 48px;
      height: 48px;
      margin-bottom: 48px;
      opacity: .9;
    }

    .other-store-area {
      display: block;
      margin-bottom: 12px;
      color: var(--red);
      font-family: "Noto Sans JP", "Apple SD Gothic Neo", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .16em;
    }

    .other-store-name {
      margin: 0;
      color: var(--ink);
      font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
      font-size: 24px;
      font-weight: 800;
      line-height: 1.55;
      letter-spacing: .06em;
    }

    .other-store-type {
      margin: 18px 0 0;
      color: #35424c;
      font-size: 14px;
      font-weight: 700;
      line-height: 1.8;
      letter-spacing: .04em;
    }

    .other-store-link {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-top: 30px;
      color: var(--navy);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .08em;
    }

    .other-store-link::after {
      content: "";
      width: 28px;
      height: 1px;
      background: currentColor;
      transition: width .25s ease;
    }

    .other-store-card:hover .other-store-link::after {
      width: 40px;
    }

    .site-footer {
      padding: 86px clamp(24px, 5vw, 76px) 34px;
      background: var(--navy);
      color: #fff;
    }

    .site-footer-inner {
      width: min(1210px, 100%);
      margin: 0 auto;
    }

    .footer-brand {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 18px;
    }

    .footer-mark {
      display: block;
      width: 54px;
      height: auto;
      filter: brightness(0) invert(1);
      opacity: 0.94;
    }

    .footer-logo {
      display: block;
      width: min(210px, 52vw);
      height: auto;
      filter: brightness(0) invert(1);
    }

    .footer-logo-wrap {
      position: relative;
      display: block;
      line-height: 0;
    }

    .footer-stamp {
      position: absolute;
      right: -20px;
      bottom: -4px;
      display: block;
      width: 17px;
      height: auto;
      filter: none;
    }

    .footer-nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 18px 34px;
      margin: 58px 0 0;
      padding: 0;
      list-style: none;
    }

    .footer-nav a {
      color: rgba(255, 255, 255, 0.88);
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-decoration: none;
      transition: color 0.24s ease;
    }

    .footer-nav a:hover {
      color: #fff;
    }

    .footer-bottom {
      margin: 58px 0 0;
      padding-top: 26px;
      border-top: 1px solid rgba(255, 255, 255, 0.20);
      text-align: center;
    }

    .footer-copy {
      margin: 0;
      color: rgba(255, 255, 255, 0.62);
      font-family: "Noto Sans JP", "Apple SD Gothic Neo", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
    }

    .page-top {
      position: fixed;
      right: 28px;
      bottom: 28px;
      z-index: 20;
      display: grid;
      place-items: center;
      width: 54px;
      height: 54px;
      border: 1px solid rgba(255, 255, 255, 0.48);
      border-radius: 50%;
      background: rgba(11, 39, 66, 0.92);
      color: #fff;
      text-decoration: none;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      box-shadow: 0 12px 30px rgba(5, 18, 30, 0.22);
      transform: translateY(10px);
      transition: opacity 0.36s ease, visibility 0.36s ease, background-color 0.24s ease, transform 0.24s ease;
    }

    .page-top::before {
      content: "";
      width: 11px;
      height: 11px;
      border-top: 2px solid currentColor;
      border-left: 2px solid currentColor;
      transform: translateY(3px) rotate(45deg);
    }

    .page-top:hover {
      background: #061842;
      transform: translateY(-3px);
    }

    .page-top.is-visible {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
    }

    .page-top.is-visible:hover {
      transform: translateY(-3px);
    }

    .store-news {
      position: relative;
      z-index: 2;
      padding: 0 0 var(--section-space);
    }

    .store-news-inner {
      width: var(--content-width);
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(260px, .27fr) 1fr;
      border-top: 1px solid rgba(11, 39, 66, .22);
      border-bottom: 1px solid rgba(11, 39, 66, .22);
    }

    .store-news-heading {
      padding: 38px 42px 36px 0;
      border-right: 1px solid rgba(11, 39, 66, .16);
    }

    .store-news-kicker {
      display: block;
      margin-bottom: 12px;
      color: var(--red);
      font-family: "Noto Sans JP", "Apple SD Gothic Neo", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .18em;
      text-transform: uppercase;
    }

    .store-news-title {
      margin: 0;
      color: var(--ink);
      font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
      font-size: 30px;
      font-weight: 800;
      letter-spacing: .08em;
    }

    .store-news-item {
      display: grid;
      grid-template-columns: 150px 112px 1fr auto;
      align-items: center;
      gap: 28px;
      min-height: 124px;
      padding: 30px 0 30px 44px;
      color: var(--ink);
      text-decoration: none;
    }

    .store-news-date {
      color: var(--navy);
      font-family: "Noto Sans JP", "Apple SD Gothic Neo", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: .08em;
    }

    .store-news-label {
	  max-width: 120px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 32px;
      padding: 6px 12px;
      color: var(--red);
      border: 1px solid rgba(177, 58, 50, .42);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .08em;
    }

    .store-news-text {
      margin: 0;
      color: #1d2831;
      font-size: 17px;
      font-weight: 800;
      line-height: 1.75;
      letter-spacing: .04em;
    }

    .store-news-arrow {
      display: inline-grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(11, 39, 66, .28);
      background: transparent url("../images/icons/arrow-icon-navy.svg") center / 8px 12px no-repeat;
      transition: background-color .25s ease, transform .25s ease;
    }

    .store-news-item:hover .store-news-arrow {
      background-color: var(--navy);
      background-image: url("../images/icons/arrow-icon-white.svg");
      transform: translateX(4px);
    }

    .recommended-menu {
      position: relative;
      z-index: 2;
      padding: 0 0 var(--section-space);
    }

    .recommended-menu-inner {
      width: var(--content-width);
      margin: 0 auto;
      color: var(--ink);
    }

    .recommended-menu-head {
      display: block;
      margin-bottom: 68px;
      padding-bottom: 0;
    }

    .recommended-menu-head .section-kicker {
      color: var(--red);
    }

    .recommended-menu-head .section-title {
      color: var(--ink);
    }

    .recommended-menu-list {
      display: grid;
      gap: 92px;
    }

    .recommended-menu-card {
      display: grid;
      grid-template-columns: minmax(520px, .58fr) minmax(380px, .42fr);
      gap: 72px;
      align-items: center;
    }

    .recommended-menu-card:nth-child(even) {
      grid-template-columns: minmax(380px, .42fr) minmax(520px, .58fr);
    }

    .recommended-menu-card:nth-child(even) .recommended-menu-photo {
      order: 2;
    }

    .recommended-menu-photo {
      position: relative;
      min-height: auto;
      margin: 0;
      overflow: hidden;
      background: #fff;
    }

    .recommended-menu-photo::after {
      content: "";
      position: absolute;
      inset: 0;
      border: 1px solid rgba(11, 39, 66, .10);
      pointer-events: none;
    }

    .recommended-menu-photo img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .recommended-menu-text {
      position: relative;
      padding: 44px 0;
    }

    .recommended-menu-name {
      margin: 0;
      color: var(--ink);
      font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
      font-size: 42px;
      font-weight: 800;
      line-height: 1.42;
      letter-spacing: .08em;
    }

    .recommended-menu-desc {
      margin: 34px 0 0;
      color: #27333d;
      font-size: 16px;
      font-weight: 700;
      line-height: 2.2;
      letter-spacing: .05em;
    }

    .recommended-menu-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 30px 0 0;
      padding: 0;
      list-style: none;
    }

    .recommended-menu-meta li {
      padding: 7px 12px;
      color: var(--navy);
      border: 1px solid rgba(11, 39, 66, .22);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .08em;
    }

    .recommended-menu-price {
      display: block;
      margin-top: 34px;
      color: var(--navy);
      font-family: "Noto Sans JP", "Apple SD Gothic Neo", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
      font-size: 25px;
      font-weight: 800;
      letter-spacing: .04em;
    }

    .recommended-menu-note {
      margin: 20px 0 0;
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
      line-height: 1.9;
      letter-spacing: .04em;
    }

    .store-menu {
      position: relative;
      z-index: 2;
      padding: 0 0 var(--section-space);
    }

    .store-menu-inner {
      width: var(--content-width);
      margin: 0 auto;
    }

    .store-menu-head {
      display: block;
      margin-bottom: 68px;
    }

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

    .menu-section-heading {
      grid-column: 1 / -1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      margin: 4px 0 8px;
      color: var(--navy);
      text-align: center;
    }

    .menu-section-heading:not(:first-child) {
      margin-top: 54px;
    }

    .menu-section-heading::before,
    .menu-section-heading::after {
      content: "";
      width: min(120px, 12vw);
      height: 1px;
      background: rgba(11, 39, 66, .28);
    }

    .menu-section-heading h3 {
      margin: 0;
      color: var(--ink);
      font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
      font-size: 31px;
      font-weight: 800;
      letter-spacing: .12em;
      line-height: 1.35;
    }

    .menu-category {
      padding: 34px 34px 28px;
      background: rgba(255, 255, 255, .72);
      border: 1px solid rgba(11, 39, 66, .14);
    }

    .menu-category.is-wide {
      grid-column: 1 / -1;
    }

    .menu-category-thumb {
      height: clamp(158px, 15vw, 230px);
      margin: 0 0 28px;
      overflow: hidden;
      background: #d8d2c8;
    }

    .menu-category-thumb img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform .45s ease;
    }

    .menu-category:hover .menu-category-thumb img {
      transform: scale(1.035);
    }

    .menu-category-title {
      display: flex;
      align-items: center;
      gap: 18px;
      margin: 0 0 24px;
      color: var(--ink);
      font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
      font-size: 27px;
      font-weight: 800;
      letter-spacing: .08em;
    }

    .menu-category-title::before {
      content: "";
      width: 42px;
      height: 3px;
      background: var(--navy);
    }

    .menu-list {
      display: grid;
      gap: 0;
      margin: 0;
      padding: 0;
      list-style: none;
      border-top: 1px solid rgba(11, 39, 66, .18);
    }

    .menu-row {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 22px;
      align-items: baseline;
      padding: 17px 0;
      border-bottom: 1px solid rgba(11, 39, 66, .12);
    }

    .menu-row-name {
      color: #202a32;
      font-size: 16px;
      font-weight: 800;
      line-height: 1.65;
      letter-spacing: .04em;
    }

    .menu-row-price {
      color: var(--navy);
      font-family: "Noto Sans JP", "Apple SD Gothic Neo", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
      font-size: 16px;
      font-weight: 800;
      letter-spacing: .04em;
      white-space: nowrap;
    }

    .menu-row-note {
      grid-column: 1 / -1;
      margin-top: -8px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
      line-height: 1.8;
      letter-spacing: .04em;
    }

    .menu-row.has-three {
      grid-template-columns: minmax(0, 1fr) auto auto;
    }

    .menu-price-label {
      display: block;
      color: var(--muted);
      font-family: "Noto Sans JP", "Apple SD Gothic Neo", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .08em;
      text-align: right;
    }

    .menu-category-note {
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
      line-height: 1.9;
      letter-spacing: .04em;
    }

    @media (max-width: 760px) {
      :root {
        --content-width: calc(100% - 32px);
        --content-left: 16px;
        --section-space: 76px;
      }

      .site-header {
        height: 96px;
        padding: 20px 15px 0;
      }

      .site-header .hamburger-button {
        position: fixed;
        top: 28px;
        right: 15px;
        z-index: 10003;
      }

      main.page.is-menu-open .site-header {
        z-index: 10002;
      }

      main.page.is-menu-open .header-brand {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
      }

      .header-brand {
        align-self: stretch;
      }

      .header-brand::before {
        content: "";
        display: block;
        flex: 0 0 62px;
        width: 62px;
        height: 62px;
        background: url("../images/suzuran-logo/chihaya.png") center / contain no-repeat;
      }

      .header-mark {
        display: none;
      }

      .header-logo {
        position: relative;
        bottom: auto;
        width: 146px;
      }

      .header-stamp {
        top: 44px;
        right: auto;
        bottom: auto;
        left: 225px;
        width: 12px;
      }

      .drawer-menu {
        z-index: 10000;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        background: rgba(5, 29, 44, 0.92);
        transform: translateY(-14px);
        transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
      }

      main.page.is-menu-open .drawer-menu {
        transform: translateY(0);
      }

      .drawer-watermark {
        display: none;
      }

      .drawer-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin: 0;
        padding: 0;
        list-style: none;
      }

      .drawer-nav li {
        display: block;
        width: auto;
        min-height: 0;
      }

      .drawer-nav-label {
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        color: #fff;
        font-size: 28px;
        font-weight: 800;
        line-height: 1.2;
        letter-spacing: 0.05em;
        text-shadow: 0 3px 14px rgba(0, 0, 0, 0.34);
      }

      main.page.is-menu-open .hamburger-button {
        background: transparent;
        box-shadow: none;
      }

      main.page.is-menu-open .hamburger-button i {
        background: #fff;
      }

      main.page.is-menu-open .hamburger-button i:first-child {
        top: 8px;
        transform: rotate(-45deg);
      }

      main.page.is-menu-open .hamburger-button i:last-child {
        top: 8px;
        width: 32px;
        transform: rotate(45deg);
      }

      .shop-band {
        min-height: 210px;
        padding: 94px 16px 0;
      }

      .shop-band-title {
        bottom: 22px;
        font-size: 66px;
      }

      .breadcrumb-row {
        padding: 20px 0 14px;
        font-size: 13px;
      }

      .breadcrumb {
        display: none;
      }

      .store-hero {
        padding: 38px 0 var(--section-space);
      }

      .store-title-row {
        justify-content: flex-start;
        margin-bottom: 32px;
      }

      .store-title-lockup {
        justify-content: flex-start;
        gap: 16px;
        width: 100%;
      }

      .store-title-logo {
        width: 60px;
      }

      .store-title {
        text-align: left;
        font-size: 27px;
        letter-spacing: .04em;
      }

      .store-title-mobile-break {
        display: block;
      }

      .store-title-desktop-space {
        display: none;
      }

      .store-title-brand {
        margin-left: 0;
      }

      .store-title-suffix {
        margin-left: .35em;
      }

      .store-visual-grid {
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .store-main {
        min-height: 0;
        aspect-ratio: 1 / 1;
        padding: 20px;
      }

      .store-statement {
        width: 100%;
      }

      .store-statement h2 {
        font-size: clamp(18px, calc(7.2vw - 4.8px), 24px);
        letter-spacing: .03em;
        white-space: nowrap;
      }

      .store-atmosphere {
        min-height: 330px;
      }

      .atmosphere-slider {
        min-height: 330px;
      }

      .atmosphere-dots {
        right: 22px;
        bottom: 24px;
      }

      .store-overview {
        padding: 0 0 var(--section-space);
      }

      .store-overview-inner {
        grid-template-columns: 1fr;
        gap: 42px;
        padding-top: 0;
      }

      .section-heading {
        padding-left: 24px;
      }

      .section-heading::before {
        height: 78px;
      }

      .section-title {
        font-size: 32px;
      }

      .overview-lead {
        font-size: 15px;
        line-height: 2.05;
      }

      .section-heading .overview-lead {
        margin-left: -24px;
      }

      .store-info-panel {
        padding: 0;
      }

      .store-info-list {
        grid-template-columns: 1fr;
      }

      .store-info-row {
	  	display: grid;
	  	padding: 22px 0;
	  	grid-template-columns: 72px minmax(0, 1fr);
	  	gap: 14px;
	  	align-items: start;
      }

      .store-info-row dt {
        margin-bottom: 8px;
      }

      .store-info-row dt,
      .store-info-row dd {
        font-size: 14px;
        line-height: 1.7;
      }

      .store-info-row dd.has-map-link {
        display: block;
      }

      .store-map-mini {
        margin-top: 14px;
        margin-left: 0;
      }

      .store-sns-link {
        margin-top: 20px;
        font-size: 13px;
      }

      .store-map-block {
        grid-template-columns: 1fr;
        min-height: 0;
        margin-top: 46px;
      }

      .store-map-copy {
        padding: 36px 28px 38px;
      }

      .store-map-copy::before {
        left: -54px;
        bottom: -72px;
        width: 86%;
        opacity: .20;
      }

      .store-map-copy::after {
        left: 24px;
        bottom: -8px;
        font-size: 36px;
      }

      .store-map-copy h3 {
        font-size: 24px;
      }

      .store-map-frame,
      .store-map-frame iframe {
        min-height: 300px;
      }

      .other-stores {
        padding-bottom: var(--section-space);
      }

      .other-stores::after {
        right: -50%;
        bottom: 0px;
        width: 138vw;
        opacity: .62;
      }

      .other-stores-head {
        display: block;
        margin-bottom: 32px;
        padding-bottom: 24px;
      }

      .other-stores-lead {
        margin-top: 20px;
        font-size: 14px;
        line-height: 2;
      }

      .other-stores-grid {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .other-store-card {
        min-height: 0;
        padding: 26px 22px 24px;
      }

      .other-store-logo {
        width: 54px;
        height: 58px;
        margin-bottom: 22px;
      }

      .other-store-card.is-placeholder .other-store-logo {
        width: 42px;
        height: 42px;
        margin-bottom: 30px;
      }

      .other-store-name {
        font-size: 22px;
      }

      .other-store-type {
        margin-top: 14px;
        font-size: 13px;
        margin-bottom: 28px;
      }

      .other-store-link {
        margin-top: 24px;
        position: absolute;
        bottom: 20px;
        right: 20px;
      }

      .site-footer {
        padding: 66px 22px 28px;
      }

      .footer-brand {
        flex-direction: row;
        gap: 10px;
      }

      .footer-mark {
        width: 42px;
      }

      .footer-logo {
	  	position: relative;
		bottom: 1px;
        width: min(150px, 55vw);
      }

      .footer-stamp {
        right: -21px;
        bottom: 0px;
        width: 12px;
      }

      .footer-nav {
        display: none;
      }

      .footer-nav a {
        display: block;
        font-size: 14px;
        text-align: center;
      }

      .footer-bottom {
        margin-top: 46px;
        padding-top: 22px;
      }

      .page-top {
        right: 16px;
        bottom: 16px;
        width: 48px;
        height: 48px;
      }

      .store-news {
        padding-bottom: var(--section-space);
      }

      .store-news-inner {
        grid-template-columns: 1fr;
      }

      .store-news-heading {
        padding: 30px 0 24px;
        border-right: 0;
        border-bottom: 1px solid rgba(11, 39, 66, .16);
      }

      .store-news-title {
        font-size: 26px;
      }

      .store-news-item {
        grid-template-columns: 1fr auto;
        gap: 12px 18px;
        min-height: 0;
        padding: 26px 0;
      }

      .store-news-date,
      .store-news-label,
      .store-news-text {
        grid-column: 1 / 2;
      }

      .store-news-text {
        font-size: 15px;
      }

      .store-news-arrow {
        grid-column: 2 / 3;
        grid-row: 1 / 4;
        align-self: center;
      }

      .recommended-menu {
        padding-bottom: var(--section-space);
      }

      .recommended-menu-inner {
        width: var(--content-width);
      }

      .recommended-menu-head {
        display: block;
        margin-bottom: 38px;
        padding-bottom: 0;
      }

      .recommended-menu-list {
        grid-template-columns: 1fr;
        gap: 58px;
      }

      .recommended-menu-card,
      .recommended-menu-card:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .recommended-menu-card:nth-child(even) .recommended-menu-photo {
        order: 0;
      }

      .recommended-menu-photo {
        min-height: auto;
      }

      .recommended-menu-text {
        padding: 0;
      }

      .recommended-menu-name {
        font-size: 30px;
      }

      .recommended-menu-desc {
        margin-top: 22px;
        font-size: 14px;
        line-height: 2.05;
      }

      .store-menu {
        padding-bottom: var(--section-space);
      }

      .store-menu-head {
        margin-bottom: 42px;
      }

      .store-menu-grid {
        grid-template-columns: 1fr;
        gap: 22px;
      }

      .menu-section-heading {
        gap: 14px;
        margin: 2px 0 4px;
      }

      .menu-section-heading:not(:first-child) {
        margin-top: 38px;
      }

      .menu-section-heading::before,
      .menu-section-heading::after {
        width: 42px;
      }

      .menu-section-heading h3 {
        font-size: 25px;
      }

      .menu-category,
      .menu-category.is-wide {
        grid-column: auto;
        padding: 28px 20px 24px;
      }

      .menu-category-thumb {
        height: 152px;
        margin: 0 0 24px;
      }

      .menu-category-title {
        font-size: 21px;
      }

      .menu-row,
      .menu-row.has-three {
        grid-template-columns: minmax(0, 1fr) minmax(100px, 20%);
        gap: 4px 14px;
        align-items: start;
      }

      .menu-row-price {
        justify-self: end;
        text-align: right;
      }

      .menu-row:not(.has-three) .menu-row-note {
        grid-column: 1 / 2;
        grid-row: 2;
        justify-self: start;
        margin-top: 0;
        text-align: left;
      }

      .menu-row.has-three .menu-row-price:nth-of-type(2) {
        grid-column: 2 / 3;
        grid-row: 1;
      }

      .menu-row.has-three .menu-row-price:nth-of-type(3) {
        grid-column: 2 / 3;
        grid-row: 2;
      }

      .menu-row.has-three .menu-row-note {
        grid-column: 1 / 2;
        grid-row: 2 / 4;
        justify-self: start;
        margin-top: 0;
        text-align: left;
      }

      .menu-row-name {
        font-size: 15px;
      }

      .menu-row-price {
        font-size: 15px;
      }
    }
