/* =============================================
レストランページ専用CSS（restaurant.css）
   ============================================= */

.restaurant-page {
  padding-top: 0;
  background-color: #fbf9f6; 
}

/* ヒーローの高さを570pxに変更 */
.restaurant-hero {
  position: relative;
  width: 100%;
  height: 570px;
  overflow: hidden;
}
.restaurant-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.restaurant-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.15);
}
.restaurant-hero__title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.3em;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* restaurantページのヘッダーを透明に */
body:has(.restaurant-page) .site-header {
  background: transparent;
  box-shadow: none;
}

body:has(.restaurant-page) .header-left,
body:has(.restaurant-page) .header-right {
  background-color: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
}



/* ── ② イントロ ── */
.restaurant-intro {
  padding: 64px 0 80px;
  background-color: #fbf9f6;
}
.restaurant-intro__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.restaurant-intro__heading {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 1.75;
  color: #0051a3;
  margin-bottom: 20px;
}
.restaurant-intro__text {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #4f4f4f;
  margin-bottom: 40px;

}

/* 営業時間カード */
.restaurant-hours {
    background-color: #0051a3;
    border-radius: 40px;
    padding: 28px 32px 32px;
    color: #ffffff;
    text-align: center;
    max-width: 500px; 
    margin: 0 auto; 
}
.restaurant-hours__label {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 8px;
}
.restaurant-hours__divider {
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='6' viewBox='0 0 40 6'%3E%3Cpath d='M0 3 Q5 0 10 3 Q15 6 20 3 Q25 0 30 3 Q35 6 40 3' stroke='%23ffffff' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 40px 6px;
  opacity: 0.6;
  margin-bottom: 12px;
}
.restaurant-hours__time {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 32px;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-bottom: 8px;
}
.restaurant-hours__note {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.85);
}

/* ── ③ FOOD MENU ── */
.food-menu {
  padding: 0 0 80px;
  background-color: #fbf9f6;
}
.food-menu__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* タイトル */
.food-menu__header {
  text-align: center;
  margin-bottom: 40px;
}
.food-menu__title {
  font-family: 'Dela Gothic One', sans-serif;
  font-weight: normal;
  font-size: 62px;
  line-height: 1.73;
  letter-spacing: 0.1em;
  color: #0051a3;
}
.food-menu__subtitle {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #4f4f4f;
  margin-top: -4px;
}

/* 名物：どて焼き定食（横長・全幅） */

.food-menu__featured {
  max-width: 630px;
  margin: 0 auto 32px; 
  background-color: #ffffff; 
  border-radius: 45px;      
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); 
  padding-bottom: 20px;    
  overflow: visible; 
}


.food-menu__featured-img-wrap {
  position: relative;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  margin-bottom: 12px;
}

.food-menu__featured-img {
  width: 100%;
  aspect-ratio:　300 / 150; /* ← 横長に変更 */
  object-fit: cover;
  display: block;
}

/* 名物バッジを丸く */
.food-menu__badge {
  position: absolute;
  bottom: -16px;
  left: 16px;
  background-color: #ab0000;
  color: #ffffff;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 名前と価格を横並びに */
.food-menu__featured-name {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #4f4f4f;
  text-align: center;
  margin-top: 20px; /* バッジの分下げる */
  display: inline;
}

.food-menu__featured-price {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.05em;
  color: #4f4f4f;
  text-align: center;
  display: inline;
  margin-left: 16px;
}

/* 名前と価格をまとめるラッパー */
.food-menu__featured-label {
  text-align: center;
  margin-top: 20px;
}

/* メニューグリッド（3列×2行） */
.food-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 20px 0　8px 0;
  max-width: 100%; 
}

.food-menu__note {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #888888;
  text-align: right;
  letter-spacing: 0.05em;
  padding-top: 10px;
}

.food-menu__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: #ffffff; 
  border-radius: 40px;     
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;      
  padding-bottom: 16px;    
}

.food-menu__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.food-menu__name {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #4f4f4f;
  padding: 0 16px;
  margin-top: 12px;
  text-align: center;
}

.food-menu__price {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #4f4f4f;
  padding: 0 16px;
  text-align: center;
}

