/* ==========================================================================
   Bimajo Nao — Instagram風UI
   ========================================================================== */

:root {
  --rose: #c2255c;
  --rose-bright: #e0447e;
  --rose-hot: #ec2f8a;
  --rose-deep: #8f1d4b;
  --pink-bg: #fdf2f5;
  --pink-soft: #fbe4ec;
  --pink-line: #f3d5de;
  --ink: #3d2830;
  --ink-soft: #8a6b76;
  --white: #fff;
  --link: #3b5aa9;
  --ring: linear-gradient(45deg, #ffd86f 0%, #fc6262 40%, #ec2f8a 75%, #c2255c 100%);
  --grad-rose: linear-gradient(135deg, #e0447e 0%, #a91d54 100%);
  --grad-purple: linear-gradient(135deg, #8b5cf6 0%, #5b21b6 100%);
  --radius: 18px;
  --shadow: 0 2px 14px rgba(194, 37, 92, 0.07);
  --shadow-hover: 0 6px 24px rgba(194, 37, 92, 0.15);
  --font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-round: "Zen Maru Gothic", var(--font-body);
  --font-script: "Dancing Script", cursive;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* 横スクロール防止（clipはスクロールコンテナを作らないのでstickyが壊れない） */
html, body { overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 85% -100px, #fde7ee 0%, transparent 60%),
    radial-gradient(900px 500px at -100px 30%, #fdeef3 0%, transparent 55%),
    var(--pink-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.85; }

.icon { display: inline-flex; width: 1.35em; height: 1.35em; vertical-align: -0.28em; flex: none; }
.icon svg { width: 100%; height: 100%; }

/* --------------------------------------------------------------------------
   全体レイアウト
   -------------------------------------------------------------------------- */

.app { display: flex; min-height: 100vh; }

.app__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 28px 32px 90px;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(280px, 360px);
  gap: 28px;
  align-items: start;
  min-width: 0;
}

.feed { grid-column: 1; min-width: 0; }
.rail { grid-column: 2; align-self: start; position: sticky; top: 28px; display: grid; gap: 24px; min-width: 0; }
.feed--single { grid-column: 1 / -1; max-width: 760px; width: 100%; margin: 0 auto; min-width: 0; }
.rail-card, .post-card { min-width: 0; }

/* --------------------------------------------------------------------------
   サイドバー
   -------------------------------------------------------------------------- */

.sidebar {
  width: 264px;
  flex: none;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  padding: 26px 18px 30px;
  background: rgba(255, 255, 255, 0.65);
  border-right: 1px solid var(--pink-line);
  backdrop-filter: blur(8px);
  scrollbar-width: thin;
}

.sidebar__brand { display: block; padding: 0 8px 18px; }
.sidebar__logo {
  display: block;
  width: 200px;
  margin: 0 auto;
}

.sidebar__toggle { display: none; }

.sidebar__nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }

.sidebar__nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 14px;
  border-radius: 12px;
  font-weight: 500;
  transition: background 0.15s;
}

.sidebar__nav a .icon { width: 1.5em; height: 1.5em; color: var(--rose); }
.sidebar__nav a:hover { background: var(--pink-soft); opacity: 1; }
.sidebar__nav a.is-active { background: var(--pink-soft); color: var(--rose); font-weight: 700; }

.badge-new {
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: var(--grad-rose);
  border-radius: 99px;
  padding: 1px 8px;
  letter-spacing: 0.05em;
}

/* 予約ボタン */
.btn-reserve {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin: 20px 6px 22px;
  padding: 13px 16px;
  border-radius: 14px;
  background: var(--grad-rose);
  color: #fff;
  text-align: center;
  box-shadow: 0 6px 18px rgba(194, 37, 92, 0.35);
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative;
}
.btn-reserve:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(194, 37, 92, 0.45); opacity: 1; }
.btn-reserve .icon { position: absolute; left: 16px; top: 50%; translate: 0 -50%; width: 1.5em; height: 1.5em; }
.btn-reserve__jp { font-weight: 700; letter-spacing: 0.08em; }
.btn-reserve__en { font-size: 11px; opacity: 0.85; letter-spacing: 0.14em; }
.btn-reserve--inline { display: inline-flex; margin: 8px 0; }

/* 店舗情報 */
.sidebar__info { padding: 0 10px; font-size: 12.5px; color: var(--ink-soft); }
.sidebar__info p { margin: 0 0 8px; display: flex; gap: 6px; align-items: baseline; }
.sidebar__info .icon { color: var(--rose); }
.sidebar__shopname { font-weight: 700; color: var(--ink); font-size: 13.5px; }

.sidebar__sns { display: flex; gap: 10px; margin-top: 14px; }
.sidebar__sns a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--pink-line);
  color: var(--rose);
  box-shadow: var(--shadow);
}
.sidebar__sns .icon { width: 1.4em; height: 1.4em; }

