@font-face {
  font-family: 'Harenosora';
  src: url('fonts/harenosora.otf') format('opentype');
  font-display: swap;
}

:root {
  --ink: #24363d;
  --muted: #607985;
  --paper: #fff;
  --base: #f2f7f8;
  --line: #c9dce2;
  --sea: #276c83;
  --sea-dark: #164a5c;
  --coral: #b94d37;
  --lime: #9ccfd8;
  --soft-green: #eaf4f6;
  --shadow: 0 1px 2px rgba(39, 108, 131, 0.04), 0 10px 32px rgba(39, 108, 131, 0.08);
  --sans: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --serif: var(--sans);
  --num: var(--sans);
  --ease: cubic-bezier(.25, .46, .45, .94);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  background: var(--base);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.75;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

[id] {
  scroll-margin-top: 74px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.card-grid .place-card:nth-child(2n) {
  transition-delay: .1s;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 250, 251, 0.95);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: border-color .3s var(--ease);
}

.site-nav__inner {
  width: min(1160px, calc(100% - 40px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.78rem;
  font-weight: 500;
}

.site-nav__brand {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border: 1px solid rgba(185, 77, 55, 0.12);
  border-radius: 999px;
  background: #fff0e9;
  color: #9d4d3b;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .02em;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(92, 63, 52, 0.06);
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.site-nav__brand small {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: .12em;
}

.site-nav__links {
  display: flex;
  gap: 24px;
}

.site-nav__links a {
  color: var(--muted);
  letter-spacing: .13em;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--coral);
}

.site-nav__brand:hover,
.site-nav__brand:focus-visible {
  background: #ffe3d7;
  color: #873d2e;
  transform: translateY(-1px);
}

.site-nav__date {
  padding: 6px 12px;
  border-radius: 999px;
  background: #e4f1f5;
  color: #276c83;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.site-nav.is-scrolled {
  border-bottom-color: #c9dce2;
}

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 60px));
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
}

.hero__image,
.hero__shade,
.hero__route {
  position: absolute;
  inset: 0;
}

.hero__image {
  left: -8%;
  right: -8%;
  width: 116%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  will-change: opacity, transform;
  transform-origin: center center;
}

.hero__image--day {
  background-image:
    linear-gradient(
      180deg,
      rgba(20, 116, 164, 0.34) 0%,
      rgba(24, 126, 171, 0.24) 42%,
      rgba(24, 126, 171, 0.08) 62%,
      transparent 74%
    ),
    url("images/sushi-sapporo-hero-v2.png");
  background-blend-mode: multiply, normal;
  animation:
    dayScene 24s ease-in-out infinite,
    dayDrift 24s ease-in-out infinite;
}

.hero__image--night {
  background-image: url("images/sushi-susukino-night-v1.png");
  opacity: 0;
  animation:
    nightScene 24s ease-in-out infinite,
    nightDrift 24s ease-in-out infinite;
}

/* 夜：文字の高さの帯だけ夜空色で暗くして、タイトルの視認性を確保
   （お寿司の位置・大きさは昼と同じまま） */
.hero__image--night::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 18, 38, 0) 14%,
    rgba(7, 18, 38, 0.52) 30%,
    rgba(7, 18, 38, 0.52) 54%,
    rgba(7, 18, 38, 0) 70%
  );
}

/* 昼の空だけ晴天スカイブルーに深める（食べ物の色には影響しない） */
.hero__image--day::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30, 144, 220, 0.5) 0%,
    rgba(45, 158, 230, 0.26) 34%,
    rgba(60, 170, 235, 0) 56%
  );
  mix-blend-mode: multiply;
}

.hero__shade {
  background: linear-gradient(
    180deg,
    rgba(13, 44, 49, 0.03) 0%,
    rgba(13, 44, 49, 0.1) 55%,
    rgba(13, 44, 49, 0.2) 100%
  );
}

.hero__route {
  z-index: 1;
  pointer-events: none;
}

.hero__route-line {
  position: absolute;
  height: 2px;
  border-top: 2px dashed rgba(255, 255, 255, 0.78);
  filter: drop-shadow(0 1px 2px rgba(15, 56, 61, 0.3));
  transform-origin: left center;
  animation: routePulse 3.6s ease-in-out infinite;
}

.hero__route-line--one {
  width: 23%;
  left: 10%;
  top: 32%;
  transform: rotate(12deg);
}

