@charset "UTF-8";

/* ============================================
   bbq_sp.css（BBQ棟について SP版 - 色のみCSS変数化）
   
   【概要】
   - 840px以下で読み込まれるスマートフォン用CSS
   - BBQ棟ページ専用のスタイル定義
   
   【前提条件】
   public_all.cssで定義されたCSS変数（色）を使用
   このファイルはpublic_all.cssの後に読み込むこと

   【セクション構成】
   0. リセット・共通設定
   1. ヒーローエリア（トップビジュアル）
   2. バーベキュー棟のご利用について
   3. 夕食材つき（BBQ食材）
   4. 設備の紹介
   5. レスポンシブ調整（445px以下、415px以下）
   ============================================ */


/* ============================================
   0. リセット・共通設定
   ============================================ */

/* --- ボックスサイズ統一 --- */
* {
  box-sizing: border-box;
}

/* --- 画像の基本設定 --- */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- PC用/SP用キャッチコピーの表示切替 --- */


/* --- 改行用のspacerクラス --- */
.spacer {
  display: block;
  height: 8px;
}


/* ============================================
   1. ヒーローエリア（#page-top-section）
   ============================================ */

/* --- ヒーロー全体 --- */
#page-top-section {
  width: 100%;
  background: var(--color-bg-main);
  display: flex;
  flex-direction: column;
  padding-top: 60px;        /* 固定ヘッダー分 */
  padding-bottom: 40px;
  margin: 0 0 36px 0; 
  border-bottom: 1px solid var(--color-border-main);
}

/* --- 写真を先頭に配置 --- */
#page-top-section .section-harf:last-child {
  order: 1;
  width: 100%;
}

/* --- テキストエリア --- */
#page-top-section .section-harf:first-child {
  order: 2;
  width: 100%;
  padding: 30px 40px 0px;
}

/* --- メイン画像のトリミング --- */
#page-top-section .img-top {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: var(--color-bg-black);
}

#page-top-section .img-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* --- パンくずナビゲーション --- */
.section-stay1-Link {
  padding-top: 0px;
  font-size: 0.7rem;
  font-weight: 500; 
  color: var(--color-text-muted);
}

.section-stay1-Link a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color .15s ease;
}

.section-stay1-Link a:hover {
  color: var(--color-text-main);
}

/* --- 見出しエリア --- */
.contents-heading {
  margin-top: 20px;
  margin-bottom: 30px;
  padding-bottom: 4px;
  border-bottom: none;
}

/* --- ページタイトル --- */
.TOP-page-title {
  font-size: 1.9rem;
  font-weight: 700;
}

.TOP-page-title-p {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.06rem;
}

/* --- SP用キャッチコピー --- */
.TOP-page-read {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 10px 0 20px;
}

/* --- 本文 --- */
.TOP-page-p {
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: justify;
}

/* --- 補足テキスト（小） --- */
.TOP-small-text {
  font-size: 0.7rem;
  font-weight: 400;
}

/* <span>改行の高さを指定する */
.spacer {
  display: block;
  height: 8px;
}


/* ============================================
   サウナページ誘導ボタン（画像入り丸ボタン）
   ============================================ */

/* --- ボタン本体 --- */
.pill-imgbtn {
  width: min(350px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 22px);
  margin-left: auto;
  margin-right: auto;
  padding: clamp(14px, 2.2vw, 20px) clamp(18px, 3vw, 28px);
  border-radius: 9999px;
  overflow: hidden;
  position: relative;
  color: #fff;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

/* --- ボタン配置用ラッパー --- */
.bbq-btn-wrap{  
  display: block;
  width: 100%;
  margin: 30px auto 0px;
  text-align: center;
}

/* --- 背景画像 --- */
.pill-imgbtn__bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* --- 黒オーバーレイ --- */
.pill-imgbtn__overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.10) 0%,
    rgba(0,0,0,0.30) 30%,
    rgba(0,0,0,0.50) 55%,
    rgba(0,0,0,0.70) 75%,
    rgba(0,0,0,0.90) 100%
  );
  transition: background .25s ease;
}

/* --- ボタンテキスト --- */
.pill-imgbtn__text{
  position: relative;
  z-index: 2;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.1;
  letter-spacing: .06em;
  text-shadow:
    0 2px 0 rgba(0,0,0,.35),
    0 0 8px rgba(0,0,0,.35);
}