/* --------------------------------------------------------------------------
   ストーリーズ
   -------------------------------------------------------------------------- */

.stories {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 6px 4px 14px;
  margin-bottom: 20px;
  scrollbar-width: none;
}
.stories::-webkit-scrollbar { display: none; }

.story {
  flex: none;
  width: 86px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  position: relative;
}

.story__ring {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--ring);
  padding: 3px;
  transition: transform 0.15s;
}
.story:hover .story__ring { transform: scale(1.06); }

.story__img {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid #fff;
  color: var(--rose);
  overflow: hidden;
}
.story__img .icon { width: 1.9em; height: 1.9em; }
.story__img--logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

.story__plus {
  position: absolute;
  top: 52px;
  right: 8px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--grad-rose);
  color: #fff;
  border: 2.5px solid var(--pink-bg);
}
.story__plus .icon { width: 0.9em; height: 0.9em; }

.story__label {
  font-size: 11px;
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.35;
  white-space: nowrap;
  width: max-content;
  max-width: 104px;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* --------------------------------------------------------------------------
   投稿カード
   -------------------------------------------------------------------------- */

.post-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 24px;
}

.post-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
}
.post-card__head--flat { padding: 0 0 8px; }

.avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
  background: #fff;
  overflow: hidden;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; background: #fff; }
