/* =========================
  Reset / Base
========================= */
* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

/* =========================
  Typography
========================= */
body{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #222;
  background: #fff; /* テスト用ピンクは消す */
  padding-top: 84px;  /* ヘッダーの高さ分 */
}

h1,h2,h3,
.menu-title,.menu-section-title,
.fv__label{
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* =========================
  Layout
========================= */
.container{
  width: min(1500px, calc(100% - 40px));
  margin: 0 auto;
}

/* =========================
  Header
========================= */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
}

.header-inner{
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ロゴ全体 */
.header-logo{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

/* ロゴ画像 */
.header-logo img{
  height: 54px;
  width: auto;
  display: block;
}

/* 文字ブロック */
.header-logo-name{
  display: flex;
  flex-direction: row;
  justify-content: center;
  line-height: 1.2;
  gap: 10px;
}

/* 店名 */
.header-text-name{
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 0;
  color: #222;
}

/* 支店名 */
.header-text-sub{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 7px 0 0;
  color: #666;
}

.header-nav{
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.header-nav a{
  position: relative;
  text-decoration: none;
  color: #222;
  font-size: 14px;
  letter-spacing: 0.08em;
  padding: 8px 0;
}

/* 下線（初期は非表示） */
.header-nav a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #b3131b; /* ブランド赤 */
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

/* hover時に表示 */
.header-nav a:hover::after{
  transform: scaleX(1);
}

.sp-menu {
  display: none;
}
.hamburger{
  display: none;
}

/* =========================
  FV
========================= */
.fv{
  width: 100%;
}

.fv__grid{
  display: grid;
  grid-template-columns: 500px 520px 500px; /* 中央太め */
  height: 720px;
  max-width: 1520px;
  margin: 0 auto;
}

.fv__bg {
    background-size: cover;
    background-position: top;
}

.fv__bg--left {
    background-image: url("../img/fv_1.jpg");
}

.fv__bg--center {
    background-image: url("../img/fv_2.png");
}

.fv__bg--right {
    background-image: url("../img/fv_3.jpg");
}

/* =========================
  FV バナー（中央）
========================= */
/* バッジ（赤い縦長） */
.fv__badge{
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;  /* デザインに合わせて微調整 */
  z-index: 99;
  text-align: center;
}

/* 関東初出店（文字） */
.fv__label{
  width: 100%;
  position: absolute;
  top: 105px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 36px;
  letter-spacing: .15em;
}

/* 見出し画像 */
.fv__heading1{
  width: 80%;
  margin: -273px auto 0;
}

.fv__line{
  margin: 16px auto;
  width: 80%;
}

.fv__band {
  width: 63px;
  height: 20px;
  margin-left: 170px;
  margin-top: -16px;
  transform: rotateY(65deg);
}

.fv__heading2{
  width: 70%;
  margin: 10px auto 0;
}

/* 右下の白い帯（斜め） */
.fv-redband {
    height: 240px;
    background-image: url("../img/banner_under.png") center top / cover no-repeat;
    margin-top: -1px;
}

/* =========================
  FV 下の赤帯＋カード2枚（specialty / standard）
========================= */
.fv-picks{
  width: 100%;
  max-width: 1920px;
  /* 赤帯は画像で再現 */
  background: url("../img/banner_under.png") center top / cover no-repeat;
}

.fv-picks__inner{
  width: min(1120px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  top: 110px;
  position: relative;
}

/* aカード共通 */
.fv-picks__card{
    position: relative;
    display: block;
    background: #fff;
    border-radius: 3px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .10);
    color: inherit;
    border: 1px solid rgb(245 239 239 / 0%);
}

/* ラベル */
.fv-picks__tag{
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 4px;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
  letter-spacing: .04em;
}
.fv-picks__tag--red{
  background: #B31B29;
  top: 0;
  left: 0;
  border-radius: 0; 
}

.fv-picks__tag--navy{ 
  background:#19212C; 
  top: 0;
  left: 0;
  border-radius: 0; 
}

/* 右：画像 */
.fv-picks__media{
  background: #F9F8F6;
  display: block;
  width: 100%;
  height: 280px;
  background-size: cover;
  background-image: url(../img/standard_udon.png);
  background-repeat:no-repeat;
  box-sizing: border-box;
  background-position: center;
}
.fv-picks__media-left{
  display: block;
  width: 100%;
  height: 280px;
  background-image: url(../img/neo_bukkake.png);
  background-size: 784px 525px;
  background-repeat:no-repeat;
  box-sizing: border-box;
  background-position: center;
}

/* テキスト部 */
.fv-picks__content{
  padding: 18px 28px 30px;
}
.fv-picks__content--tight{
  padding-top: 18px;
}

.fv-picks__title{
  margin: 0 0 14px;
  font-family: "Noto Serif JP", serif; /* 指示通り */
  font-weight: 600;
  font-size: 28px;
  letter-spacing: .02em;
  color: #19212C;
}

.fv-picks__lead{
  display: grid;
  grid-template-columns: 3px 1fr;
  gap: 14px;
  align-items: start;
}

.fv-picks__bar{
  width: 3px;
  height: 46px;
  background:#D9D9D9;
  border-radius: 99px;
  margin-top: 2px;
}

.fv-picks__text{
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif; /* 指示通り */
  font-weight: 400;
  font-size: 16px;
  line-height: 1.9;
  color: #6B7280;
}

/* =========================
  OUR PASSION（3つのこだわり）
========================= */
.passion{
  background:#f7f3ef;
  padding: 105px 0 0;
  overflow:visible;  /* 上に重なる要素が切れない */
}

.passion__inner{
  max-width:1200px;
  margin:0 auto;
  text-align:center;
  position:relative;
}

/* 指示どおり */
.passion__eyebrow{
  font-family:"Zen Kaku Gothic New", sans-serif;
  font-weight:700;
  font-size:14px;
  letter-spacing: 0.1em;
  color:#b3131b;
  margin: 80px auto 0;
}

.passion__title{
  font-family:"Noto Serif JP", serif;
  font-weight:700;
  font-size:36px;
  margin:0 0 18px;
  color:#222;
}

.passion__lead{
  font-family:"Noto Serif JP", serif;
  font-weight:400;
  font-size:16px;
  line-height:1.9;
  color:#666;
  margin:0 0 60px;
}
.passion__lead span:nth-child(2){
  display: none;
}

/* 3カード */
.passion__cards{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:32px;
  align-items:stretch;
}

/* カード本体（影・角丸・下に白エリア） */
.passion-card{
  height: 444px;
  position:relative;
  border-radius:6px;
  /*overflow:hidden;*/
  background:#fff;
  box-shadow:0 12px 28px rgba(0,0,0,.10);
  text-align:left;
}

/* 画像エリア：背景画像で */
.passion-card__media{
  height:260px;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

/* 下の白エリア */
.passion-card__body{
  padding:26px 26px 30px;
}

.passion-card__title{
  font-family:"Noto Serif JP", serif;
  font-weight:700;
  font-size:18px;
  margin:0 0 14px;
  color:#222;
  position:relative;
}

/* 左の縦線っぽいアクセント（見本の雰囲気） */
.passion-card__title::before{
  content:"";
  display:inline-block;
  width:2px;
  height:18px;
  background:#e6e0da;
  margin-right:10px;
  vertical-align:-3px;
}

.passion-card__text{
  font-family:"Zen Kaku Gothic New", sans-serif;
  font-weight:400;
  font-size:13px;
  line-height:2.0;
  color:#555;
  margin:0;
}
.passion-card__text span:nth-child(2){
  display: none;
}

/* 右下の丸番号 */
.passion-card__num{
  position:absolute;
  right:18px;
  top:235px; /* 画像と白エリアの境目に被せる（見本の位置感） */
  width:54px;
  height:54px;
  border-radius:50%;
  background:#b3131b;
  color:#fff;
  font-family:"Noto Serif JP", serif;
  font-weight:700;
  font-size:16px;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* 背景画像の割当 */
.passion-card--01 .passion-card__media{ 
  background-image:url("../img/soup_stock.jpg"); 
}
.passion-card--02 .passion-card__media{ 
  background-image:url("../img/udon_our-passion.jpg"); 
}

.passion-card--03 .passion-card__media{
  height: 260px;
  border-radius: 8px 8px 0 0;
  background-image: url("../img/neo_bukkake.png");
  background-repeat: no-repeat;
  background-size: 183%;
  background-position: 50% 35%;
}

/* 右カードの二重円（SVGを使う方が綺麗。これで“裏に重なる”） */
.passion-card--03{ 
  position:relative; 
}

.passion-card__rings{
  position:absolute;
  inset:-40px -60px -60px -60px; /* 少しはみ出す */
  background:url("../img/SVG.svg") no-repeat 70% 35%;
  background-size:366px auto;
  opacity:.55;
  pointer-events:none;
  z-index:0;
  transform: translateY(-120px);
  background-position: 62% calc(55% - 104px);/* ←ここで上へ */
  /*outline: 2px solid red;        /* 要素の場所確認 */
  /*background-color: rgba(255,0,0,.06); /* 面が見えるか確認 */
}

.passion-card--03 .passion-card__media,
.passion-card--03 .passion-card__body,
.passion-card--03 .passion-card__num{
  z-index:1; /* 二重円の上にコンテンツ */
}

/* 左右の縦文字（見本どおり） */
.passion__side{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  writing-mode:vertical-rl;
  text-orientation:mixed;
  font-family:"Zen Kaku Gothic New", sans-serif;
  font-weight:500;
  font-size:12px;
  letter-spacing:.35em;
  color:#d8d1ca;
  user-select:none;
}

.passion__side--left{ 
  left: -46px;
  transform: translateY(-50%) rotate(180deg);
  font-family: 'Noto Serif JP';
  top: -110px;
  position: relative;
}

.passion__side--right{ 
  right: -46px;
  font-family: 'Noto Serif JP';
  top: 370px; 
}

/* =========================
  Story（FIX版）
========================= */
.story{
  position: relative;
  background: linear-gradient(to bottom, #F9F8F6 0 402px, #ffffff 402px 100%);
  padding: 0 0 140px;
  overflow: visible;
}

/* 左上の暖簾（横向き） */
.story__noren{
  position: absolute;
  left: -36px;
  top: 0;
  width: 856px;
  height: 402px;
  background: url("../img/our_story.png") left top / cover no-repeat;
  z-index: 1;
  pointer-events: none;
}

/* 右下の 1/4円（セクション基準で置く） */
.story__quarter{
  position: absolute;
  right: 0;
  bottom: 0;
  width: 399px;
  height: 399px;
  background: rgba(179, 27, 41, 0.05);
  border-top-left-radius: 9999px;
  z-index: 1;
  pointer-events: none;
}
.story__wrap{
  position: relative;
  z-index: 2;
  padding-top: 110px;
}

.story__cards{
  position: relative;
  display: grid;
  grid-template-columns: 705px 706px;
  gap: 0;
  align-items: start;
  width: 1411px;
  height: 778px;
  margin: 0 auto;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .10);
}

/* 共通カード */
.story__card{
  position: relative;
  height: 778px;
  background: #fff;
  border-radius: 6px;
}

/* 左右の角丸：外側だけ丸めて“1枚感” */
.story__card--left{
  border-radius: 6px 0 0 6px;
  position: relative;
}
.story__card--right{
  border-radius: 0 6px 6px 0;
  position: relative;
}

/* 左カード：薄いStory（259.37×96 / 上32 左32） */
.story__watermark{
  position: absolute;
  left: 32px;
  top: 32px;
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 96px;
  line-height: 96px;
  letter-spacing: 0;
  color: #F9F8F6; /* 添付通りの超薄色 */
}

/* OUR STORY（中央）＋縦線（1×48） */
.story__eyebrow{
  position: absolute;
  left: 0;
  right: 0;
  top: 208px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.story__eyebrow span{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .1em;
  color: #B31B29;
}
.story__eyebrow i{
  width: 1px;
  height: 48px;
  background: #D1D5DB; /* 添付の薄グレー */
}

/* 左カード：写真（482×343） */
.story__photo{
  position: absolute;
  left: 32px;
  bottom: 32px;
  width: 482px;
  height: 343px;
  background: url("../img/our_story_sister.jpg") center / cover no-repeat;
}

/* 縦コピー：カードの“隙間が無い”ので上に重ねて置く */
.story__vertical{
  position: absolute;
  left: 50%;
  top: 150px;                  /* 添付の上感 */
  transform: translateX(-50%); /* 境界線のど真ん中に置く */
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.9;
  letter-spacing: .02em;
  color: #111827;
  z-index: 3;
  pointer-events: none;
  height: 560px;
  letter-spacing: 8px;
}

/* 列（右列・左列） */
.story__vcol{
  position: absolute;
  top: 0;
  white-space: nowrap;
}

/* 右列：姉妹で届ける、 */
.story__vcol--right{
  right: 0;
}

/* 左列：毎日食べたくなるうどん。 */
.story__vcol--left{
  right: 40px;     /* 列間（＝2列の幅） */
  padding-top: 32px; /* ←これが「毎日」側を1段下げる本命 */
}

/* 右カード：引用 “（21.33×24 / 赤） */
.story__quote{
  position: absolute;
  top: 250px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 24px;
  line-height: 24px;
  color: #B31B29;
  opacity: .8;
}

/* 右カード：本文 */
.story__text{
  position: absolute;
  top: 290px;
  left: 0;
  right: 0;
  margin: 0;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 2.1;
  letter-spacing: .08em;
  color: #333;
}

/* 下の線＋ブランド */
.story__line{
  position: absolute;
  top: 430px;
  left: 120px;
  right: 120px;
  height: 1px;
  background: rgba(0,0,0,.18);
}
.story__brand{
  position: absolute;
  top: 452px;
  left: 0;
  right: 0;
  margin: 0;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: .28em;
  color: rgba(0,0,0,.45);
}

/* 小さい〇（111×111 / 枠3px #B31B29） */
.story__dot{
  position: absolute;
  right: 37px;
  bottom: 40px;
  width: 111px;
  height: 111px;
  border-radius: 9999px;
  border: 3px solid rgba(179,27,41,.10);
  background: rgba(255,255,255,.85);
  pointer-events: none;
}

/* =========================
  おすすめメニュー
========================= */
.menu-rec{
  background:#F9F8F6;
  padding: 92px 0 100px;
}

.menu-rec__inner{
  width: 1442px;          /* Group 21: 1442×580 */
  margin: 0 auto;
}


h2.menu-rec__title{
  font-size: 36px;
}

.menu-rec__title{
  margin: 0;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 18px;        /* 画像：36px */
  line-height: 40px;      /* 画像：40px */
  letter-spacing: .9px;   /* 画像：0.9px */
  color: #1F2937;
}

.menu-rec__title-line{
  display:block;
  width: 56px;
  height: 3px;
  background:#B31B29;
  margin: 44px auto;
}

/* 左＋右 */
.menu-rec__wrap{
  /*display:flex;
  gap: 88px;              /* 見た目の間隔 */
  /*align-items:flex-start;*/
  display: grid;
  grid-template-columns: 948px 406px; /* そのままの幅でOK */
  gap: 88px; /* 既に決めてるならそれに合わせる */
  align-items: stretch; /* ←これが肝 */
}

/* 左（948×579） */
.menu-rec__left{
  width: 948px;           /* 画像：948×579 */
  height: 100%;
}

/* 見出し行 */
.menu-rec__head{
  display:flex;
  align-items:center;
  gap:12px;
  position:relative;
  margin: 0 0 14px;
  font-family:"Noto Serif JP", serif;
}

.menu-rec__head::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
  width:4px;
  height:24px;
 /* background:#B31B29;*/
}

.menu-rec__tag{
  width:42px;
  height:24px;
  display:grid;
  place-items:center;
  background:#B31B29;
  color:#fff;
  font-size:12px;
  font-weight:700;
  border-radius:4px;
  letter-spacing:.06em;
}

.menu-rec__desc{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight:500;
  font-size:12px;
  color:#6B7280;
}

.menu-rec__sub{
  margin:0;
  font-size:12px;
  color:rgba(0,0,0,.55);
}

.menu-rec__note{
  font-size:11px;
  color:#B31B29;
  letter-spacing:.02em;
}

.menu-rec__head--mt{
  margin-top: 22px;
}

.menu-rec__bar{
  display:inline-block;
  width: 3px;
  height: 18px;
  background:#B31B29;
}

/* カードグリッド */
.menu-rec__grid{
  display:grid;
  grid-template-columns: repeat(3, 300px); /* カード：300×150 */
  gap: 24px;                                /* 画像：間隔24 */
}

.menu-rec__grid--3{
  margin-top: 12px;
}

/* カード（300×150） */
.menu-card{
  position: relative;
  width: 300px;
  height: 150px;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 2px 5px rgba(0,0,0,.05);
  display: grid;
  grid-template-columns: 150px 1fr; /* 左150固定 / 右可変 */
  gap: 0; /* ←ここ重要。隙間作らない */
  overflow: hidden;
}

.menu-card__media{
  width: 150px;
  height: 150px;
  background: #F9F8F6; /* ←左の薄い背景 */
  display: grid;
  place-items: center; /* 画像を中央へ */
}

.menu-card__img{
  width: 146px;
  height: 129px;
  object-fit: cover;
  display: block;
}

.menu-card__body{
  padding: 18px 18px 18px 18px; /* 右余白は見た目で微調整 */
  font-family: "Noto Serif JP", serif;
}

.menu-card__badges{
  display:flex;
  gap: 6px;
  margin-bottom: 8px;
}

.badge{
  width: 22px;
  height: 22px;
  border-radius: 9999px;
  display:grid;
  align-items:center;
  /*justify-content:center;*/
  font-size:12px;
  line-height:1;
  color:#fff;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}

.badge--cold{ 
  background:#2B6CB0;   /* 青丸（冷） */
  font-family: "Zen Kaku Gothic New", sans-serif;
} 
.badge--hot{  
  background:#B31B29;   /* 赤丸（温） */
  font-family: "Zen Kaku Gothic New", sans-serif;
} 

.menu-card__name{
  margin: 0 0 6px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight:700;
  font-size: 13px;
  color:#111;
  line-height:1.35;
}

.menu-card__spicy {
  display: flex;
  gap: 4px;
  align-items: center;
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: auto;
  height: auto;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  margin: 0;
  padding: 0;
}

.menu-card__spicy .spicy{
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:#B31B29;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  margin-right: 4px;
}
.menu-card__desc,
  .menu-card__desc--sp {
    display: none;
  }

.menu-card__spicy .spicy:last-child{
  margin-right: 0;
}

.menu-card__price{
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-weight:700;
  font-size: 14px;
  color:#B31B29;
}

/* 右（406×580） */
.menu-rec__right{
  width: 406px;           /* 画像：406×580 */
  min-height: 580px;
  background:#fff;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);   /* 画像：X0 Y1 ぼかし2 5% */
  border-top: 4px solid #1F2937;          /* 画像：上4px #1F2937 */
  padding: 26px 26px 2px;

  height: 100%;           /* ←左の高さに揃う */
  display: flex;          /* 中身上寄せのまま */
  flex-direction: column;
}

.menu-side__title{
  margin: 0 0 18px;
  text-align:center;
  font-family: "Noto Serif JP", serif;
  font-weight:700;
  font-size: 18px;
  color:#111;
}

.menu-side__block{ 
  margin-bottom: 23px; /* 次のブロックとの距離 */ 
}

.menu-side__block:last-child{
  margin-bottom: 6px;
}

.menu-side__label{
  display:flex;
  align-items:center;
  gap: 8px;
  font-family: "Noto Serif JP", serif;
  font-weight:700;
  color:#111;
  margin-bottom: 27px;
}

.menu-side__bar{
  width: 3px;
  height: 18px;
  background:#B31B29;
  display:inline-block;
}

.menu-side__plus{
  width: 18px;
  height: 18px;
  border-radius: 9999px;
  background:#9CA3AF;
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size: 16px;
  /*line-height:1;*/
  transform: translateY(-1px);
  font-weight: bold;
  font-weight: 900;
  font-family: sans-serif;
}

.menu-side__list{
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  color:#111;
}

.menu-side__list > div{
  display:flex;
  justify-content:space-between;
  border-bottom: 1px dashed rgba(0,0,0,.10);
  padding-bottom: 10px;
}

.menu-side__list dt{ 
  margin:0; 
  font-weight: 500;
}

.menu-side__list dd{
  margin:0;
  color:#B31B29;
  font-weight:700;
  font-family: "Noto Serif JP", serif;
}

.menu-rec__btn-wrap{
  display: flex;
  justify-content: center;
  margin-top: 40px; /* 必要なら */
}

/* ボタン（521×60） */
.menu-rec__btn{
  position: relative;
  display: inline-flex;
  align-items:center;
  justify-content:center;
  width: 521px;          /* 画像：521×60 */
  height: 60px;
  margin: 34px auto 0;
  border: 1px solid #B31B29;
  border-radius: 4px;
  text-decoration:none;
  color:#B31B29;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight:700;
  font-size: 18px;
  letter-spacing:.12em;
  background:#fff;
  box-shadow: 0 4px 6px rgba(0,0,0,.10);  /* 画像：Y4 ぼかし6 10% */
}

.menu-rec__arrow{
  display:inline-block;
  width:72.5px;
  height:10px;
  margin-left:22px;
  position:relative;
  top:1px;
}

.menu-rec__arrow::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  width:72.5px;
  height:1px;
  background:#B31B29;
}

.menu-rec__arrow::after{
  content:"";
  position:absolute;
  right:0;
  top:50%;
  width:29px;
  height:10px;
  border-top:1px solid #B31B29;
  transform:translateY(-55%) rotate(22deg);
}

/* ===== FONT ===== */
.access,
.footer {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.access__title,
.access__shop,
.access__sub {
  font-family: "Noto Serif JP", serif;
  margin-top: 0;
}

/* ===== ACCESS ===== */
.access {
  background: #ffffff;
  padding: 80px 0 0;
}

.access__inner {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 550px 1fr;
  gap: 0;
}

.access__info {
  margin: 0 auto;
  background: #ffffff;
  padding: 48px ;
  width: 100%;
}

.access__en {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #9aa3ab;
  margin-bottom: 8px;
}

.access__title {
  font-size: 28px;
  margin-bottom: 24px;
}

#access .menu-rec__title-line {
  display: none;
}

.access__shop {
  font-size: 20px;
  margin-bottom: 4px;
}

.access__sub {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 32px;
}

.access__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.access__item {
  display: grid;
  grid-template-columns: 24px 64px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid #eef0f2;
}

.access__item:last-child {
  border-bottom: 1px solid #eef0f2;
}

.access__icon {
  width: 16px;
  height: 16px;
}

.access__label {
  color: #b31b29;
  font-weight: 500;
}

.access__text {
  color: #374151;
  line-height: 1.6;
}

/* TEL BUTTON */
.access__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #b31b29;
  color: #ffffff;
  text-decoration: none;
  height: 56px;
  border-radius: 4px;
  margin-bottom: 16px;
}

/* SUB BUTTONS */
.access__buttons {
  display: flex;
  gap: 12px;
}

.access__btn {
  flex: 1;
  height: 44px;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  color: #374151;
  border-radius: 4px;
}

/* MAP */
.access__map {
  height: 774px;
  background: #f3f4f6;
  overflow: hidden;
}

.access__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #19212c;
  padding: 24px 0;
  text-align: center;
  height: 175px;
}

.footer__copy {
  color: #ffffff;
  font-size: 12px;
  margin-top: 90px;
}

/* PCには出さない（「PCは触らない」を守る） */
@media (min-width: 901px){
  .fv-picks__head{ display: none; }
}

/* 900px以下でPCナビ消してハンバーガー出す */
@media (max-width: 900px){
  body{
    background: #F9F8F6;
    padding: 0;
  }

  .container{
    /*padding-left: 16px;
    padding-right: 16px;*/
    width: 100%;           /* ←これを追加 */
    padding-left: 0;       /* ←これを追加 */
    padding-right: 0;      /* ←これを追加 */
  }

  .header-nav{ 
    display:none; 
  }
  .site-header{
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;  /* ←これが低い可能性 */
    background: #fff;
  }

  .header-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .header-logo img{
    width: 74px;
    height: 60px;
    display: block;
    margin-left: 13px;
  }

  .header-logo-name {
    flex-direction: column-reverse;
    gap: 0;
  }

  .header-text-name{
    font-size: 24px;
    letter-spacing: .08em;
    font-weight: 700;
    margin: 0;
  }

  .header-text-sub{
    font-size: 11px;
    letter-spacing: .08em;
    color: #6b6b6b;
    margin: 2px 0 0;
  }

  .hamburger{ 
    display:block;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    position: relative;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .hamburger span{
    position: absolute;
    left: 10px;
    right: 10px;
    height: 2px;
    background: #111;   /* 見えないならここが原因。黒で固定 */
    border-radius: 1px;
    display: block;
  }

  .hamburger span:nth-child(1){ top: 14px; }
  .hamburger span:nth-child(2){ top: 21px; }
  .hamburger span:nth-child(3){ top: 28px; }

  /* 見本：背景は暗くしない */
  .sp-menu{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility 3s ease;
  }

  .sp-menu.is-open{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* 白パネル：320×575（ただし端末が小さい時は収まるように保険） */
  .sp-menu-panel{
    width: 320px;
    height: 575px;
    max-width: 100%;
    max-height: 100%;
    background: #fff;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
    padding: 76px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* ↓スライドアニメーション */
    transform: translateX(100%);  /* 初期位置：右外 */
    transition: transform 0.3s ease;
    top: 0;  /* ←既存のtop: -276pxを削除 */
    right: 0;  /* ←既存のright: -11pxを削除 */
  }

  .sp-menu.is-open .sp-menu-panel {
    transform: translateX(0);  /* スライドイン */
  }

  .sp-menu-close{
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
  }

  .sp-menu-close span{
    position:absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 2px;
    background:#111;
  }
  .sp-menu-close span:nth-child(1){
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .sp-menu-close span:nth-child(2){
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .sp-menu-nav{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
  }

  .sp-menu-nav a{
    font-size: 14px;
    letter-spacing: .08em;
    color: #6b6b6b;
    text-decoration: none;

    position: relative;
    display: inline-block; /* 下線幅を文字基準にしやすい */
    padding-bottom: 6px;
  }

  /* ホバー（PCでSP表示してる時） + キーボード操作 */
  .sp-menu-nav a:hover,
  .sp-menu-nav a:focus-visible{
    color: #b11d2c;
  }

  .sp-menu-nav a:hover::after,
  .sp-menu-nav a:focus-visible::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 56px;      /* PCと同じ長さに調整 */
    height: 2px;
    background: #b11d2c;
    transform: translateX(-50%);
  }

  /*.sp-menu-nav a.is-current{
    color: #b11d2c;
    position: relative;
    padding-bottom: 6px;
  }
  .sp-menu-nav a.is-current::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 56px;
    height: 2px;
    background: #b11d2c;
    transform: translateX(-50%);
  }*/

  .sp-menu-cta{
    margin-top: 168px;
    width: 220px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:#b0181f;
    color:#fff;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
  }
/* SPは中央1枚にして、左右を隠すのが一番早い */
  .fv__grid{
    grid-template-columns: 1fr;
    position: relative;
  }
  .fv__bg--left,
  .fv__bg--right{
    display: none;
  }
  .fv__center-photo{
    height: 640px;
  }
  .fv__badge{
    width: 190px;
    height: 383px;
    top: 1px;
  }

  .fv__label {
    width: 169px;
    /* height: 122px; */
    margin-top: -40px;
    font-size: 29px;
    letter-spacing: normal;
  }

  .fv__heading1 {
    width: 80%;
    margin: -210px auto 0;
  }

  .fv__line {
    width: 100%;
  }

  .fv__band {
    width: 63px;
    height: 15px;
    margin-left: 121px;
  }

  .fv__heading2 {
    margin: 4px auto 0;
  }

  .fv__bg--center {
    background-image: url("../img/fv-sp.png");
    background-size: cover;
    background-position: center;
  }
  /* =========================
     FV PICKS（おすすめメニュー）SP
  ========================= */

  /* セクション余白（FV直下っぽく上に持ち上げる） */
  .fv-picks{
    position: relative;
    padding: 70px 0 60px;
    background: #F9F8F6;
  }

  /* 二重円（見本：中央に薄い2重リング） */
  .fv-picks::before,
  .fv-picks::after{
    content:"";
    position:absolute;
    left: 50%;
    top: 26px;                 /* 見本：タイトルの少し上あたり */
    width: 360px;
    height: 360px;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 50%;
    transform: translateX(-50%);
    pointer-events:none;
  }
  .fv-picks::before{
    width: 305px;
    height: 305px;
    top: -45px;
  }

  .fv-picks::after{
    width: 235px;
    height: 235px;
    top: -10px;               /* 内円は少し下 */
    border-color: rgba(0,0,0,0.06);
  }

  /* 見出しブロック */
  .fv-picks__head{
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 34px;
    padding-bottom: 18px;
  }

  .fv-picks__en{
    margin: 0;
    font-size: 10px;
    line-height: 16px;
    letter-spacing: .14em;
    color: #b0181f;
    font-weight: 700;
  }

  .fv-picks__ja{
    margin: 6px 0 0;
    font-size: 18px;
    line-height: 32px;
    letter-spacing: .08em;
    color: #111;
    font-weight: 700;
  }

  .fv-picks__line{
    display: block;
    width: 32px;
    height: 2px;
    background: #b0181f;
    margin: 10px auto 0;
  }

  /* カードを縦積み中央寄せ */
  .fv-picks__inner{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    /*padding-left: 16px;
    padding-right: 16px;*/

    /* FVからの被せ（見本の雰囲気） */
    /*margin-top: -80px;*/
    margin: -80px 17px 0;
  }

  /* SPでは赤帯タグを外す（指示どおり） */
  .fv-picks__tag{
    display:none;
  }

  /* カード本体 */
  .fv-picks__card{
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.10);
    overflow: hidden;
  }

  /* 画像エリア（div背景想定） */
  .fv-picks__media-left {
    width: 100%;
    height: 210px;
    background-position: center;
    background-size: 630px 330px;
    background-repeat: no-repeat;
  }

  .fv-picks__media {
    background-size: 440px 280px;
  }

  /* テキスト */
  .fv-picks__content{
    padding: 18px 20px 20px;
  }

  .fv-picks__title{
    font-size: 18px;
    letter-spacing: .06em;
    margin: 0 0 10px;
    font-weight: 700;
    color: #111;
  }

  .fv-picks__lead{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
  }

  /* 左の縦棒（見本の細いライン） */
  .fv-picks__bar{
    width: 2px;
    height: 36px;
    background: #b0181f;
    margin-top: 2px;
    flex: 0 0 auto;
  }

  .fv-picks__text{
    font-size: 12px;
    line-height: 18px;
    letter-spacing: .04em;
    margin: 0;
    color: #6b6b6b;
  }

  /* tight版の微調整（既存クラス活用） */
  .fv-picks__content--tight{
    padding-bottom: 18px;
  }

  .passion{ 
    padding:72px 0 72px; 
    background-color: #F9F8F6;
  }
  .passion__title{ 
    font-size:28px; 
  }
  .passion__lead{ 
    font-size:14px; 
    margin-bottom:40px; 
  }

  .passion__cards{
    grid-template-columns:1fr;
    gap:22px;
  }

  .passion-card__media{ 
    height:220px; 
  }
  .passion-card__num{ 
    top:200px; 
  }

  .passion__side{ 
    display:none;     /* SPは縦文字消す（見本も基本消えてる） */
  }

  /* ---- passion セクション（SP整形） ---- */
  .passion{
    padding: 60px 0 72px;
  }

  .passion__title{
    font-size: 22px;
    line-height: 32px;
    margin: 6px 0 10px;
    padding-bottom: 14px;
  }

  .passion__title::after{
    content: "";
    display: block;
    width: 48px;          /* 見本どおり */
    height: 2px;          /* 見本どおり */
    background: #B31B29;  /* 見本の赤 */
    margin: 10px auto 0;  /* 中央配置 */
  }

  .passion__lead{
    font-size: 12px;
    line-height: 18px;
    margin: 10px 0 24px;
  }
  .passion__lead span:nth-child(1){
    display: none;
  }
  .passion__lead span:nth-child(1){
    display: inline;
  }

  /* カード一覧：縦積み（1列）自体はOK。中身を「横並びカード」にする */
  .passion__cards{
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 0 auto;
    width: 90%;
  }

  /* ---- 各カードを横並びに ---- */
  .passion-card{
    height: auto;
    position: relative;
    display: flex;
    align-items: flex-start;   /* ← 中央寄せを殺す */
    justify-content: flex-start;
    gap: 14px;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 10px 18px rgba(0,0,0,.10);
    overflow: hidden;
    padding: 12px 12px 12px 0;
  }

  /* 画像（左） */
  .passion-card__media{
    flex: 0 0 auto;
    width: 128px;           /* ここが「正解の見た目」を決める */
    height: 84px;           /* 1枚目っぽい横長トリム */
    border-radius: 2px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;                 /* ← 余計な auto / center を殺す */
    flex-shrink: 0;
  }

  /* テキスト（右） */
  .passion-card__body{
    flex: 1 1 auto;
    padding: 2px 18px 2px 0; /* 右に赤ラインが来る余白 */
  }

  .passion-card__title{
    font-size: 14px;
    line-height: 20px;
    margin: 2px 0 6px;
    letter-spacing: .04em;
    position: relative;
    padding-bottom: 10px; /* タイトルと本文の間隔 */
    margin-bottom: 8px;
  }
  .passion-card__title::before {
    margin-right: 0;
    background: none;
  }
  /* タイトル直下の薄いライン */
  .passion-card__title::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;           /* ← ここが超重要 */
    width: 100%;
    height: 1px;
    background: #E5E7EB;
  }

  .passion-card__text{
    font-size: 11px;
    line-height: 16px;
    margin: 0;
    color: #6b6b6b;
  }

  .passion-card__text span:nth-child(1){
    display: none;
  }
  .passion-card__text span:nth-child(2){
    display: inline;
  }

  /* 右側の赤い縦ライン（見本の細い線） */
  .passion-card::after{
    content: "";
    position: absolute;
    right: 2px;
    top: 12px;
    bottom: 12px;
    width: 4px;
    background: #b0181f;
    border-radius: 1px;
  }

  /* SPは番号を出さない（見本1枚目には無い） */
  .passion-card__num{
    display: none;
  }

  /* 3つ目に入ってるリング装飾：SPは消す（見本1枚目に無い） */
  .passion-card__rings{
    display: none;
  }

  /* 画像は3枚ともSP用のサイズに統一（03のPC指定を潰す） */
  .passion-card--01 .passion-card__media,
  .passion-card--02 .passion-card__media,
  .passion-card--03 .passion-card__media{
    width: 128px;
    height: 104px;
    border-radius: 2px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  /* 念のため：03の個別指定を完全に無効化 */
  .passion-card--03 .passion-card__media{
    background-size: cover;
    background-position: center;
  }

  /* =========================
   STORY（SP：見本レイアウト）
   ========================= */
  .story{
    position: relative;
    background: #f9f8f6;
    overflow: hidden; /* 右下の円をはみ出しで見切らせる */
    padding: 42px 0 70px;
  }

  /* 上部の“のれん”背景（赤柄） */
  .story__noren{
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: 260px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    /* ここはあなたの画像パスに合わせて */
    /* background-image: url("../img/story_noren.png"); */
    z-index: 0;
  }

  /* 中央の白カードを置く領域 */
  .story__wrap{
    position: relative;
    z-index: 1;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  /* 1枚の縦長カードに見せる（HTMLは左右カードがあるけど、外枠でまとめる） */
  .story__cards{
    position: relative;
    width: 96%;
    max-width: 402px;     /* 見本の幅感 */
    height: 972px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(0,0,0,.12);
    padding: 0 0 26px;
    grid-template-columns: none;
  }

  /* 左右カード自体は“中身”として扱う（背景は消す） */
  .story__card{
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }

  /* 透かし Story */
  .story__watermark{
    position: absolute;
    left: 18px;
    top: 24px;
    font-size: 60px;
    line-height: 1;
    color: rgba(17, 24, 39, 0.04);
    letter-spacing: .06em;
    margin: 0;
    pointer-events: none;
  }

  /* OUR STORY（中央）＋縦ライン */
  .story__eyebrow{
    position: absolute;
    left: 50%;
    top: 150px;
    transform: translateX(-50%);
    text-align: center;
    margin: 0;
  }

  .story__eyebrow span{
    display: inline-block;
    font-size: 12px;
    letter-spacing: -0.9px;
    color: #b31b29;
    font-weight: 500;
    margin-top: -76px;
  }

  .story__eyebrow i{
    display: block;
    width: 2px;
    height: 32px;
    background: #cfd5dd;
    margin: 5px auto 0;
  }

  /* 左カードは“見た目の器”として高さを確保 */
  .story__card--left{
    position: relative;
    height: 620px; /* 見本の縦長感 */
  }

  /* 縦コピー（カード間に重ねる） */
  .story__vertical{
    position: absolute;
    left: 60%;
    top: 174px;
    transform: translateX(-50%);
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 25px;
    line-height: 1.25;
    letter-spacing: .06em;
    color: #111827;
    margin: 0;
    pointer-events: none;
    font-weight: 500;
    display: inline-flex;
    gap: 10px;
  }
  .story__vcol--left{
    margin-top: 18px;
    padding: 0;
  }

  /* 写真（縦コピーの下に配置） */
  .story__photo{
    position: absolute;
    left: 50%;
    bottom: -65px;
    transform: translateX(-50%);
    width: 60%;
    height: 163px;
    border-radius: 3px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* ここはあなたの画像パスに合わせて */
    /* background-image: url("../img/story_photo.jpg"); */
  }

  /* 右カード：下のテキストブロック（中央寄せ） */
  .story__card--right{
    padding: 0 22px 0;
    text-align: center;
  }

  .story__text{
    margin: 0;
    font-size: 14px;
    line-height: 2.0;
    color: #6b7280;
    letter-spacing: .04em;
    margin-top: -176px;
  }

   .sp-story{
    display: none;
  }

  /* 下の“2本線” */
  .story__line{
    position: relative;
    height: 18px;
    /*margin: 18px auto 0;*/
    width: 240px;
    margin: 24px auto 0;
  }
  .story__line::before,
  .story__line::after{
    content: "";
    position: absolute;
    top: 50%;
    width: 86px;
    height: 2px;
    background: #cfd5dd;
    transform: translateY(-50%);
  }
  .story__line::before{ 
    content: "";
    position: absolute;
    top: -216px;
    left: 16%;
    width: 48px;
    height: 2px;
    background: #9CA3AF;
    transform: translateX(-50%);
  }
  .story__line::after{ 
    content: "";
    position: absolute;
    top: -216px;
    right: 100%;
    width: 48px;
    height: 2px;
    background: #9CA3AF;
    transform: translateX(-50%);
  }

  /* SPでは不要要素は消す（見本に出てない） */
  .story__quote,
  .story__dot{
    display: none;
  }

  .story__brand {
    position: absolute;
    top: -733px;
    color: #D1D5DB;
  }

  /* 右下の薄い円（見切れて“クォーター”に見えるやつ） */
  .story__quarter{
    position: absolute;
    right: 49px;
    bottom: 90px;
    width: 64px;
    height: 64px;
    border: 2px solid rgba(179, 27, 41, 0.12);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    background: none;
  }

  /* =========================
     MENU（おすすめメニュー）SP
  ========================= */
  .menu-rec__head{
    position: relative;
    max-width: 400px;
    margin: 0 12px;
    padding-left: 14px;           /* 左の赤バー分 */
    padding-bottom: 10px;
    /*border-bottom: 1px solid #EDEDED;*/
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 10px;                /* 行間 / 列間 */
  }

  /* 左の赤バーは疑似要素で統一（HTMLいじらず） */
  .menu-rec__head::before{
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 3px;
    height: 22px;
    /*background: #B31B29;*/
    border-radius: 2px;
  }

  /* もともとHTMLにある .menu-rec__bar はSPでは不要（2重バー回避） */
  .menu-rec__bar{
    display: none;
  }

  /* 定番の方は上余白 */
  .menu-rec__head--mt{
    margin-top: 22px;
  }

  /* 「名物」タグ */
  .menu-rec__tag{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 18px;
    padding: 0 8px;
    background: #B31B29;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    border-radius: 3px;
  }

  /* 見出し行のタイトル（※上のH2と同じクラス名なのでスコープで制御） */
  .menu-rec__head .menu-rec__title{
    margin: 0;
    padding-top: 0;               /* H2用のpaddingを無効化 */
    position: static;             /* H2のrelativeを無効化 */
    text-align: left;
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: .08em;
    font-weight: 700;
    white-space: nowrap;          /* 「ネオぶっかけ」を変な位置で折らない */
  }

  /* 見出し行の説明（右に寄せる） */
  .menu-rec__desc{
    font-size: 11px;
    color: #6B7280;
    letter-spacing: .04em;
    margin-left: auto;            /* 右寄せの要 */
    text-align: right;
  }

  /* 注意書きは必ず次の行（全幅） */
  .menu-rec__note{
    flex: 0 0 100%;
    margin-top: 4px;

    font-size: 10px;
    color: #B31B29;
    letter-spacing: .04em;
  }

  /* H2タイトルの “MENU” 疑似要素はそのまま使う（既存のままでOK）
   ただし、見出し行内の .menu-rec__title にだけは出さない */
  .menu-rec__head .menu-rec__title::before{
    content: none;
  }

  .menu-rec__desc{
    display: block;
    font-size: 11px;
    color: #6B7280;
    letter-spacing: .04em;
    margin-top: 6px;
    line-height: 1.5;
    margin-left: 10px;
  }

  .menu-rec__note{
    display: block;
    font-size: 10px;
    color: #B31B29;
    letter-spacing: .04em;
    margin-top: 6px;
    line-height: 1.4;
  }

  /* -------------------------
     グリッド：SPは1列
  ------------------------- */
  .menu-rec__grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 0 0 10px;
  }
  .menu-rec__grid--3{
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 10px;
  }

  /* =========================
     カード（SP見本の“縦長1枚”）
  ========================= */
  .menu-rec{
    background: #f9f8f6;
    padding: 56px 0;
  }

  .menu-rec__inner{
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }

  /* -------------------------
     セクション見出し（MENU + おすすめメニュー）
     ※ここは section直下の h2.menu-rec__title 専用
     ------------------------- */
  .menu-rec > .menu-rec__inner > .menu-rec__title{
    margin: 0;
    text-align: center;
    font-family: "Noto Serif JP", serif;
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: .08em;
    color: #111827;
    font-weight: 700;
    position: relative;
    padding-top: 18px; /* 上の MENU 分 */
  }

  .menu-rec > .menu-rec__inner > .menu-rec__title::before{
    content: "MENU";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    text-align: center;
    font-family: "Noto Serif JP", serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    color: #B31B29;
  }

  .menu-rec__title-line{
    display: block;
    width: 48px;
    height: 2px;
    background: #B31B29;
    margin: 10px auto 0;
    border-radius: 1px;
  }

  /* 2カラム→SPは縦 */
  .menu-rec__wrap{
    display: block;
    margin-top: 22px;
  }
  .menu-rec__left{
    width: 100%;
  }
  .menu-rec__right{
    width: 100%;
    margin-top: 18px;
  }

  /* -------------------------
     見出し行（名物/定番ぶっかけ）
     ここが「1枚目みたい」にする本体
     ------------------------- */
  .menu-rec__head{
    position: relative;
    max-width: 400px;
    margin: 0 auto 12px;
    padding: 0 0 10px 14px; /* 左の赤バー分 */
    /*border-bottom: 1px solid #EDEDED;*/
    display: flex;
    grid-template-columns: auto 1fr 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 10px;
    row-gap: 6px;
    align-items: center;
  }

  /* 名物（1行目左） */
  .menu-rec__tag{
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    justify-self: start;
    height: 18px;
    padding: 0 8px;
    background: #B31B29;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
  }

  /* タイトル（1行目中央） */
  .menu-rec__head .menu-rec__title{
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    margin: 0;

    text-align: left;
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: .08em;
    font-weight: 700;

    /* セクション見出し用の疑似要素を殺す */
    position: static;
    padding-top: 0;
  }
  .menu-rec__head .menu-rec__title::before{
    content: none;
  }

  /* 説明（1行目右） */
  .menu-rec__desc{
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    justify-self: end;

    font-size: 11px;
    color: #6B7280;
    letter-spacing: .04em;
    white-space: nowrap;
  }

  /* 注釈（2行目：右寄せで赤） */
  .menu-rec__note{
    grid-column: 2 / 4;
    grid-row: 2 / 3;
    justify-self: end;

    font-size: 10px;
    color: #B31B29;
    letter-spacing: .04em;
    margin: 0;
    white-space: nowrap;
  }

  /* 「定番ぶっかけ」側のヘッダ（上余白） */
  .menu-rec__head--mt{
    margin-top: 22px;
  }

  /* 定番の左バー（HTMLの .menu-rec__bar を使う） */
  .menu-rec__bar{
    position: absolute;
    left: 0;
    top: 2px;
    width: 3px;
    height: 22px;
    background: #B31B29;
    border-radius: 2px;
  }

  /* -------------------------
     グリッド：SPは1列
     ------------------------- */
  .menu-rec__grid,
  .menu-rec__grid--3{
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 0;
  }
  .menu-rec__grid{ margin: 0 0 10px; }
  .menu-rec__grid--3{ margin-top: 10px; }

  /* =========================
     カード（見本の縦型：400×357）
     ========================= */
  /* カードの外側コンテナ（複数カードを並べる場合） */
  .menu-card-wrapper{
    background: #F9F8F6;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 12px; /* カード間のスキマ */
  }

  .menu-card{
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
    background: #FFFFFF; /* カード本体は白 */
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    position: relative;
    display: block;
  }

  /* 画像枠：左右余白40ずつの見た目（= 400幅の中で内側に寄せる） */
  .menu-card__media{
    position: relative;
    background: #F9F8F6; /* 画像エリアの背景 */
    width: 90%;
    height: auto;
    padding: 20px 10px 14px; /* 上下左右の余白 */
    box-sizing: border-box;
    margin: 10px auto;
  }

  .menu-card__img{
    display: block;
    width: 100%;
    max-width: 320px; /* 380x213の比率を保つ */
    height: auto;
    object-fit: contain;
    margin: 0 auto;
  }

  /* 辛（画像右下寄り） */
  .menu-card__spicy{
    position: absolute;
    right: 40px;    /* 画像枠の内側基準に合わせる */
    bottom: 14px;
    display: flex;
    gap: 4px;
    z-index: 1;
  }

  .spicy{
    width: 20px;
    height: 20px;
    background: #B31B29;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
    border-radius: 0;
    font-family: "Noto Serif JP", serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* 下テキストブロック */
  .menu-card__body{
    background: #FFFFFF;
    text-align: center;
    padding: 8px 20px 16px;
  }

  /* あなたがHTMLに追記した「説明テキスト」用（クラスがある前提）
     ※もしクラス名違うなら、今の要素のクラス教えて。 */
  .menu-card__desc,
  .menu-card__desc--sp{
    display: block;
    max-width: 320px;
    margin: 0 auto 6px;
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 0.05em;
    color: #6B7280;
    text-align: center;
  }

  .menu-card__name{
    margin: 8px 0 4px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: .04em;
    color: #111827;
  }

  .menu-card__price{
    margin: 6px 0 8px;
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: .04em;
    color: #B31B29;
  }

  /* 冷・温 */
  .menu-card__badges{
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 0;
  }

  .badge{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
  }

  .badge--cold{ background: #1D4ED8; }
  .badge--hot{ background: #DC2626; }

  /* =========================
     右：その他(抜粋)
     ========================= */
  .menu-rec__right{
    background: #fff;
    border-radius: 0;
    padding: 18px 14px;
    box-shadow: none;
    border-top: 4px solid #111827; /* 見本の上罫線の印象 */
    margin-top: 45px;
  }

  .menu-side__title{
    margin: 0 0 14px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    letter-spacing: .06em;
    padding-bottom: 12px;
  }

  .menu-side__block{
    padding: 12px 0;
    border-bottom: 1px dotted #E5E7EB;
  }
  .menu-side__block:last-child{ border-bottom: none; }

  .menu-side__label{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    letter-spacing: .04em;
    margin-bottom: 10px;
  }

  .menu-side__bar{
    width: 3px;
    height: 16px;
    background: #B31B29;
    border-radius: 2px;
    display: inline-block;
  }

  .menu-side__plus{
    color: #6B7280;
    font-weight: 700;
  }

  .menu-side__list{ 
    /*width: 406px;
    margin: 0; */
    width: 100%;
    margin: 0 auto;
  }
  .menu-side__list div{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 8px 0;
    border-bottom: 1px dotted #E5E7EB;
    width: 90%;
  }
  .menu-side__list div:last-child{ border-bottom: none; }

  .menu-side__list dt{
    margin: 0;
    font-size: 14px;
    color: #111827;
  }
  .menu-side__list dd{
    margin: 0;
    font-size: 14px;
    color: #B31B29;
    font-weight: 700;
  }

  /* =========================
     ボタン（メニュー一覧へ）
     ========================= */
  .menu-rec__btn-wrap{
    margin-top: 18px;
    text-align: center;
  }

  .menu-rec__btn{
    width: 100%;
    max-width: 320px;
    height: 48px;
    margin: 18px auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #B31B29;
    border-radius: 2px;
    color: #B31B29;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .08em;
    background: #fff;
  }

  .menu-rec__arrow{
    width: 26px;
    height: 1px;
    display: inline-block;
    position: relative;
  }
  .menu-rec__arrow::after{
    content: "";
    position: absolute;
    right: -45px;
    top: -6px;
    width: 15px;
    height: 8px;
    border-top: 1px solid #B31B29;
    transform: rotate(45deg);
  }

  .access {
    padding: 0 0 80px;
    width: 100%;
    background: #F9F8F6;
    max-width: none;
   /* margin: 0;*/
  }

  .access__inner {
    display: flex;
    width: 100%;
    flex-direction: column;
    max-width: none; 
    margin: 0 auto;
    padding: 0;
    gap: 0; /* PC版の40pxを解除 */
  }

  .access__map {
    width: 100%;
    height: 300px; /* 見本に合わせて高さ調整 */
    order: 1; /* 上に配置 */
  }

  .access__map iframe {
    width: 100%;
    height: 100%;
  }

  .access__info {
    width: 100%;
    padding: 32px 20px;
    order: 2;
    border-top: 4px solid #B31B29;
  }
  
  .access__en,
  .access__title {
    text-align: center;
  }

   .access__en {
    font-size: 12px;
    color: #B31B29;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
  }

  .access__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111827;
  }

  #access .menu-rec__title-line {
    display: block;
  }

  .access__shop,
  .access__sub {
    display: none;
  }

  .access__list {
    list-style: none;
    padding: 0;
    margin: 15px 0 24px;
  }

  .access__item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.6;
  }

  .access__icon {
    flex-shrink: 0;
    width: 16px;
    margin-right: 8px;
    display: flex;
    align-items: center;
  }

  .access__icon svg {
    width: 100%;
    height: auto;
  }

  .access__label {
    flex-shrink: 0;
    font-weight: 700;
    color: #111827;
    margin-right: 8px;
    min-width: 60px;
  }

  .access__text {
    color: #6B7280;
    flex: 1;
  }

  .access__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border: 1px solid #B31B29;
    color: #B31B29;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    gap: 6px;
  }

  .site-footer {
    width: 100%;
  }

  .site-footer__inner {
    max-width: 520px;
    margin: 0 auto;
    padding: 0;
  }
}

/* =========================
  メニューページ専用スタイル
  ※ body.page-menu 配下のみに適用
========================= */

/* ページ全体の背景 */
body.page-menu {
  background: #F9F8F6;
  position: relative;
 /* overflow-x: clip;*/
  height: auto;
  min-height: 100vh;
  overflow-x: hidden; /* ← 横だけ殺すならOK */
  overflow-y: auto;
}

/* ページヘッダー（おすすめメニュータイトル） */
.page-menu .page-menu__header {
  padding: 80px 0 60px;
  text-align: center;
}

.page-menu .passion-card__rings {
  position: absolute;
  background: url("../img/SVG.svg") no-repeat center / 861px 861px;
  transform: translateY(330px);
  width: 861px;
  height: 861px;
  top: 78px;     /* 上すぎるなら数値を増やす（下に下がる） */
  left: 1237px;  /* 右に寄せるほどマイナスを増やす */
  opacity: .55;
  z-index: 0;
  pointer-events: none;
}

.page-menu .page-menu__header,
.page-menu .menu-rec,
.page-menu .menu-side {
  position: relative;
  z-index: 1;
}

.page-menu .page-menu__title {
  font-family: "Noto Serif JP", serif;
  font-size: 36px;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 20px;
  letter-spacing: 0.08em;
}

/* メインコンテンツエリア */
.page-menu .menu-rec {
  background: transparent;
  padding: 0 0 80px;
}

.page-menu .menu-rec__inner {
  max-width: 1442px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.page-menu .menu-rec__wrap {
  display: block; /* カテゴリは縦並び */
}

/* ブロック単位の余白 */
body.page-menu .menu-rec__block,
body.page-menu .menu-side__group{
  padding-left: 16px;
  padding-right: 16px;
}

/* 見出し行 */
.page-menu .menu-rec__head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 0;
}

.page-menu .menu-rec__head > .menu-rec__bar {
  display: inline-block;
  width: 3px;
  height: 24px;
  background: #B31B29;
  border-radius: 2px;
  flex: 0 0 auto;
}

.page-menu .menu-rec__head--mt {
  margin-top: 60px;
  margin-bottom: 0;
}

/* 左の赤バー（2つ目以降の見出し） */
.page-menu .menu-rec__bar {
  display: inline-block;
  width: 3px;
  height: 24px;
  background: #B31B29;
  border-radius: 1px;
}

/* 名物タグ */
.page-menu .menu-rec__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 12px;
  background: #B31B29;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.06em;
}

/* カテゴリータイトル */
.page-menu .menu-rec__title {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0;
  letter-spacing: 0.08em;
}

/* 説明文 */
.page-menu .menu-rec__desc {
  font-size: 14px;
  color: #6B7280;
  margin-left: auto;
  letter-spacing: 0.04em;
  font-family: 'Noto Serif JP';
  font-weight: bold;
}

/* 注意書き */
.page-menu .menu-rec__note {
  font-size: 12px;
  color: #B31B29;
  margin: 0 0 24px;
  letter-spacing: 0.04em;
  font-weight: 600;
  font-family: 'Noto Serif JP';
}

/* グリッド（5列） */
.page-menu .menu-rec__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

/* グリッド（1枚だけの行） */
.page-menu .menu-rec__grid--single {
  grid-template-columns: repeat(5, 1fr);
}

/* メニューカード */
.page-menu .menu-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: auto;
  max-width: none;
}

.page-menu .menu-card__media {
  position: relative;
  width: 100%;
  height: 200px;
  background: #F9F8F6;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.page-menu .menu-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 辛マーク */
.page-menu .menu-card__spicy {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  gap: 4px;
  z-index: 2;
}

.page-menu .spicy {
  width: 20px;
  height: 20px;
  background: #B31B29;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Serif JP", serif;
  border-radius: 0;
}

/* カード本文 */
.page-menu .menu-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* 説明文 */
.page-menu .menu-card__desc--sp {
  font-size: 12px;
  line-height: 1.6;
  color: #6B7280;
  margin: 0 0 12px;
  min-height: 58px;
  display: block;
}

/* PC版では非表示 */
.page-menu .menu-card__desc {
  display: none;
}

/* メニュー名 */
.page-menu .menu-card__name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px;
  letter-spacing: 0.04em;
}

/* 価格 */
.page-menu .menu-card__price {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 700;
  color: #B31B29;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}

/* メモ書き（〆ごはん用） */
.page-menu .menu-card__memo {
  font-size: 10px;
  color: #6B7280;
  margin: 4px 0 6px;
  line-height: 1.4;
}

/* バッジ（冷・温） */
.page-menu .menu-card__badges {
  display: flex;
  gap: 6px;
  margin-top: auto;
}

.page-menu .badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
}

.page-menu .badge--cold {
  background: #2B6CB0;
}

.page-menu .badge--hot {
  background: #B31B29;
}

/* =========================
  サイドメニュー（天ぷら・トッピング・ごはん）
========================= */
.page-menu .menu-side {
  background: #F9F8F6;
  padding: 0 0 80px;
}

.page-menu .menu-side__inner {
  max-width: 1442px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.page-menu .menu-side__group {
  margin-bottom: 60px;
}

/* グリッド（小カード：8列） */
.page-menu .menu-side__grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}

/* 小カード */
.page-menu .menu-side-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: row; /* ←横並び */
  align-items: center;
  text-align: left;
  gap: 12px;
  padding: 12px;
}

.page-menu .menu-side-card__media {
  width: 80px;
  height: 80px;
  background: #F9F8F6;
  border-radius: 3px;
  overflow: hidden;
}

.page-menu .menu-side-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.page-menu .menu-side-card__body {
  /*padding: 12px;*/
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-menu .menu-side-card__name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  /*margin: 0 0 6px;*/
  margin: 0;
  letter-spacing: 0.04em;
}

.page-menu .menu-side-card__price {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 700;
  color: #B31B29;
  margin: 0;
  letter-spacing: 0.02em;
}

/* トッピングの＋マーク */
.page-menu .menu-side__plus {
  color: #9CA3AF;
  font-weight: 700;
  font-size: 18px;
  margin-right: 4px;
}

/* =========================
  レスポンシブ（タブレット以下）
========================= */
/* ページ全体の背景 */
body.page-menu {
  background: #F9F8F6;
}

/* ページヘッダー（おすすめメニュータイトル） */
.page-menu .page-menu__header {
  padding: 80px 0 60px;
  text-align: center;
}

.page-menu .page-menu__title {
  font-family: "Noto Serif JP", serif;
  font-size: 36px;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 20px;
  letter-spacing: 0.08em;
}

/* メインコンテンツエリア */
.page-menu .menu-rec {
  background: transparent;
  padding: 0 0 80px;
}

.page-menu .menu-rec__inner {
  max-width: 1442px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.page-menu .menu-rec__wrap {
  display: block; /* カテゴリは縦並び */
}

/* 左の赤バー（2つ目以降の見出し） */
.page-menu .menu-rec__bar {
  display: inline-block;
  width: 3px;
  height: 24px;
  background: #B31B29;
  border-radius: 2px;
}

/* 名物タグ */
.page-menu .menu-rec__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  width: 42px; /* min-widthの方が安全 */
  padding: 0;
  background: #B31B29;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.06em;
  flex-shrink: 0; /* 縮まないようにする */
}

/* カテゴリータイトル */
.page-menu .menu-rec__title {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0;
  letter-spacing: 0.08em;
}

.page-menu .menu-side .menu-rec__title {
  margin-left: 0;
}

/* 説明文 */
.page-menu .menu-rec__desc {
  font-size: 14px;
  color: #6B7280;
  margin-left: auto;
  letter-spacing: 0.04em;
    margin: 10px 0 0;
  letter-spacing: 0.04em;
}

/* 注意書き */
.page-menu .menu-rec__note {
  font-size: 12px;
  color: #B31B29;
  margin: 0 0 24px;
  letter-spacing: 0.04em;
  width: 100%;
}

/* グリッド（5列） */
.page-menu .menu-rec__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

/* グリッド（1枚だけの行も5列グリッド） */
.page-menu .menu-rec__grid--single {
  grid-template-columns: repeat(5, 1fr);
}

/* メニューカード */
.page-menu .menu-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);*/
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: auto;
  max-width: none;
}

