/* ============================================================
   スターライトバーガー スタイルシート（style.css）

   このファイルは「見た目」を担当します。
   HTMLが「骨組み」、CSSが「化粧」、JavaScriptが「動き」という
   役割分担になっています。

   CSSの基本の書き方：
     セレクタ { プロパティ: 値; }
   例：
     h1 { color: red; }  ← 「h1タグの文字色を赤にする」という意味
   ============================================================ */


/* ------------------------------------------------------------
   1. CSS変数（カスタムプロパティ）
   ------------------------------------------------------------
   よく使う色に「名前」を付けて登録しておく仕組みです。
   :root に書くと、ページ全体のどこからでも var(--名前) で
   呼び出せます。
   色を変えたくなったら、ここを1か所直すだけで全体に反映される
   のが便利なところです。
   ------------------------------------------------------------ */
:root {
  --night-1: #0d1530;   /* いちばん深い夜空の紺色 */
  --night-2: #1b2a52;   /* 夜空の紺色（中間） */
  --night-3: #2e4373;   /* 少し明るい夜空の紺色 */
  --orange: #ff9a3c;    /* 電話ボタンなどのオレンジ */
  --orange-deep: #e8862e; /* 濃いめのオレンジ（グラデーション用） */
  --gold: #f2c14e;      /* 星あかりの金色 */
  --text: rgba(255, 255, 255, 0.88);     /* 本文の白（少し透ける） */
  --text-dim: rgba(255, 255, 255, 0.6);  /* 控えめな白（補足文用） */
  --glass: rgba(255, 255, 255, 0.08);        /* すりガラスの背景色 */
  --glass-border: rgba(255, 255, 255, 0.16); /* すりガラスのふち */
  --glass-hover: rgba(255, 255, 255, 0.12);  /* マウスを乗せた時 */
}
/* メモ：rgba(255,255,255,0.6) の最後の数字は「不透明度」です。
   1が完全に不透明、0が完全に透明。0.6は「60%見える」状態です。 */


/* ------------------------------------------------------------
   2. リセットと全体設定
   ------------------------------------------------------------ */

/* 「*」はすべての要素という意味。ブラウザが最初から持っている
   余白をゼロにして、デザインを揃えやすくします（リセットCSS） */
* {
  margin: 0;   /* 要素の外側の余白 */
  padding: 0;  /* 要素の内側の余白 */
  box-sizing: border-box; /* 幅の計算に余白や枠線を含める設定。
                             レイアウト崩れを防ぐ定番テクニック */
}

/* ページ内リンク（#menu など）をクリックした時、
   スルスルとなめらかにスクロールさせる設定 */
html { scroll-behavior: smooth; }

body {
  /* フォントの指定。左から順に探して、あるものが使われます */
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--text); /* ← CSS変数を呼び出しています */

  /* linear-gradient は「グラデーション」。
     180deg は上から下方向、%は色が切り替わる位置です */
  background: linear-gradient(180deg, var(--night-1) 0%, var(--night-2) 40%, var(--night-3) 75%, var(--night-1) 100%);

  line-height: 1.8;    /* 行間。文字サイズの1.8倍。読みやすくなる */
  overflow-x: hidden;  /* 横方向のはみ出しを隠す（横スクロール防止） */
}

/* 画像が親要素からはみ出さないようにする定番の設定 */
img { max-width: 100%; display: block; }

/* コンテンツを中央に寄せるための「入れ物」。
   max-width で最大幅を決めて、margin: 0 auto で左右中央に配置 */
.inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2; /* 重なり順。数字が大きいほど手前に表示される */
}


/* ------------------------------------------------------------
   3. 星空レイヤー
   ------------------------------------------------------------
   position: fixed は「画面に固定」する設定。
   スクロールしても星空はその場に残り続けます。
   星そのもの（.star）はJavaScriptで自動生成しています。
   ------------------------------------------------------------ */