.avatar--ring { background: var(--ring); padding: 2.5px; }
.avatar--ring img { border-radius: 50%; border: 2px solid #fff; }
.avatar--sm { width: 40px; height: 40px; }

.post-card__names { flex: 1; min-width: 0; line-height: 1.35; }
.post-card__names strong { display: block; font-size: 14.5px; }
.post-card__names small { color: var(--ink-soft); font-size: 12px; }
.post-card__dots { color: var(--ink-soft); }

/* ヒーロー */
.hero {
  position: relative;
  aspect-ratio: 4 / 2.6;
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  overflow: hidden;
}

/* ヒーロー背景スライドショー（ギャラリー画像） */
.hero__slides { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease;
  will-change: opacity, transform;
}
.hero__slide.is-on {
  opacity: 1;
  animation: hero-kenburns 9s ease-out forwards;
}
.hero__slide:nth-child(even).is-on { animation-name: hero-kenburns-rev; }
@keyframes hero-kenburns {
  from { transform: scale(1.02); }
  to { transform: scale(1.12); }
}
@keyframes hero-kenburns-rev {
  from { transform: scale(1.12); }
  to { transform: scale(1.02); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__slide { transition: none; }
  .hero__slide.is-on { animation: none; }
}
.hero--placeholder {
  background:
    radial-gradient(700px 320px at 80% 110%, rgba(236, 47, 138, 0.55) 0%, transparent 60%),
    radial-gradient(500px 300px at 10% -10%, rgba(255, 170, 100, 0.35) 0%, transparent 55%),
    linear-gradient(150deg, #3d1024 0%, #61122f 45%, #2a0a1c 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(30, 5, 18, 0.45) 0%, rgba(30, 5, 18, 0.05) 45%, rgba(30, 5, 18, 0.55) 100%);
}

.hero__overlay { position: relative; z-index: 2; text-align: center; color: #fff; padding: 24px; align-self: start; margin-top: 6%; }
.hero__copy {
  margin: 0 0 10px;
  font-family: var(--font-round);
  font-size: clamp(22px, 3.4vw, 34px);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}
.hero__sub {
  margin: 0;
  font-size: clamp(12px, 1.6vw, 15.5px);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

.hero__brand { position: absolute; z-index: 2; left: 22px; bottom: 16px; color: #fff; line-height: 1.2; }
.hero__brand-en { display: block; font-family: var(--font-script); font-size: 30px; text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5); }
.hero__brand-jp { font-size: 11.5px; letter-spacing: 0.22em; opacity: 0.9; }

/* アクション列 */
.post-card__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 18px 4px;
  color: var(--ink);
}
.post-card__actions .icon { width: 1.75em; height: 1.75em; }
.post-card__actions a, .post-card__actions button {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: inherit;
  display: inline-flex;
  transition: transform 0.12s;
}
.post-card__actions a:hover, .post-card__actions button:hover { transform: scale(1.12); opacity: 1; }

.like-btn.is-liked { color: var(--rose-hot); }
.like-btn.is-liked svg path { fill: currentColor; }

.post-card__pager { flex: 1; display: flex; justify-content: center; gap: 5px; }
.post-card__pager i { width: 6px; height: 6px; border-radius: 50%; background: var(--pink-line); }
.post-card__pager i.is-on { background: var(--rose); }
.post-card__save { margin-left: auto; }
.post-card__pager + .post-card__save { margin-left: 0; }

/* キャプション */
.post-card__caption { padding: 6px 18px 18px; }
.post-card__caption p { margin: 0 0 6px; font-size: 14px; }
.hashtags span { color: var(--link); margin-right: 2px; }
.post-card__time { font-size: 11.5px; color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   バナー
   -------------------------------------------------------------------------- */

.banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}

.banner {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: var(--radius);
  padding: 22px 20px;
  color: #fff;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s;
}
.banner:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); opacity: 1; }
.banner--snack { background: radial-gradient(400px 200px at 90% -30%, rgba(255, 150, 190, 0.5) 0%, transparent 60%), var(--grad-rose); }
.banner--casting { background: radial-gradient(400px 200px at 90% -30%, rgba(190, 160, 255, 0.5) 0%, transparent 60%), var(--grad-purple); }

.banner__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: none;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
}
.banner__icon .icon { width: 1.8em; height: 1.8em; }

.banner__texts { display: grid; gap: 1px; line-height: 1.45; min-width: 0; }
.banner__texts small { font-size: 11.5px; opacity: 0.9; letter-spacing: 0.1em; }
.banner__texts strong { font-family: var(--font-script); font-size: 24px; font-weight: 600; }
.banner__texts em { font-style: normal; font-size: 12px; font-weight: 700; display: flex; align-items: center; gap: 4px; }
.banner__texts em .icon { width: 1.1em; height: 1.1em; background: rgba(255,255,255,0.25); border-radius: 50%; padding: 2px; }

/* --------------------------------------------------------------------------
   右レール
   -------------------------------------------------------------------------- */

.rail-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 18px 16px;
}

.side-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 700;
}
.side-title__more { font-size: 11.5px; font-weight: 500; color: var(--rose); flex: none; }

/* ミニフィード */
.minifeed {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 4px;
}
.minifeed li { min-width: 0; }
.minifeed a {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 7px 6px;
  border-radius: 12px;
  transition: background 0.15s;
}
.minifeed a:hover { background: var(--pink-bg); opacity: 1; }
.minifeed__texts { flex: 1; min-width: 0; line-height: 1.4; }
.minifeed__texts strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.minifeed__texts small { font-size: 11px; color: var(--ink-soft); }
.minifeed__thumb { flex: none; width: 48px; height: 48px; border-radius: 10px; overflow: hidden; }
.minifeed__thumb img, .minifeed__thumb .thumb-placeholder { width: 100%; height: 100%; object-fit: cover; }

