@charset "UTF-8";
/* FAM333 redesign 2026-09 — tokens 正本: docs/design/tokens.yaml
   既存 CSS（style.css / style_*.css / bulma）は編集しない。このファイルは最後に読み込み、.rd- 名前空間だけを装飾する。
   style.css は html{font-size:62.5%} なので、ここは px で統一する。
   色の規則: 白文字 on #EFCA50 禁止 / #AD8500 の文字は 18.66px 以上の bold のみ / #AD8500 on #F7E4A7 は不使用。 */

/* ================================================== */
/* tokens */
/* ================================================== */
:root {
  --rd-primary: #EFCA50;
  --rd-primary-dark: #AD8500;
  --rd-bg-light: #FFF7DD;
  --rd-secondary: #F7E4A7;
  --rd-text: #222222;
  --rd-white: #ffffff;
  --rd-gray: #555555;
  --rd-border: rgba(34,34,34,.25);
  --rd-shadow-panel: 0 12px 40px rgba(34,34,34,.12);
  --rd-shadow-card: 0 10px 30px rgba(34,34,34,.10);
  --rd-shadow-soft: 0 2px 12px rgba(34,34,34,.08);
  --rd-shadow-sticky: 0 -4px 16px rgba(34,34,34,.08);
  --rd-radius-button: 10px;
  --rd-radius-card: 16px;
  --rd-radius-card-small: 12px;
  --rd-radius-image: 14px;
  --rd-radius-panel: 20px;
  --rd-radius-pill: 999px;
  --rd-font-heading: "M PLUS 1p", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", Meiryo, sans-serif;
  --rd-header-h: 64px;
}

/* ================================================== */
/* reset: style.css の ul,ol,p{margin:0 0 3rem} を新部品の中だけ打ち消す（:where で詳細度 0 → 後続の .rd- クラスが勝つ） */
/* ================================================== */
:where(.rd-header, .rd-footer, .rd-sticky, .rd-cta, .rd-container) :where(ul, ol, p, figure) {
  margin: 0;
}
/* 既存マークアップをそのまま入れた列（news のお知らせ）は元の段落間隔を保つ */
.rd-legacy :where(ul, ol, p) {
  margin-bottom: 30px;
}

/* ================================================== */
/* header（全ページ共通） */
/* ================================================== */
header.rd-header {
  background-color: var(--rd-white);
  box-shadow: var(--rd-shadow-soft);
  font-size: 14px;
  left: 0;
  line-height: 1.4;
  padding: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}
.rd-header a {
  color: var(--rd-text);
  font-weight: 700;
  text-decoration: none;
}
.rd-header a:hover {
  color: var(--rd-text);
}
.rd-header a:focus-visible,
.rd-footer a:focus-visible,
.rd-sticky a:focus-visible,
.rd-page a:focus-visible,
.rd-page summary:focus-visible {
  outline: 3px solid var(--rd-text);
  outline-offset: 2px;
}
.rd-header__bar {
  align-items: center;
  display: flex;
  gap: 20px;
  height: var(--rd-header-h);
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 24px;
}
.rd-header__logo {
  flex: none;
  line-height: 0;
}
.rd-header__logo img {
  height: 40px;
  margin: 0;
  width: 40px;
}
.rd-header__nav {
  display: flex;
  gap: 20px;
  white-space: nowrap;
}
.rd-header__nav a {
  align-items: center;
  display: inline-flex;
  min-height: 44px;
}
.rd-header__nav a:hover {
  box-shadow: inset 0 -3px 0 var(--rd-primary);
}
.rd-header__right {
  align-items: center;
  display: flex;
  gap: 14px;
  margin-left: auto;
}
.rd-header .rd-lang {
  display: flex;
  gap: 2px;
}
.rd-header .rd-lang li a {
  align-items: center;
  background: transparent;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  color: var(--rd-gray);
  display: inline-flex;
  min-height: 44px;
  padding: 0 8px;
}
.rd-header .rd-lang li a:hover {
  background: transparent;
  color: var(--rd-text);
}
.rd-header .rd-lang li.toggle_enable a {
  background: transparent;
  border-bottom-color: var(--rd-text);
  color: var(--rd-text);
}
.rd-header__badge {
  flex: none;
  height: 44px;
  width: 44px;
}
header.rd-header .restaurant-guru-award {
  height: 44px;
  width: 44px;
}
header.rd-header .restaurant-guru-award__scale {
  height: 185px;
  transform: scale(.238);
  width: 185px;
}
.rd-header__cta a {
  align-items: center;
  background: var(--rd-text);
  border-radius: var(--rd-radius-button);
  color: var(--rd-white);
  display: inline-flex;
  min-height: 44px;
  padding: 0 16px;
  white-space: nowrap;
}
.rd-header__cta a:hover {
  background: #000000;
  color: var(--rd-white);
}
.rd-header__row2 {
  display: none;
}
@media screen and (min-width: 1280px) {
  .rd-header { font-size: 15px; }
  .rd-header__bar { gap: 28px; padding: 0 40px; }
  .rd-header__nav { gap: 28px; }
}
@media screen and (max-width: 1023px) {
  .rd-header__bar { height: 52px; padding: 0 16px; }
  .rd-header__logo img { height: 36px; width: 36px; }
  .rd-header__nav,
  .rd-header__badge,
  .rd-header__cta { display: none; }
  .rd-header__row2 {
    border-top: 1px solid var(--rd-secondary);
    display: flex;
    font-size: 13px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 640px;
    padding: 0 12px;
    white-space: nowrap;
  }
  .rd-header__row2 a {
    align-items: center;
    display: inline-flex;
    min-height: 44px;
    padding: 0 2px;
  }
}