.sky {
  position: fixed;
  inset: -12vh 0;        /* 上下左右の位置をまとめて指定する書き方 */
  pointer-events: none;  /* クリックを素通りさせる（邪魔しない） */
  z-index: 0;            /* いちばん奥に配置 */
  will-change: transform; /* 「これから動かすよ」とブラウザに予告して
                             動きをなめらかにするヒント */
}

/* 丸い星。JavaScriptがこのクラスを付けた<span>をたくさん作ります */
.star {
  position: absolute;
  background: #fff;
  border-radius: 50%;  /* 角を丸める。50%で完全な円になる */
  animation: twinkle 3s ease-in-out infinite; /* またたきアニメ */
}

/* 十字型にきらめく星（✦の文字を使用） */
.star-cross {
  position: absolute;
  color: var(--gold);
  animation: twinkle 4s ease-in-out infinite;
  line-height: 1;
}

/* @keyframes は「アニメーションの台本」。
   0%（開始）→ 50%（中間）→ 100%（終了）の見た目を決めると、
   ブラウザがその間をなめらかにつないでくれます */
@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.8); } /* 薄く小さく */
  50%      { opacity: 0.9; transform: scale(1.1); } /* 明るく大きく */
}

/* 夜空ににじむ光。filter: blur() で大きくぼかして
   「光のもや」を表現しています */
.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);   /* 90pxぶん、ぼかす */
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}
/* radial-gradient は中心から外に広がる円形グラデーション。
   transparent は「透明」という意味です */
.glow-1 { width: 480px; height: 480px; top: -120px; right: -120px; background: radial-gradient(circle, rgba(242, 193, 78, 0.28), transparent 70%); }
.glow-2 { width: 520px; height: 520px; top: 45%; left: -180px; background: radial-gradient(circle, rgba(120, 100, 220, 0.25), transparent 70%); }
.glow-3 { width: 420px; height: 420px; bottom: -100px; right: -80px; background: radial-gradient(circle, rgba(255, 154, 60, 0.18), transparent 70%); }


/* ------------------------------------------------------------
   4. ヘッダー（画面上部のバー）
   ------------------------------------------------------------
   最初は透明で、スクロールすると JavaScript が .scrolled という
   クラスを付けて、すりガラス風に変化します。
   ------------------------------------------------------------ */
header {
  position: fixed; /* 画面上部に固定。スクロールしてもついてくる */
  top: 0;
  left: 0;
  right: 0;
  z-index: 100; /* 他の要素より必ず手前に */
  /* transition は「変化にかける時間」。0.4秒かけてじわっと変わる */
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}

/* スクロール後の見た目（JavaScriptがこのクラスを付け外しする） */
header.scrolled {
  background: rgba(13, 21, 48, 0.65); /* 半透明の紺色 */
  /* backdrop-filter: blur() が「すりガラス」の正体。
     自分の後ろに見えるものをぼかすプロパティです */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px); /* Safari用のおまじない */
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 30px rgba(0, 0, 0, 0.25);
}

.header-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 10px 20px;
  /* display: flex は「横並びレイアウト」の基本。
     justify-content: space-between で両端に振り分けます */
  display: flex;
  align-items: center;        /* 縦方向の中央揃え */
  justify-content: space-between;
  gap: 12px;                  /* 要素どうしのすき間 */
}

/* ロゴは白背景の画像なので、白いカードに載せてなじませる */
.header-logo {
  background: #fff;
  border-radius: 12px;
  padding: 4px 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25); /* ふんわり影 */
}
.header-logo img { height: 38px; width: auto; }

