@charset "UTF-8";
/* ============================================================================
   j.css — 案J：ポップ・陽気系

   ビタミンカラー（黄・オレンジ・ターコイズ）、極太の丸ゴシック。
   要素をわずかに傾け、重ね、賑やかさを出す。学生・20代のグループ利用向け。

   【傾けるときの注意】
   transform: rotate() は要素の見た目を回すが、はみ出し判定にも効く。
   角度を 2〜3度に抑え、外側のラッパーに余白を持たせて横溢れを防ぐ。
   ============================================================================ */

:root {
  --yellow: #ffd23f;
  --orange: #ff8c42;
  --turq:   #2ec4b6;
  --ink:    #2b2b2b;
  --sub:    #6d6d6d;
  --paper:  #fffdf6;

  --round: "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN",
           "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;

  /* common.css の固定CTAへ流し込む配色 */
  --cta-bg: var(--orange);
  --cta-fg: #fff;
  --cta-radius: 999px;
  --cta-weight: 800;
  --bar-bg: #2b2b2b;
  --bar-fg: #fffdf6;
  --barcta-bg: var(--orange);
  --barcta-fg: #fff;
}

body {
  font-family: var(--round);
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink);
  background: var(--paper);
}

.wrap   { width: 100%; max-width: 1060px; margin-inline: auto; padding-inline: 20px; }
.narrow { max-width: 720px; }

.sec { padding-block: 56px; }
.sec--yellow { background: #fff6d6; }
.sec--turq   { background: #e2f7f4; }
@media (min-width: 768px) { .sec { padding-block: 84px; } }

/* ---- 見出し：傾いた極太の帯 ---- */
.ttl { text-align: center; margin-bottom: 36px; }
.ttl span {
  display: inline-block;
  transform: rotate(-2deg);
  background: var(--ink);
  color: var(--yellow);
  font-size: clamp(1.2rem, 5vw, 1.7rem);
  font-weight: 800;
  letter-spacing: .1em;
  text-indent: .1em;
  padding: 8px 26px;
  border-radius: 999px;
}

/* ---- ヘッダー ---- */
.hdr {
  gap: 14px;
  padding-inline: 16px;
  background: var(--yellow);
  border-bottom: 4px solid var(--ink);
}
.hdr__brand {
  font-size: 1.08rem; font-weight: 800; letter-spacing: .06em;
  text-decoration: none; white-space: nowrap; margin-right: auto;
}
@media (min-width: 768px) {
  .hdr { padding-inline: 28px; }
  .hdr__brand { font-size: 1.35rem; }
  .hdr__reserve { border: 3px solid var(--ink); }
}

/* ---- ① ファーストビュー ---- */
.hero {
  position: relative;
  min-height: 58svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  padding-bottom: 40px;   /* 下のリボン分 */
}
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(20, 14, 6, .52);
}
.hero__in { position: relative; z-index: 1; padding: 20px 20px 6px; }
.hero__pop {
  display: inline-block;
  transform: rotate(-3deg);
  background: var(--turq); color: #fff;
  font-size: clamp(.95rem, 4.1vw, 1.1rem);
  font-weight: 800; letter-spacing: .06em;
  padding: 7px 20px; border-radius: 999px;
  margin-bottom: 16px;
}
.hero__pop em { font-style: normal; color: var(--yellow); }
.hero__name {
  font-size: clamp(3rem, 13.6vw, 4.4rem);
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.2;
  color: #fff;
  text-shadow: 4px 4px 0 var(--orange), 8px 8px 0 rgba(0,0,0,.25);
}
.hero__type {
  margin-top: 12px;
  display: inline-block;
  background: var(--yellow); color: var(--ink);
  font-size: clamp(.92rem, 4vw, 1.08rem);
  font-weight: 800; letter-spacing: .16em; text-indent: .16em;
  padding: 5px 18px; border-radius: 999px;
}
@media (min-width: 768px) { .hero { min-height: 84svh; } }

/* 流れる帯（アニメーションはさせない。静止で賑やかさだけ出す） */
.hero__ribbon {
  position: absolute; left: -4%; right: -4%; bottom: 0; z-index: 1;
  transform: rotate(-1.5deg);
  background: var(--orange);
  border-block: 3px solid var(--ink);
  display: flex; gap: 12px; justify-content: center; align-items: center;
  padding: 6px 0;
  white-space: nowrap;
  overflow: hidden;
}
/* スマホでは横幅が足りず文字が切れていた。
   項目を2つに減らしたうえで、字を画面幅に追随させて必ず収まるようにする。 */
.hero__ribbon span {
  color: #fff; font-weight: 800; letter-spacing: 0;
  font-size: clamp(.58rem, 2.9vw, .8rem);
}
@media (min-width: 768px) {
  .hero__ribbon { gap: 30px; padding: 8px 0; }
}

/* ---- ② おすすめ：上下にずらして賑やかに ---- */
.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 14px;
}
.g { text-align: center; }
.g:nth-child(even) { margin-top: 22px; }   /* 互い違いにずらす */
.g__pic { transform: rotate(-1.5deg); }
.g:nth-child(even) .g__pic { transform: rotate(1.5deg); }
.g__pic img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  border: 4px solid var(--ink);
  border-radius: 14px;
}
.g__price {
  display: inline-block;
  margin-top: -16px; position: relative; z-index: 1;
  background: var(--orange); color: #fff;
  font-size: 1.15rem; font-weight: 800; line-height: 1;
  padding: 9px 16px; border-radius: 999px;
  border: 3px solid var(--ink);
}
.g__price small { font-size: .56em; }
.g h3 { margin-top: 8px; font-size: 0.95rem; font-weight: 800; letter-spacing: .02em; }