/* ================================================== */
/* buttons */
/* ================================================== */
.rd-btn {
  align-items: center;
  border: 2px solid transparent;
  border-radius: var(--rd-radius-button);
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  line-height: 1.4;
  min-height: 48px;
  padding: 10px 24px;
  text-decoration: none;
}
.rd-btn--primary { background: var(--rd-primary); color: var(--rd-text); }
.rd-btn--primary:hover { background: var(--rd-text); color: var(--rd-white); }
.rd-btn--secondary { background: var(--rd-white); border-color: var(--rd-text); color: var(--rd-text); }
.rd-btn--secondary:hover { background: var(--rd-text); color: var(--rd-white); }
.rd-btn--dark { background: var(--rd-text); color: var(--rd-white); }
.rd-btn--dark:hover { background: #000000; color: var(--rd-white); }
.rd-btn__suffix {
  font-size: 12px;
  font-weight: 700;
  opacity: 1;
}

/* ================================================== */
/* 2 レーン CTA（cta_lanes.html）— 全ページで使える自己完結部品 */
/* ================================================== */
section.rd-cta {
  background: var(--rd-white);
  font-size: 15px;
  line-height: 1.8;
  padding: 56px 0;
}
.rd-cta__inner {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 40px;
}
.rd-cta__lead {
  font-family: var(--rd-font-heading);
  font-size: 24px;
  font-weight: 800;
  grid-column: 1 / -1;
  line-height: 1.3;
  margin: 0;
  text-align: center;
}
.rd-cta__lane {
  border-radius: var(--rd-radius-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
}
.rd-cta__lane--ind { background: var(--rd-bg-light); }
.rd-cta__lane--corp { background: var(--rd-primary); }
.rd-cta__label {
  color: var(--rd-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.5;
}
.rd-cta__title {
  font-family: var(--rd-font-heading);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
}
.rd-cta__lane .button,
.rd-cta__lane .rd-cta__action {
  margin-top: auto;
  text-align: left;
}
.rd-cta__lane .button a {
  align-items: center;
  background-color: var(--rd-primary);
  border-radius: var(--rd-radius-button);
  color: var(--rd-text);
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  min-height: 48px;
  padding: 10px 24px;
}
.rd-cta__lane .button a:hover {
  background-color: var(--rd-text);
  color: var(--rd-white);
}
@media screen and (max-width: 767px) {
  section.rd-cta { padding: 40px 0; }
  .rd-cta__inner { gap: 16px; grid-template-columns: 1fr; padding: 0 16px; }
  .rd-cta__lane { padding: 20px; }
  .rd-cta__title, .rd-cta__lead { font-size: 20px; }
}

/* ================================================== */
/* footer（全ページ共通） */
/* ================================================== */
footer.rd-footer {
  background: var(--rd-bg-light);
  border-top: 0;
  font-size: 14px;
  line-height: 1.8;
  padding: 56px 0 24px;
  text-align: left;
}
.rd-footer__inner {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 40px;
}
.rd-footer__cols {
  display: grid;
  gap: 32px;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
}
.rd-footer__brand img {
  height: 48px;
  margin: 0 0 12px;
  width: 48px;
}
.rd-footer__brand p {
  color: var(--rd-gray);
  font-size: 13px;
}
.rd-footer__heading {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  margin: 0 0 8px;
}
.rd-footer__cols a {
  align-items: center;
  color: var(--rd-text);
  display: inline-flex;
  font-weight: 400;
  min-height: 32px;
  text-decoration: none;
}
.rd-footer__cols a:hover {
  color: var(--rd-text);
  text-decoration: underline;
}
.rd-footer__bottom {
  align-items: center;
  border-top: 1px solid var(--rd-border);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 20px;
}
footer.rd-footer .footer_logos {
  justify-content: flex-start;
}
footer.rd-footer .footer_logos img {
  height: 64px;
  margin: 0;
  width: auto;
}
.rd-footer__copy {
  color: var(--rd-gray);
  font-size: 12px;
}
@media screen and (max-width: 1023px) {
  .rd-footer__cols { grid-template-columns: 1fr 1fr; }
  .rd-footer__brand { grid-column: 1 / -1; }
  /* 固定 2 レーンバーがフッターを隠さない分の余白 */
  footer.rd-footer { padding-bottom: calc(88px + env(safe-area-inset-bottom)); }
}
@media screen and (max-width: 767px) {
  footer.rd-footer { padding-top: 40px; }
  .rd-footer__inner { padding: 0 16px; }
  .rd-footer__cols { gap: 24px 16px; }
  .rd-footer__cols a { min-height: 44px; }
}

/* ================================================== */
/* モバイル固定 2 レーンバー（sticky_bar.html） */
/* ================================================== */
.rd-sticky {
  display: none;
}
@media screen and (max-width: 1023px) {
  .rd-sticky {
    background: var(--rd-white);
    bottom: 0;
    box-shadow: var(--rd-shadow-sticky);
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr 1fr;
    left: 0;
    line-height: 1.3;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    position: fixed;
    right: 0;
    z-index: 90;
  }
  .rd-sticky__lane {
    align-items: center;
    border-radius: var(--rd-radius-button);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 52px;
    padding: 6px 8px;
    position: relative;
    text-align: center;
  }
  .rd-sticky__lane--ind { background: var(--rd-primary); color: var(--rd-text); }
  .rd-sticky__lane--corp { background: var(--rd-text); color: var(--rd-white); }
  .rd-sticky__lane a {
    color: inherit;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
  }
  .rd-sticky__lane a:hover { color: inherit; }
  /* リンクをレーン全体に広げる（サブラベルも押せる） */
  .rd-sticky__lane a::after {
    content: "";
    inset: 0;
    position: absolute;
  }
  .rd-sticky__sub {
    font-size: 11px;
    font-weight: 700;
  }
}

/* ================================================== */
/* SNS list（sns_list.html） */
/* ================================================== */
.rd-sns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}
.rd-sns li {
  align-items: center;
  background: var(--rd-white);
  border: 1px solid var(--rd-border);
  border-radius: var(--rd-radius-button);
  color: var(--rd-text);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  position: relative;
}
.rd-sns li:hover {
  background: var(--rd-text);
  color: var(--rd-white);
}
.rd-sns li a {
  color: inherit;
  font-weight: 700;
  line-height: 0;
  text-decoration: none;
}
.rd-sns li a:hover { color: inherit; }
.rd-sns li a:not(:has(img)) { line-height: 1.4; }
/* リンクをチップ全体に広げる（Instagram / Facebook は既存 partial がアイコンだけを出すため、ラベルは隣の span） */
.rd-sns li a::after {
  content: "";
  inset: 0;
  position: absolute;
}
.rd-sns li a img,
.rd-sns .sns-icon {
  height: 20px;
  margin: 0;
  width: 20px;
}

/* ================================================== */
/* 刷新済みページの土台（body.rd-page） */
/* ================================================== */
body.rd-page {
  font-size: 15px;
  line-height: 1.8;
  padding-top: var(--rd-header-h);
}
.rd-page [id] {
  scroll-margin-top: 84px;
}
.rd-page h1,
.rd-page h2,
.rd-page h3 {
  font-family: var(--rd-font-heading);
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.3;
}
.rd-page h1 {
  background: none;
  color: var(--rd-text);
  display: block;
  font-size: 44px;
  padding: 0;
}
.rd-page h2 { font-size: 40px; }
.rd-page h3 { font-size: 22px; }
.rd-page section.rd-section { padding: 80px 0; }
.rd-section--white { background: var(--rd-white); }
.rd-section--light { background: var(--rd-bg-light); }
.rd-section--yellow { background: var(--rd-primary); }
.rd-container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 40px;
}
.rd-page img.rd-img {
  border-radius: var(--rd-radius-image);
  height: auto;
  margin: 0;
  width: 100%;
}
.rd-kicker {
  align-items: center;
  color: var(--rd-gray);
  display: flex;
  font-size: 12px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: .14em;
  line-height: 1.5;
  margin: 0 0 12px;
}
.rd-kicker::before {
  background: var(--rd-primary);
  border-radius: 50%;
  content: "";
  flex: none;
  height: 8px;
  width: 8px;
}
.rd-section--yellow .rd-kicker { color: var(--rd-text); }
.rd-section--yellow .rd-kicker::before { background: var(--rd-text); }
/* #AD8500 は large/bold 限定 → 19px/800 固定（モバイルでも縮めない） */
.rd-kicker--gold {
  color: var(--rd-primary-dark);
  font-family: var(--rd-font-heading);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0;
}
.rd-kicker--gold::before { display: none; }
.rd-mark {
  background: linear-gradient(transparent 60%, var(--rd-primary) 60%);
}
.rd-lead {
  font-size: 17px;
  line-height: 1.8;
}
.rd-body {
  color: var(--rd-text);
  margin: 16px 0 0;
}
.rd-muted { color: var(--rd-gray); }
.rd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.rd-split {
  align-items: center;
  display: grid;
  gap: 48px;
}
.rd-split--5-7 { grid-template-columns: 5fr 7fr; }
.rd-split--7-5 { grid-template-columns: 7fr 5fr; }
.rd-split--1-1 { grid-template-columns: 1fr 1fr; }
.rd-split--4-8 { align-items: start; grid-template-columns: 4fr 8fr; }
.rd-grid-4 {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}
.rd-grid-3 {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
.rd-card {
  background: var(--rd-white);
  border-radius: var(--rd-radius-card);
  padding: 28px;
}
.rd-pill {
  background: var(--rd-primary);
  border-radius: var(--rd-radius-pill);
  color: var(--rd-text);
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  padding: 3px 12px;
}
.rd-figure {
  margin: 0;
  position: relative;
}
.rd-figure__caption {
  background: rgba(255,255,255,.9);
  border-radius: 4px;
  color: var(--rd-text);
  font-size: 11px;
  line-height: 1.5;
  padding: 2px 6px;
  position: absolute;
  right: 8px;
  top: 8px;
}

/* ---- 既存節（menu / shopinfo / shop-manager / news）の器だけを替える ---- */
.rd-page .narrow-content { max-width: 880px; }
.rd-page .group { margin-bottom: 32px; }
.rd-page .group:last-child { margin-bottom: 0; }
.rd-page .cards_card { border-radius: var(--rd-radius-card); margin-right: 20px; }
.rd-page .cards_card:last-child { margin-right: 0; }
.rd-page .cards_card_content { padding: 28px; }
.rd-page table { font-size: 15px; }
.rd-page .fs_small { font-size: 13px; }
.rd-page .tab-header {
  border-bottom: 0;
  color: var(--rd-gray);
  font-family: var(--rd-font-heading);
  font-size: 16px;
  gap: 8px;
}
.rd-page .tab-header .tab-trigger {
  align-items: center;
  background: var(--rd-secondary);
  border-bottom: 0;
  border-radius: var(--rd-radius-pill);
  color: var(--rd-text);
  display: flex;
  justify-content: center;
  min-height: 48px;
}
.rd-page .tab-header .tab-trigger:hover,
.rd-page .tab-header .tab-trigger.is-active {
  background: var(--rd-text);
  border-bottom: 0;
  color: var(--rd-white);
}
/* 既存 event_card の dt（#AD8500 13.5pt = 3.42:1）を本文色へ */
.rd-page .event-card_meta dt { color: var(--rd-gray); }

@media screen and (max-width: 1023px) {
  body.rd-page { padding-top: 97px; }
  .rd-page [id] { scroll-margin-top: 112px; }
  .rd-split,
  .rd-split--5-7,
  .rd-split--7-5,
  .rd-split--1-1,
  .rd-split--4-8 { gap: 32px; grid-template-columns: 1fr; }
  .rd-grid-4 { grid-template-columns: 1fr 1fr; }
  .rd-grid-3 { grid-template-columns: 1fr; }
}
@media screen and (max-width: 767px) {
  body.rd-page { font-size: 14px; }
  .rd-page h1 { font-size: 26px; }
  .rd-page h2 { font-size: 28px; }
  .rd-page h3 { font-size: 17px; }
  .rd-page section.rd-section { padding: 40px 0; }
  .rd-container { padding: 0 16px; }
  .rd-lead { font-size: 14px; }
  .rd-card { padding: 18px; }
  .rd-grid-4 { gap: 12px; }
  .rd-btn { width: 100%; }
  .rd-actions { flex-direction: column; }
  .rd-page .cards { display: block; }
  .rd-page .cards_card { margin: 0 0 16px; }
  .rd-page .cards_card_content { padding: 18px; }
  .rd-page .tab-header { font-size: 14px; gap: 4px; }
}

/* ================================================== */
/* top: hero */
/* ================================================== */
.rd-page section#hero-area.rd-hero {
  align-items: flex-end;
  display: flex;
  height: auto;
  min-height: 520px;
  padding: 72px 0 56px;
}
.rd-hero .rd-container { width: 100%; }
.rd-hero__panel {
  background: var(--rd-white);
  border-radius: var(--rd-radius-panel);
  box-shadow: var(--rd-shadow-panel);
  max-width: 600px;
  padding: 36px 40px 32px;
}
.rd-hero__label {
  color: var(--rd-gray);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  margin: 0 0 12px;
}
.rd-hero__h1 span { display: block; }
.rd-hero__h1 .rd-mark { display: inline; }
.rd-hero__lead { margin: 16px 0 0; }
@media screen and (max-width: 767px) {
  .rd-page section#hero-area.rd-hero { min-height: 0; padding: 200px 0 24px; }
  .rd-hero__panel { border-radius: var(--rd-radius-card); padding: 20px 18px; }
}

/* ================================================== */
/* top: pillars */
/* ================================================== */
.rd-page section.rd-pillars { padding: 64px 0 56px; }
.rd-pillars__grid {
  border-top: 2px solid var(--rd-text);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.rd-pillar {
  border-left: 1px solid var(--rd-primary);
  color: var(--rd-text);
  display: block;
  font-weight: 400;
  padding: 28px 24px 8px;
  text-decoration: none;
}
.rd-pillar:first-child { border-left: 0; padding-left: 0; }
.rd-pillar:hover { color: var(--rd-text); }
.rd-pillar:hover .rd-pillar__title { text-decoration: underline; }
.rd-pillar__title {
  display: block;
  font-family: var(--rd-font-heading);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 8px;
}
.rd-pillar__body {
  color: var(--rd-gray);
  display: block;
  font-size: 14px;
  line-height: 1.7;
}
@media screen and (max-width: 1023px) {
  .rd-pillars__grid { grid-template-columns: 1fr 1fr; }
  .rd-pillar:nth-child(odd) { border-left: 0; padding-left: 0; }
}
@media screen and (max-width: 767px) {
  .rd-page section.rd-pillars { padding: 24px 0 32px; }
  .rd-pillars__grid { grid-template-columns: 1fr; }
  .rd-pillar { border-left: 0; border-top: 1px solid var(--rd-primary); padding: 16px 0 12px; }
  .rd-pillar:first-child { border-top: 0; }
  .rd-pillar__title { font-size: 17px; }
}

/* ================================================== */
/* top: A not-beer tiles（実写が来るまで色面。差替時は background-image を足す） */
/* ================================================== */
.rd-tiles {
  display: grid;
  gap: 12px;
  grid-auto-rows: 132px;
  grid-template-columns: repeat(3, 1fr);
}
.rd-tile {
  align-items: flex-end;
  border-radius: var(--rd-radius-image);
  display: flex;
  font-family: var(--rd-font-heading);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  padding: 16px;
}
.rd-tile:nth-child(1) {
  background: repeating-linear-gradient(135deg, var(--rd-primary) 0 12px, var(--rd-secondary) 12px 14px);
  font-size: 20px;
  grid-row: span 2;
}
.rd-tile:nth-child(2),
.rd-tile:nth-child(5) { background: var(--rd-secondary); }
.rd-tile:nth-child(3),
.rd-tile:nth-child(4) { background: var(--rd-bg-light); border: 1px solid var(--rd-secondary); }
.rd-tile span {
  background: rgba(255,255,255,.9);
  border-radius: 4px;
  padding: 2px 8px;
}
@media screen and (max-width: 767px) {
  .rd-tiles { grid-auto-rows: 96px; grid-template-columns: 1fr 1fr; }
  .rd-tile { font-size: 15px; padding: 12px; }
  .rd-tile:nth-child(1) { font-size: 16px; }
}

/* ================================================== */
/* top: B about + stats */
/* ================================================== */
.rd-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 16px;
}
.rd-stat {
  background: var(--rd-white);
  border-radius: var(--rd-radius-card-small);
  padding: 16px 14px;
  text-align: center;
}
.rd-stat__num {
  display: block;
  font-family: var(--rd-font-heading);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}
.rd-stat__label {
  color: var(--rd-gray);
  display: block;
  font-size: 13px;
  margin-top: 6px;
}
.rd-access {
  color: var(--rd-gray);
  font-size: 13px;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .rd-stats { grid-template-columns: 1fr 1fr; }
  .rd-stat__num { font-size: 28px; }
}

/* ================================================== */
/* scene cards（top と /gatherings/ で共用） */
/* ================================================== */
.rd-scene {
  background: var(--rd-white);
  border-radius: var(--rd-radius-card);
  color: var(--rd-text);
  display: flex;
  flex-direction: column;
  font-weight: 400;
  overflow: hidden;
  text-decoration: none;
}
a.rd-scene:hover {
  box-shadow: var(--rd-shadow-card);
  color: var(--rd-text);
}
.rd-page .rd-scene img {
  aspect-ratio: 16 / 9;
  height: auto;
  margin: 0;
  object-fit: cover;
  width: 100%;
}
.rd-scene__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 20px 22px;
}
.rd-scene__title {
  font-family: var(--rd-font-heading);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 8px;
}
.rd-scene__text {
  color: var(--rd-gray);
  font-size: 14px;
  line-height: 1.7;
}
.rd-scene__more {
  font-size: 14px;
  font-weight: 700;
  margin-top: auto;
  padding-top: 12px;
}
.rd-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.rd-services a {
  align-items: center;
  background: var(--rd-white);
  border: 1px solid var(--rd-border);
  border-radius: var(--rd-radius-pill);
  color: var(--rd-text);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  min-height: 44px;
  padding: 0 18px;
  text-decoration: none;
}
.rd-services a:hover { background: var(--rd-text); color: var(--rd-white); }
@media screen and (max-width: 767px) {
  .rd-scene__title { font-size: 16px; }
  .rd-scene__body { padding: 14px; }
  .rd-scene__text { font-size: 13px; }
}