/* ヘッダー右側の電話ボタン */
.header-tel {
  display: flex;
  align-items: center;
  gap: 8px;
  /* 135deg は斜め方向のグラデーション */
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff;
  text-decoration: none; /* リンクの下線を消す */
  font-weight: 700;      /* 文字の太さ（700 = 太字） */
  padding: 8px 18px;
  border-radius: 999px;  /* 大きな数字にすると完全な角丸（カプセル型）に */
  box-shadow: 0 4px 16px rgba(232, 134, 46, 0.4);
  transition: transform 0.25s, box-shadow 0.25s;
  white-space: nowrap;   /* 文字を折り返さない */
}
/* :hover は「マウスを乗せた時」。translateY(-2px) で2px浮き上がる */
.header-tel:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(232, 134, 46, 0.55);
}
.header-tel .tel-num { font-size: 1.05rem; letter-spacing: 0.02em; }
/* メモ：rem という単位は「基準サイズの何倍か」。
   1rem = 16px が標準なので、1.05rem ≒ 17px です */


/* ------------------------------------------------------------
   5. ヒーロー（ページを開いて最初に見える部分）
   ------------------------------------------------------------ */
.hero {
  position: relative;
  padding: 150px 20px 110px; /* 上 左右 下 の余白 */
  text-align: center;        /* 文字を中央揃え */
  z-index: 2;
}
.hero-content { max-width: 760px; margin: 0 auto; }

/* 「七夕オープン」のバッジ */
.hero-badge {
  display: inline-block;
  background: rgba(242, 193, 78, 0.15);
  border: 1px solid rgba(242, 193, 78, 0.45);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 6px 22px;
  border-radius: 999px;
  margin-bottom: 26px;
  letter-spacing: 0.06em; /* 文字と文字の間隔を少し広げる */
  backdrop-filter: blur(8px);
}

/* メインの見出し */
.hero h1 {
  /* clamp(最小, 基準, 最大) は画面幅に応じて文字サイズを
     自動調整してくれる便利な書き方。
     スマホでは小さく、パソコンでは大きく表示されます */
  font-size: clamp(1.8rem, 5.5vw, 3rem);
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 0 40px rgba(242, 193, 78, 0.25); /* 文字の後光 */
}

/* 「しあわせ」の部分だけ金色のグラデーション文字にする技 */
.hero h1 .accent {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;      /* 背景を文字の形で切り抜く */
  background-clip: text;
  -webkit-text-fill-color: transparent; /* 文字自体は透明にする */
}

.hero p.lead {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: var(--text-dim);
  margin-bottom: 40px;
}


/* ------------------------------------------------------------
   6. 登場アニメーション（ページを開いた時のふわっ）
   ------------------------------------------------------------
   opacity: 0（透明）+ 少し下にずらした状態から始めて、
   アニメーションで「本来の位置に浮かび上がる」演出です。
   d1〜d4 で開始タイミングをずらし、順番に登場させています。
   ------------------------------------------------------------ */
.fade-up {
  opacity: 0;
  transform: translateY(26px); /* 26px下からスタート */
  animation: fadeUp 0.9s ease forwards;
  /* forwards = アニメ終了後もその状態を保つ、という意味 */
}
.fade-up.d1 { animation-delay: 0.1s; } /* 0.1秒待ってから開始 */
.fade-up.d2 { animation-delay: 0.3s; }
.fade-up.d3 { animation-delay: 0.5s; }
.fade-up.d4 { animation-delay: 0.7s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); } /* 最終形だけ書けばOK */
}


/* ------------------------------------------------------------
   7. ヒーローの電話ボックスとボタン
   ------------------------------------------------------------ */
.hero-tel-box {
  display: inline-block;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 26px;
  padding: 26px 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.hero-tel-box .note { font-size: 0.9rem; color: var(--text-dim); margin-bottom: 12px; }

/* いちばん大事な「電話ボタン」 */
.hero-tel-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff;
  text-decoration: none;
  font-size: clamp(1.4rem, 4.5vw, 2rem);
  font-weight: 900;
  padding: 14px 38px;
  border-radius: 999px;
  box-shadow: 0 8px 30px rgba(232, 134, 46, 0.5);
  transition: transform 0.25s;
  letter-spacing: 0.03em;
  /* 目立たせるため、光が脈打つアニメーションを無限に繰り返す */
  animation: pulse-glow 2.8s ease-in-out infinite;
}
.hero-tel-btn:hover { transform: scale(1.05); } /* 乗せると5%拡大 */