/* キャスティンググリッド */
.casting-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.casting-grid__item { display: grid; gap: 5px; min-width: 0; }
.casting-grid__item img, .casting-grid__item .thumb-placeholder {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.casting-grid__label {
  font-size: 11px;
  color: var(--ink-soft);
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* サムネイルプレースホルダー */
.thumb-placeholder {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.8);
  background: linear-gradient(140deg, hsl(var(--ph-h, 335), 70%, 72%) 0%, hsl(var(--ph-h, 335), 65%, 48%) 100%);
}
.thumb-placeholder .icon { width: 1.6em; height: 1.6em; }

/* お知らせリスト */
.newslist { list-style: none; margin: 0; padding: 0 18px 14px; }
.feed-news { padding-top: 14px; }
.feed-news .side-title { padding: 0 18px; }
.newslist a {
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding: 9px 6px;
  border-top: 1px dashed var(--pink-line);
  font-size: 13.5px;
  min-width: 0;
}
.newslist li:first-child a { border-top: 0; }
.newslist time { flex: none; color: var(--rose); font-weight: 700; font-size: 12.5px; }
.newslist span { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* --------------------------------------------------------------------------
   下層ページ・アーカイブ
   -------------------------------------------------------------------------- */

.page-title {
  font-family: var(--font-round);
  font-size: 24px;
  font-weight: 900;
  color: var(--rose-deep);
  margin: 4px 0 20px;
  letter-spacing: 0.04em;
}

.archive-grid { display: grid; gap: 20px; }

.archive-card__link { display: grid; grid-template-columns: 220px 1fr; }
.archive-card__thumb { min-height: 150px; }
.archive-card__thumb img, .archive-card__thumb .thumb-placeholder { width: 100%; height: 100%; object-fit: cover; display: block; }
.archive-card__body { padding: 16px 20px; }
.archive-card__excerpt { margin: 4px 0 0; font-size: 13.5px; color: var(--ink-soft); }

.page-card__thumb img { width: 100%; display: block; }
.page-card__content { padding: 10px 26px 28px; }
.entry-title { font-family: var(--font-round); font-size: 22px; font-weight: 900; color: var(--rose-deep); margin: 6px 0 16px; }
.entry-content h2 {
  font-family: var(--font-round);
  font-size: 19px;
  font-weight: 700;
  color: var(--rose-deep);
  border-bottom: 2px solid var(--pink-soft);
  padding-bottom: 6px;
  margin: 30px 0 14px;
}
.entry-content h3 { font-size: 16px; color: var(--rose); margin: 24px 0 10px; }
.entry-content a { color: var(--link); text-decoration: underline; }
.entry-content img { border-radius: 12px; }
.entry-content table { border-collapse: collapse; width: 100%; }
.entry-content th, .entry-content td { border: 1px solid var(--pink-line); padding: 9px 12px; text-align: left; }
.entry-content th { background: var(--pink-bg); }

.empty-card { padding: 34px 26px; text-align: center; color: var(--ink-soft); }

/* SNSボタン・代表プロフィール */
.entry-content a.btn-ig,
.entry-content a.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 99px;
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none !important;
  box-shadow: var(--shadow-hover);
  margin: 4px 6px 4px 0;
  transition: transform 0.15s;
}
.entry-content a.btn-ig { background: var(--ring); }
.entry-content a.btn-line { background: linear-gradient(135deg, #06c755 0%, #05a648 100%); }
.entry-content a.btn-ig:hover,
.entry-content a.btn-line:hover { transform: translateY(-2px); opacity: 1; }

.rep-profile {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  flex-wrap: wrap;
  background: var(--pink-bg);
  border-radius: 14px;
  padding: 20px;
}
.rep-profile__photo {
  width: 200px;
  flex: none;
  border-radius: 14px;
}
.rep-profile__body { flex: 1; min-width: 240px; }
.rep-profile__body p:first-child { margin-top: 0; }
@media (max-width: 640px) {
  .rep-profile__photo { width: 100%; max-width: 260px; margin: 0 auto; }
}

/* 所属タレントグリッド */
.talent-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px 14px;
  margin: 18px 0 26px;
}
.talent-grid__item { display: grid; gap: 8px; text-align: center; justify-items: center; }
.entry-content .talent-grid a { text-decoration: none; color: inherit; }
.talent-grid__ring {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 4px;
  background: var(--ring);
  transition: transform 0.18s;
}
.talent-grid__item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50% !important;
  border: 4px solid #fff;
  display: block;
  background: #fff;
}
.talent-grid__item:hover .talent-grid__ring { transform: scale(1.05); }
.talent-grid__name { font-size: 13px; font-weight: 700; color: var(--ink); }
@media (max-width: 640px) {
  .talent-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px 10px; }
  .talent-grid__name { font-size: 11.5px; }
}