/* --- 右矢印 --- */
.pill-imgbtn__arrow{
  position: relative;
  z-index: 2;
  width: clamp(10px, 1.4vw, 16px);
  height: clamp(10px, 1.4vw, 16px);
  flex: 0 0 auto;
  border-right: 1.75px solid rgba(255,255,255,.9);
  border-top: 1.75px solid rgba(255,255,255,.9);
  transform: rotate(45deg);
  transition: transform .2s ease;
}

/* --- ホバー時の動き --- */
.bbq-btn-wrap:hover .pill-imgbtn{
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0,0,0,.26);
}

.bbq-btn-wrap:hover .pill-imgbtn__arrow{
  transform: translateX(5px) rotate(45deg);
}

.bbq-btn-wrap:hover .pill-imgbtn__overlay{
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.50) 30%,
    rgba(0,0,0,0.70) 55%,
    rgba(0,0,0,0.90) 75%,
    rgba(0,0,0,1.00) 100%
  );
}

/* --- タップ/クリック時 --- */
.pill-imgbtn:active{
  transform: translateY(-1px);
  box-shadow: 0 8px 14px rgba(0,0,0,.22);
}

/* --- フォーカス時（キーボード対応） --- */
.pill-imgbtn:focus-visible{
  outline: 3px solid rgba(255,255,255,.7);
  outline-offset: 3px;
}


/* ============================================
   2. バーベキュー棟のご利用について
   ============================================ */

/* --- セクション全体 --- */
#bbq-section {
  width: 100%;
  padding: 0px 40px 0px;
  background: var(--color-bg-main);
}

/* --- 内部コンテナ --- */
.bbq-flow-area { 
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

/* --- セクション見出し --- */
.section-heading{
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 30px;
  padding: 0px auto 10px;
  border-bottom: 1px solid #000;
}

/* --- 説明文エリア --- */
.bbq-flow-intro {
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.8;
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 0px;
}

/* --- 注意書き（赤文字） --- */
.note { 
  color: #D32F2F;
  font-size: 0.75rem;
  line-height: 1.5;
  font-weight: 500;
  margin: 0px;
}

/* --- PDFリンク --- */
.bbq-flow-intro a { 
  color: var(--color-text-red);
  font-weight: 700;
  text-decoration: none;
}

.bbq-flow-intro a:hover { 
  color: var(--color-text-muted);
}


/* --- 画像＋料金表エリア --- */

/* 画像と料金表を縦に配置 */
.bbq-price-top {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 20px 0 30px 0;
  gap: 0;
}

/* 画像エリア */
.bbq-price-left {
  width: 100%;
  margin-bottom: 20px;
  max-height: 320px;
  overflow: hidden;
}

.bbq-img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* 料金表エリア */
.bbq-price-right {
  width: 100%;
}

/* ご利用料金の見出し */
.bbq-price-title {
  text-align: left;
  font-size: 1.2rem;
  font-weight: 700;
}

/* 左の色付きバー */
.title-icon  {
  width: 8px;
  height: 1.2rem;
  background: var(--color-accent-main);
  flex-shrink: 0;
}

/* 補足テキスト */
.small-text {
  font-size: 0.75rem;
  font-weight: 500;
}

/* 小見出し（BBQ棟のご利用、夕食材つき、等） */
.bbq-price-small-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0px;  
  color: var(--color-text-light);
}

/* 料金行（項目名と金額を横並び） */
.bbq-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 5px 0;
  padding: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

/* 中央の点線 */
.bbq-price-row::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-bottom: 2px dotted #000;
  z-index: 0;
}

/* テキスト側に背景を持たせて点線を切る */
.bbq-price-row p {
  background: var(--color-bg-main);
  padding: 0 5px;
  position: relative;
  z-index: 1;
  margin: 0;
}

/* 金額部分 */
.price { 
  font-weight: 700;
  white-space: nowrap;
}

/* （税込〜）などの小さめ文字 */
.price-small {
  font-size: 0.75rem;
  margin-left: 2px;
  font-weight: 400;
}


/* --- 利用の詳細表（テーブル） --- */

/* 表全体 */
.bbq-list-area {
  width: 100%;
  margin: 20px 0 40px 0;
  font-size: 0.75rem;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
  background: var(--color-bg-main);
}

/* 1行（ラベル＋本文） */
.bbq-list {
  width: 100%;
  display: flex;
  border-bottom: 1px solid #ccc;
}

