  :root {
    --ink: #1a1a1a;
    --shape-ink: #392a1e;
    --ink-soft: #6b6b6b;
    --ink-faint: #a8a3a0;
    --paper: #fff;
    --paper-2: #ebe5d9;
    --accent: #e85642;
    --line: rgba(57, 42, 30, 0.10);
    --heading-font: "Capitana", "Noto Sans JP", system-ui, sans-serif;
  }

  * {
    box-sizing: border-box;
  }

  html {
    font-size: 112.5%;
  }

  .view-hidden {
    display: none;
  }

  body {
    margin: 0;
    background: #fcfcfc;
    color: var(--ink);
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: 1.7;
  }

  .reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity .52s ease,
      transform .52s cubic-bezier(.2, .7, .2, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
  }

  .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  @media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll {
      opacity: 1;
      transform: none;
      transition: none;
    }
  }

  .serif {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
  }

  .latin,
  .brand,
  .toolbar-tag,
  .hero .eyebrow,
  .hero .meta,
  .section-head .num,
  .section-head .sub,
  .card-num,
  .card-genre,
  .modal-pagination,
  .modal-chips,
  .modal-info dt,
  .modal-speaker-meta span,
  .modal-staff-meta span,
  .footer h3,
  .footer dt,
  .footer-bottom,
  .modal-preview-label {
    font-family: capitana, sans-serif;
    font-weight: 500;
    font-style: normal;
  }

  .latin {
    letter-spacing: 0.08em;
  }

  /* ============= Toolbar (preview switcher) ============= */
  .view-toolbar {
    position: sticky;
    top: 0;
    z-index: 50;
    min-height: 64px;
    padding: 14px 38px 14px 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    background: #fff;
    border-bottom: 1.5px solid var(--shape-ink);
  }

  .brand {
    color: #392a1e;
    font-family: capitana, sans-serif;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.16em;
  }

  .toolbar-tag {
    font-size: 12px;
    color: var(--ink-faint);
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .toolbar-nav {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
  }

  .toolbar-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    min-height: 28px;
    padding: 5px 14px 6px;
    border-radius: 999px;
    background: var(--shape-ink);
    color: #392a1e;
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 500;
    line-height: .85;
    letter-spacing: .08em;
    text-decoration: none;
    white-space: nowrap;
  }

  #top,
  #food-map,
  #pickup {
    scroll-margin-top: 66px;
  }

  /* ============= Hero ============= */
  .hero {
    padding: 100px 0 0;
    text-align: center;
    background: #fff;
    border-bottom: none;
    overflow: hidden;
  }

  .hero-copy {
    width: min(100% - 48px, 980px);
    margin: 0 auto;
    color: #050505;
  }

  .hero .eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 300px;
    min-height: 38px;
    padding: 8px 34px 9px;
    border-radius: 0;
    background: var(--shape-ink);
    color: #fff;
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 400;
    line-height: .85;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .hero h1 {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: clamp(38px, 4.3vw, 62px);
    margin: 28px 0 22px;
    line-height: 1.28;
    letter-spacing: 0.08em;
  }

  .hero-logo {
    display: block;
    width: clamp(280px, 48vw, 620px);
    height: auto;
    margin: 0 auto;
  }

  .hero-logo-wrap {
    position: relative;
    display: inline-block;
    width: clamp(280px, 48vw, 620px);
    margin: 0 auto;
  }

  .hero-logo-wrap .hero-logo {
    width: 100%;
  }

  .hero-logo-part {
    position: absolute;
    display: block;
    height: auto;
    transform-origin: 50% 50%;
    animation: heroLogoWiggle 1.8s steps(2, end) infinite;
    pointer-events: none;
  }

  .hero-logo-part-01 {
    width: 7%;
    top: 45.8%;
    left: 10.2%;
  }

  .hero-logo-part-02 {
    width: 9.8%;
    top: 45.5%;
    left: 78.8%;
    animation-delay: .2s;
  }

  .hero-logo-part-03 {
    width: 1.9%;
    top: -6.5%;
    left: 33.5%;
    animation-delay: .4s;
  }

  .hero-logo-part-04 {
    width: 7.4%;
    top: 59.8%;
    left: 30.5%;
    animation-delay: .6s;
  }

  .hero-logo-part-05 {
    width: 2.5%;
    top: 0.2%;
    left: 68.5%;
    animation-delay: .8s;
  }

  @keyframes heroLogoWiggle {

    0%,
    100% {
      transform: rotate(-10deg);
    }

    50% {
      transform: rotate(10deg);
    }
  }

  .hero p {
    max-width: 720px;
    margin: 0 auto;
    color: #050505;
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: 0.08em;
    font-weight: 400;
  }

  .hero-intro {
    width: min(100%, 860px);
    margin: 0 auto;
    text-align: center;
  }

  .hero-intro p {
    max-width: none;
    margin: 0;
    padding: 0;
    border-left: 0;
  }

  .hero-intro-kicker {
    color: #e85642;
    font-family: capitana, sans-serif;
    font-size: clamp(12px, 1.05vw, 17px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: .68em;
    text-indent: .68em;
  }

  .hero-intro-copy {
    margin-top: clamp(24px, 3vw, 40px) !important;
    color: var(--ink-soft);
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: clamp(13px, 1vw, 17px);
    font-weight: 500;
    line-height: 2.15;
    letter-spacing: .055em;
  }

  .hero-slider {
    position: relative;
    width: 100%;
    margin: 68px 0 0;
    overflow: hidden;
    background: #241a13;
  }

  .hero-slider-track {
    display: flex;
    width: max-content;
    animation: heroImageSlide 152s linear infinite;
  }

  .hero-slide {
    flex: 0 0 clamp(320px, 33.333vw, 520px);
    aspect-ratio: 4 / 3;
    border-right: 1.5px solid #fff;
    overflow: hidden;
    background: #eee;
  }

  .hero-slide img,
  .hero-slide svg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

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

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

  /* ============= Section structure ============= */
  .section {
    padding: 96px 96px;
    max-width: 1600px;
    margin: 0 auto;
  }

  #food-map {
    padding: 200px 0 0;
    max-width: none;
    background: #fff;
  }

  #food-map .section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin: 0;
    padding: 0 clamp(24px, 5.4vw, 64px) 28px;
    text-align: left;
  }

  #food-map .section-head::after {
    content: none;
  }

  #food-map .section-head h2 {
    color: #050505;
    font-size: clamp(32px, 3.4vw, 55px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: .1em;
  }

  #food-map .section-head .sub {
    display: none;
  }

  .section-head {
    text-align: center;
    margin-bottom: 56px;
  }

  .section-head .num {
    font-family: capitana, sans-serif;
    font-size: 14px;
    color: var(--ink-faint);
    letter-spacing: 0.32em;
    margin-bottom: 12px;
  }

  .section-head h2 {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 32px;
    margin: 0;
    letter-spacing: 0.16em;
  }

  .section-head .sub {
    font-family: capitana, sans-serif;
    font-size: 14px;
    color: var(--ink-soft);
    letter-spacing: 0.2em;
    margin-top: 10px;
    text-transform: uppercase;
  }

  .pickup-title {
    font-family: var(--heading-font);
    line-height: 1.7;
    letter-spacing: 3px;
  }

  /* ============= Map ============= */
  .map-frame {
    position: relative;
    display: flex;
    justify-content: center;
    overflow: hidden;
    height: auto;
    padding: 0 clamp(16px, 4vw, 56px);
    box-sizing: border-box;
    background: #fcfcfc;
    max-width: none;
    margin: 0;
    border: 0;
  }

  .map-content {
    position: relative;
    width: min(100%, 1176px);
    height: auto;
    flex: 0 0 auto;
    background: #fcfcfc;
  }

  .pin-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    transform: translateY(0);
  }

  .map-frame img.map-bg {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
  }

  .map-compass {
    position: absolute;
    left: 6.6%;
    bottom: 2.2%;
    z-index: 3;
    width: clamp(25px, 4vw, 55px);
    height: auto;
    pointer-events: none;
  }

  .map-callout {
    position: absolute;
    top: 9.4%;
    left: 6.7%;
    z-index: 3;
    width: min(29%, 342px);
    pointer-events: none;
  }

  .map-callout img {
    display: block;
    width: 100%;
    height: auto;
  }

  .map-callout p {
    position: absolute;
    top: 27%;
    left: 17.5%;
    width: 65%;
    margin: 0;
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(10px, 1.35vw, 18px);
    font-weight: 200;
    line-height: 1.62;
    letter-spacing: .06em;
    text-align: center;
    white-space: nowrap;
  }

  .map-title-label {
    display: none;
  }

  .map-title-label::after {
    content: none;
  }

  .map-note {
    position: absolute;
    top: 3%;
    left: 3%;
    z-index: 3;
    width: 62%;
    padding: 24px 32px 26px;
    border: 1.5px solid rgba(63, 108, 174, 0.75);
    border-radius: 72px 64px 76px 68px / 56px 70px 62px 68px;
    background: rgba(255, 255, 255, 0.94);
    color: #111;
    pointer-events: none;
  }

  .map-note p {
    margin: 0;
    font-family: Georgia, "Times New Roman", "Noto Serif JP", serif;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.01em;
  }

  .map-note .map-note-title {
    margin-bottom: 10px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 14px;
  }

  .pin-hit {
    position: absolute;
    left: var(--pin-x);
    top: var(--pin-y);
    width: clamp(28px, 3vw, 40px);
    height: clamp(28px, 3vw, 40px);
    padding: 0;
    border: 1.5px solid var(--shape-ink);
    border-radius: 50% 50% 50% 0;
    background: #e85642;
    color: #fff;
    cursor: pointer;
    transform: translate(-50%, -50%) rotate(-45deg);
    transform-origin: 0 100%;
    transition: transform .25s cubic-bezier(.2, .7, .3, 1), background .18s, color .18s;
    filter: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pin-hit span {
    display: block;
    font-family: Arial, "Helvetica Neue", sans-serif;
    font-size: clamp(16px, 1.8vw, 24px);
    font-weight: 700;
    line-height: 1;
    transform: rotate(45deg);
  }

  .pin-hit:hover,
  .pin-hit:focus-visible {
    transform: translate(-50%, -50%) rotate(-45deg) scale(1.18);
    z-index: 4;
    outline: none;
    background: var(--shape-ink);
    color: #fff;
  }

  .pin-hit::after {
    content: attr(data-name);
    position: absolute;
    left: 90%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%) rotate(45deg);
    transform-origin: 50% 100%;
    background: var(--shape-ink);
    color: var(--paper);
    padding: 5px 11px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 9px;
    white-space: nowrap;
    letter-spacing: 0.04em;
    pointer-events: none;
    opacity: 0;
    transition: opacity .18s;
  }

  .pin-hit:hover::after,
  .pin-hit:focus-visible::after {
    opacity: 1;
  }

  .map-category-strip {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    min-height: 122px;
    background: #e9ded0;
    border-top: 1.5px solid #fff;
  }

  .map-category-strip span {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 26px 24px 22px;
    color: #050505;
    font-family: var(--heading-font);
    font-size: clamp(18px, 1.9vw, 24px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .02em;
    text-align: center;
    border-left: 1.5px solid rgba(5, 5, 5, .14);
  }

  .map-category-strip span:first-child {
    border-left: 0;
  }

  .map-category-strip b {
    font: inherit;
  }

  .map-category-strip small {
    display: block;
    width: 100%;
    color: var(--ink-soft);
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: clamp(11px, .95vw, 14px);
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: .04em;
    overflow-wrap: anywhere;
  }

  /* ============= PICK UP grid ============= */
  .pickup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px 32px;
  }

  .card {
    cursor: pointer;
  }

  .card-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: visible;
    background: var(--paper-2);
    margin-bottom: 16px;
  }

  .card-photo-frame {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: var(--paper-2);
  }

  .card-photo-frame>svg,
  .card-photo-frame>img {
    transition: transform .35s cubic-bezier(.2, .7, .3, 1);
    transform-origin: center;
  }

  .card:hover .card-photo-frame>svg,
  .card:hover .card-photo-frame>img {
    transform: scale(1.08);
  }

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

  .pickup-staff-badge {
    position: absolute;
    right: -18px;
    bottom: -12px;
    z-index: 3;
    width: 62%;
    height: 100%;
    max-width: 250px;
    min-width: 156px;
    pointer-events: none;
  }

  .card-img .pickup-staff-img {
    position: absolute;
    left: 26%;
    bottom: -2%;
    z-index: 2;
    width: auto;
    height: 62%;
    object-fit: contain;
    transform: none;
    filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.18));
  }

  .card:hover .pickup-staff-img {
    transform: none;
  }

  .pickup-speech {
    position: absolute;
    left: 10%;
    bottom: 60%;
    z-index: 1;
    width: 78%;
    aspect-ratio: 347 / 189;
  }

  .pickup-speech img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .pickup-speech-text {
    position: absolute;
    top: 46%;
    left: 22%;
    width: 68%;
    transform: translateY(-50%);
    z-index: 1;
    overflow: hidden;
  }

  .pickup-speech-text span {
    display: inline-block;
    min-width: max-content;
    padding-left: 100%;
    color: #111;
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(9px, 0.85vw, 13px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    white-space: nowrap;
    animation: pickupSpeechMarquee 26s linear infinite;
  }

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

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

  .card-num {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 28px;
    height: 28px;
    background: rgba(245, 241, 234, 0.92);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: capitana, sans-serif;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.04em;
  }

  .card-genre {
    font-family: capitana, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 13px;
    color: var(--accent);
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .card-name {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 19px;
    font-weight: 700;
    margin: 6px 0 8px;
    letter-spacing: 0.04em;
    line-height: 1.5;
  }

  .card-comment {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.85;
    letter-spacing: 0.02em;
  }

  .mobile-card .card-name {
    font-size: 13px;
    margin: 4px 0 6px;
  }

  .mobile-card .card-comment {
    font-size: 10px;
    line-height: 1.7;
  }

  .mobile-card .pickup-staff-badge {
    right: -14px;
    bottom: -9px;
    width: 72%;
    min-width: 112px;
  }

  .mobile-card .pickup-speech-text span {
    font-size: 8px;
    animation-duration: 22s;
  }

  /* ============= Modal ============= */
  .modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(57, 42, 30, 0.6);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 16px;
  }

  .modal-backdrop.open {
    display: flex;
    animation: fadeIn .25s ease;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  .modal {
    width: 100%;
    max-width: 1200px;
    max-height: 96vh;
    background: var(--paper);
    overflow: hidden;
    position: relative;
    animation: slideUp .4s cubic-bezier(0.2, 0.8, 0.3, 1);
  }

  @keyframes slideUp {
    from {
      transform: translateY(20px);
      opacity: 0;
    }

    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .modal-inner {
    padding: 104px 104px 88px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
    overflow-y: auto;
    max-height: 96vh;
  }

  .modal-main-panel,
  .modal-detail-panel {
    min-width: 0;
  }

  .modal-detail-panel {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .modal-pagination {
    position: absolute;
    top: 36px;
    left: 80px;
    font-family: capitana, sans-serif;
    font-size: 14px;
    color: #e85642;
    letter-spacing: 0.16em;
  }

  .modal-pagination span {
    color: var(--ink-faint);
  }

  .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--paper);
    color: var(--ink);
    border: 1.5px solid var(--shape-ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 5;
    transition: background .15s, color .15s;
  }

  .modal-close:hover {
    background: var(--shape-ink);
    color: var(--paper);
  }

  .modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--shape-ink);
    color: transparent;
    border: 1.5px solid var(--shape-ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    z-index: 5;
    transition: background .15s, border-color .15s;
  }

  .modal-nav::before {
    content: "";
    width: 14px;
    height: 14px;
    border-left: 1.5px solid var(--paper);
    border-bottom: 1.5px solid var(--paper);
  }

  .modal-nav.prev {
    left: 20px;
  }

  .modal-nav.prev::before {
    transform: translateX(4px) rotate(45deg);
  }

  .modal-nav.next {
    right: 20px;
  }

  .modal-nav.next::before {
    transform: translateX(-4px) rotate(225deg);
  }

  .modal-nav:hover {
    background: var(--paper);
    border-color: var(--shape-ink);
  }

  .modal-nav:hover::before {
    border-left-color: var(--shape-ink);
    border-bottom-color: var(--shape-ink);
  }

  .modal-img-main {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--paper-2);
    border: 1.5px solid var(--shape-ink);
    border-radius: 0;
  }

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

  .modal-chips {
    display: flex;
    gap: 18px;
    margin-top: 44px;
    align-items: center;
    font-family: capitana, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .chip-genre {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 5px 12px 6px;
    border: 1.5px solid var(--shape-ink);
    border-radius: 999px;
    background: #e85642;
    color: #392a1e;
    line-height: 1;
  }

  .chip-price {
    color: var(--ink-soft);
    padding-left: 18px;
    border-left: 1.5px solid var(--line);
  }

  .modal-name {
    font-family: var(--heading-font);
    font-size: 21px;
    font-weight: 700;
    margin: 14px 0 24px;
    letter-spacing: 0.06em;
    line-height: 1.4;
  }

  .modal-info {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px 20px;
    font-size: 14px;
    line-height: 1.8;
    padding-top: 20px;
    border-top: 0;
    background-image: repeating-linear-gradient(to right,
        rgba(57, 42, 30, 0.28) 0 1.5px,
        transparent 1.5px 5px);
    background-repeat: no-repeat;
    background-size: 100% 1.5px;
    background-position: left top;
  }

  .modal-info dt {
    font-family: capitana, sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--ink-faint);
    margin: 0;
  }

  .modal-info dd {
    margin: 0;
    color: var(--ink);
    letter-spacing: 0.02em;
  }

  .modal-address {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .modal-map-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 4px 12px 5px;
    border: 1.5px solid var(--shape-ink);
    border-radius: 999px;
    color: var(--ink);
    font-family: capitana, sans-serif;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .08em;
    text-decoration: none;
    white-space: nowrap;
    transition: background .15s, color .15s;
  }

  .modal-map-link:hover {
    background: var(--shape-ink);
    color: var(--paper);
  }

  .modal-extra-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
    gap: 28px;
  }

  .modal-extra-image {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 126px;
  }

  .modal-extra-images-masashi .modal-extra-image {
    position: relative;
  }

  .modal-extra-image img {
    display: block;
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
  }

  .modal-extra-images-masashi .modal-extra-image:nth-child(2) img {
    max-height: 192px;
    transform-origin: 50% 85%;
    animation: masashiWiggle 1.8s steps(2, end) infinite;
  }

  .modal-extra-images-masashi .modal-extra-image:nth-child(1) img {
    transform: translateY(-18px);
  }

  .modal-extra-images-masashi .modal-extra-image:nth-child(1)::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 142px;
    width: 42px;
    height: 34px;
    transform: translateX(-50%);
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72 48'%3E%3Cpath d='M14 46 C12 35 23 30 17 20 C14 14 16 7 20 2' fill='none' stroke='%23392a1e' stroke-width='3' stroke-linecap='butt'/%3E%3Cpath d='M36 46 C34 35 45 30 39 20 C36 14 38 7 42 2' fill='none' stroke='%23392a1e' stroke-width='3' stroke-linecap='butt'/%3E%3Cpath d='M58 46 C56 35 67 30 61 20 C58 14 60 7 64 2' fill='none' stroke='%23392a1e' stroke-width='3' stroke-linecap='butt'/%3E%3C/svg%3E") center / contain no-repeat;
    animation: masashiSteam 1.2s steps(2, end) infinite;
    pointer-events: none;
  }

  .modal-extra-images-jiji {
    width: min(68%, 430px);
    margin: -72px 8px 0 auto;
    gap: 14px;
    transform: translateX(28px);
    pointer-events: none;
  }

  .modal-extra-images-jiji .modal-extra-image {
    min-height: 168px;
  }

  .modal-extra-images-jiji .modal-extra-image img {
    width: 100%;
    max-height: 168px;
  }

  .modal-extra-images-jiji .modal-extra-image:nth-child(1) img {
    width: 80%;
    max-height: 130px;
    transform-origin: 50% 85%;
    animation: jijiFoodWiggle 1.8s steps(2, end) infinite;
  }

  .modal-extra-images-jiji .modal-extra-image:nth-child(2) img {
    transform-origin: 50% 85%;
    animation: jijiWiggle 1.8s steps(2, end) infinite;
    animation-delay: .9s;
  }

  @keyframes jijiPlatePulse {

    0%,
    100% {
      transform: scale(.9);
    }

    50% {
      transform: scale(1.08);
    }
  }

  @keyframes jijiWiggle {

    0%,
    100% {
      transform: translate(12px, -14px) rotate(-4deg);
    }

    50% {
      transform: translate(12px, -14px) rotate(4deg);
    }
  }

  @keyframes jijiFoodWiggle {

    0%,
    100% {
      transform: translateX(10px) rotate(-4deg);
    }

    50% {
      transform: translateX(10px) rotate(4deg);
    }
  }

  .modal-extra-images-moondog-info {
    grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
    align-items: end;
    width: min(58%, 310px);
    margin: -44px 22px 0 auto;
    gap: 10px;
    transform: translateX(14px);
    pointer-events: none;
  }

  .modal-extra-images-moondog-info .modal-extra-image {
    min-height: 132px;
  }

  .modal-extra-images-moondog-info .modal-extra-image img {
    width: 100%;
    max-height: 132px;
  }

  .modal-extra-images-moondog-info .modal-extra-image:nth-child(1) img {
    transform: translateY(8px);
  }

  .modal-extra-images-moondog-info .modal-extra-image:nth-child(2) img {
    width: 118%;
    max-width: 118%;
    transform-origin: 50% 85%;
    animation: moondogDrinkWiggle 1.8s steps(2, end) infinite;
  }

  @keyframes moondogDrinkWiggle {

    0%,
    100% {
      transform: rotate(-4deg);
    }

    50% {
      transform: rotate(4deg);
    }
  }

  .modal-extra-images-matsugamine-info {
    grid-template-columns: minmax(0, 1fr);
    justify-items: end;
    margin-top: -56px;
    padding-right: 36px;
    pointer-events: none;
  }

  .modal-extra-images-matsugamine-info .modal-extra-image {
    position: relative;
    min-height: 104px;
  }

  .modal-extra-images-matsugamine-info .modal-extra-image img {
    max-width: 190px;
    max-height: 116px;
  }

  .modal-extra-images-matsugamine-info .modal-extra-image::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 102px;
    width: 36px;
    height: 30px;
    transform: translateX(-50%);
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72 48'%3E%3Cpath d='M14 46 C12 35 23 30 17 20 C14 14 16 7 20 2' fill='none' stroke='%23392a1e' stroke-width='3' stroke-linecap='butt'/%3E%3Cpath d='M36 46 C34 35 45 30 39 20 C36 14 38 7 42 2' fill='none' stroke='%23392a1e' stroke-width='3' stroke-linecap='butt'/%3E%3Cpath d='M58 46 C56 35 67 30 61 20 C58 14 60 7 64 2' fill='none' stroke='%23392a1e' stroke-width='3' stroke-linecap='butt'/%3E%3C/svg%3E") center / contain no-repeat;
    animation: masashiSteam 1.2s steps(2, end) infinite;
  }

  .modal-extra-images-ishidaya-info {
    grid-template-columns: minmax(0, 1fr);
    justify-items: end;
    margin-top: 18px;
    padding-right: 12px;
    pointer-events: none;
  }

  .modal-extra-images-ishidaya-info .modal-extra-image {
    min-height: 96px;
  }

  .modal-extra-images-ishidaya-info .modal-extra-image img {
    max-width: 260px;
    max-height: 118px;
    transform-origin: 50% 14%;
    animation: ishidayaNorenWiggle 1.6s steps(2, end) infinite;
  }

  .modal-extra-images-lacurva-info,
  .modal-extra-images-columbia-info {
    grid-template-columns: minmax(0, 1fr);
    justify-items: end;
    margin-top: -78px;
    padding-right: 16px;
    pointer-events: none;
  }

  .modal-extra-images-lacurva-info .modal-extra-image,
  .modal-extra-images-columbia-info .modal-extra-image {
    min-height: 112px;
  }

  .modal-extra-images-lacurva-info .modal-extra-image img,
  .modal-extra-images-columbia-info .modal-extra-image img {
    max-width: 220px;
    max-height: 132px;
    transform-origin: 50% 85%;
    animation: lacurvaWiggle 1.8s steps(2, end) infinite;
  }

  .modal-extra-images-lacurva-info .modal-extra-image img {
    max-width: 250px;
    max-height: 150px;
    transform-origin: 50% 50%;
    animation: jijiPlatePulse 2.4s steps(2, end) infinite;
  }

  .modal-extra-images-columbia-info .modal-extra-image img {
    transform-origin: 50% 50%;
    animation: columbiaSpin 8s steps(24, end) infinite;
  }

  @keyframes columbiaSpin {
    from {
      transform: rotate(0deg);
    }

    to {
      transform: rotate(360deg);
    }
  }

  @keyframes lacurvaWiggle {

    0%,
    100% {
      transform: rotate(-6deg);
    }

    50% {
      transform: rotate(6deg);
    }
  }

  @keyframes masashiWiggle {

    0%,
    100% {
      transform: translateY(-28px) rotate(-6deg);
    }

    50% {
      transform: translateY(-28px) rotate(6deg);
    }
  }

  @keyframes masashiSteam {

    0%,
    100% {
      transform: translate(-52%, 0) rotate(-2deg);
    }

    50% {
      transform: translate(-48%, -2px) rotate(2deg);
    }
  }

  @keyframes ishidayaNorenWiggle {

    0%,
    100% {
      transform: rotate(-3deg);
    }

    50% {
      transform: rotate(3deg);
    }
  }

  .modal-extra-images-barisu {
    grid-template-columns: minmax(0, 1fr);
    justify-items: end;
    margin-top: -108px;
    padding-right: 10px;
  }

  .modal-extra-images-barisu .modal-extra-image img {
    max-width: 280px;
    max-height: 148px;
    transform-origin: 50% 85%;
    animation: barisuWiggle 1.8s steps(2, end) infinite;
  }

  @media (min-width: 901px) and (max-width: 1150px) {
    .modal-extra-images-barisu {
      margin-top: 14px;
    }

    .modal-extra-images-lacurva-info {
      margin-top: -37px;
      margin-right: -47px;
    }

    .modal-extra-images-columbia-info {
      margin-top: -37px;
      margin-right: -47px;
    }
  }

  @keyframes barisuWiggle {

    0%,
    100% {
      transform: rotate(-6deg);
    }

    50% {
      transform: rotate(6deg);
    }
  }

  .modal-instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    text-decoration: none;
    transition: color .15s, opacity .15s;
  }

  .modal-instagram-link svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
  }

  .modal-instagram-link span {
    font-size: 13px;
    letter-spacing: 0.04em;
  }

  .modal-instagram-link:hover {
    color: var(--accent);
    opacity: 0.85;
  }

  .modal-speaker {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 16px;
  }

  .modal-speaker .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--paper-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    overflow: hidden;
  }

  .modal-speaker .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }

  .modal-speaker-meta {
    font-size: 13px;
  }

  .modal-speaker-meta b {
    font-family: var(--heading-font);
    font-size: 15px;
    display: block;
    font-weight: 500;
    letter-spacing: 0.08em;
  }

  .modal-speaker-meta span {
    color: var(--ink-faint);
    font-family: capitana, sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 12px;
  }

  .modal-comment-block {
    position: relative;
    background: #fff;
    padding: 14px 20px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.65;
    letter-spacing: 0.04em;
    color: var(--ink);
    border: 1.5px solid #000;
    border-radius: 0;
  }

  .modal-comment-block::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 24px;
    width: 12px;
    height: 12px;
    background: #fff;
    border-left: 1.5px solid #000;
    border-top: 1.5px solid #000;
    transform: rotate(45deg);
    border-radius: 0;
  }

  .modal-comment-text {
    font-size: 15px;
    line-height: 2.05;
    color: var(--ink-soft);
    margin-top: 28px;
    letter-spacing: 0.02em;
    width: 100%;
  }

  .modal-staff {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1.5px solid var(--line);
  }

  .modal-staff-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--paper-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
  }

  .modal-staff-meta {
    font-size: 13px;
  }

  .modal-staff-meta b {
    font-family: var(--heading-font);
    font-size: 15px;
    display: block;
    font-weight: 500;
    letter-spacing: 0.08em;
  }

  .modal-staff-meta span {
    color: var(--ink-faint);
    font-family: capitana, sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 12px;
  }

  .modal-img-sub {
    position: relative;
    aspect-ratio: 4/3;
    overflow: visible;
    background: var(--paper-2);
    margin-top: 32px;
  }

  .modal-img-sub.has-overlay {
    aspect-ratio: 16/11;
    background: transparent;
    margin-top: 40px;
    padding-bottom: 32px;
  }

  .modal-img-sub-base {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 1.5px solid var(--shape-ink);
    border-radius: 0;
  }

  .modal-img-sub.has-overlay .modal-img-sub-base {
    width: 76%;
    height: calc(100% - 32px);
    margin-left: auto;
    box-shadow: 0 18px 42px rgba(26, 26, 26, 0.13);
  }

  .modal-img-sub-base img,
  .modal-img-sub-base svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .modal-img-sub-gallery {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.08fr);
    align-items: stretch;
    gap: 8px;
    aspect-ratio: auto;
    overflow: visible;
    background: transparent;
  }

  .modal-img-sub-gallery .modal-img-sub-base {
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .modal-img-sub-stack {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 12px;
    height: 100%;
    min-width: 0;
  }

  .modal-img-sub-stack-item {
    overflow: hidden;
    border: 1.5px solid var(--shape-ink);
    background: var(--paper-2);
    min-height: 0;
  }

  .modal-img-sub-stack-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .modal-img-sub .modal-img-sub-overlay {
    position: absolute;
    left: -34px;
    bottom: -20px;
    z-index: 2;
    width: 50%;
    height: 60%;
    object-fit: cover;
    border-radius: 0;
    border: 1.5px solid #fafafa;
  }

  /* ============= SNS / Footer ============= */
  .ig-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
  }

  .ig-grid>div {
    aspect-ratio: 1;
    background: var(--paper-2);
    overflow: hidden;
    cursor: pointer;
    transition: opacity .2s;
  }

  .ig-grid>div:hover {
    opacity: 0.8;
  }

  .footer {
    margin-top: 96px;
    background: #392a1e;
    color: #fff;
  }

  .footer-inner {
    width: min(100%, var(--grid-concept-max, 1360px));
    margin: 0 auto;
    padding: clamp(58px, 6vw, 86px) clamp(24px, 5vw, 72px) clamp(70px, 7vw, 104px);
    background: #392a1e;
    border-top: 0;
  }

  .footer-info {
    display: grid;
    grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr);
    align-items: start;
    column-gap: clamp(72px, 10vw, 140px);
    row-gap: 8px;
    max-width: none;
  }

  .footer-title {
    grid-row: 1 / span 3;
    margin: 0 0 4px;
    line-height: 0;
    align-self: start;
  }

  .footer-title img {
    display: block;
    width: clamp(190px, 19vw, 300px);
    height: auto;
    filter: brightness(0) invert(1);
  }

  .footer-info p {
    grid-column: 2;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: clamp(12px, .92vw, 14px);
    line-height: 1.8;
    letter-spacing: .04em;
  }

  .footer-actions {
    display: grid;
    grid-column: 2;
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    gap: clamp(18px, 2.4vw, 32px);
    margin: 22px 0 0;
  }

  .footer-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 44px;
    padding: 0 0 14px;
    border: 0;
    border-bottom: 1.5px solid rgba(255, 255, 255, .26);
    border-radius: 0;
    color: #fff;
    font-family: capitana, "Noto Sans JP", sans-serif;
    font-size: clamp(13px, 1vw, 16px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    text-decoration: none;
    transition: background .16s ease, color .16s ease;
  }

  .footer-actions a:hover,
  .footer-actions a:focus-visible {
    background: transparent;
    color: rgba(255, 255, 255, .72);
  }

  .footer-bottom {
    margin: 0;
    padding: 18px 24px;
    background: #241a13;
    color: #fff;
    text-align: center;
    font-family: capitana, sans-serif;
    text-transform: none;
    letter-spacing: .08em;
  }

  .footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-family: capitana, sans-serif;
    font-weight: 500;
    font-size: clamp(9px, .62vw, 11px);
    line-height: 1.35;
  }

  .modal-preview {
    display: none;
    padding: 60px 32px;
    background: var(--paper-2);
    min-height: 100vh;
  }

  .modal-preview-inner {
    max-width: 1040px;
    margin: 0 auto;
  }

  .modal-preview-label {
    text-align: center;
    color: var(--ink-soft);
    font-size: 10px;
    letter-spacing: 0.28em;
    margin-bottom: 32px;
    text-transform: uppercase;
    font-family: capitana, sans-serif;
  }

  .standalone-modal-card {
    max-width: 1040px;
    margin: 0 auto;
  }

  /* ============= PICK UP: reference layout ============= */
  .pickup-section {
    max-width: none;
    padding: 200px 0 96px;
    background: #fff;
  }

  .pickup-section .section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 54px;
    padding: 0 clamp(24px, 7.6vw, 108px);
    text-align: left;
  }

  .pickup-section .section-head::after {
    content: "13 SHOPS";
    color: #9d9d9d;
    font-family: var(--heading-font);
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: .12em;
    white-space: nowrap;
  }

  .pickup-kicker {
    display: none;
    margin-bottom: 10px;
    color: var(--ink-soft);
    font-family: capitana, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: .2em;
  }

  .pickup-section .pickup-title {
    font-family: var(--heading-font);
    font-size: clamp(32px, 3.4vw, 55px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: .12em;
  }

  .pickup-section .pickup-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2px;
    background: #fff;
  }

  .pickup-section .card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: #f8f8f8;
  }

  .pickup-section .card-img {
    aspect-ratio: 185 / 133;
    margin-bottom: 0;
    background: #eee;
  }

  .pickup-section .card-num {
    top: clamp(16px, 4.9%, 40px);
    left: clamp(16px, 4.9%, 40px);
    width: clamp(34px, 2.6vw, 64px);
    height: clamp(34px, 2.6vw, 64px);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #fff;
    color: #050505;
    font-family: Arial, sans-serif;
    font-size: clamp(22px, 2.05vw, 42px);
    font-weight: 700;
    line-height: 1;
    transform: none;
  }

  .pickup-section .card:nth-child(3n + 2) .card-num {
    background: #fff;
  }

  .pickup-section .card:nth-child(3n) .card-num {
    background: #fff;
  }

  .pickup-section .card-num span {
    transform: none;
  }

  .pickup-section .card-genre {
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;
    margin: clamp(24px, 6.8%, 56px) 10.3% 12px;
    min-width: 0;
    padding: 0;
    background: transparent;
    color: #777;
    font-family: Arial, "Helvetica Neue", sans-serif;
    font-size: clamp(12px, .95vw, 20px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .08em;
    text-align: left;
    text-transform: uppercase;
  }

  .pickup-section .card-genre::before {
    content: "";
    width: clamp(10px, 2.5vw, 20px);
    height: clamp(10px, 2.5vw, 20px);
    flex: 0 0 auto;
    border-radius: 50%;
    background: #2f65d8;
  }

  .pickup-section .card-genre span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .pickup-section .card-name {
    margin: 0;
    padding: 0 31% clamp(2px, .8%, 8px) 10.3%;
    color: #050505;
    font-size: clamp(15px, 1.5vw, 20px);
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: .01em;
  }

  .pickup-review {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 74px;
  }

  .pickup-reviewer {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #111;
    font-family: Arial, "Helvetica Neue", sans-serif;
    line-height: 1.05;
    text-align: center;
  }

  .pickup-reviewer-photo {
    width: 48px;
    height: 48px;
    margin-bottom: 2px;
    overflow: hidden;
    border-radius: 50%;
    background: #eee;
  }

  .pickup-reviewer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }

  .pickup-reviewer-shop {
    max-width: 74px;
    overflow: hidden;
    font-size: 6px;
    font-weight: 700;
    white-space: nowrap;
  }

  .pickup-reviewer-name {
    font-size: 9px;
    font-weight: 700;
  }

  .pickup-section .pickup-review {
    position: relative;
    grid-template-columns: 66% 24%;
    justify-content: space-between;
    align-items: end;
    gap: 0;
    min-height: clamp(64px, 12.8vw, 128px);
    margin-top: auto;
    padding: 0 10.3% clamp(28px, 5.2%, 42px);
  }

  .pickup-section .pickup-reviewer {
    grid-column: 2;
    grid-row: 1;
    position: static;
    align-self: end;
    width: 100%;
    min-width: 74px;
    max-width: 176px;
    justify-self: end;
  }

  .pickup-section .pickup-reviewer-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    margin-bottom: clamp(8px, 1.1vw, 14px);
    border: 1.5px solid #ddd;
  }

  .pickup-section .pickup-reviewer-shop {
    max-width: 100%;
    margin-bottom: clamp(5px, .7vw, 10px);
    color: #050505;
    font-size: clamp(10px, .9vw, 18px);
  }

  .pickup-section .pickup-reviewer-name {
    color: #050505;
    font-size: clamp(9px, .85vw, 17px);
    line-height: .95;
    letter-spacing: .04em;
  }

  .pickup-section .card-comment {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 0;
    aspect-ratio: 417 / 157;
    padding: clamp(10px, 1.4vw, 18px) 0% clamp(10px, 1.4vw, 18px) clamp(12px, 1.8vw, 24px);
    border: 0;
    background: none;
    color: #111;
    font-size: clamp(10px, .9vw, 16px);
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: .01em;
  }

  .pickup-section .card-comment-viewport {
    display: block;
    width: 100%;
    overflow: hidden;
  }

  .pickup-section .card-comment-text {
    display: block;
    width: 100%;
    line-height: 1.75;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .pickup-section .card-comment::before {
    content: none;
  }

  .pickup-section .card-comment::after {
    content: none;
  }

  .mobile-card .pickup-review {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 7px;
  }

  .mobile-card .pickup-reviewer-photo {
    width: 34px;
    height: 34px;
  }

  .mobile-card .pickup-reviewer-shop {
    max-width: 42px;
    font-size: 4px;
  }

  .mobile-card .pickup-reviewer-name {
    font-size: 7px;
  }

  .mobile-card .card-comment {
    min-height: 40px;
    padding: 7px 8px;
    font-size: 7px;
  }

  @media (max-width: 1320px) {
    .pickup-section .pickup-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pickup-section .pickup-reviewer-name {
      font-size: clamp(9px, 1.1vw, 17px);
    }

    .pickup-section .card-comment {
      font-size: clamp(10px, 1.1vw, 16px);
    }
  }

  @media (max-width: 900px) {
    .pickup-section {
      padding: 56px 0 72px;
    }

    .pickup-section .section-head {
      margin-bottom: 48px;
    }

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

    .pickup-section .pickup-reviewer-name {
      font-size: clamp(10px, 1.5vw, 17px);
    }

    .pickup-section .card-comment {
      font-size: clamp(11px, 1.8vw, 16px);
    }
  }

  @media (max-width: 600px) {
    .pickup-section .section-head {
      align-items: flex-start;
      flex-direction: column;
      gap: 12px;
      padding: 0 18px;
    }

    .pickup-section .pickup-grid {
      grid-template-columns: 1fr;
    }

    .pickup-section .card-genre {
      margin: 24px 10.3% 10px;
    }

    .pickup-section .card-name {
      padding-right: 31%;
      padding-left: 10.3%;
    }

    .pickup-section .pickup-review {
      grid-template-columns: 62% 27%;
      padding-right: 10.3%;
      padding-left: 10.3%;
    }

    .pickup-section .pickup-reviewer {
      width: 100%;
    }

    .pickup-section .pickup-reviewer-name {
      font-size: clamp(11px, 3.2vw, 17px);
    }

    .pickup-section .card-comment {
      width: 100%;
      font-size: clamp(12px, 3.2vw, 16px);
    }
  }

  /* English typography */
  .latin,
  .brand,
  .toolbar-tag,
  .hero .eyebrow,
  .hero h1,
  .hero .meta,
  .section-head .num,
  .section-head .sub,
  .pickup-section .pickup-title,
  .pickup-section .card-num,
  .pickup-section .card-genre,
  .pickup-reviewer,
  .modal-pagination,
  .modal-chips,
  .modal-info dt,
  .modal-speaker-meta span,
  .modal-staff-meta span,
  .footer h3,
  .footer dt,
  .footer-bottom,
  .modal-preview-label {
    font-family: var(--heading-font);
    font-variation-settings: normal;
    font-weight: 500;
  }

  .pickup-section .pickup-title {
    font-family: var(--heading-font);
    font-variation-settings: normal;
    font-weight: 500;
  }

  .pickup-section .pickup-reviewer {
    font-family: "effra-cc-variable", sans-serif;
    font-variation-settings: "wght" 500;
    font-weight: 500;
  }

  body>.view-toolbar .brand {
    color: #050505;
    font-family: var(--heading-font);
    font-size: clamp(16px, 1.1vw, 22px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: .12em;
    text-decoration: none;
    white-space: nowrap;
  }

  @media (max-width: 900px) {
    .modal-backdrop {
      align-items: stretch;
      padding: 14px;
    }

    .modal {
      max-width: 760px;
      max-height: calc(100dvh - 28px);
      margin: auto;
    }

    .modal-inner {
      grid-template-columns: 1fr;
      gap: 15px;
      max-height: calc(100dvh - 28px);
      padding: 78px 34px 46px;
    }

    .modal-main-panel,
    .modal-detail-panel {
      display: contents;
    }

    .modal-img-sub {
      order: 1;
    }

    .modal-chips {
      order: 2;
    }

    .modal-name {
      order: 3;
    }

    .modal-speaker {
      order: 4;
    }

    .modal-comment-block {
      order: 5;
    }

    .modal-comment-text {
      order: 6;
    }

    .modal-img-main {
      order: 7;
    }

    .modal-info {
      order: 8;
    }

    .modal-extra-images {
      order: 9;
    }

    .modal-pagination {
      top: 28px;
      left: 34px;
    }

    .modal-close {
      top: 18px;
      right: 18px;
    }

    .modal-nav {
      width: 36px;
      height: 36px;
    }

    .modal-nav.prev {
      left: 18px;
    }

    .modal-nav.next {
      right: 18px;
    }

    .modal-img-main {
      aspect-ratio: 16 / 11;
    }

    .modal-img-sub-gallery {
      grid-template-columns: minmax(0, 2fr) minmax(0, 1.08fr);
      gap: 8px;
    }

    .modal-img-sub-stack {
      gap: 8px;
    }

    .modal-chips {
      flex-wrap: wrap;
      gap: 8px 14px;
      margin-top: 0;
      font-size: 12px;
    }

    .modal-name {
      margin: 0;
      padding-bottom: 14px;
      background-image: repeating-linear-gradient(to right, rgba(57, 42, 30, 0.28) 0 1.5px, transparent 1.5px 5px);
      background-repeat: repeat-x;
      background-position: left bottom;
      background-size: auto 1.5px;
      font-size: 20px;
    }

    .modal-info {
      grid-template-columns: 88px minmax(0, 1fr);
      gap: 10px 14px;
      font-size: 12px;
    }

    .modal-extra-images {
      max-width: 520px;
      width: 100%;
      margin-top: 10px;
    }

    .modal-extra-images-matsugamine-info,
    .modal-extra-images-lacurva-info,
    .modal-extra-images-columbia-info {
      justify-items: end;
      margin-top: -82px;
      padding-right: 28px;
    }

    .modal-extra-images-lacurva-info {
      padding-right: 0;
      transform: translateX(34px);
    }

    .modal-extra-images-barisu {
      justify-items: end;
      margin-top: -112px;
      padding-right: 18px;
    }

    .modal-extra-images-jiji {
      width: min(66%, 380px);
      margin: -76px 12px 0 auto;
      transform: translateX(20px);
    }

    .modal-speaker {
      margin-bottom: 0;
    }

    .modal-comment-text {
      margin-top: 20px;
      font-size: 14px;
      line-height: 1.85;
    }

    .modal-img-sub {
      margin-top: 0;
    }

    #food-map {
      padding: 56px 0 0;
    }

    #food-map .section-head {
      padding: 0 24px 24px;
    }

    #food-map .section-head h2 {
      font-size: clamp(30px, 6vw, 40px);
    }

    .map-callout {
      left: 5%;
      width: 36%;
    }

    .map-callout p {
      font-size: clamp(8px, 1.8vw, 12px);
    }

    .pin-hit {
      width: 30px;
      height: 30px;
    }

    .pin-hit span {
      font-size: 18px;
    }

    .map-category-strip {
      min-height: 96px;
    }

    .map-category-strip span {
      padding: 22px 16px;
      font-size: clamp(14px, 2.6vw, 20px);
    }

    .hero {
      padding-top: 72px;
    }

    .hero .eyebrow {
      min-width: 0;
      min-height: 32px;
      padding: 7px 24px 8px;
      font-size: 14px;
    }

    .hero h1 {
      font-size: clamp(30px, 7.2vw, 48px);
      margin: 24px 0 18px;
    }

    .hero p {
      font-size: 14px;
    }

    .hero-slider {
      margin-top: 46px;
    }

    .hero-slide {
      flex-basis: clamp(260px, 52vw, 420px);
    }

    .view-toolbar {
      min-height: auto;
      padding: 13px 24px;
      gap: 18px;
      flex-wrap: wrap;
    }

    .toolbar-nav {
      width: 100%;
      justify-content: flex-end;
      gap: 12px;
    }

    .toolbar-nav a {
      min-width: 0;
      min-height: 30px;
      padding: 6px 14px 7px;
      font-size: 14px;
    }
  }

  @media (max-width: 520px) {
    .modal-backdrop {
      padding: 0;
    }

    .modal {
      width: 100%;
      max-width: none;
      max-height: 100dvh;
      min-height: 100dvh;
    }

    .modal-inner {
      gap: 18px;
      max-height: 100dvh;
      padding: 70px 18px 96px;
    }

    .modal-main-panel,
    .modal-detail-panel {
      display: contents;
    }

    .modal-img-sub {
      order: 1;
    }

    .modal-chips {
      order: 2;
    }

    .modal-name {
      order: 3;
    }

    .modal-speaker {
      order: 4;
    }

    .modal-comment-block {
      order: 5;
    }

    .modal-comment-text {
      order: 6;
    }

    .modal-img-main {
      order: 7;
    }

    .modal-info {
      order: 8;
    }

    .modal-extra-images {
      order: 9;
    }

    .modal-pagination {
      top: 22px;
      left: 18px;
      font-size: 17px;
    }

    .modal-close {
      top: 14px;
      right: 14px;
      width: 44px;
      height: 44px;
      font-size: 17px;
    }

    .modal-nav {
      top: auto;
      bottom: 18px;
      transform: none;
      width: 46px;
      height: 46px;
    }

    .modal-nav::before {
      width: 16px;
      height: 16px;
      border-left-width: 1.5px;
      border-bottom-width: 1.5px;
    }

    .modal-nav.prev {
      left: 18px;
    }

    .modal-nav.next {
      right: 18px;
    }

    .modal-img-main {
      aspect-ratio: 4 / 3;
    }

    .modal-chips {
      margin-top: 0;
      font-size: 13px;
      letter-spacing: .08em;
    }

    .chip-price {
      padding-left: 12px;
    }

    .modal-name {
      padding-bottom: 14px;
      background-image: repeating-linear-gradient(to right, rgba(57, 42, 30, 0.28) 0px, rgba(57, 42, 30, 0.28) 1.5px, transparent 1.5px, transparent 5px);
      background-repeat: repeat-x;
      background-size: auto 1.5px;
      font-size: 20px;
      line-height: 1.45;
      margin: 0px;
      background-position: left bottom;
    }

    .modal-info {
      grid-template-columns: minmax(82px, auto) minmax(0, 1fr);
      align-items: baseline;
      gap: 8px 12px;
      padding-top: 16px;
      font-size: 12px;
      line-height: 1.65;
    }

    .modal-info dd {
      min-width: 0;
    }

    .modal-extra-images {
      gap: 16px;
      margin-top: 4px;
    }

    .modal-extra-images-jiji {
      width: min(100%, 320px);
      margin: -43px auto 0;
      gap: 10px;
      transform: translateX(8px);
    }

    .modal-extra-images-jiji .modal-extra-image {
      min-height: 124px;
    }

    .modal-extra-images-jiji .modal-extra-image img {
      max-height: 124px;
    }

    .modal-extra-images-jiji .modal-extra-image:nth-child(1) img {
      max-height: 104px;
      animation-name: jijiFoodWiggleMobile;
    }

    .modal-extra-images-jiji .modal-extra-image:nth-child(2) img {
      animation-name: jijiWiggleMobile;
      animation-delay: .9s;
    }

    @keyframes jijiWiggleMobile {

      0%,
      100% {
        transform: translate(6px, -8px) rotate(-4deg);
      }

      50% {
        transform: translate(6px, -8px) rotate(4deg);
      }
    }

    @keyframes jijiFoodWiggleMobile {

      0%,
      100% {
        transform: translateX(6px) rotate(-4deg);
      }

      50% {
        transform: translateX(6px) rotate(4deg);
      }
    }

    .modal-extra-images-moondog-info {
      width: min(68%, 260px);
      margin: -6px 12px 0 auto;
      gap: 8px;
      transform: translateX(8px);
    }

    .modal-extra-images-moondog-info .modal-extra-image {
      min-height: 104px;
    }

    .modal-extra-images-moondog-info .modal-extra-image img {
      max-height: 104px;
    }

    .modal-extra-images-moondog-info .modal-extra-image:nth-child(1) img {
      transform: translateY(6px);
    }

    .modal-extra-images-moondog-info .modal-extra-image:nth-child(2) img {
      width: 118%;
      max-width: 118%;
      animation-name: moondogDrinkWiggleMobile;
    }

    @keyframes moondogDrinkWiggleMobile {

      0%,
      100% {
        transform: rotate(-4deg);
      }

      50% {
        transform: rotate(4deg);
      }
    }

    .modal-extra-image {
      min-height: 96px;
    }

    .modal-extra-image img {
      max-height: 112px;
    }

    .modal-extra-images-masashi .modal-extra-image:nth-child(2) img {
      max-height: 140px;
      animation-name: masashiWiggleMobile;
    }

    .modal-extra-images-masashi .modal-extra-image:nth-child(1) img {
      transform: translateY(-10px);
    }

    .modal-extra-images-masashi .modal-extra-image:nth-child(1)::before {
      bottom: 106px;
      width: 34px;
      height: 28px;
    }

    .modal-extra-images-matsugamine-info {
      justify-items: end;
      margin-top: -58px;
      padding-right: 8px;
    }

    .modal-extra-images-matsugamine-info .modal-extra-image {
      min-height: 92px;
    }

    .modal-extra-images-matsugamine-info .modal-extra-image img {
      max-width: 164px;
      max-height: 100px;
    }

    .modal-extra-images-matsugamine-info .modal-extra-image::before {
      bottom: 88px;
      width: 32px;
      height: 26px;
    }

    .modal-extra-images-ishidaya-info {
      justify-items: end;
      margin-top: 6px;
      padding-right: 8px;
    }

    .modal-extra-images-ishidaya-info .modal-extra-image {
      min-height: 78px;
    }

    .modal-extra-images-ishidaya-info .modal-extra-image img {
      max-width: 210px;
      max-height: 92px;
    }

    .modal-extra-images-lacurva-info,
    .modal-extra-images-columbia-info {
      justify-items: end;
      margin-top: -58px;
      padding-right: 8px;
    }

    .modal-extra-images-lacurva-info {
      padding-right: 0;
      transform: translateX(-12px);
    }

    .modal-extra-images-lacurva-info .modal-extra-image,
    .modal-extra-images-columbia-info .modal-extra-image {
      min-height: 96px;
    }

    .modal-extra-images-lacurva-info .modal-extra-image img,
    .modal-extra-images-columbia-info .modal-extra-image img {
      max-width: 172px;
      max-height: 104px;
    }

    .modal-extra-images-lacurva-info .modal-extra-image img {
      max-width: 194px;
      max-height: 118px;
    }

    @keyframes masashiWiggleMobile {

      0%,
      100% {
        transform: translateY(-16px) rotate(-6deg);
      }

      50% {
        transform: translateY(-16px) rotate(6deg);
      }
    }

    .modal-extra-images-barisu {
      justify-items: end;
      margin-top: -52px;
      padding-right: 8px;
    }

    .modal-extra-images-barisu .modal-extra-image img {
      max-width: 220px;
      max-height: 126px;
      transform-origin: 50% 85%;
      animation: barisuWiggle 1.8s steps(2, end) infinite;
    }

    .modal-info dt {
      margin-top: 0;
      font-size: 11px;
      letter-spacing: .12em;
    }

    .modal-info dt:first-child {
      margin-top: 0;
    }

    .modal-address {
      align-items: flex-start;
      gap: 8px;
    }

    .modal-map-link {
      min-height: 24px;
      padding: 4px 10px;
      font-size: 10px;
    }

    .modal-speaker {
      gap: 12px;
      margin-bottom: 0;
    }

    .modal-speaker .avatar {
      width: 42px;
      height: 42px;
    }

    .modal-comment-block {
      padding: 12px 14px;
      font-size: 15px;
      line-height: 1.65;
    }

    .modal-comment-text {
      font-size: 14px;
      line-height: 1.8;
    }

    .modal-img-sub,
    .modal-img-sub.has-overlay {
      margin-top: 0;
    }

    .modal-img-sub-gallery {
      grid-template-columns: 1fr;
      gap: 10px;
    }

    .modal-img-sub-gallery .modal-img-sub-base {
      aspect-ratio: 4 / 3;
    }

    .modal-img-sub-stack {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      grid-template-rows: none;
      gap: 10px;
    }

    .modal-img-sub-stack-item {
      aspect-ratio: 4 / 3;
    }

    .modal-img-sub.has-overlay .modal-img-sub-base {
      width: 82%;
    }

    .modal-img-sub .modal-img-sub-overlay {
      left: -12px;
      width: 48%;
    }

    #food-map {
      padding: 48px 0 0;
    }

    #food-map .section-head {
      align-items: flex-start;
      flex-direction: column;
      gap: 12px;
      padding: 0 18px 22px;
    }

    #food-map .section-head h2 {
      font-size: clamp(28px, 9vw, 36px);
    }

    .map-callout {
      top: 8%;
      left: 4%;
      width: 42%;
    }

    .map-callout p {
      font-size: 7px;
      line-height: 1.45;
      letter-spacing: .03em;
    }

    .pin-hit {
      width: 24px;
      height: 24px;
    }

    .pin-hit span {
      font-size: 14px;
    }

    .map-category-strip {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      min-height: 0;
    }

    .map-category-strip span {
      min-height: 68px;
      padding: 18px;
      border-top: 1.5px solid rgba(5, 5, 5, .14);
    }

    .map-category-strip span:nth-child(-n + 2) {
      border-top: 0;
    }

    .map-category-strip span:nth-child(odd) {
      border-left: 0;
    }

    .hero {
      padding-top: 48px;
    }

    .hero-copy {
      width: min(100% - 32px, 980px);
    }

    .hero .eyebrow {
      width: 100%;
      min-height: 30px;
      padding: 7px 14px 8px;
      font-size: 12px;
      letter-spacing: .06em;
    }

    .hero h1 {
      font-size: clamp(26px, 9vw, 38px);
      letter-spacing: .06em;
    }

    .hero p {
      font-size: 12px;
      line-height: 1.7;
    }

    .hero-slider {
      margin-top: 34px;
    }

    .hero-slide {
      flex-basis: 78vw;
      border-right-width: 0;
    }

    .view-toolbar {
      padding: 18px 16px;
    }

    body>.view-toolbar .brand {
      font-size: 16px;
      line-height: 1.25;
      white-space: normal;
    }

    .toolbar-nav {
      justify-content: space-between;
    }

    .toolbar-nav a {
      flex: 1;
      padding-inline: 10px;
      font-size: 13px;
      letter-spacing: .04em;
    }
  }

  /* ============= Reversible concept: editorial grid ============= */
  body.grid-concept {
    --grid-concept-max: 1360px;
    --paper: #f7f6f1;
    --paper-2: #efede7;
    --ink: #080808;
    --ink-soft: #3f3f3f;
    --ink-faint: #777;
    --accent: #e85642;
    --line: rgba(57, 42, 30, .34);
    background: var(--paper);
    color: var(--ink);
  }

  body.grid-concept .view-toolbar {
    position: sticky;
    top: 0;
    z-index: 80;
    width: 100%;
    max-width: none;
    margin: 0;
    min-height: 68px;
    padding: 20px max(48px, calc((100vw - var(--grid-concept-max)) / 2 + 48px));
    background: var(--paper);
    border-bottom: 1.5px solid var(--shape-ink);
  }

  body.grid-concept .brand {
    color: #392a1e;
    font-family: var(--heading-font);
    font-size: clamp(20px, 1.55vw, 26px);
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: none;
  }

  body.grid-concept .toolbar-nav {
    gap: clamp(8px, 1vw, 14px);
  }

  body.grid-concept .toolbar-nav a {
    min-width: clamp(68px, 5.8vw, 92px);
    min-height: 30px;
    padding: 6px 14px 7px;
    border: 1.5px solid var(--shape-ink);
    border-radius: 999px;
    background: var(--paper);
    color: #392a1e;
    font-family: var(--heading-font);
    font-size: clamp(13px, 1.05vw, 16px);
    font-weight: 500;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: none;
    transition: background .16s ease, color .16s ease;
  }

  body.grid-concept .toolbar-nav a:hover,
  body.grid-concept .toolbar-nav a:focus-visible {
    background: var(--shape-ink);
    color: var(--paper);
  }

  body.grid-concept .hero {
    --hero-pad-inline: clamp(20px, 3.8vw, 48px);
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    min-height: calc(100vh - 58px);
    padding: clamp(54px, 7vw, 92px) 0 0;
    border-bottom: 0;
    background: var(--paper);
  }

  body.grid-concept .hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: min(calc(100% - (var(--hero-pad-inline) * 2)), calc(var(--grid-concept-max) - (var(--hero-pad-inline) * 2)));
    max-width: none;
    margin: 0 auto;
    min-height: auto;
    color: var(--ink);
  }

  body.grid-concept .hero .eyebrow {
    align-self: center;
    min-width: min(432px, 100%);
    min-height: 50px;
    padding: 12px 28px 13px;
    background: var(--shape-ink);
    color: #fff;
    font-size: clamp(18px, 1.85vw, 27px);
    letter-spacing: .12em;
  }

  body.grid-concept .hero h1 {
    width: 100%;
    max-width: none;
    margin: clamp(42px, 5vw, 66px) auto clamp(42px, 5vw, 64px);
    font-size: clamp(34px, 6.8vw, 92px);
    font-weight: 500;
    line-height: 1.24;
    letter-spacing: .03em;
    text-align: center;
  }

  body.grid-concept .hero-logo,
  body.grid-concept .hero-logo-wrap {
    width: clamp(340px, 58vw, 780px);
  }

  body.grid-concept .hero p {
    max-width: 760px;
    color: var(--ink-soft);
    font-size: clamp(12px, 1.1vw, 17px);
    line-height: 1.8;
    letter-spacing: .05em;
    text-align: center;
  }

  body.grid-concept .hero-intro {
    width: min(100%, 840px);
  }

  body.grid-concept .hero-intro p {
    max-width: none;
    margin: 0;
    text-align: center;
  }

  body.grid-concept .hero .hero-intro-kicker {
    color: #e85642;
    font-family: capitana, sans-serif;
    font-size: clamp(12px, 1.05vw, 17px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: .68em;
    text-indent: .68em;
  }

  body.grid-concept .hero .hero-intro-lead {
    color: #e85642;
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: clamp(15px, 1.5vw, 20px);
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: .12em;
  }

  body.grid-concept .hero .hero-intro-copy {
    margin-top: clamp(21px, 1.8vw, 16px) !important;
    color: #111;
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: clamp(14px, 1vw, 16px);
    font-weight: 500;
    line-height: 2;
    letter-spacing: .08em;
  }

  body.grid-concept .hero-slider {
    display: block;
    width: 100%;
    margin: clamp(46px, 5.2vw, 72px) 0 0;
    background: #fff;
  }

  body.grid-concept .hero-slider-track {
    animation-duration: 180s;
  }

  body.grid-concept .hero-slide {
    flex-basis: clamp(360px, calc(100vw / 3), 640px);
    border-right-width: 1.5px;
  }

  body.grid-concept .section,
  body.grid-concept #food-map,
  body.grid-concept .pickup-section {
    width: min(100%, var(--grid-concept-max));
    max-width: var(--grid-concept-max);
    margin-right: auto;
    margin-left: auto;
    padding: clamp(54px, 6vw, 82px) clamp(20px, 3.8vw, 48px);
    background: var(--paper);
  }

  body.grid-concept .section-head,
  body.grid-concept #food-map .section-head,
  body.grid-concept .pickup-section .section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 20px;
    margin: 0 0 30px;
    padding: 0;
    text-align: left;
  }

  body.grid-concept .section-head h2,
  body.grid-concept #food-map .section-head h2,
  body.grid-concept .pickup-section .pickup-title {
    color: #392a1e;
    font-size: clamp(34px, 5.6vw, 55px);
    font-weight: 500;
    line-height: .95;
    letter-spacing: .03em;
  }

  body.grid-concept .pickup-section .section-head::after {
    content: "All 13 Shops";
    align-self: center;
    padding: 7px 13px 8px;
    border: 1.5px solid var(--shape-ink);
    border-radius: 999px;
    color: var(--ink);
    font-family: var(--heading-font);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  body.grid-concept .map-frame {
    height: auto;
    border: 1.5px solid var(--shape-ink);
    background: #fcfcfc;
  }

  body.grid-concept .map-content {
    width: min(100%, 1176px);
    height: auto;
    border: 0;
    background: #fcfcfc;
  }

  body.grid-concept .map-title-label,
  body.grid-concept .map-callout {
    display: none;
  }

  body.grid-concept .map-category-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 0;
    border-right: 1.5px solid var(--shape-ink);
    border-bottom: 1.5px solid var(--shape-ink);
    border-left: 1.5px solid var(--shape-ink);
    background: var(--paper);
  }

  body.grid-concept .map-category-strip span {
    justify-content: flex-start;
    min-height: 176px;
    padding: 28px 18px 20px;
    border-color: var(--shape-ink);
    color: var(--ink);
    font-size: clamp(13px, 1.3vw, 18px);
    font-weight: 500;
    letter-spacing: .08em;
    text-align: center;
  }

  body.grid-concept .map-category-strip b {
    font-size: clamp(20px, 2vw, 30px);
    font-weight: 500;
    line-height: 1;
  }

  body.grid-concept .map-category-strip small {
    color: var(--ink-soft);
    font-size: clamp(10px, .85vw, 13px);
    line-height: 1.7;
    letter-spacing: .04em;
  }

  body.grid-concept #food-map {
    padding-top: 100px;
    padding-bottom: clamp(34px, 3.6vw, 52px);
  }

  body.grid-concept .pickup-section .pickup-grid {
    --pickup-line-width: 1.5px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--pickup-line-width);
    padding: var(--pickup-line-width);
    border: 0;
    background: var(--shape-ink);
  }

  body.grid-concept .pickup-section .pickup-grid::after {
    content: "";
    display: block;
    grid-column: span 2;
    margin: 0 calc(var(--pickup-line-width) * -1) calc(var(--pickup-line-width) * -1) 0;
    background: var(--paper);
    pointer-events: none;
  }

  body.grid-concept .pickup-section .card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto auto;
    align-content: start;
    min-height: 100%;
    padding: clamp(18px, 2.4vw, 30px);
    border: 0;
    background: var(--paper);
    transition: background .18s ease;
  }

  body.grid-concept .pickup-section .card:hover {
    background: #fff;
  }

  body.grid-concept .pickup-section .card-img {
    grid-column: 1 / -1;
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    margin: 0 0 clamp(16px, 1.8vw, 24px);
    border: 1.5px solid var(--shape-ink);
    background: #ddd;
  }

  body.grid-concept .pickup-section .card-photo-frame {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  body.grid-concept .pickup-section .card-photo-frame>img,
  body.grid-concept .pickup-section .card-photo-frame>svg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  body.grid-concept .pickup-section .card:hover .card-photo-frame>img,
  body.grid-concept .pickup-section .card:hover .card-photo-frame>svg {
    transform: scale(1.04);
  }

  body.grid-concept .pickup-section .card-num {
    top: 12px;
    left: 12px;
    right: auto;
    bottom: auto;
    width: 42px;
    height: 28px;
    border: 1.5px solid var(--shape-ink);
    border-radius: 999px;
    background: var(--paper);
    color: var(--ink);
    font-size: 13px;
    font-weight: 500;
  }

  body.grid-concept .pickup-section .card-genre {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    justify-content: flex-end;
    align-self: start;
    margin: 0 0 8px 14px;
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .04em;
  }

  body.grid-concept .pickup-section .card-genre::before {
    content: none;
  }

  body.grid-concept .pickup-section .card-genre span {
    max-width: 132px;
    padding: 4px 10px 5px;
    border: 1.5px solid var(--shape-ink);
    border-radius: 999px;
    background: #e85642;
    color: #392a1e;
    font-size: 10px;
    line-height: 1;
    text-align: center;
  }

  body.grid-concept .pickup-section .card-name {
    grid-column: 1;
    grid-row: 2;
    min-height: 0;
    margin: 0 0 2px;
    padding: 0;
    color: var(--ink);
    font-size: clamp(17px, 1.45vw, 23px);
    font-weight: 600;
    line-height: 1.32;
    letter-spacing: .01em;
  }

  body.grid-concept .pickup-section .pickup-review {
    grid-column: 1 / -1;
    grid-row: 3;
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 0;
    margin: 0;
    padding: 0;
  }

  body.grid-concept .pickup-section .card-comment {
    grid-column: 2;
    align-self: center;
    display: flex;
    align-items: center;
    width: auto;
    min-height: 0;
    aspect-ratio: 417 / 157;
    background: none;
    color: var(--ink);
    font-size: 15px;
    line-height: 1.45;
    letter-spacing: .01em;
  }

  body.grid-concept .pickup-section .card-comment-viewport {
    display: flex;
    align-items: center;
    min-height: 100%;
  }

  body.grid-concept .pickup-section .pickup-reviewer {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: start;
    align-self: center;
    min-width: 0;
    width: 70px;
  }

  body.grid-concept .pickup-section .pickup-reviewer-photo {
    width: 56px;
    margin: 0 auto 6px;
    border: 1.5px solid var(--shape-ink);
  }

  body.grid-concept .pickup-section .pickup-reviewer-shop {
    display: block;
    max-width: 70px;
    margin-bottom: 3px;
    color: var(--ink);
    font-size: 8px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: .04em;
    text-align: center;
    white-space: normal;
  }

  body.grid-concept .pickup-section .pickup-reviewer-name {
    font-size: 10px;
    letter-spacing: .08em;
  }

  .related-section {
    width: min(100%, 1120px);
    max-width: 1120px;
    margin: clamp(56px, 6.4vw, 90px) auto 0;
    padding: 0 clamp(16px, 3vw, 32px);
  }

  .related-card {
    display: grid;
    grid-template-columns: minmax(0, 1.42fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(52px, 6.4vw, 90px);
    min-height: 438px;
    padding: 24px clamp(28px, 3vw, 36px);
    border: 1.5px solid var(--shape-ink);
    background: transparent;
    color: var(--ink);
    text-decoration: none;
    transition: border-color .18s ease;
  }

  .related-content {
    min-width: 0;
  }

  .related-visual {
    position: relative;
    display: grid;
    place-items: center;
    align-self: stretch;
    aspect-ratio: 3 / 2;
    min-height: 0;
    overflow: hidden;
    border: 1.5px solid var(--shape-ink);
    background: #fff;
    color: inherit;
    text-decoration: none;
    min-width: 0;
  }

  .related-visual:focus-visible,
  .related-view:focus-visible {
    outline: 1.5px solid var(--shape-ink);
    outline-offset: 4px;
  }

  .related-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .35s cubic-bezier(.2, .7, .3, 1), filter .2s ease;
  }

  .related-visual:hover img,
  .related-visual:focus-visible img {
    filter: brightness(1.04);
    transform: scale(1.045);
  }

  .related-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 28px;
    margin-bottom: 20px;
    padding: 5px 16px 6px;
    border: 1.5px solid var(--shape-ink);
    border-radius: 999px;
    background: #e85642;
    color: var(--shape-ink);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .04em;
  }

  .related-title {
    margin: 0 0 22px;
    padding-bottom: 24px;
    border-bottom: 0;
    background-image: repeating-linear-gradient(to right,
        rgba(57, 42, 30, 0.28) 0 1.5px,
        transparent 1.5px 5px);
    background-repeat: no-repeat;
    background-size: 100% 1.5px;
    background-position: left bottom;
    color: #050505;
    font-family: var(--heading-font);
    font-size: 34px;
    font-weight: 500;
    line-height: 1.34;
    letter-spacing: .04em;
    overflow-wrap: anywhere;
  }

  .related-title span {
    font-size: .72em;
  }

  .related-content p {
    margin: 0 0 24px;
    color: #050505;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.85;
  }

  .related-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: clamp(68px, 5.8vw, 92px);
    min-height: 30px;
    padding: 6px 14px 7px;
    border: 1.5px solid var(--shape-ink);
    border-radius: 999px;
    background: var(--paper);
    color: #392a1e;
    font-family: var(--heading-font);
    font-size: clamp(13px, 1.05vw, 16px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: .08em;
    text-decoration: none;
    transition: background .16s ease, color .16s ease;
  }

  .related-view span {
    font-size: 16px;
    font-weight: 400;
    line-height: .8;
    transition: transform .18s ease;
  }

  .related-view:hover,
  .related-view:focus-visible {
    background: var(--shape-ink);
    color: var(--paper);
  }

  .related-view:hover span,
  .related-view:focus-visible span {
    transform: translateX(5px);
  }

  .related-view:active {
    transform: none;
  }

  @media (min-width: 981px) {
    body.grid-concept .pickup-section .card-name {
      min-height: 2.64em;
    }

    body.grid-concept .pickup-section .pickup-review {
      height: clamp(88px, 6.8vw, 104px);
    }

    body.grid-concept .pickup-section .card-comment {
      height: 100%;
      aspect-ratio: auto;
    }
  }

  body.grid-concept .footer {
    max-width: none;
    width: 100%;
    margin: 96px 0 0;
    padding: 0;
    border-top: 0;
    background: #392a1e;
  }

  @media (max-width: 1180px) {
    .related-card {
      grid-template-columns: 1fr;
      gap: 24px;
      min-height: 0;
      align-items: start;
    }

    .related-visual {
      align-self: auto;
      width: clamp(280px, 72vw, 620px);
      justify-self: center;
    }

    .related-content {
      width: 100%;
    }

    .related-label {
      width: fit-content;
      min-height: 28px;
      margin-bottom: 20px;
      font-size: 12px;
    }

    .related-title {
      margin-bottom: 24px;
      padding-bottom: 24px;
      font-size: clamp(26px, 4.4vw, 34px);
    }

    .related-content p {
      font-size: clamp(13px, 2vw, 16px);
    }

    .related-view {
      min-width: clamp(68px, 5.8vw, 92px);
      min-height: 30px;
      font-size: clamp(13px, 1.05vw, 16px);
    }
  }

  @media (max-width: 980px) {
    .related-section {
      margin-top: 52px;
      padding: 0 clamp(16px, 5vw, 42px);
    }

    .related-card {
      grid-template-columns: 1fr;
      gap: 22px;
      min-height: 0;
      padding: 22px;
    }

    .related-visual {
      min-height: 0;
      width: 100%;
    }

    .related-label {
      width: fit-content;
      margin-bottom: 20px;
    }

    .related-title {
      font-size: clamp(28px, 5.2vw, 36px);
    }

    body.grid-concept .pickup-section .pickup-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.grid-concept .pickup-section .pickup-grid::after {
      grid-column: span 1;
    }

    body.grid-concept .hero {
      min-height: auto;
      padding-bottom: 54px;
    }

    body.grid-concept .hero-copy {
      min-height: auto;
    }

    body.grid-concept .hero-slide {
      flex-basis: 46vw;
    }

    body.grid-concept .pickup-section .card-name {
      font-size: clamp(16px, 2.1vw, 20px);
    }

    body.grid-concept .pickup-section .card-comment {
      font-size: 13px;
      line-height: 1.5;
    }

    body.grid-concept .pickup-section .card-genre span {
      font-size: 9px;
    }

    body.grid-concept .pickup-section .pickup-reviewer-shop {
      font-size: 7px;
    }

    body.grid-concept .pickup-section .pickup-reviewer-name {
      font-size: 9px;
    }

  }

  @media (max-width: 620px) {
    .related-section {
      margin-top: 40px;
      padding: 0 10px;
    }

    .related-card {
      gap: 18px;
      padding: 14px;
    }

    .related-visual {
      min-height: 0;
    }

    .related-label {
      min-height: 28px;
      margin-bottom: 16px;
      font-size: 12px;
    }

    .related-title {
      margin-bottom: 14px;
      padding-bottom: 18px;
      font-size: 22px;
      line-height: 1.36;
    }

    .related-content p {
      margin-bottom: 18px;
      font-size: 12px;
      line-height: 1.8;
    }

    .related-view {
      min-width: 78px;
      min-height: 30px;
      font-size: 13px;
    }

    body.grid-concept .view-toolbar {
      align-items: flex-start;
      flex-direction: column;
      gap: 18px;
      min-height: auto;
      padding: 16px 18px;
    }

    body.grid-concept .brand {
      align-self: center;
      text-align: center;
    }

    body.grid-concept .toolbar-nav {
      width: 100%;
      gap: 18px;
      justify-content: flex-start;
    }

    body.grid-concept .hero h1 {
      font-size: clamp(28px, 9.5vw, 44px);
      line-height: 1.3;
    }

    .hero-logo,
    body.grid-concept .hero-logo {
      width: clamp(260px, 84vw, 420px);
    }

    .hero-logo-wrap,
    body.grid-concept .hero-logo-wrap {
      width: clamp(260px, 84vw, 420px);
    }

    .hero-intro {
      width: 100%;
    }

    .hero-intro p,
    body.grid-concept .hero-intro p {
      padding: 0;
    }

    .hero-intro-kicker,
    body.grid-concept .hero .hero-intro-kicker {
      color: #e85642;
      font-size: 11px;
      letter-spacing: .68em;
      text-indent: .68em;
    }

    .hero-intro-copy,
    body.grid-concept .hero .hero-intro-copy {
      margin-top: 20px !important;
      font-size: 12px;
      line-height: 2;
      letter-spacing: .035em;
      line-break: strict;
    }

    .hero-intro-copy .desktop-only-break {
      display: none;
    }

    .hero-intro-lead,
    body.grid-concept .hero .hero-intro-lead {
      font-size: 16px;
      line-height: 1.75;
      letter-spacing: .08em;
    }

    body.grid-concept .hero-slide {
      flex-basis: 78vw;
      height: 58.5vw;
      min-height: 190px;
      border-right-width: 1.5px;
    }

    body.grid-concept .hero-slider,
    body.grid-concept .hero-slider-track {
      min-height: max(190px, 58.5vw);
    }

    body.grid-concept .hero-slide img,
    body.grid-concept .hero-slide svg {
      min-height: 100%;
    }

    body.grid-concept .hero-slider-track {
      animation-duration: 240s;
    }

    body.grid-concept .section-head,
    body.grid-concept #food-map .section-head,
    body.grid-concept .pickup-section .section-head {
      grid-template-columns: 1fr;
    }

    body.grid-concept #food-map,
    body.grid-concept .pickup-section {
      padding-right: 10px;
      padding-left: 10px;
    }

    body.grid-concept .map-category-strip {
      grid-template-columns: 1fr;
    }

    .map-frame {
      padding: 0;
      touch-action: none;
    }

    .map-content {
      transform: translate3d(var(--map-pan-x, 0px), var(--map-pan-y, 0px), 0) scale(var(--map-scale, 1));
      transform-origin: 50% 50%;
      will-change: transform;
    }

    .map-frame img.map-bg {
      content: url("../img/map_sp.png");
    }

    .pin-hit {
      left: var(--pin-sp-x);
      top: var(--pin-sp-y);
      width: clamp(23px, 5.6vw, 30px);
      height: clamp(23px, 5.6vw, 30px);
      margin-left: 2%;
    }

    .pin-hit span {
      font-size: clamp(12px, 3.3vw, 17px);
    }

    .footer-bottom {
      padding: 16px 18px;
    }

    .footer-inner {
      padding: 42px 20px 48px;
    }

    .footer-info {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .footer-title,
    .footer-info p,
    .footer-actions {
      grid-column: 1;
    }

    .footer-info p {
      line-height: 1.55;
    }

    .footer-title {
      grid-row: auto;
    }

    .footer-title img {
      width: min(220px, 62vw);
    }

    .footer-actions {
      grid-template-columns: 1fr;
      gap: 24px 18px;
    }

    .footer-actions a {
      min-height: 38px;
      padding: 0 0 12px;
      font-size: 16px;
    }

    body.grid-concept .pickup-section .pickup-grid {
      --pickup-line-width: 1.5px;
      grid-template-columns: 1fr;
    }

    body.grid-concept .pickup-section .pickup-grid::after {
      display: none;
    }

    body.grid-concept .map-category-strip span {
      min-height: 0;
      padding: 24px 18px 22px;
      border-left: 0;
      border-top: 1.5px solid var(--shape-ink);
    }

    body.grid-concept .pickup-section .card {
      grid-template-columns: minmax(118px, 42%) minmax(0, 1fr);
      grid-template-rows: auto auto 1fr;
      column-gap: 12px;
      align-items: start;
      padding: 12px;
    }

    body.grid-concept .pickup-section .card-img {
      grid-column: 1;
      grid-row: 1 / 4;
      aspect-ratio: 1 / 1;
      margin: 0;
    }

    body.grid-concept .pickup-section .card-num {
      top: 8px;
      left: 8px;
      width: 34px;
      height: 23px;
      font-size: 11px;
    }

    body.grid-concept .pickup-section .card-genre {
      grid-column: 2;
      grid-row: 1;
      justify-content: flex-start;
      margin: 0 0 8px;
    }

    body.grid-concept .pickup-section .card-genre span {
      max-width: none;
      padding: 4px 8px 5px;
      font-size: 10px;
      overflow: visible;
      text-overflow: clip;
      white-space: nowrap;
    }

    body.grid-concept .pickup-section .card-name {
      grid-column: 2;
      grid-row: 2;
      min-height: 0;
      margin-bottom: 8px;
      font-size: 16px;
      line-height: 1.5;
    }

    body.grid-concept .pickup-section .card-comment {
      width: 100%;
      font-size: 13px;
      line-height: 1.35;
    }

    body.grid-concept .pickup-section .card-comment-viewport {
      width: 100%;
    }

    body.grid-concept .pickup-section .card-comment-text {
      width: 100%;
      font-size: 12px;
      line-height: 1.6;
    }

    body.grid-concept .pickup-section .pickup-review {
      grid-column: 2;
      grid-row: 3;
      grid-template-columns: 48px minmax(0, 1fr);
      gap: 6px;
      align-self: end;
    }

    body.grid-concept .pickup-section .pickup-reviewer {
      width: 48px;
    }

    body.grid-concept .pickup-section .pickup-reviewer-photo {
      width: 40px;
      height: 40px;
    }

    body.grid-concept .pickup-section .pickup-reviewer-shop {
      max-width: 48px;
      font-size: 6px;
    }

    body.grid-concept .pickup-section .pickup-reviewer-name {
      font-size: 8px;
    }
  }

  @media (max-width: 620px) {

    *,
    *::before,
    *::after {
      border-width: 1.5px !important;
      outline-width: 1.5px;
    }

    .modal-info {
      background-image: repeating-linear-gradient(to right,
          rgba(57, 42, 30, 0.28) 0 1.5px,
          transparent 1.5px 5px) !important;
      background-size: 100% 1.5px !important;
    }

    .modal-name {
      background-image: repeating-linear-gradient(to right, rgba(57, 42, 30, 0.28) 0 1.5px, transparent 1.5px 5px) !important;
      background-size: auto 1.5px !important;
    }

    .related-title {
      background-image: repeating-linear-gradient(to right,
          rgba(57, 42, 30, 0.28) 0 1.5px,
          transparent 1.5px 5px) !important;
      background-size: 100% 1.5px !important;
    }
  }