/* インスタ風フォトグリッド */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0;
}
.insta-grid a {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 10px;
}
.insta-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
  transition: transform 0.25s;
  display: block;
}
.insta-grid a:hover img { transform: scale(1.05); }
@media (max-width: 640px) {
  .insta-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.pagination .nav-links { display: flex; gap: 8px; justify-content: center; }
.pagination .page-numbers {
  display: grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
  font-weight: 700;
  font-size: 13.5px;
}
.pagination .page-numbers.current { background: var(--grad-rose); color: #fff; }

.post-nav { display: flex; justify-content: space-between; gap: 16px; font-size: 13px; color: var(--rose); }

/* --------------------------------------------------------------------------
   Googleクチコミ：コメント欄風モーダル
   -------------------------------------------------------------------------- */

.reviews-modal { position: fixed; inset: 0; z-index: 100; }

.reviews-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 5, 18, 0.5);
  opacity: 0;
  transition: opacity 0.25s;
}

.reviews-modal__sheet {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 24px);
  width: min(560px, 100%);
  max-height: 78vh;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: transform 0.25s, opacity 0.25s;
}

.reviews-modal.is-open .reviews-modal__backdrop { opacity: 1; }
.reviews-modal.is-open .reviews-modal__sheet { transform: translate(-50%, 0); opacity: 1; }

.reviews-modal__grip {
  width: 40px;
  height: 4px;
  border-radius: 4px;
  background: var(--pink-line);
  margin: 10px auto 2px;
  flex: none;
}

.reviews-modal__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 12px;
  border-bottom: 1px solid var(--pink-line);
  flex: none;
}
.reviews-modal__head strong { font-size: 15.5px; }
.reviews-modal__rating { font-size: 12px; color: #e8a13c; }
.reviews-modal__rating em { font-style: normal; font-weight: 700; color: var(--ink); }
.reviews-modal__close {
  margin-left: auto;
  background: none;
  border: 0;
  font-size: 26px;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 2px 6px;
}

.reviews-modal__list {
  list-style: none;
  margin: 0;
  padding: 6px 18px;
  overflow-y: auto;
}

.review-row {
  display: flex;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px dashed var(--pink-soft);
}
.review-row:last-child { border-bottom: 0; }

.review-row__avatar {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ring);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}