.hero__route-line--two {
  width: 25%;
  right: 9%;
  top: 29%;
  transform: rotate(-11deg);
  animation-delay: .7s;
}

.hero__route-line--three {
  width: 20%;
  right: 17%;
  bottom: 19%;
  transform: rotate(9deg);
  animation-delay: 1.4s;
}

.hero__pin {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 4px solid #fff;
  border-radius: 50% 50% 50% 0;
  background: var(--coral);
  box-shadow: 0 4px 14px rgba(15, 56, 61, 0.25);
  transform: rotate(-45deg);
  animation: pinFloat 2.8s ease-in-out infinite;
}

.hero__pin::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  top: 5px;
  left: 5px;
  border-radius: 50%;
  background: #fff;
}

.hero__pin--station {
  left: 8%;
  top: 27%;
}

.hero__pin--odori {
  right: 8%;
  top: 23%;
  animation-delay: .8s;
}

.hero__pin--tanuki {
  right: 16%;
  bottom: 16%;
  animation-delay: 1.6s;
}

.hero__step {
  position: absolute;
  width: 7px;
  height: 13px;
  border-radius: 60% 45% 55% 40%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 10px 8px 0 rgba(255, 255, 255, 0.7);
  animation: stepWalk 3s ease-in-out infinite;
}

.hero__step--one {
  left: 29%;
  top: 36%;
  transform: rotate(48deg);
}

.hero__step--two {
  right: 31%;
  top: 35%;
  transform: rotate(-42deg);
  animation-delay: .8s;
}

.hero__step--three {
  right: 31%;
  bottom: 17%;
  transform: rotate(74deg);
  animation-delay: 1.6s;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 40px));
  max-width: 100%;
  margin: 0 auto;
  padding: 70px 0;
  text-align: center;
  text-shadow: 0 2px 12px rgba(15, 56, 61, 0.5);
  animation: heroContent 1s 0.15s var(--ease) both;
}

.eyebrow,
.kicker {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.hero .eyebrow {
  color: #f0d39d;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 800px;
  margin: 0 auto 22px;
  font-family: var(--sans);
  font-size: clamp(2rem, 7vw, 4.2rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
}

.hero-title {
  position: relative;
  display: grid;
  justify-items: center;
  width: 100%;
  max-width: 100%;
  gap: 4px;
  color: #fff;
}

.hero-title__display {
  display: grid;
  justify-items: stretch;
  width: fit-content;
  max-width: 100%;
}

.hero-title__eyebrow {
  display: block;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--sans);
  font-size: clamp(.62rem, 1vw, .72rem);
  font-weight: 600;
  letter-spacing: .52em;
  text-indent: .52em;
  text-align: center;
  text-shadow: 0 1px 5px rgba(8, 31, 35, 0.3);
}

.hero-title__tagline {
  display: block;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.96);
  font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
  font-size: clamp(1.1rem, 1.9vw, 1.45rem);
  font-weight: 700;
  letter-spacing: .3em;
  text-indent: .3em;
  text-align: center;
  text-shadow: 0 1px 6px rgba(8, 31, 35, 0.4);
}

.hero-title__main {
  display: block;
  justify-self: center;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  font-family: "Harenosora", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(2.4rem, 5.8vw, 4.6rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .12em;
  font-feature-settings: "palt" 1;
  text-shadow: 0 2px 14px rgba(8, 31, 35, 0.5);
}

.hero-title__u {
  letter-spacing: -.04em;
}

/* タイトルはPhotoshop制作の画像（images/title-osushi.png） */
.hero-title__main img {
  width: min(680px, 86vw);
  height: auto;
  display: block;
  margin: 0 auto;
}

h1 small {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--sans);
  font-size: clamp(0.86rem, 1.5vw, 1.05rem);
  font-weight: 500;
  letter-spacing: .16em;
}

.hero__title-line {
  display: block;
}

.hero__lead {
  max-width: 720px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.91);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  gap: 10px;
}

.hero__nav a,
.hero__nav button {
  min-width: 110px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: .12em;
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.hero__nav a:hover,
.hero__nav a:focus-visible,
.hero__nav button:hover,
.hero__nav button:focus-visible,
.hero__nav button.is-active {
  background: #fff;
  color: var(--sea-dark);
}

.hero__note {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.68rem;
}

main {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0 80px;
}

.introduction,
.sushi-chooser,
.notice,
.category-section,
.map-section,
.author-note {
  margin-bottom: 64px;
}

.introduction {
  max-width: 850px;
}

.introduction h2,
.author-note h2 {
  margin-bottom: 14px;
  color: var(--sea-dark);
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.45;
}

.introduction h2 {
  font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: .02em;
}

.author-note h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
}