.page-menu .menu-card__media {
  position: relative;
  width: 95%;
  height: 200px;
  background: #F9F8F6;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  margin: 7px auto;
}

.page-menu .menu-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 辛マーク */
.page-menu .menu-card__spicy {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  gap: 4px;
  z-index: 2;
}

.page-menu .spicy {
  width: 20px;
  height: 20px;
  background: #B31B29;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Serif JP", serif;
  border-radius: 0;
}

/* カード本文 */
.page-menu .menu-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}

/* 説明文 */
.page-menu .menu-card__desc--sp {
  font-size: 12px;
  line-height: 1.6;
  color: #6B7280;
  margin: 0 0 12px;
  min-height: 58px;
  display: block;
}

/* メニュー名 */
.page-menu .menu-card__name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px;
  letter-spacing: 0.04em;
}

/* 価格 */
.page-menu .menu-card__price {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 700;
  color: #B31B29;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}

/* メモ書き（〆ごはん用） */
.page-menu .menu-card__memo {
  font-size: 9px;
  color: #6B7280;
  margin: 4px auto 6px;
  line-height: 1.4;
  width: 100%;
  font-weight: 900;
  letter-spacing: -1px;
}

/* バッジ（冷・温） */
.page-menu .menu-card__badges {
    margin: 0 auto;
    display: flex;
    gap: 6px;
    margin-top: auto;
}

.page-menu .badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
}