.review-row__body { flex: 1; min-width: 0; }
.review-row__meta { margin: 0 0 3px; font-size: 13px; }
.review-row__stars { color: #e8a13c; font-size: 11.5px; letter-spacing: 1px; margin-left: 4px; }
.review-row__text { margin: 0; font-size: 13.5px; line-height: 1.75; }

.review-row__heart { flex: none; color: var(--rose-hot); align-self: center; }
.review-row__heart .icon { width: 1.1em; height: 1.1em; }
.review-row__heart svg path { fill: currentColor; }

.reviews-modal__foot {
  flex: none;
  padding: 12px 18px calc(14px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--pink-line);
  text-align: center;
}
.reviews-modal__foot a { font-size: 13px; font-weight: 700; color: var(--rose); }

@media (min-width: 861px) {
  .reviews-modal__sheet {
    bottom: auto;
    top: 50%;
    transform: translate(-50%, calc(-50% + 20px));
    border-radius: 22px;
    max-height: 72vh;
  }
  .reviews-modal.is-open .reviews-modal__sheet { transform: translate(-50%, -50%); }
  .reviews-modal__grip { display: none; }
  .reviews-modal__head { padding-top: 16px; }
}

/* --------------------------------------------------------------------------
   フッター
   -------------------------------------------------------------------------- */

/* 店舗情報・アクセス（フッター上） */
.shopinfo {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  padding: 22px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.shopinfo__map {
  border-radius: 14px;
  overflow: hidden;
  min-height: 220px;
  border: 1px solid var(--pink-line);
}
.shopinfo__map iframe { display: block; width: 100%; height: 100%; min-height: 220px; border: 0; }
.shopinfo__body { display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.shopinfo__name { margin: 0 0 14px; font-size: 18px; font-weight: 800; color: var(--ink); }
.shopinfo__list { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 11px; font-size: 13.5px; color: var(--ink-soft); }
.shopinfo__list li { display: flex; gap: 9px; align-items: flex-start; line-height: 1.5; }
.shopinfo__list .icon { flex: none; width: 1.15em; height: 1.15em; margin-top: 2px; color: var(--rose); }
.shopinfo__list a { color: var(--ink-soft); }
.shopinfo__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.shopinfo__route, .shopinfo__ig {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.shopinfo__route .icon, .shopinfo__ig .icon { width: 1.15em; height: 1.15em; }
.shopinfo__route { background: var(--grad-rose); color: #fff; }
.shopinfo__ig { background: var(--pink-bg); color: var(--rose); border: 1px solid var(--pink-line); }

.site-footer {
  grid-column: 1 / -1;
  border-top: 1px solid var(--pink-line);
  padding: 20px 6px 4px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--ink-soft);
}
.site-footer__links { display: flex; gap: 12px; align-items: center; }
.site-footer__links span { color: var(--pink-line); }
.site-footer__copy { margin: 0; }

/* --------------------------------------------------------------------------
   モバイル
   -------------------------------------------------------------------------- */

.bottom-nav { display: none; }

@media (max-width: 1080px) {
  .app__body { padding: 20px 18px 96px; }
  .content-grid { grid-template-columns: 1fr; }
  .feed, .rail, .feed--single { grid-column: 1; }
  .rail { position: static; }
  .shopinfo { grid-template-columns: 1fr; gap: 16px; }
}

.sidebar__mobile-icons { display: none; }

@media (max-width: 860px) {
  .app { display: block; }

  /* サイドバー → 上部バー */
  .sidebar {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    height: auto;
    overflow: visible;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.92);
  }

  .sidebar__mobile-icons { display: flex; align-items: center; gap: 4px; }
  .sidebar__mobile-icons > a {
    display: grid;
    place-items: center;
    padding: 8px;
    color: var(--ink);
  }
  .sidebar__mobile-icons > a .icon { width: 1.7em; height: 1.7em; }
  .sidebar__brand { padding: 0; }
  .sidebar__logo { width: 110px; margin: 0; }

  .sidebar__toggle {
    display: grid;
    gap: 5px;
    background: none;
    border: 0;
    padding: 10px 6px;
    cursor: pointer;
  }
  .sidebar__toggle span { width: 24px; height: 2.5px; border-radius: 3px; background: var(--rose); transition: 0.2s; }
  .sidebar__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .sidebar__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .sidebar__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .sidebar__nav, .btn-reserve, .sidebar__info { display: none; width: 100%; }
  /* メニュー展開時：画面全体を覆う固定オーバーレイ（どのスクロール位置でも見える） */
  .sidebar.is-open {
    position: fixed;
    inset: 0;
    z-index: 100;
    height: 100vh;
    height: 100dvh;
    align-content: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    background: rgba(255, 255, 255, 0.98);
  }
  .sidebar.is-open .sidebar__nav { display: block; padding-top: 12px; }
  .sidebar.is-open .btn-reserve { display: flex; margin: 14px 0; }
  .sidebar.is-open .sidebar__info { display: block; padding-bottom: 8px; }

  /* ボトムナビ */
  .bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    display: flex;
    justify-content: space-around;
    align-items: end;
    padding: 8px 6px calc(8px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--pink-line);
    backdrop-filter: blur(8px);
  }
  .bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 10px;
    color: var(--ink-soft);
    min-width: 56px;
  }
  .bottom-nav a .icon { width: 1.7em; height: 1.7em; color: var(--rose); }
  .bottom-nav a.is-active { color: var(--rose); font-weight: 700; }
  .bottom-nav__reserve {
    margin-top: -22px;
  }
  .bottom-nav__reserve .icon {
    display: grid;
    place-items: center;
    width: 48px !important;
    height: 48px !important;
    box-sizing: border-box;
    border-radius: 50%;
    background: var(--grad-rose);
    color: #fff !important;
    padding: 12px;
    box-shadow: 0 6px 16px rgba(194, 37, 92, 0.4);
  }

  .banners { grid-template-columns: 1fr; }
  .archive-card__link { grid-template-columns: 1fr; }
  .archive-card__thumb { max-height: 200px; overflow: hidden; }
  .story__ring { width: 66px; height: 66px; }
  .story { width: 74px; }
  .story__plus { top: 44px; }
  .site-footer { justify-content: center; text-align: center; }
}

/* --------------------------------------------------------------------------
   スマホ：インスタアプリ風（エッジtoエッジのフィード＋アイコンのみボトムナビ）
   -------------------------------------------------------------------------- */

@media (max-width: 640px) {
  body { background: #fff; }

  .app__body {
    padding: 0 0 84px;
    gap: 0;
  }
  .content-grid { gap: 0; }

  /* ストーリーズ：白背景で上部バー直下に */
  .stories {
    background: #fff;
    padding: 12px 12px 10px;
    margin-bottom: 0;
    border-bottom: 1px solid var(--pink-line);
  }

  /* 投稿カード：端から端まで */
  .post-card {
    border-radius: 0;
    box-shadow: none;
    border-bottom: 8px solid var(--pink-bg);
    margin-bottom: 0;
  }

  /* ヒーローはインスタ投稿っぽく正方形寄りに */
  .hero { aspect-ratio: 1 / 1; }
  .hero__copy { font-size: 24px; }
  .hero__sub { font-size: 12.5px; }

  /* バナー・お知らせは少し内側に */
  .banners { padding: 14px 14px 6px; gap: 12px; margin-bottom: 0; background: #fff; }
  .feed-news { border-bottom: 0; }

  /* 右レール（縦積み時） */
  .rail { gap: 0; }
  .rail-card {
    border-radius: 0;
    box-shadow: none;
    border-top: 8px solid var(--pink-bg);
  }

  /* 下層ページ */
  .feed--single { padding: 16px 14px 0; }
  .feed--single .post-card { border: 0; border-radius: var(--radius); box-shadow: var(--shadow); }

  .site-footer { margin: 0 14px; }

  /* 店舗情報：エッジtoエッジ */
  .shopinfo {
    border-radius: 0;
    box-shadow: none;
    border-top: 8px solid var(--pink-bg);
    margin-top: 0;
    padding: 20px 16px;
  }

  /* ボトムナビ：アイコンのみ（インスタ風） */
  .bottom-nav { padding: 10px 6px calc(10px + env(safe-area-inset-bottom)); }
  .bottom-nav a span:not(.icon) { display: none; }
  .bottom-nav a .icon { width: 2em; height: 2em; color: var(--ink); }
  .bottom-nav a.is-active .icon { color: var(--rose); }
  .bottom-nav__reserve { margin-top: -26px; }
  .bottom-nav__reserve .icon {
    width: 54px !important;
    height: 54px !important;
    padding: 13px;
    color: #fff !important;
    border: 4px solid #fff;
    box-sizing: border-box;
  }
}