.bbq-list:last-child {
  border-bottom: none;
}

/* 左ラベル（ベージュ背景） */
.bbq-list-label {
  width: 30%;
  min-width: 90px;
  background: var(--color-bg-beige);
  padding: 10px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* 右本文 */
.bbq-list-text {
  flex: 1;
  padding: 10px 12px;
  text-align: left;
  display: flex;
  align-items: center;
}

/* pのデフォルト余白を消す */
.bbq-list-label p,
.bbq-list-text p {
  margin: 0;
}

/* ラベル文字 */
.bbq-label-font {
  font-weight: 700;
  line-height: 1.3;
}

/* 本文文字 */
.bbq-letterfont {
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.5;
}


/* ============================================
   3. 夕食材つき（BBQ食材）
   ============================================ */

/* --- セクション全体 --- */
#shokuzai-section {
  padding: 40px auto 60px;
  background: var(--color-bg-beige);
}

/* --- 内部コンテナ --- */
#shokuzai-section .shokuzai-inner {
  margin: 0px auto;
  padding: 40px 40px;
}

/* 小見出し（[ BBQ食材 ]部分） */
#shokuzai-section .section-heading .bbq-price-small-title {
  font-size: 1rem;
  font-weight: 500;
  margin-left: 10px;
}

/* --- 説明文 --- */
#shokuzai-section .bbq-flow-intro {
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 0px 0px 40px;
  width: 100%;
}

/* --- カード全体（画像＋テキスト） --- */
#shokuzai-section .set-card {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  margin: 0 auto 30px;
  gap: 0;
  background: var(--color-bg-main);
}

/* 2段目も同じ縦並び（反転なし） */
#shokuzai-section .set-card.mirror {
  flex-direction: column;
  margin: 0px auto;
}

/* --- 画像エリア --- */
#shokuzai-section .set-card-img {
  width: 100%;
  max-height: 250px;
  overflow: hidden;
}

#shokuzai-section .set-card-img img {
  width: 100%;
  height: 100%;
  max-height: 220px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* --- テキストエリア（白背景） --- */
#shokuzai-section .set-card-text {
  width: 100%;
  background: var(--color-bg-main);
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
}

/* --- 見出し（■ 手ぶらでOK！BBQセット） --- */
#shokuzai-section .stay-ap-text {
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1.3;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px 0;
}

/* 四角いアイコン（■） */
#shokuzai-section .stay-ap-text .title-icon {
  width: 8px;
  height: 1em;
  background: var(--color-accent-main);
  margin-top: 0px;
  padding: 0px;
  flex-shrink: 0;
}

/* --- 注釈（※写真は〜） --- */
#shokuzai-section .caption {
  font-size: 0.65rem;
  color: var(--color-text-light);
  line-height: 1.4;
  margin: 0 0 10px 0;
}

/* --- 本文リスト（食材一覧） --- */
#shokuzai-section .set-card-text .letterfont {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-main);
  line-height: 1.8;
  margin: 0px 0 10px 15px;
}

/* --- 注釈（※季節等により〜） --- */
#shokuzai-section .set-card-text .note-small{
  line-height: 1.3;
  margin: 0 0px 5px 18px;
}

/* --- リスト内のspan（例：キャベツ、玉ねぎ〜） --- */
#shokuzai-section .set-card-text .letterfont span {
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.8;
  margin-left: 8px;
  color: var(--color-text-light);
  display: inline;
}

/* spacerクラス（例：〜の部分）を改行させる */
#shokuzai-section .set-card-text .letterfont .spacer {
  display: block;
  margin-bottom: 5px;
  margin-left: 0px;
}

/* 下線（文字幅に合わせる） */
#shokuzai-section .bbq-note-p{
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-block;
  width: fit-content;   
  max-width: 100%;
  padding-bottom: 0px;
  margin: 0px auto; 
  text-align: center;
}

/* --- 赤文字の注意書き --- */
#shokuzai-section .redtext {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 3px auto 0;
  color: #D32F2F;
  text-align: center;
  display: inline-block;
  width: fit-content;   
  border-bottom: 1px solid var(--color-border-main);
}


/* ============================================
   4. 設備の紹介（#setubi-section）
   ============================================ */

/* --- セクション全体 --- */
#setubi-section {
  width: 100%;
  padding: 40px 40px;
  background-color: var(--color-bg-main);
}