/* box-shadow（影）の広がり方を変化させて「脈打つ光」を表現 */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 8px 30px rgba(232, 134, 46, 0.45); }
  50%      { box-shadow: 0 8px 44px rgba(255, 154, 60, 0.8), 0 0 0 8px rgba(255, 154, 60, 0.08); }
}

.hero-tel-box .hours { font-size: 0.85rem; color: var(--text-dim); margin-top: 14px; }


/* ------------------------------------------------------------
   8. セクション共通の見出しスタイル
   ------------------------------------------------------------
   「CONCEPT」「MENU」などの英語ラベル＋日本語見出しの
   組み合わせを、どのセクションでも同じ見た目にします。
   ------------------------------------------------------------ */
section { padding: 84px 0; position: relative; z-index: 2; }

.sec-label {
  text-align: center;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.25em;
  font-size: 0.82rem;
  margin-bottom: 10px;
}

.sec-title {
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}

/* ::after は「要素の直後にCSSだけで飾りを追加する」擬似要素。
   ここでは見出しの下の短い金色ラインを作っています。
   HTMLに書かずに飾りを足せるのがポイント */
.sec-title::after {
  content: "";       /* 中身は空でOK（線そのものが目的） */
  display: block;
  width: 56px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  margin: 16px auto 0;
}

.sec-lead { text-align: center; color: var(--text-dim); margin-bottom: 48px; }


/* ------------------------------------------------------------
   9. グラスカード（すりガラス風カードの共通部品）
   ------------------------------------------------------------
   このサイトのデザインの主役。半透明の背景 + 背景ぼかし +
   薄いふち線の3点セットで「すりガラス」に見せています。
   （この手法は「グラスモーフィズム」と呼ばれています）
   複数の場所で使うスタイルは、こうして共通クラスにまとめると
   修正が1か所で済みます。
   ------------------------------------------------------------ */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 22px;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.28);
  /* cubic-bezier は変化の緩急を細かく指定する書き方。
     これは「最初速く、最後ゆっくり」の気持ちいい動きです */
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s, background 0.35s, box-shadow 0.35s;
}
/* マウスを乗せると浮き上がり、ふちが金色に光る */
.glass-card:hover {
  transform: translateY(-6px);
  background: var(--glass-hover);
  border-color: rgba(242, 193, 78, 0.5);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35), 0 0 24px rgba(242, 193, 78, 0.12);
}


/* ------------------------------------------------------------
   10. コンセプトセクション（写真＋文章の2列レイアウト）
   ------------------------------------------------------------ */
.concept-grid {
  /* display: grid は「格子状レイアウト」。
     1fr 1fr は「同じ幅の列を2つ作る」という意味です */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center; /* 左右の高さをそろえて中央に */
}

.concept-photo {
  border-radius: 26px;
  overflow: hidden; /* 角丸からはみ出す部分を隠す */
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.4), 0 0 40px rgba(242, 193, 78, 0.1);
  transform: rotate(-1.5deg); /* ほんの少し傾けて遊び心を出す */
}
.concept-photo img { will-change: transform; }

.concept-text h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: #fff;
  font-weight: 900;
  line-height: 1.6;
  margin-bottom: 18px;
}
.concept-text p { margin-bottom: 14px; color: var(--text); }


/* ------------------------------------------------------------
   11. メニューセクション
   ------------------------------------------------------------ */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 同じ幅の列を3つ */
  gap: 26px;
}

.menu-card {
  overflow: hidden;
  /* flex-direction: column で「縦並び」に。
     写真→本文の順に上から積む構成です */
  display: flex;
  flex-direction: column;
}

.menu-card .photo {
  aspect-ratio: 4 / 3; /* 写真の縦横比を4:3に固定 */
  overflow: hidden;
  position: relative;
}
.menu-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 比率を保ったまま枠いっぱいに配置 */
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
/* カードに乗せると写真がゆっくりズームする */
.menu-card:hover .photo img { transform: scale(1.07); }