/* ================================================== */
/* top: corporate band */
/* ================================================== */
.rd-page section.rd-corporate { padding: 64px 0; }
.rd-corporate h2 { font-size: 36px; }
.rd-corporate__stats {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}
.rd-corporate__stats .rd-stat {
  border-radius: var(--rd-radius-image);
  padding: 22px 20px;
  text-align: left;
}
.rd-corporate__stats .rd-stat__num { font-size: 36px; line-height: 1.2; }
.rd-corporate__stats .rd-stat__label { color: var(--rd-text); }
@media screen and (max-width: 767px) {
  .rd-page section.rd-corporate { padding: 40px 0; }
  .rd-corporate h2 { font-size: 24px; }
  .rd-corporate__stats .rd-stat__num { font-size: 26px; }
}

/* ================================================== */
/* top: events + app teaser */
/* ================================================== */
.rd-blockhead {
  align-items: baseline;
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.rd-blockhead .rd-kicker { margin: 0; }
.rd-blockhead a {
  color: var(--rd-text);
  font-size: 14px;
  font-weight: 700;
}
.rd-app-teaser {
  background: var(--rd-bg-light);
  border-radius: var(--rd-radius-card);
  padding: 28px;
}
.rd-app-teaser h2,
.rd-app-teaser h3 {
  font-size: 28px;
  margin: 12px 0 16px;
}
.rd-features {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
  margin: 0 0 20px;
}
.rd-feature {
  background: var(--rd-white);
  border-radius: var(--rd-radius-card-small);
  padding: 14px 16px;
}
.rd-feature__title {
  display: block;
  font-size: 14px;
  font-weight: 800;
}
.rd-feature__body {
  color: var(--rd-gray);
  display: block;
  font-size: 13px;
  line-height: 1.6;
}
.rd-app-slot {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .rd-app-teaser { padding: 18px; }
  .rd-app-teaser h2,
  .rd-app-teaser h3 { font-size: 22px; }
  .rd-features { grid-template-columns: 1fr; }
}

/* ================================================== */
/* top: news + sns */
/* ================================================== */
.rd-page #news p.ta_center { text-align: left; }
.rd-follow {
  background: var(--rd-white);
  border-radius: var(--rd-radius-card);
  padding: 28px;
}
.rd-follow .rd-sns { margin: 16px 0 24px; }
@media screen and (max-width: 767px) {
  .rd-follow { padding: 18px; }
}

/* ================================================== */
/* utilities */
/* ================================================== */
.rd-mt-16 { margin-top: 16px; }
.rd-mt-32 { margin-top: 32px; }
.rd-split.rd-split--top { align-items: start; }
/* news: 淡黄の節の上では既存のお知らせカード（bc_light-yellow）を白にして輪郭を出す */
.rd-page #news .cards_card.bc_light-yellow { background-color: var(--rd-white); }

/* ================================================== */
/* 03-B: 既存 4 ページ（service_03 / service_04 / service_coffee-pot / brewery-events） */
/* 各ページの style_*.css は後から読み込まれる → #id を含むセレクタで詳細度を確保する */
/* ================================================== */
/* hero: 各ページ CSS の `#hero-area h1 { font-size: 4.2rem }` を上書き（背景写真は各ページ CSS のまま） */
.rd-page section#hero-area.rd-hero h1 { font-size: 44px; }
/* 問い合わせの説明文（既存 id）→ 直下の 2 レーン CTA と 1 つのまとまりに見せる */
.rd-page section.rd-contact-intro { padding-bottom: 0; }
.rd-page section.rd-contact-intro h2 { text-align: center; }
.rd-page section.rd-contact-intro .rd-body { margin-left: auto; margin-right: auto; max-width: 880px; }
/* service_03: 料金 2 プラン */
.rd-plans {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}
.rd-plan {
  display: flex;
  flex-direction: column;
}
.rd-plan__incl {
  border-top: 1px solid var(--rd-secondary);
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
  list-style: none;
  margin: 16px 0 0;
  padding: 16px 0 0;
}
.rd-plan__incl li { margin: 0 0 6px; padding-left: 1.1em; text-indent: -1.1em; }
.rd-plan__incl li::before { content: '・'; }
.rd-plan__price {
  font-size: 14px;
  font-weight: 700;
  margin: 16px 0 0;
}
.rd-plan__yen {
  font-family: var(--rd-font-heading);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .rd-page section#hero-area.rd-hero h1 { font-size: 26px; }
  .rd-plans { grid-template-columns: 1fr; }
  .rd-plan__yen { font-size: 28px; }
}
/* service_04: プランカードの文字だけコントラストを確保する（style_catering.css は変更しない）。
   #AD8500 on #fff = 3.42:1 → 18.66px 以上の bold のみ可（決裁 #8）/ #FF7F00 on #fff = 2.53:1 は大きな文字でも不可 → 本文色へ。
   枠線（#AD8500 / #FF7F00）と「おすすめ」バッジは文字ではないのでそのまま = おすすめプランの見分けは残る */
.rd-page #menu .plan-normal h3 { font-size: 19px; }
.rd-page #menu .plan-normal .strong-text .fs_small,
.rd-page #menu .plan-strong h3,
.rd-page #menu .plan-strong .strong-text,
.rd-page #menu .plan-strong .strong-text .fs_small { color: var(--rd-text); }

/* ================================================== */
/* top: not-beer tiles のイラスト（static/images/gen_tile_*.svg・2026-09-19）。 */
/* 絵は装飾（名前は span のラベルが担う）。実写が来たら url() を差し替える。 */
/* 既存の nth-child ルールが background ショートハンドで位置・繰り返しを初期化するので、同じ詳細度で後から書く */
/* ================================================== */
.rd-tile:nth-child(1) { background: var(--rd-secondary) url(../images/gen_tile_nonal.svg) no-repeat center 8px / auto 72%; }
.rd-tile:nth-child(2) { background-image: url(../images/gen_tile_wine.svg); }
.rd-tile:nth-child(3) { background-image: url(../images/gen_tile_highball.svg); }
.rd-tile:nth-child(4) { background-image: url(../images/gen_tile_soft.svg); }
.rd-tile:nth-child(5) { background-image: url(../images/gen_tile_food.svg); }
.rd-tile:nth-child(n+2) {
  /* ラベル（左下）と重ならないよう、絵は右上に寄せて 8 割の高さにとどめる */
  background-position: right 2px top 3px;
  background-repeat: no-repeat;
  background-size: auto 80%;
}

/* ================================================== */
/* SNS list: アイコンのみ（2026-09-19）。名前は img の alt。タップ領域 44px は維持 */
/* ================================================== */
.rd-sns--icons li {
  justify-content: center;
  min-width: 44px;
  padding: 0 10px;
}
.rd-sns--icons li a img,
.rd-sns--icons .sns-icon {
  height: 24px;
  object-fit: contain; /* 正方形でない素材（icon_linkedin.png 635×540）を歪ませない */
  width: 24px;
}
/* 黒いアイコン（X / TikTok）が hover の黒地で消えないよう、アイコンのみの時は淡黄へ */
.rd-sns--icons li:hover { background: var(--rd-secondary); color: var(--rd-text); }
/* 店舗情報の表の中: style.css の ul 余白を打ち消す */
.rd-page #shopinfo .rd-sns { margin: 8px 0 0; padding: 0; }

/* ================================================== */
/* top: FOLLOW の YouTube ショート（9:16・iframe は loading=lazy） */
/* ================================================== */
.rd-shorts {
  aspect-ratio: 9 / 16;
  background: var(--rd-text);
  border-radius: var(--rd-radius-image);
  margin: 0 auto;
  max-width: 315px;
  overflow: hidden;
}
.rd-shorts iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}
.rd-shorts__more {
  font-size: 13px;
  margin: 12px 0 0;
  text-align: center;
}