/* --- セクション見出し --- */
.section-heading {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 30px;
  padding: 0px auto 10px;
  border-bottom: 1px solid #000;
}

/* --- タイトル --- */
.facility-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 5px;
  text-align: center;
}

/* --- 説明文 --- */
.facility-description {
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: justify;
  margin-bottom: 10px;
}

/* --- アメニティタイトル --- */
.facility-amenity-title {
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 3px;
}

/* --- アメニティリスト --- */
.facility-amenity-list {
  font-size: 0.8rem;
  line-height: 1.5;
  margin-bottom: 5px;
}

/* --- 注意書き --- */
.facility-note {
  font-size: 0.7rem;
  line-height: 1.5;
  color: var(--color-text-main);
}


/* --- スライダー --- */

/* スライダーコンテナ */
.slider-container {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 50px;
}

/* テキストエリア */
.slider-text-area {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding: 0 20px;
}

/* 矢印ボタン */
.slider-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s;
}

.slider-arrow:hover {
  opacity: 0.6;
}

.slider-arrow-left {
  left: 5px;
}

.slider-arrow-right {
  right: 5px;
}

/* 矢印のSVG */
.slider-arrow svg {
  width: 100%;
  height: 100%;
}

/* スライドアイテム（非表示） */
.slide-item {
  display: none;
  flex-direction: column;
  gap: 20px;
}

.slide-item.active {
  display: flex;
}

/* 画像エリア */
.slider-image-area {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

.slider-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0px;
}


/* ============================================
   5) 下部リンク（縦積み）- 画像オーバーレイスタイル
   ============================================ */
.three-image-section {
  display: flex;
  flex-direction: column;
}

/* 各画像カード - 高さ220px、相対位置 */
.img-card {
  position: relative;
  height: 150px;
  overflow: hidden; 
  cursor: pointer;
  border-bottom: 1px solid #fff;
}

/* カード内画像 */
.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* 暗いオーバーレイ */
.img-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  transition: 0.3s ease;
}

/* タイトルテキスト */
.img-card h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  z-index: 5;
  border-bottom: solid 1px #fff;
  padding-bottom: 5px; 
  pointer-events: none;
  opacity: 1;
  transition: opacity .35s ease, transform .35s ease;
}

/* ▼ ホバ
/* ホバー効果 */
.img-card:hover .overlay {
  background: rgba(0,0,0,0.3);
}

.img-card:hover img {
  transform: scale(1.05);
}


/* 6. レスポンシブ調整 */
/* ============================================
   6-1. 640px以下：中間サイズ調整
   ============================================ */
@media screen and (max-width: 640px) {
  
  /* --- 設備の紹介 --- */
  #setubi-section {
    padding: 30px 40px;
  }

  .another-room-heading {
    font-size: 1.5rem;
    padding: 0 30px 10px;
  }

  .slider-container {
    width: 100%;
    padding: 0px;
  }
  
  .slider-text-area {
    padding: 0 35px;
  }

  .facility-title {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }

  .facility-description {
    font-size: 0.8rem;
  }

  .facility-amenity-title,
  .facility-amenity-list {
    font-size: 0.75rem;
  }

  .facility-note {
    font-size: 0.6rem;
  }
  
  .slider-image-area {
    max-width: 90%;
    padding: 0 30px;
  }
  
  .slider-arrow {
    width: 40px;
    height: 40px;
  }
}

/* ============================================
   6-1. 445px以下：夕食材セクション全体を縮小
   ============================================ */