.menu-card .body {
  padding: 18px 20px 22px;
  flex: 1; /* 残りの高さをすべて使う→カードの高さが揃う */
  display: flex;
  flex-direction: column;
}
.menu-card h3 { font-size: 1.08rem; color: #fff; font-weight: 700; line-height: 1.5; }
.menu-card .desc {
  font-size: 0.87rem;
  color: var(--text-dim);
  margin-top: 6px;
  flex: 1; /* 説明文が短くても価格の位置が下に揃う仕掛け */
}
.menu-card .price {
  margin-top: 12px;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold);
}
.menu-card .price small { font-size: 0.78rem; font-weight: 500; color: var(--text-dim); }

/* 写真の左上に重ねる「看板メニュー」バッジ */
.badge {
  position: absolute; /* 親要素（.photo）を基準に位置を決める */
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 2;
}
/* 「スペシャル」バッジは紺色バージョン */
.badge.star {
  background: rgba(13, 21, 48, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(242, 193, 78, 0.4);
}
/* ::before で文字の前に金色の★を自動で付け足す */
.badge.star::before { content: "★ "; color: var(--gold); }

/* 七夕限定セットの特別カード（横長・2列構成） */
.tanabata-card {
  /* grid-column: 1 / -1 は「1列目から最後の列まで」＝
     3列ぶち抜きで横いっぱいに広げる、という意味 */
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr 1fr; /* 写真側を少しだけ広く */
  overflow: hidden;
  background: linear-gradient(135deg, rgba(242, 193, 78, 0.12), rgba(255, 255, 255, 0.06));
}
.tanabata-card .photo { position: relative; min-height: 260px; }
.tanabata-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.tanabata-card .body { padding: 38px 36px; }
.tanabata-card .limited {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--night-1);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 4px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.tanabata-card h3 { font-size: clamp(1.25rem, 3vw, 1.6rem); font-weight: 900; margin-bottom: 12px; color: #fff; }
.tanabata-card .desc { font-size: 0.92rem; color: var(--text); margin-bottom: 18px; }
.tanabata-card .price { font-size: 1.7rem; font-weight: 900; color: var(--gold); }
.tanabata-card .price small { font-size: 0.85rem; font-weight: 500; color: var(--text-dim); }

.menu-note { text-align: center; font-size: 0.85rem; color: var(--text-dim); margin-top: 28px; }


/* ------------------------------------------------------------
   12. 注文の流れ（3ステップ）
   ------------------------------------------------------------ */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  /* counter-reset は「番号カウンター」を用意する設定。
     下の ::before と組み合わせて、1・2・3 の数字を
     CSSが自動で振ってくれます */
  counter-reset: step;
}

.flow-card {
  padding: 38px 24px 30px;
  text-align: center;
  position: relative;
}

/* カード上部の丸い番号。HTMLに数字を書かなくても
   カウンターが 1, 2, 3... と自動で増えていきます */
.flow-card::before {
  counter-increment: step;      /* カウンターを1増やす */
  content: counter(step);       /* その数字を表示する */
  position: absolute;
  top: -19px;                   /* カードの上にはみ出させる */
  left: 50%;
  transform: translateX(-50%);  /* 左右中央に置く定番テクニック */
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--night-1);
  font-weight: 900;
  font-size: 1.15rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(242, 193, 78, 0.4);
}

