@charset "UTF-8";
/* ============================================================================
   g.css — 案G：木目ナチュラル

   ベージュ〜木の色。丸ゴシック寄りの書体、角を大きく丸め、影はやわらかく。
   「女性客・一人客が入りやすい」印象をつくるのが目的なので、
   威圧感のある太字・濃い色・鋭い角を使わない。

   他案との違い：案A（温かみ）は生成り＋明朝で「常連の店」の落ち着き。
   この案は木＋丸ゴシックで「明るくて入りやすい」。角丸を多用するのはこの案だけ。
   ============================================================================ */

:root {
  --wood:   #b98a56;   /* 木の色 */
  --wood-d: #8c6540;
  --bg:     #fbf7f1;
  --bg2:    #f4ece1;
  --ink:    #4a3f36;
  --sub:    #8b7d6e;
  --line:   #e6d9c8;
  --green:  #7d9068;   /* 差し色。やわらかい葉の色 */

  /* 丸ゴシックはOS標準にないため、丸みのあるゴシックを優先して指定する */
  --round: "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN",
           "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;

  /* common.css の固定CTAへ流し込む配色 */
  --cta-bg: var(--wood);
  --cta-fg: #fff;
  --cta-radius: 999px;
  --cta-weight: 700;
  --bar-bg: #6b5849;
  --bar-fg: #fbf7f1;
}

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

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

.sec { padding-block: 60px; }
.sec--tint { background: var(--bg2); }
@media (min-width: 768px) { .sec { padding-block: 92px; } }

/* ---- 見出し：日本語が上、英字が下（他案と逆にして差をつける） ---- */
.ttl {
  text-align: center;
  margin-bottom: 40px;
  font-size: clamp(1.3rem, 4.8vw, 1.8rem);
  font-weight: 700;
  letter-spacing: .12em;
  text-indent: .12em;
}
.ttl span {
  display: block;
  font-size: .38em;
  font-weight: 400;
  letter-spacing: .3em;
  text-indent: .3em;
  color: var(--wood);
  margin-top: 10px;
}

/* ---- ヘッダー ---- */
.hdr {
  gap: 20px;
  padding-inline: 18px;
  background: rgba(251, 247, 241, .95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.hdr__brand {
  font-size: 1.05rem; font-weight: 700; letter-spacing: .1em;
  text-decoration: none; white-space: nowrap;
}
.hdr__nav { display: none; }
@media (min-width: 768px) {
  .hdr { padding-inline: 30px; gap: 28px; }
  .hdr__brand { font-size: 1.25rem; }
  .hdr__nav { display: flex; gap: 24px; margin-left: auto; font-size: 0.91rem; }
  .hdr__nav a {
    text-decoration: none; padding: 4px 12px; border-radius: 999px;
    transition: background .2s;
  }
  .hdr__nav a:hover { background: var(--bg2); }
}

/* ---- ① ファーストビュー：白い丸角カードに店名 ---- */
.hero {
  position: relative;
  min-height: 54svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 40px 20px;
}
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  /* 店名は白いカードの中に載せるので、背景まで白く飛ばす必要がない。
     写真の質感を残したほうが「入りやすそうな店」が伝わる。 */
  background: rgba(251, 247, 241, .12);
}
.hero__card {
  position: relative; z-index: 1;
  background: rgba(255, 255, 255, .93);
  border-radius: 28px;
  padding: 32px 26px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(120, 90, 60, .18);
  max-width: 520px;
}
.hero__name {
  font-size: clamp(2.2rem, 9.6vw, 3.1rem);
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.35;
}
.hero__type {
  margin-top: 8px;
  font-weight: 700;              /* 細くて弱く見えていたので太くする */
  font-size: clamp(.92rem, 3.9vw, 1.06rem);
  letter-spacing: .2em;
  text-indent: .2em;
  color: var(--wood-d);
}
.hero__tags {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 7px;
  margin-top: 20px;
}
.hero__tags li {
  background: var(--bg2);
  color: var(--wood-d);
  border-radius: 999px;
  padding: 6px 15px;
  font-size: clamp(.82rem, 3.3vw, .92rem);
  letter-spacing: .04em;
}
@media (min-width: 768px) {
  .hero { min-height: 84svh; }
  .hero__card { padding: 44px 52px; border-radius: 34px; }
}

/* ---- ② お店のこと：吹き出し ---- */
.bubble {
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 26px 24px;
  font-size: 1.00rem;
  box-shadow: 0 6px 24px rgba(120, 90, 60, .10);
}
.bubble::after {   /* 吹き出しのしっぽ */
  content: "";
  position: absolute; left: 50%; bottom: -13px;
  width: 26px; height: 26px;
  background: #fff;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 5px;
}
.bubble p + p { margin-top: 1.1em; }

/* ---- ③ おすすめ：丸角カード＋価格バッジ ---- */
.items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.it { text-align: center; }
.it__pic { position: relative; }
.it__pic img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(120, 90, 60, .14);
}
.it__badge {
  position: absolute; right: 8px; bottom: 8px;
  background: var(--wood); color: #fff;
  border-radius: 999px;
  padding: 5px 13px;
  font-size: 0.81rem; font-weight: 700;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .18);
}
.it h3 { margin-top: 12px; font-size: 0.99rem; font-weight: 700; letter-spacing: .04em; }
.it p { font-size: 0.83rem; color: var(--sub); line-height: 1.75; margin-top: 3px; }