.page-menu .badge--cold {
  background: #2B6CB0;
}

.page-menu .badge--hot {
  background: #B31B29;
}

/* =========================
  サイドメニュー（天ぷら・トッピング・ごはん）
========================= */
.page-menu .menu-side {
  background: #F9F8F6;
  padding: 0 0 80px;
}

.page-menu .menu-side__inner {
  max-width: 1442px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.page-menu .menu-side__group {
  margin-bottom: 60px;
}

/* グリッド（横並びカード：8列） */
.page-menu .menu-side__grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 30px;
  margin: 10px 0;
}

/* 横並びカード（画像+ボディ） */
.page-menu .menu-side-card {
  background: #fff;
  width: 200px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  display: flex;
  text-align: center;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
}

.page-menu .menu-side-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.page-menu .menu-side-card__name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  margin: 0;
  letter-spacing: 0.04em;
}

.page-menu .menu-side-card__price {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 700;
  color: #B31B29;
  margin: 0;
  letter-spacing: 0.02em;
}

/* トッピングの＋マーク */
.page-menu .menu-side__plus {
  width: 18px;
  height: 18px;
  border-radius: 9999px;
  background:#9CA3AF;
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size: 16px;
  transform: translateY(-1px);
  font-weight: bold;
  font-weight: 900;
  font-family: sans-serif;
}