@media (min-width: 768px) {
  .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px 24px; }
  .g h3 { font-size: 1rem; }
  .g__price { font-size: 1.35rem; }
}

/* ---- ③ ご宴会 ---- */
.plans { display: grid; gap: 18px; }
.pl {
  position: relative;
  background: #fff;
  border: 4px solid var(--ink);
  border-radius: 18px;
  padding: 24px 18px;
  text-align: center;
}
.pl--push { background: var(--yellow); }
.pl__tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%) rotate(-3deg);
  background: var(--orange); color: #fff;
  font-size: .68rem; font-weight: 800; letter-spacing: .06em;
  padding: 4px 14px; border-radius: 999px;
  border: 3px solid var(--ink);
  white-space: nowrap;
}
.pl h3 { font-size: .98rem; font-weight: 800; letter-spacing: .04em; }
.pl__p { margin-top: 4px; font-size: 2.1rem; font-weight: 800; color: var(--orange); line-height: 1.1; }
.pl__p small { font-size: .38em; color: var(--ink); }
.pl__d { margin-top: 6px; font-size: 0.85rem; color: var(--sub); }
@media (min-width: 768px) { .plans { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

/* ---- ④ お店について ---- */
.prose { text-align: center; font-size: 1.00rem; }
.prose p + p { margin-top: 1.2em; }

/* ---- ⑤ ご予約 ---- */
.reserve__lead { text-align: center; font-size: 0.97rem; margin-bottom: 26px; }
.reserve__btns { display: grid; gap: 14px; max-width: 460px; margin-inline: auto; }
.rbtn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 70px; border-radius: 999px;
  text-decoration: none; font-weight: 800; line-height: 1.25;
  border: 4px solid var(--ink);
  transition: transform .12s;
}
.rbtn:hover { transform: translateY(-3px); }
.rbtn small { font-size: .66rem; font-weight: 700; opacity: .9; margin-top: 2px; }
.rbtn--net { background: var(--orange); color: #fff; }
.rbtn--tel { background: #fff; color: var(--ink); }
@media (min-width: 600px) { .reserve__btns { grid-template-columns: 1fr 1fr; } }

/* ---- ⑥ 店舗情報 ---- */
.dl {
  display: grid; grid-template-columns: 6.5em 1fr;
  font-size: 0.93rem;
  border: 4px solid var(--ink);
  border-radius: 18px;
  background: #fff;
  padding: 6px 18px;
}
.dl dt, .dl dd { padding: 13px 2px; border-bottom: 2px dotted #ddd; }
.dl dt { color: var(--sub); font-weight: 800; white-space: nowrap; }
.dl dd a { color: var(--orange); font-weight: 800; }

/* ---- ⑦ 地図 ---- */
.map { margin-top: 50px; line-height: 0; }
.map iframe { width: 100%; height: 320px; border: 0; display: block; }
@media (min-width: 768px) { .map iframe { height: 400px; } }

/* ---- フッター ---- */
.ftr {
  background: var(--ink); color: var(--paper);
  text-align: center; padding: 40px 20px; font-size: 0.85rem;
  border-top: 6px solid var(--yellow);
}
.ftr__name { font-size: 1.3rem; font-weight: 800; color: var(--yellow); margin-bottom: 10px; }
.ftr p + p { margin-top: .6em; }
.ftr a { color: var(--yellow); }
.ftr__note { margin-top: 18px; opacity: .6; font-size: .68rem; line-height: 1.8; }

/* ---- Googleマップ周りの余白 ----
   地図の上には .map の margin-top、下には店舗情報セクションの下パディングが
   入っていて、地図だけが宙に浮いたように見えていた。
   上下とも詰めて、地図を帯として画面幅いっぱいに置く。
   #info はIDセレクタなので、前にある .sec の指定より確実に優先される。 */
#info { padding-bottom: 0; }
.map { margin-top: 18px; }   /* 地図の上に少しだけ余白を残す */

/* ---- 見出しは傾けない ----
   賑やかさはヒーローのバッジ・リボンと、料理の互い違い配置で出す。
   見出しまで傾けると読みにくいだけで、効果がなかった。
   ヒーロー側の傾きは残してある。 */
.ttl span { transform: none; }