.introduction > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.sushi-chooser {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.sushi-chooser__heading {
  margin-bottom: 24px;
}

.sushi-chooser__heading h2 {
  margin: 0;
  color: var(--sea-dark);
  font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.4;
}

.choice-title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--sea-dark);
  font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.choice-title::before {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--sea);
  content: "";
}

.quick-guide {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.quick-guide a {
  --neta: #f08366;
  position: relative;
  min-width: 0;
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 17px 38px 17px 62px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(39, 108, 131, 0.18);
  border-radius: 999px;
  box-shadow: 0 7px 0 rgba(39, 108, 131, 0.06), 0 13px 28px rgba(39, 108, 131, 0.1);
  text-decoration: none;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.quick-guide a:nth-child(2) {
  --neta: #efc74f;
}

.quick-guide a:nth-child(3) {
  --neta: #cf5652;
}

.quick-guide a:nth-child(4) {
  --neta: #6cb87a;
}

.quick-guide a::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 31px;
  height: 45px;
  border-radius: 55% 48% 52% 46%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .38), transparent 38%),
    var(--neta);
  box-shadow: inset -3px -3px 0 rgba(122, 54, 39, 0.08);
  transform: translateY(-50%) rotate(-7deg);
}

.quick-guide a::after {
  content: "→";
  position: absolute;
  right: 18px;
  top: 50%;
  color: var(--neta);
  font-family: "M PLUS 1p", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  transform: translateY(-50%);
}

.quick-guide a:hover,
.quick-guide a:focus-visible {
  background: #fff;
  border-color: color-mix(in srgb, var(--neta) 45%, white);
  box-shadow: 0 9px 0 rgba(39, 108, 131, 0.05), 0 17px 34px rgba(39, 108, 131, .15);
  transform: translateY(-3px);
}

.quick-guide span,
.quick-guide strong {
  display: block;
}

.quick-guide span {
  margin-bottom: 4px;
  color: var(--muted);
  font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.35;
}

.quick-guide strong {
  color: var(--sea-dark);
  font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;
}

.notice {
  display: block;
  padding: 27px 30px;
  background: #edf6f8;
  border-left: 5px solid var(--coral);
}

.notice h2 {
  margin-bottom: 10px;
  color: #386b7b;
  font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: .02em;
}

.notice ul {
  margin: 0;
  padding-left: 1.3rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.notice li + li {
  margin-top: 5px;
}

.section-heading {
  --section-accent: #f08366;
  display: block;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 0;
}

.category-section:nth-of-type(5) .section-heading {
  --section-accent: #efc74f;
}

.category-section:nth-of-type(6) .section-heading {
  --section-accent: #cf5652;
}

.category-section:nth-of-type(7) .section-heading {
  --section-accent: #ee8b45;
}

.section-heading > p {
  margin: 8px 0 0;
}

.section-heading h2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
  color: var(--sea-dark);
  font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .02em;
}

.section-heading h2::before {
  content: "";
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--section-accent);
  box-shadow: 0 3px 0 rgba(39, 66, 63, 0.08);
}

.section-heading::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 16px;
  border-radius: 999px;
  background: var(--section-accent);
}

.section-heading > p {
  max-width: 570px;
  margin: 8px 0 0;
  color: var(--muted);
}

.section-heading .kicker {
  margin-bottom: 7px;
  color: var(--section-accent);
  font-size: .7rem;
  letter-spacing: .08em;
}

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

.place-card {
  display: grid;
  grid-template-rows: 245px 1fr;
  overflow: hidden;
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--line);
  border-radius: 11px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}

.place-card:hover {
  border-color: #8fbac8;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.place-card--wide {
  grid-column: 1 / -1;
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-rows: minmax(420px, auto);
}

.place-card__media {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #e7f1f4;
}

.place-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}

.place-card:hover .place-card__media img {
  transform: scale(1.025);
}

.place-card__media > span {
  position: absolute;
  right: 9px;
  bottom: 9px;
  padding: 3px 7px;
  background: rgba(25, 31, 28, 0.75);
  color: #fff;
  font-size: 0.68rem;
}