@media (min-width: 768px) {
  .items { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
  .it h3 { font-size: 1.02rem; }
}

/* ---- ④ ご宴会 ---- */
.plans { display: grid; gap: 16px; }
.pl {
  background: #fff;
  border-radius: 22px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 6px 22px rgba(120, 90, 60, .10);
}
.pl h3 { font-size: .96rem; font-weight: 700; letter-spacing: .06em; }
.pl__p { margin-top: 4px; font-size: 1.9rem; font-weight: 700; color: var(--wood); line-height: 1.2; }
.pl__p small { font-size: .4em; }
.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; } }

/* ---- ⑤ ご予約 ---- */
.reserve__lead { text-align: center; font-size: 0.97rem; margin-bottom: 28px; }
.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: 68px; border-radius: 999px;
  text-decoration: none; font-weight: 700; line-height: 1.3;
  transition: transform .15s, box-shadow .15s;
}
.rbtn:hover { transform: translateY(-2px); }
.rbtn small { font-size: .66rem; font-weight: 400; opacity: .85; margin-top: 2px; }
.rbtn--net {
  background: var(--wood); color: #fff;
  box-shadow: 0 6px 18px rgba(185, 138, 86, .4);
}
.rbtn--tel { background: #fff; color: var(--ink); border: 2px solid var(--line); }
@media (min-width: 600px) { .reserve__btns { grid-template-columns: 1fr 1fr; } }

/* ---- ⑥ 店舗情報 ---- */
.dl {
  display: grid; grid-template-columns: 6.5em 1fr;
  font-size: 0.93rem;
  background: #fff;
  border-radius: 20px;
  padding: 8px 20px;
  box-shadow: 0 6px 22px rgba(120, 90, 60, .09);
}
.dl dt, .dl dd { padding: 14px 2px; border-bottom: 1px solid var(--line); }
.dl > dt:nth-last-of-type(1), .dl > dd:nth-last-of-type(1) { border-bottom: 0; }
.dl dt { color: var(--sub); white-space: nowrap; }
.dl dd a { color: var(--wood-d); font-weight: 700; }

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

/* ---- フッター ---- */
.ftr {
  background: #6b5849; color: #f4ece1;
  text-align: center; padding: 44px 20px; font-size: 0.85rem;
}
.ftr__name { font-size: 1.2rem; font-weight: 700; letter-spacing: .1em; margin-bottom: 10px; }
.ftr p + p { margin-top: .6em; }
.ftr a { color: #f4ece1; }
.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; }   /* 地図の上に少しだけ余白を残す */