@media screen and (max-width: 445px) {
  
  /* --- 夕食材セクション全体 --- */
  #shokuzai-section .shokuzai-inner {
    padding: 30px 25px 50px;
  }
  
  /* --- セクション見出し --- */
  #shokuzai-section .section-heading {
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-bottom: 8px;
  }
  
  /* --- 小見出し --- */
  #shokuzai-section .section-heading .bbq-price-small-title {
    font-size: 0.85rem;
  }
  
  /* --- 説明文 --- */
  #shokuzai-section .bbq-flow-intro {
    font-size: 0.75rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  /* --- カード全体 --- */
  #shokuzai-section .set-card {
    margin-bottom: 20px;
  }
  
  /* --- 画像エリア --- */
  #shokuzai-section .set-card-img {
    max-height: 200px;
  }
  
  #shokuzai-section .set-card-img img {
    max-height: 200px;
  }
  
  /* --- テキストエリア --- */
  #shokuzai-section .set-card-text {
    padding: 15px 20px;
  }
  
  /* --- 見出し --- */
  #shokuzai-section .stay-ap-text {
    font-size: 0.95rem;
    gap: 4px;
    margin-bottom: 6px;
  }
  
  /* --- アイコン --- */
  #shokuzai-section .stay-ap-text .title-icon {
    width: 6px;
  }
  
  /* --- 注釈 --- */
  #shokuzai-section .caption {
    font-size: 0.6rem;
    margin-bottom: 8px;
  }
  
  /* --- 本文リスト --- */
  #shokuzai-section .set-card-text .letterfont {
    font-size: 0.7rem;
    line-height: 1.7;
    margin: 0px 0 8px 12px;
  }
  
  /* --- span --- */
  #shokuzai-section .set-card-text .letterfont span {
    font-size: 0.6rem;
    line-height: 1.7;
  }
  
  /* --- spacer --- */
  #shokuzai-section .set-card-text .letterfont .spacer {
    margin-bottom: 8px;
  }
  
  /* --- 注釈リスト --- */
  #shokuzai-section .set-card-text .note-small {
    font-size: 0.58rem;
    line-height: 1.4;
    margin: 0 0px 4px 15px;
  }
  
  /* 下線（文字幅に合わせる） */
	#shokuzai-section .bbq-note-p{ text-align: center; font-size: 0.7rem; }
	
  /* --- 赤文字の注意書き --- */
	#shokuzai-section .redtext { text-align: center; font-size: 0.7rem; }
	
  /* --- セクション全体 --- */
	.section-heading { font-size: 1.2rem; margin-bottom: 20px; }
	
	.slider-container { width: 100%; margin: 0 auto; padding: 0px; }
	
	.slider-image-area { margin: auto; max-width: 85%; }
	.slider-image-text { margin: auto; max-width: 95%; }
	
	.slider-arrow { width: 40px; height: 40px; }

  /* --- 設備の紹介 --- */
  #setubi-section {
    padding: 25px;
  }
  
  .section-heading { 
    font-size: 1.2rem; 
    margin-bottom: 20px; 
  }

  .slider-container {
    width: 100%;
	margin: 0px auto;
    padding: 0px;
  }

  .slider-text-area {
    max-width: 92%;
    padding: 0 25px;
  }

  .facility-title {
    font-size: 1rem;
    margin-bottom: 5px;
  }

  .facility-description {
    font-size: 0.7rem;
  }

  .facility-amenity-title,
  .facility-amenity-list {
    font-size: 0.7rem;
  }

  .facility-note {
    font-size: 0.6rem;
  }

  .slider-image-area {
    max-width: 92%;
    padding: 0 30px;
  }

  .slider-arrow {
    width: 35px;
    height: 35px;
  }

}


/* ============================================
   6-2. 415px以下：全体的な縮小調整
   ============================================ */
@media screen and (max-width: 415px) {
  
  /* --- セクション見出し --- */
  .section-heading {
    font-size: 1.2rem;
    margin-bottom: 10px;
    padding: 0 0px 10px; 
  }
  
  /* --- BBQセクション --- */
  #bbq-section { 
    padding: 40px 30px; 
  }
  
  /* --- ヒーロー全体 --- */
  #page-top-section {
    padding-top: 60px; 
    padding-bottom: 40px;
    margin: 0px; 
  }
  
  /* --- 説明文エリア --- */
  .bbq-flow-intro {
    text-align: center;
    text-align: justify;
    font-size: 0.8rem;
    line-height: 1.8;
    margin-top: 0px;
    margin-bottom: 8px;
  }
  
  /* --- 注意書き（赤文字） --- */
  .note { 
    font-size: 0.65rem; 
  }
  
  /* --- 画像エリア --- */
  .bbq-price-left { 
    max-height: 200px; 
  }
  
  .bbq-img { 
    max-height: 200px; 
  }
  
  /* --- 表全体 --- */
  .bbq-list-area { 
    width: 100%; 
    margin: 20px 0px 40px 0px; 
  }
  
  /* --- 左ラベル --- */
  .bbq-list-label { 
    width: 30%; 
    padding: 8px 5px; 
    font-size: 0.65rem; 
  }
  
  /* --- 本文文字 --- */
  .bbq-letterfont{ 
    font-size: 0.65rem; 
    line-height: 1.2; 
  }
}