@charset "utf-8";

/* ==============================================
RESTAURANT ページ専用CSS
(ヘッダー/フッター/共通ナビ/共通ボタンは css/style.css を参照)

ターゲット(20〜30代男女 + シニア世代の団体客)への配慮:
- 本文フォントサイズは15px以上、ラベル・ボタンは16px以上を基本とする
- タップ領域は48px以上を確保(MENUボタン、検索ボタン、人数ステッパー等)
- 機能的なテキスト(ボタン・ラベル・フォーム)はゴシック体、
  読み物としての説明文は明朝体、という使い分けで可読性を優先
============================================== */

:root{
  --r-sub: #4a4460;
}

.utility{ font-family: 'Zen Kaku Gothic New', sans-serif; }

/* ================= HERO ================= */
.restaurant-page-hero{
  position: relative;
  width: 100%;
  height: calc(100vh - var(--header-h) - var(--nav-h, 64px));
  min-height: 420px;
  overflow: hidden;
}
.restaurant-page-hero img{ width: 100%; height: 100%; object-fit: cover; }

/* 写真の明暗にかかわらず文字を読みやすくするための暗幕 */
.restaurant-page-hero::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(115deg, rgba(45,0,77,0.55) 0%, rgba(45,0,77,0.22) 38%, rgba(45,0,77,0.38) 100%);
  pointer-events: none;
}

.hero-badge{
  position: absolute;
  z-index: 2;
  left: 5%;
  top: 12%;
  width: 220px;
  height: 220px;
  background: rgba(204,204,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: var(--purple);
}

.hero-copy{
  position: absolute;
  z-index: 2;
  right: 6%;
  top: 12%;
  text-align: right;
  max-width: 620px;
}

.hero-copy .script{
  font-family: 'La Belle Aurore', cursive;
  font-size: clamp(28px, 4.4vw, 50px);
  color: var(--paper);
  text-shadow: 2px 2px 8px rgba(0,0,0,0.35);
}

.hero-copy .sub{
  margin-top: 10px;
  font-weight: 700;
  font-size: clamp(16px, 2vw, 22px);
  color: var(--lavender);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

@media (max-width: 800px){
  .hero-badge{ width: 150px; height: 150px; font-size: 19px; left: 6%; top: 8%; }
  .hero-copy{ left: 6%; right: 6%; text-align: left; top: auto; bottom: 8%; }
}

/* ================= 共通見出し ================= */
.section-head{
  text-align: center;
  padding: 0 6%;
  margin-bottom: 40px;
}

.en-title{
  font-family: 'Castoro', serif;
  font-size: clamp(28px, 4.5vw, 44px);
  color: var(--yellow);
  margin-bottom: 18px;
}
.en-title.small{
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 12px;
  text-align: left;
}

.divider{
  width: 100%;
  max-width: 900px;
  height: 0;
  border-top: 3px solid var(--lavender);
  margin: 0 auto 24px;
}
.divider.small{
  max-width: 220px;
  margin: 0 0 20px;
  border-top-width: 3px;
}

/* ================= ABOUT ================= */
.about-section{ padding: 90px 6%; }

.about-copy{
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 2;
  text-align: center;
  color: var(--purple);
}

/* ================= MEAL BLOCK(BREAKFAST / LUNCH / DINNER) ================= */
.meal-block{
  display: flex;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 90px;
  padding: 0 6%;
}

.meal-block.reverse{ flex-direction: row-reverse; }

.meal-text{ flex: 1 1 45%; }

.bullet{
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 15px;
  color: var(--r-sub);
  margin-bottom: 16px;
}

.meal-heading{
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--purple);
  margin-top: 18px;
  margin-bottom: 6px;
}
.meal-heading:first-of-type{ margin-top: 0; }

.meal-text > p{
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: var(--r-sub);
}

.meal-text .note{
  font-size: 13px;
  color: #8a8398;
  line-height: 1.9;
}
.meal-text .note a{ color: var(--purple); text-decoration: underline; }

.meal-photo{
  flex: 1 1 55%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
}
.meal-photo img{ width: 100%; height: 100%; object-fit: cover; }

.menu-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  min-width: 160px;
  margin-top: 26px;
  padding: 0 40px;
  background: #fff;
  border: 2px solid var(--yellow);
  border-radius: 999px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--purple);
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.menu-btn:hover{ background: var(--yellow); transform: translateY(-2px); }

@media (max-width: 860px){
  .meal-block,
  .meal-block.reverse{ flex-direction: column; gap: 28px; }
  .meal-photo{ width: 100%; }
}

/* ================= レストランご予約 ================= */
.reserve-section{ padding: 90px 6% 120px; }

.reserve-box{
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px;
  background: var(--lavender);
  border: 3px solid var(--yellow);
  border-radius: 8px;
}

.meal-radio-row{
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}

.reserve-label{
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--purple);
}

.radio-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--purple);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--purple);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.radio-pill input{ display: none; }

.radio-pill:has(input:checked){
  background: var(--purple);
  color: var(--yellow);
}

.reserve-fields{
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  background: #fff;
  border-radius: 6px;
  padding: 28px 24px;
  margin-bottom: 24px;
}

.field-row{
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 300px;
}

.field-row label{
  flex: 0 0 60px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--purple);
}

.field-row input[type="text"],
.field-row select{
  flex: 1;
  min-height: 50px;
  padding: 10px 14px;
  border: 1px solid var(--gray);
  border-radius: 6px;
  background: var(--paper);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 16px;
  color: var(--purple);
}

.stepper{
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}
.stepper-btn{
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--purple);
  background: #fff;
  color: var(--purple);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.stepper-btn:active{ background: var(--yellow); }
.stepper input{
  flex: 1;
  min-height: 44px;
  text-align: center;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--purple);
  border: 1px solid var(--gray);
  border-radius: 6px;
  background: var(--paper);
}

.search-btn{
  display: block;
  margin: 0 auto;
  min-height: 56px;
  min-width: 220px;
  background: var(--yellow);
  border: none;
  border-radius: 999px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--purple);
  cursor: pointer;
  transition: filter .2s ease;
}
.search-btn:hover{ filter: brightness(0.94); }

@media (max-width: 700px){
  .reserve-box{ padding: 22px; }
  .field-row{ flex-wrap: wrap; }
  .field-row label{ flex: none; width: 100%; }
}

/* ================= MENU モーダル ================= */
.modal-overlay{
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(45,0,77,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open{ display: flex; }

.modal-box{
  position: relative;
  background: #fff;
  max-width: 560px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 48px 36px 36px;
  border-radius: 8px;
}

.modal-close{
  position: absolute;
  top: 14px; right: 16px;
  width: 44px; height: 44px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: var(--purple);
  cursor: pointer;
}

.modal-title{
  font-family: 'Castoro', serif;
  font-size: 24px;
  color: var(--purple);
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--lavender);
}

.menu-list{ list-style: none; margin-bottom: 20px; }
.menu-list li{
  padding: 14px 0;
  border-bottom: 1px dashed var(--lavender);
}
.menu-list li:first-child{ padding-top: 0; }
.menu-list span{
  display: block;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 4px;
}
.menu-list small{
  display: block;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--r-sub);
}

.modal-note{
  font-size: 12px;
  line-height: 1.8;
  color: #8a8398;
}

@media (max-width: 600px){
  .modal-box{ padding: 56px 22px 28px; }
}