.place-card__body {
  padding: 24px;
}

.place-card__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 9px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  font-weight: 900;
}

.place-card__meta span {
  color: var(--coral);
}

.place-card__meta strong {
  color: var(--sea-dark);
}

.place-card h3 {
  margin-bottom: 4px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.4;
}

.location {
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 0.86rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
}

.tags span {
  padding: 4px 9px;
  background: var(--soft-green);
  color: #276c83;
  border: 1px solid #c4dce4;
  font-size: 0.74rem;
  font-weight: 500;
}

.summary {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.card-catch {
  margin-bottom: 6px;
  color: #496f7b;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.65;
}

.compact-details {
  margin: 16px 0;
  border-top: 1px solid var(--line);
}

.compact-details div {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
}

.compact-details dt {
  color: var(--sea-dark);
  font-weight: 900;
}

.compact-details dd {
  margin: 0;
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.button {
  flex: 1 1 150px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  text-align: center;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
}

.button--primary {
  background: var(--sea);
  color: #fff;
  border: 1px solid var(--sea);
}

.button--secondary {
  background: #fff;
  color: var(--sea-dark);
  border: 1px solid var(--sea);
}

.button:hover,
.button:focus-visible {
  background: var(--sea-dark);
  border-color: var(--sea-dark);
  color: #fff;
}

.branch-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin-top: 20px;
}

.branch-actions a,
.market-spots a {
  padding: 13px;
  background: var(--sea);
  color: #fff;
  text-decoration: none;
}

.branch-actions strong,
.branch-actions span,
.market-spots strong,
.market-spots span {
  display: block;
}

.branch-actions span,
.market-spots span {
  margin-top: 3px;
  font-size: 0.72rem;
}

.branch-actions a:hover,
.branch-actions a:focus-visible,
.market-spots a:hover,
.market-spots a:focus-visible {
  background: var(--sea-dark);
}

.market-spots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.market-spots a {
  background: #edf6f8;
  color: var(--sea-dark);
  border: 1px solid #c4dce4;
}

.market-spots a:hover,
.market-spots a:focus-visible {
  color: #fff;
}

.mymap {
  min-height: 460px;
  overflow: hidden;
  background: #e7f1f4;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(39, 108, 131, 0.12);
}

.mymap iframe {
  display: block;
  width: 100%;
  height: 500px;
  border: 0;
}

.map-section__guide {
  margin: -30px 0 12px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.75;
}

.map-section > .button {
  min-height: 48px;
  margin-top: 0;
  border-radius: 0 0 10px 10px;
  box-shadow: none;
}

.mymap__placeholder {
  min-height: 460px;
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 36px;
  text-align: center;
}

.mymap__placeholder strong {
  color: var(--sea-dark);
  font-size: 1.25rem;
}

.mymap__placeholder p {
  max-width: 600px;
  margin: 10px 0 18px;
  color: var(--muted);
}

.mymap__placeholder a {
  min-height: 44px;
  padding: 10px 18px;
  background: var(--sea);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

.author-note {
  display: flex;
  align-items: center;
  gap: 26px;
  max-width: 880px;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.author-note__avatar {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #efeae1;
}

.author-note__name {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 800;
}

.author-note__bio {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.author-note__link {
  color: var(--coral);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 600px) {
  .author-note {
    flex-direction: column;
    text-align: center;
  }
}

footer {
  padding: 34px 20px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  font-size: 0.82rem;
}

footer a {
  display: inline-block;
  margin-bottom: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

footer p {
  margin: 0;
}

@keyframes heroPan {
  0% {
    transform: translate3d(-3.5%, 0, 0) scale(1.06);
  }
  100% {
    transform: translate3d(3.5%, -1.5%, 0) scale(1.13);
  }
}

@keyframes heroPanNight {
  0% {
    transform: translate3d(3%, 0, 0) scale(1.07);
  }
  100% {
    transform: translate3d(-3%, -1%, 0) scale(1.12);
  }
}

@keyframes dayScene {
  0%,
  38% {
    opacity: 1;
  }
  50%,
  88% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes nightScene {
  0%,
  38% {
    opacity: 0;
  }
  50%,
  88% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes dayDrift {
  0%,
  100% {
    transform: translate3d(-1.5%, 0, 0) scale(1.03);
  }
  50% {
    transform: translate3d(1%, -0.8%, 0) scale(1.08);
  }
}

@keyframes nightDrift {
  0%,
  100% {
    transform: translate3d(1.5%, -0.5%, 0) scale(1.04);
  }
  50% {
    transform: translate3d(-0.8%, -1%, 0) scale(1.08);
  }
}

@keyframes heroContent {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mobileDayScene {
  0%,
  38% {
    opacity: 1;
  }
  50%,
  88% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes mobileNightScene {
  0%,
  38% {
    opacity: 0;
  }
  50%,
  88% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes mobileDayDrift {
  0%,
  100% {
    transform: translate3d(-3%, 0, 0) scale(1.08);
  }
  50% {
    transform: translate3d(3%, -1.5%, 0) scale(1.15);
  }
}

@keyframes mobileNightDrift {
  0%,
  100% {
    transform: translate3d(3%, -0.5%, 0) scale(1.09);
  }
  50% {
    transform: translate3d(-3%, -2%, 0) scale(1.16);
  }
}

@keyframes routePulse {
  0%,
  100% {
    opacity: .45;
  }
  50% {
    opacity: 1;
  }
}

@keyframes pinFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -9px;
  }
}

@keyframes stepWalk {
  0%,
  100% {
    opacity: .25;
    translate: -8px 4px;
  }
  50% {
    opacity: 1;
    translate: 8px -4px;
  }
}

@media (max-width: 900px) {
  .quick-guide {
    grid-template-columns: repeat(2, 1fr);
  }

  .notice,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .place-card--wide {
    grid-column: auto;
    grid-template-columns: 1fr;
    grid-template-rows: 245px 1fr;
  }
}

@media (max-width: 680px) {
  .site-nav__inner,
  .hero__inner,
  main {
    width: min(100% - 28px, 1160px);
  }

  .site-nav__inner {
    min-height: 54px;
    gap: 8px;
    font-size: 0.76rem;
  }

  .site-nav__links {
    display: none;
  }

  .site-nav__brand {
    min-height: 34px;
    padding: 7px 12px;
    font-size: .76rem;
    letter-spacing: .01em;
    white-space: nowrap;
  }

  .site-nav__brand small {
    font-size: .58rem;
    letter-spacing: .06em;
  }

  .site-nav__date {
    flex: 0 0 auto;
    padding: 6px 10px;
    font-size: .68rem;
    letter-spacing: .03em;
  }

  .hero {
    min-height: calc(100svh - 54px);
    max-height: 760px;
  }

  .hero__image {
    inset: -4%;
    width: auto;
    min-width: 108%;
    height: 108%;
    background-size: cover;
  }

  .hero__image--day {
    background-position: 55% center;
    animation:
      mobileDayScene 18s ease-in-out infinite,
      mobileDayDrift 18s ease-in-out infinite;
  }

  .hero__image--night {
    background-position: 58% center;
    animation:
      mobileNightScene 18s ease-in-out infinite,
      mobileNightDrift 18s ease-in-out infinite;
  }

  .hero__shade {
    background: linear-gradient(
      180deg,
      rgba(13, 44, 49, 0.03) 0%,
      rgba(13, 44, 49, 0.1) 55%,
      rgba(13, 44, 49, 0.2) 100%
    );
  }

  .hero__inner {
    display: grid;
    align-content: center;
    justify-items: center;
    min-height: calc(100svh - 54px);
    padding: 38px 0 34px;
    transform: translateY(-18px);
  }

  .hero__route-line--one {
    width: 29%;
    left: -5%;
    top: 28%;
  }

  .hero__route-line--two {
    width: 28%;
    right: -4%;
    top: 27%;
  }

  .hero__route-line--three {
    width: 27%;
    right: -4%;
    bottom: 15%;
  }

  .hero__pin {
    width: 18px;
    height: 18px;
    border-width: 3px;
  }

  .hero__pin::after {
    width: 4px;
    height: 4px;
    top: 4px;
    left: 4px;
  }

  .hero__pin--station {
    left: 4%;
    top: 24%;
  }

  .hero__pin--odori {
    right: 4%;
    top: 23%;
  }

  .hero__pin--tanuki {
    right: 4%;
    bottom: 12%;
  }

  .hero__step--one {
    left: 22%;
    top: 31%;
  }

  .hero__step--two {
    right: 22%;
    top: 31%;
  }

  .hero__step--three {
    right: 20%;
    bottom: 13%;
  }

  h1 {
    font-size: min(9.5vw, 2.6rem);
  }

  .hero-title {
    min-width: 0;
    overflow: hidden;
    gap: 1px;
  }

  .hero-title__display {
    justify-items: center;
    width: 100%;
    min-width: 0;
  }

  .hero-title__eyebrow {
    width: 100%;
    margin: 0 0 22px;
    font-size: .6rem;
    letter-spacing: clamp(.16em, 1.4vw, .4em);
    text-indent: 0;
    white-space: nowrap;
  }

  .hero-title__tagline {
    width: 100%;
    margin: 0 0 18px;
    font-size: 1rem;
    letter-spacing: .22em;
    text-indent: 0;
    white-space: nowrap;
  }

  .hero-title__main {
    width: 100%;
    margin: 0;
    font-size: clamp(1.5rem, 7vw, 2.4rem);
    letter-spacing: .08em;
  }

  .hero-title__main img {
    width: min(100%, 680px);
    max-width: 100%;
  }

  .hero-title {
    margin-bottom: 38px;
  }

  .hero__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(88%, 300px);
    margin-top: 0;
    gap: 7px;
  }

  .hero__nav a,
  .hero__nav button {
    min-width: 0;
    padding: 6px 7px;
    border-radius: 8px;
    font-size: .74rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: .04em;
  }

  .desktop-only {
    display: none;
  }

  main {
    padding-top: 38px;
  }

  .introduction h2 {
    font-size: 22px;
  }

  .introduction,
  .sushi-chooser,
  .notice,
  .category-section,
  .map-section,
  .author-note {
    margin-bottom: 48px;
  }

  .sushi-chooser {
    padding: 22px 18px;
  }

  .sushi-chooser__heading h2 {
    font-size: 1.35rem;
  }

  .quick-guide {
    margin-bottom: 24px;
  }

  .quick-guide,
  .card-grid,
  .branch-actions,
  .market-spots {
    grid-template-columns: 1fr;
  }

  .quick-guide a {
    min-height: 86px;
    padding: 14px 40px 14px 64px;
  }

  .quick-guide a::before {
    left: 20px;
    width: 29px;
    height: 41px;
  }

  .notice,
  .author-note {
    padding: 22px;
  }

  .place-card,
  .place-card--wide {
    grid-template-rows: 220px 1fr;
  }

  .button {
    min-height: 48px;
    font-size: 0.92rem;
  }

  .quick-guide strong {
    font-size: 1.06rem;
  }

  .category-section {
    margin-bottom: 56px;
  }

  .section-heading h2 {
    gap: 9px;
    font-size: 26px;
  }

  .section-heading h2::before {
    width: 10px;
    height: 10px;
  }

  .section-heading::after {
    width: 52px;
    height: 3px;
    margin-top: 13px;
  }

  .place-card__body {
    padding: 20px;
  }

  .actions {
    display: grid;
  }

  .mymap,
  .mymap__placeholder {
    min-height: 380px;
  }

  .mymap iframe {
    height: 420px;
  }

  footer a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

@media (max-width: 380px) {
  .site-nav__brand small {
    display: none;
  }

  .hero-title__tagline {
    font-size: clamp(.76rem, 4.2vw, .84rem);
    letter-spacing: .12em;
  }

  .hero-title__main {
    font-size: clamp(1.4rem, 6.8vw, 2.2rem);
  }

  .hero__nav {
    width: min(86%, 280px);
    gap: 6px;
  }

  .hero__nav a,
  .hero__nav button {
    padding: 5px 6px;
    font-size: .72rem;
    letter-spacing: .02em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__image,
  .hero__inner,
  .hero__route-line,
  .hero__pin,
  .hero__step {
    animation: none;
  }

  .hero__image--day {
    opacity: 1;
  }

  .hero__image--night {
    opacity: 0;
  }

  .place-card__media img {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== SCROLL誘導（ヒーロー下部） ===== */
.hero__cue {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #fff;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .34em;
  text-indent: .34em;
  text-shadow: 0 1px 5px rgba(8, 31, 35, 0.3);
}

.hero__cue::after {
  content: "";
  width: 1px;
  height: 46px;
  background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
  animation: cueDrop 1.8s ease-in-out infinite;
}

@keyframes cueDrop {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  60% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ===== エリアラベル（お店カードの先頭タグ） ===== */
.tags .tag-area {
  background: #fff3e8;
  color: #a04e26;
  border: 1px solid #f0cfae;
  font-weight: 700;
}

/* ===== シーン絞り込み ===== */
.filter-status[hidden] {
  display: none;
}

.filter-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 40px;
  padding: 14px 20px;
  background: #eef4ee;
  border-left: 5px solid var(--sea-dark, #16454b);
}

.filter-status p {
  margin: 0;
  color: var(--sea-dark, #16454b);
  font-size: .92rem;
  font-weight: 700;
}

.filter-status button {
  padding: 8px 16px;
  border: 1px solid var(--sea-dark, #16454b);
  border-radius: 7px;
  background: #fff;
  color: var(--sea-dark, #16454b);
  font-family: inherit;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
}

.filter-status button:hover {
  background: var(--sea-dark, #16454b);
  color: #fff;
}

.place-card.is-scene-hidden,
.category-section.is-scene-hidden {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero__cue::after {
    animation: none;
  }
}

/* ===== VOICES：地元リベ民の声（横スクロールカード） ===== */
.voices {
  margin-bottom: 64px;
}

.voices h2 {
  margin-bottom: 8px;
  color: var(--sea-dark);
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
}

.voices__lead {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.voices__carousel {
  position: relative;
  padding-inline: 28px;
}

.voices__arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(39, 108, 131, .34);
  border-radius: 50%;
  background: rgba(255, 255, 255, .36);
  color: var(--sea-dark);
  font: 500 2rem/1 "M PLUS 1p", sans-serif;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(39, 108, 131, .1);
  backdrop-filter: blur(7px);
  transform: translateY(-50%);
  transition: background .2s ease, color .2s ease, opacity .2s ease, transform .2s ease;
}

.voices__arrow--prev {
  left: 3px;
}

.voices__arrow--next {
  right: 3px;
}

.voices__arrow:hover,
.voices__arrow:focus-visible {
  background: rgba(39, 108, 131, .9);
  color: #fff;
  transform: translateY(-50%) scale(1.04);
}

.voices__arrow:disabled {
  opacity: .18;
  cursor: default;
  transform: translateY(-50%);
}

.voices__track {
  display: flex;
  gap: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  padding: 4px;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 4px;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.voices__track::-webkit-scrollbar {
  display: none;
}

.voice {
  --card-bg: #fff0ee;
  --card-top: #f4a49a;
  flex: 0 0 min(300px, calc(100vw - 68px));
  min-height: 245px;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 22px 22px 18px;
  background: var(--card-bg);
  border: 1px solid rgba(0,0,0,.06);
  border-top: 4px solid var(--card-top);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,.07);
  scroll-snap-align: start;
}

.voice:nth-child(6n+1) { --card-bg: #fff0ee; --card-top: #f4a49a; }
.voice:nth-child(6n+2) { --card-bg: #fff9e0; --card-top: #f0c84a; }
.voice:nth-child(6n+3) { --card-bg: #e4f6ed; --card-top: #68c18a; }
.voice:nth-child(6n+4) { --card-bg: #eaecff; --card-top: #8b96e8; }
.voice:nth-child(6n+5) { --card-bg: #e2f4fb; --card-top: #6ab8d8; }
.voice:nth-child(6n+0) { --card-bg: #fff3e8; --card-top: #f0a060; }

.voice blockquote {
  flex: 1;
  margin: 0 0 14px;
  color: var(--ink);
  font-family: "Zen Maru Gothic", "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  font-size: 1.05rem;
  line-height: 1.9;
}

.voice figcaption {
  min-height: 2.6em;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: .06em;
}

.voice figcaption a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: opacity .2s;
}

.voice figcaption a:hover {
  opacity: .7;
}

.voice figcaption img {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: 2px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(39, 108, 131, .14);
}

@media (max-width: 680px) {
  .voices__carousel {
    padding-inline: 21px;
  }

  .voices__arrow {
    width: 42px;
    height: 42px;
    font-size: 1.7rem;
  }

  .voices__arrow--prev {
    left: 0;
  }

  .voices__arrow--next {
    right: 0;
  }

  .voice {
    flex-basis: calc(100vw - 78px);
  }
}

/* ===== お店カード：折りたたみ式（店名・一言・詳細を見る だけ表示） ===== */
.place-card {
  border-radius: 18px;
  overflow: hidden;
}

.place-card__body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.place-card__body h3 {
  order: -2;
}

.place-card .card-catch {
  order: -1;
}

.place-card__toggle {
  order: 99;
  align-self: flex-start;
  margin-top: 6px;
  padding: 9px 22px;
  border: 1px solid var(--sea-dark);
  border-radius: 999px;
  background: transparent;
  color: var(--sea-dark);
  font-family: inherit;
  font-size: 0.83rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease);
}

.place-card__toggle:hover {
  background: var(--sea-dark);
  color: #fff;
}

.place-card__body {
  position: relative;
}

.place-card__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1.5px solid var(--sea-dark);
  border-radius: 50%;
  background: transparent;
  color: var(--sea-dark);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease);
}

.place-card__close:hover {
  background: var(--sea-dark);
  color: #fff;
}

.place-card.is-open .place-card__close {
  display: flex;
}

.place-card.is-open .place-card__toggle {
  display: none;
}

.place-card.is-open .place-card__body h3 {
  padding-right: 44px;
}

.place-card:not(.is-open) .place-card__meta,
.place-card:not(.is-open) .location,
.place-card:not(.is-open) .compact-details,
.place-card:not(.is-open) .tags,
.place-card:not(.is-open) .summary,
.place-card:not(.is-open) .actions,
.place-card:not(.is-open) .branch-actions,
.place-card:not(.is-open) .place-card__photo {
  display: none;
}

/* ===== お店カード：トップ画像スライダー ===== */
.place-card__media {
  position: relative;
  overflow: hidden;
}

.media-slider__track {
  display: flex;
  transition: transform .35s var(--ease);
}

.media-slider__track img {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.media-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: rgba(20, 30, 40, 0.35);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transition: opacity .25s var(--ease), background .25s var(--ease);
  z-index: 3;
}

.media-slider__arrow--prev {
  left: 10px;
}

.media-slider__arrow--next {
  right: 10px;
}

.place-card__media:hover .media-slider__arrow {
  opacity: 1;
}

.media-slider__arrow:hover {
  background: rgba(20, 30, 40, 0.6);
}

.media-slider__arrow:disabled {
  opacity: 0 !important;
  cursor: default;
}

@media (hover: none) {
  .media-slider__arrow {
    opacity: 1;
  }
}

.media-slider__dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 3;
  pointer-events: none;
}

.media-slider__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}

.media-slider__dots span.is-active {
  background: #fff;
}

/* ===== タイプでしぼりこむ（チップ） ===== */
.filter {
  margin: 0;
  padding: 22px 0 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.filter__label {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
}

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

.filter__chip {
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #eef5f7;
  color: #315d6c;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}

.filter__chip:hover {
  border-color: var(--sea);
  background: #e4f1f5;
}

.filter__chip.is-active {
  background: var(--sea);
  border-color: var(--sea);
  color: #fff;
}

/* ===== 導入文のチェックリスト（お店の選び方を統合） ===== */
.intro-points {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.intro-points li {
  position: relative;
  padding-left: 1.7em;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.intro-points li + li {
  margin-top: 4px;
}

.intro-points li::before {
  content: "✓";
  position: absolute;
  left: 0.2em;
  color: var(--sea);
  font-weight: 900;
}

/* ===== アンケート順位バッジ（カード写真の左上） ===== */
.place-card__media {
  position: relative;
}

.place-card__media > .rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  right: auto;
  bottom: auto;
  z-index: 2;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.place-card__media > .rank-badge--1 {
  background: linear-gradient(180deg, #f7d976, #e3b743);
  color: #5d4a0e;
}

.place-card__media > .rank-badge--2 {
  background: linear-gradient(180deg, #ececf2, #c9ccd6);
  color: #4a4f5c;
}

.place-card__media > .rank-badge--3 {
  background: linear-gradient(180deg, #e8b48e, #cf9061);
  color: #5c3a1d;
}

.place-card__media > .rank-badge--libe {
  background: linear-gradient(180deg, #dff1e2, #bcdcc4);
  color: #285b3b;
}

.place-card__media > .rank-badge--michelin {
  background: linear-gradient(180deg, #a8273a, #7e1525);
  color: #fdf3e3;
}

.place-card__media > .rank-badge--port {
  background: linear-gradient(180deg, #dff2f7, #a9d3df);
  color: #164a5c;
}