.flow-card .icon { font-size: 2.6rem; margin-bottom: 12px; line-height: 1; }
.flow-card h3 { color: #fff; font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.flow-card p { font-size: 0.88rem; color: var(--text-dim); }


/* ------------------------------------------------------------
   13. 店長あいさつ
   ------------------------------------------------------------ */
.manager-grid {
  display: grid;
  grid-template-columns: 280px 1fr; /* 左は280px固定、右は残り全部 */
  gap: 40px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
}

.manager-photo {
  border-radius: 50%;   /* 写真を丸く切り抜く */
  overflow: hidden;
  aspect-ratio: 1 / 1;  /* 正方形にしてから丸くする */
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.4), 0 0 30px rgba(242, 193, 78, 0.15);
  border: 4px solid rgba(255, 255, 255, 0.25);
}
.manager-photo img { width: 100%; height: 100%; object-fit: cover; }

.manager-text h3 { color: #fff; font-size: 1.2rem; font-weight: 900; margin-bottom: 14px; }
.manager-text p { margin-bottom: 12px; font-size: 0.95rem; color: var(--text); }
.manager-text .name { text-align: right; font-weight: 700; color: var(--gold); margin-top: 16px; }


/* ------------------------------------------------------------
   14. 店舗情報（表組み）
   ------------------------------------------------------------ */
.info-table {
  max-width: 720px;
  margin: 0 auto;
  overflow: hidden;
}
/* 情報の表はカードだけどホバーで動いてほしくないので打ち消す */
.info-table:hover { transform: none; }

.info-row {
  display: grid;
  grid-template-columns: 170px 1fr; /* 左：項目名、右：内容 */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* 区切り線 */
}
/* :last-child は「最後の1個だけ」に効くセレクタ。
   最後の行の下線は不要なので消しています */
.info-row:last-child { border-bottom: none; }

.info-row dt {
  background: rgba(255, 255, 255, 0.05);
  padding: 18px 22px;
  font-weight: 700;
  color: var(--gold);
  display: flex;
  align-items: center;
  font-size: 0.92rem;
}
.info-row dd { padding: 18px 22px; font-size: 0.95rem; color: var(--text); }
.info-row dd .big { font-size: 1.3rem; font-weight: 900; color: var(--orange); }
.info-row dd small { color: var(--text-dim); }


/* ------------------------------------------------------------
   15. 最後のCTA（行動をうながすエリア）
   ------------------------------------------------------------
   CTAは Call To Action の略で、「見た人にしてほしい行動へ
   誘導するエリア」のこと。このサイトでは電話注文です。
   ------------------------------------------------------------ */
.cta-section {
  position: relative;
  text-align: center;
  padding: 100px 20px 110px;
  z-index: 2;
}
.cta-section h2 {
  font-size: clamp(1.4rem, 4vw, 2.1rem);
  font-weight: 900;
  margin-bottom: 14px;
  line-height: 1.6;
  color: #fff;
  text-shadow: 0 0 40px rgba(242, 193, 78, 0.25);
}
.cta-section p { color: var(--text-dim); margin-bottom: 32px; }
.cta-section .hours { margin-top: 18px; font-size: 0.88rem; }


/* ------------------------------------------------------------
   16. フッター（ページ最下部）
   ------------------------------------------------------------ */
footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-dim);
  text-align: center;
  padding: 30px 20px;
  font-size: 0.82rem;
}
footer .logo-text {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 6px;
  letter-spacing: 0.15em;
}


/* ------------------------------------------------------------
   17. スマホ用の固定電話ボタン
   ------------------------------------------------------------
   ふだんは display: none で隠しておき、画面幅540px以下の時だけ
   （下のメディアクエリで）表示します。
   ------------------------------------------------------------ */
.fixed-tel {
  display: none;
  position: fixed;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 200;
}
.fixed-tel a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.15rem;
  padding: 14px;
  border-radius: 999px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
  animation: pulse-glow 2.8s ease-in-out infinite;
}


/* ------------------------------------------------------------
   18. スクロールでふわっと表示（JavaScriptと連携）
   ------------------------------------------------------------
   仕組み：
   1. 最初は .reveal で「透明＋少し下＋少し縮小」にしておく
   2. JavaScriptが「画面に入った」ことを検知したら .show を付ける
   3. transition の力で、ふわっと本来の姿に変化する
   --delay はHTML側で個別に指定できる変数で、カードごとに
   登場タイミングをずらすのに使っています。
   ------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s); /* 指定がなければ0秒 */
}
.reveal.show { opacity: 1; transform: translateY(0) scale(1); }