/* =========================
  レスポンシブ（タブレット以下）
========================= */
@media (max-width: 1200px) {
  .page-menu .menu-rec__grid {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .page-menu .menu-side__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  body.page-menu {
    padding-top: 0;
  }

  .page-menu .menu-rec__head{
    flex-wrap: wrap;
    /*display: grid;*/
    display: flex;
    align-items: baseline;
    justify-content: start; /* space-between禁止 */
    gap: 10px;
    padding: 0;
    margin: 60px 0 10px;
  }

  .page-menu .page-menu__header {
    padding: 60px 16px 40px;
  }
  .page-menu .passion-card__rings {
    display: none;
  }

  .page-menu .menu-rec__title {
    font-size: 20px;
    flex: 0 0 80px;
    margin-left: 10px;
  }

  .page-menu .menu-rec__bar {
    display: inline-block;
    width: 3px;
    height: 24px;
    background: #B31B29;
    border-radius: 2px;
  }

  .page-menu .menu-side .menu-rec__bar {
    display: inline-block;
    width: 3px;
    height: 24px;
    background: #B31B29;
    border-radius: 2px;
    transform: translateX(-24px);
  }

  .page-menu .menu-rec__inner,
  body.page-menu .menu-side__inner {
    max-width: 420px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
  }

  body.page-menu .menu-side__grid{
    display: grid;
    grid-template-columns: repeat(2, 195px);
    gap: 10px;
    justify-content: center; /* 2列を中央寄せ */
  }

  /* うどんグリッド：1列 */
  .page-menu .menu-rec__grid,
  .page-menu .menu-rec__grid--single {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* うどんカード：縦長デザイン（SPも） */
  .page-menu .menu-card {
    display: flex;
    flex-direction: column;
    max-width: none;
    height: auto;
  }

  .page-menu .menu-card__media {
    width: 95%;
    height: 200px;
  }

  .page-menu .menu-card__spicy {
    right: 12px;
    bottom: 12px;
  }

  .page-menu .menu-card__body {
    padding: 16px;
  }

  .page-menu .menu-card__desc--sp {
    font-size: 12px;
    min-height: auto;
    margin-bottom: 12px;
  }

  .page-menu .menu-rec__desc {
    font-size: 10px;
    width: 100%;
    margin-left: 0;
    /*padding-left: calc(3px + 12px); /* 赤線(3px) + gap(12px) 分だけインデント */
    /*white-space: nowrap; /* 1行固定したいなら */
    /*flex: 0 1 auto;*/
     flex: 1;
     text-align: left;
  }

  .page-menu .menu-card__name {
    font-size: 14px;
  }

  .page-menu .menu-card__price {
    font-size: 14px;
  }

  /* 天ぷら等：2列、横並びカード */
  body.page-menu .menu-side {
    padding: 0 0 40px;
  }

  .menu-side__group,.menu-rec__head{
    margin: 60px 0 12px;
  }

   body.page-menu .menu-side__inner {
    max-width: 400px;
    margin: 0 auto;
  }

  .page-menu .menu-side__grid {
    display: grid;
    grid-template-columns: repeat(2, 195px);
    justify-content: center;
    gap: 8px;
  }

  body.page-menu .menu-side-card {
    width: 195px;
    height: auto;
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: center;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,.05);
    overflow: hidden;
    padding: 0;
  }

  .page-menu .menu-side-card__media {
    width: 80px;
    height: 86px;
    flex: 0 0 80px;
    display: grid;
    align-items: center;
    place-items: center;
  }

  body.page-menu .menu-side-card__media img {
    width: 80px;
    height: 86px;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  /* ボディ */
  body.page-menu .menu-side-card__body {
    flex: 1;
    box-sizing: border-box;
    line-height: 1.2;
    text-align: left;
    padding: 0;
  }

  body.page-menu .menu-side-card__name {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body.page-menu .menu-side-card__price {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #b30000;
  }

  /* ごはんのメモ（HTMLが menu-card__memo なので両対応） */
  body.page-menu .menu-card__memo,
  body.page-menu .menu-side-card__memo {
    margin: 0 0 6px;
    font-size: 8px;
    color: #666;
    line-height: 1.2;
  }

  /* トッピングの「＋」丸 */
  body.page-menu .menu-side__plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #bdbdbd;
    color: #fff;
    font-weight: 700;
    margin: 0 8px 0 0;
    /*transform: translateY(-1px);*/
    transform: translateX(-10px);
  }
}