/* ── ④ その他のメニュー ── */
.food-other {
  padding: 80px 0;
  background-color: #fbf9f6;
}
.food-other__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.food-other__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.food-other__img-wrap {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: unset; 
  height: 100%;  
}
.food-other__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.food-other__list-wrap {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 36px 40px;
}
.food-other__title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.1em;
  color: #0051a3;
  margin-bottom: 24px;
}
.food-other__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.food-other__list-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px dashed #c0c8d8;
  padding-bottom: 14px;
}
.food-other__list-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.food-other__list-name {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.05em;
  color: #4f4f4f;
}
.food-other__list-price {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: #4f4f4f;
  white-space: nowrap;
}

/* ── ⑤ 備考 ── */
.food-note {
  padding: 80px 0;
  background-color: #fbf9f6;
}
.food-note__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.food-note__card {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #0051a3; 
  padding: 0; /* ← 変更 */
  background-color: #ffffff; 
}

.food-note__title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: #ffffff;
  background-color: #0051a3; 
  padding: 16px 64px;      
  margin-bottom: 0;    
}

.food-note__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 32px; 
}

.food-note__list li {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #4f4f4f; 
  padding-left: 1em;
  position: relative;
}

.food-note__list li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: #4f4f4f; 
}


/* ── SP対応 ── */
@media (max-width: 768px) {
  .restaurant-hero { height: 260px; }
  .restaurant-intro { padding: 40px 0 0; }
  .restaurant-hours { padding: 20px 24px 24px; }
  .restaurant-hours__time { font-size: 24px; }
  .food-menu__title { font-size: 36px; }
  .food-menu__grid { grid-template-columns: 1fr 1fr; gap: 16px 12px; }
  .food-other__grid { grid-template-columns: 1fr; gap: 32px; }
  .food-other__list-wrap { padding: 24px 20px; }
  .food-note__card { padding: 24px 20px; }
}
/* =============================================
   restaurant.css SP追加対応
   ============================================= */
@media (max-width: 768px) {
  .restaurant-hero { height: 220px; }
  .restaurant-hero__title { font-size: 26px; }
  
  .restaurant-intro { padding: 36px 0 0; }
  .restaurant-intro__inner { padding: 0 16px; }
  .restaurant-intro__heading { font-size: 18px; line-height: 1.6; margin-bottom: 12px; }
  .restaurant-intro__text { font-size: 13px; margin-bottom: 28px; }
  
  .restaurant-hours { padding: 20px 16px 24px; max-width: 100%; border-radius: 20px; }
  .restaurant-hours__label { font-size: 14px; }
  .restaurant-hours__time { font-size: 22px; }
  .restaurant-hours__note { font-size: 12px; }
  
  .food-menu { padding: 0 0 48px; }
  .food-menu__inner { padding: 0 16px; }
  .food-menu__title { 
    font-size: 36px;
    padding-top: 80px; 
  }
  .food-menu__subtitle { font-size: 14px; }
  .food-menu__header { margin-bottom: 28px; }
  
  .food-menu__featured {
    max-width: 100%;
    border-radius: 20px;
    padding-bottom: 16px;
    margin-bottom: 24px;
  }
  .food-menu__featured-name { font-size: 14px; }
  .food-menu__featured-price { font-size: 13px; }
  .food-menu__featured-label { margin-top: 16px; }
  
  .food-menu__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .food-menu__item { border-radius: 16px; padding-bottom: 12px; }
  .food-menu__name { font-size: 12px; margin-top: 8px; padding: 0 10px; }
  .food-menu__price { font-size: 11px; padding: 0 10px; }
  .food-menu__note { font-size: 12px; }
  
  .food-other { padding: 48px 0; }
  .food-other__inner { padding: 0 16px; }
  .food-other__grid { grid-template-columns: 1fr; gap: 24px; }
  .food-other__img-wrap { height: 200px; border-radius: 8px; }
  .food-other__list-wrap { padding: 20px 16px; border-radius: 8px; }
  .food-other__title { font-size: 18px; margin-bottom: 16px; }
  .food-other__list-name,
  .food-other__list-price { font-size: 13px; }
  
  .food-note { padding: 48px 0; }
  .food-note__inner { padding: 0 16px; }

  .food-note__card {
      padding: 0 !important;
      overflow: hidden;
    }
    .food-note__title {
      font-size: 16px;
      padding: 12px 20px;
    }
    .food-note__list {
      padding: 20px 16px;
    }
    .food-note__list li {
      font-size: 13px;
    }
}