/* ------------------------------------------------------------
   19. アクセシビリティ配慮
   ------------------------------------------------------------
   OSの設定で「動きを減らす」を選んでいる人（画面の動きで
   酔いやすい人など）には、アニメーションをすべて止めます。
   こういう配慮を「アクセシビリティ」と呼びます。
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;   /* !important は最優先の印 */
    transition: none !important;
  }
  .reveal, .fade-up { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}


/* ------------------------------------------------------------
   20. レスポンシブ対応（画面幅ごとの調整）
   ------------------------------------------------------------
   @media (max-width: 820px) は「画面幅が820px以下の時だけ
   ここの中のCSSを追加で効かせる」という意味（メディアクエリ）。
   タブレット向け → スマホ向けの順で、上書き調整していきます。
   ------------------------------------------------------------ */

/* ===== タブレット・小さめ画面（820px以下） ===== */
@media (max-width: 820px) {
  section { padding: 60px 0; }
  .hero { padding: 130px 20px 90px; }

  /* スマホではぼかしを軽くして動作をなめらかに
     （ぼかし処理は意外と重いので、弱くすると省エネになる） */
  .glass-card, .hero-tel-box, header.scrolled {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .glow { filter: blur(70px); opacity: 0.4; }
  .glow-1 { width: 320px; height: 320px; }
  .glow-2 { width: 340px; height: 340px; }
  .glow-3 { width: 280px; height: 280px; }

  /* 2列だったものを1列に、3列だったものを2列に変える */
  .concept-grid { grid-template-columns: 1fr; gap: 30px; }
  .menu-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .tanabata-card { grid-template-columns: 1fr; }
  .tanabata-card .photo { min-height: 220px; position: relative; }
  .flow-grid { grid-template-columns: 1fr; gap: 34px; max-width: 420px; margin: 0 auto; }
  .manager-grid { grid-template-columns: 1fr; max-width: 460px; text-align: center; padding: 30px 24px; }
  .manager-photo { max-width: 200px; margin: 0 auto; }
  .manager-text .name { text-align: center; }
  .info-row { grid-template-columns: 1fr; } /* 項目名と内容を縦積みに */
  .info-row dt { padding: 10px 22px; }
  .info-row dd { padding: 12px 22px 16px; }
}

/* ===== スマートフォン（540px以下） ===== */
@media (max-width: 540px) {
  .menu-grid { grid-template-columns: 1fr; } /* メニューも1列に */
  .header-tel .tel-label { display: none; }  /* 「ご注文は」を非表示に */
  .header-logo img { height: 32px; }
  .hero { padding: 108px 16px 70px; }

  /* パソコン用に入れた改行<br>をスマホでは無効にして
     自然な位置で折り返させる */
  .hero p.lead br { display: none; }

  /* 電話ボタンを画面幅いっぱいに広げて押しやすく */
  .hero-tel-box { display: block; padding: 22px 18px; }
  .hero-tel-btn { width: 100%; justify-content: center; padding: 16px 10px; }
  .cta-section .hero-tel-btn { width: auto; padding: 16px 34px; }
  .tanabata-card .body { padding: 26px 22px; }

  /* 画面下部の固定電話ボタンを表示。
     env(safe-area-inset-bottom) はiPhoneの下の横棒（ホームバー）
     の高さのこと。ボタンがそれに重ならないよう自動で避けます */
  .fixed-tel { display: block; bottom: calc(10px + env(safe-area-inset-bottom, 0px)); }
  .fixed-tel a { padding: 16px; }

  /* 固定ボタンがページ最下部の内容に重ならないよう、
     bodyの下に余白を確保しておく */
  body { padding-bottom: calc(86px + env(safe-area-inset-bottom, 0px)); }
}