/* ================================================== */
/* 見出しの改行位置（2026-09-19）: エリア名「北参道、原宿、千駄ヶ谷、渋谷」が語の途中（千駄ヶ/谷）で折れないようにする。 */
/* auto-phrase は日本語の文節で折る（Chromium 系）。未対応ブラウザは従来どおりの折り返し。balance は行の長さをそろえる */
/* ================================================== */
.rd-page h1,
.rd-page h2,
.rd-pillar__title,
.rd-hero__label {
  text-wrap: balance;
  word-break: auto-phrase;
}

/* ================================================== */
/* SNS フォロー / チャンネル登録のお願い（follow_band.html・2026-09-20） */
/* ================================================== */
.rd-followband {
  align-items: center;
  background: var(--rd-bg-light);
  border-radius: var(--rd-radius-card);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto;
  padding: 28px;
  text-align: left;
}
.rd-followband p { margin: 0; }
.rd-followband__title {
  font-family: var(--rd-font-heading);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  margin-top: 8px !important;
}
.rd-followband__body { font-size: 14px; line-height: 1.8; margin-top: 8px !important; }
.rd-followband__actions { display: flex; flex-direction: column; gap: 12px; }
.rd-followband .rd-sns { margin: 0; padding: 0; }
/* Top の FOLLOW: ショートの下のお願い文とチャンネル登録ボタン */
.rd-shorts__ask { font-size: 13px; line-height: 1.8; margin: 16px 0 0; }
.rd-shorts__more { align-items: center; display: flex; flex-direction: column; gap: 10px; }
/* メニュー（ビールのタブ）の中の SNS 一覧 */
.rd-page #menu .rd-sns { justify-content: center; margin: 16px 0 0; padding: 0; }
@media screen and (max-width: 767px) {
  .rd-followband { grid-template-columns: 1fr; padding: 18px; }
  .rd-followband__title { font-size: 18px; }
}

/* ================================================== */
/* 修正（2026-09-20）: 英語トップのモバイルで法人実績の 2 枠が横にはみ出す（"companies" が 26px だと 1 枠 178px 未満に縮めない → 373px > 328px）。 */
/* 日本語は影響なしなので :lang(en) に限定。minmax(0,1fr) で列が内容幅に引っ張られないようにする */
/* ================================================== */
@media screen and (max-width: 767px) {
  .rd-corporate__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  html:lang(en) .rd-corporate__stats .rd-stat { padding: 16px 12px; }
  html:lang(en) .rd-corporate__stats .rd-stat__num { font-size: 21px; overflow-wrap: anywhere; }
}
