@charset "utf-8";
/* ============================================================
   パーティプラン専用CSS
   ※ index0811.css より後ろで読み込むこと
   ============================================================ */

/* ------------------------------------------------------------
   変数（このページ内だけで有効。既存ページには影響しません）
   ------------------------------------------------------------ */
#p_contents {
  --accent: #ae5547;          /* 既存タブと同じ色 */
  --accent-pale: #fbf6f1;     /* オプション背景 */
  --price: #8c3b30;           /* 価格の強調色（ここ1行で変更できます） */
  --line: #ddd;
  --line-strong: #cc9933;
  --text: #333;
  --mincho: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3",
            "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  --gap: clamp(20px, 3vw, 40px);
}

.fs14 {font-size: 18px; color: red;}

/* 既存の幅指定に合わせる（lunch.css と同値） */
#p_contents {
  width: 830px;
  margin: 0 auto;
}

/* ------------------------------------------------------------
   h3の左右罫線（lunch.css と同じ見た目）
   ------------------------------------------------------------ */
.party_section h3 {
  font-family: var(--mincho);
  font-weight: bold;
  font-size: 24pt;
  color: #a17825;
  letter-spacing: .04em;
  margin-bottom: 0;
  text-align: center;
  display: flex;
  align-items: center;
}
.party_section h3::before,
.party_section h3::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: var(--line-strong);
  display: block;
}
.party_section h3::before { margin-right: 1.4em; }
.party_section h3::after  { margin-left: 1.4em; }

.party_section h3 {
  text-shadow:
   /* 白フチ */
   2px  2px 0 #fff,
  /* グロー */
  0 0 10px rgba(140, 59, 48, .40),
  0 0 24px rgba(140, 59, 48, .20);
}

.fs12 { font-size: 12px; }

/* ============================================================
   プラン一覧
   1件のときは1カラム、増えたら横並びに切り替わります
   ============================================================ */
.plan_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  margin-bottom: 40px;
}

/* プランが2件以上になったらこのクラスを親に足す */
.plan_list.multi {
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
}

/* ------------------------------------------------------------
   プラン1件ぶんのカード
   ------------------------------------------------------------ */
.plan {
  border: none;
  padding: 0;
  background: none;
}

/* プランが2件以上並ぶときだけ、境界として囲みを戻す */
.plan_list.multi .plan {
  border: 1px solid var(--line);
  padding: clamp(20px, 3vw, 32px);
}

/* 見出しブロック */
.plan__head {
  text-align: center;
  margin-bottom: 20px;
}
.plan__name {
  font-family: var(--mincho);
  font-size: 15px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 8px;
}
.plan__cond {
  font-size: 13px;
  margin-bottom: 16px;
}
.plan__catch {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 20px;
}
/* 下線マーカー（画像を使わない強調） */
.marker {
  background: linear-gradient(transparent 62%, #f3e2c9 62%);
  font-weight: bold;
}

/* 価格 */
.plan__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .3em;
  flex-wrap: wrap;
  letter-spacing: 0;
}
/* 金額だけ明朝 */
.plan__price .num {
  font-family: var(--mincho);
  font-size: 40px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: .02em;
  color: var(--price);
}
.plan__price .unit { font-size: 16px; color:}
.plan__price .tax  { font-size: 13px; color: var(--price); }

/* ------------------------------------------------------------
   料理内容：写真 + テキストの2カラム
   ------------------------------------------------------------ */
.plan__body {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: var(--gap);
  align-items: start;
  margin-bottom: 24px;
}
/* 1カラムで見せたいプランはこちら */
.plan__body.stack { grid-template-columns: 1fr; }

.plan__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.plan__photo .caption {
  font-size: 12px;
  color: #777;
  margin-top: 6px;
  display: block;
}

.plan__menu h4 {
  font-family: var(--mincho);
  font-size: 15px;
  font-weight: bold;
  letter-spacing: .06em;
  text-align: center;
  padding-bottom: 4px;
  border-bottom: 1px solid #333;
  margin-bottom: 14px;
}
.plan__menu ul { font-size: 14px; line-height: 2; }
.plan__menu li {
  padding-left: 1em;
  text-indent: -1em;   /* 2行になったとき文字頭を揃える */
}
.plan__menu .sub { font-size: 12px; color: #666; }

/* 任意ラベル（「注目！」など）。現在は未使用ですが必要時に使えます */
.tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  line-height: 1.6;
  padding: 1px 8px;
  border-radius: 2px;
  margin-left: 6px;
  vertical-align: 2px;
}

/* ------------------------------------------------------------
   オプション（アップセル）
   ------------------------------------------------------------ */
.plan__option {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 5px;
  align-items: center;
  background: var(--accent-pale);
  border: 1px solid #ecdfd6;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(140, 59, 48, .10);
  padding: 11px 12px;
  margin-bottom: 36px;
}
.plan__option img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.plan__option .opt_name {
  font-family: var(--mincho);
  font-weight: bold;
  font-size: 20px;
  letter-spacing: .08em;
  margin-bottom: 6px;
  color: #8d671c;
}
.plan__option .opt_name .innerb{
	border-bottom: 3px double #cc9933;
}
.plan__option .opt_name .fs12 {
	font-size: 15px;
}
.plan__option .opt_text { font-size: 13px; line-height: 1.5; }
.plan__option .opt_text .fs12 {
	color: #666;
}
.plan__option .opt_price {
  font-weight: bold;
  font-size: 15px;
  margin-top: 6px;
  color: var(--price);

}
.plan__option .opt_price .yen {
  font-family: var(--mincho);
  font-size: 25px;
  letter-spacing: .02em;
}

/* 写真なしオプション（飲み放題延長など） */
.plan__option.no_photo {
  grid-template-columns: 1fr;
  text-align: center;
}

/* 料理・ドリンクの補足 */
.menu_note,
.drink_note {
  margin-top: 12px;
  color: #777;
  line-height: 1.8;
}
.drink_note { text-align: right; }

/* ------------------------------------------------------------
   ご利用条件（定義リスト）
   ------------------------------------------------------------ */
.plan__spec {
  display: grid;
  grid-template-columns: 7em minmax(0, 1fr);
  gap: 0;
  font-size: 14px;
  line-height: 1.9;
  margin-top: 20px;
  border-top: 1px solid var(--line);
}
.plan__spec dt,
.plan__spec dd {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.plan__spec dt {
  font-weight: bold;
  padding-right: 1em;
}
/* ランチ/ディナーの行：ラベル幅を固定して本文の頭を揃える */
.spec_time li {
  display: grid;
  grid-template-columns: 5.5em minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  line-height: 1.5;
}
.spec_time li + li { margin-top: 8px; }

.spec_tag {
  display: block;          /* 幅いっぱいに広げて2つのラベルを同じ大きさに */
  background: #f2efec;
  color: #7a4a40;
  font-size: 11px;
  font-weight: bold;
  line-height: 1.9;
  text-align: center;
  border-radius: 2px;
  margin-top: 3px;
}

/* ------------------------------------------------------------
   フリードリンク：2カラム自動流し込み
   ------------------------------------------------------------ */
.plan__drink h4 {
  font-family: var(--mincho);
  font-size: 15px;
  font-weight: bold;
  letter-spacing: .06em;
  text-align: center;
  padding-bottom: 8px;
  border-bottom: 1px solid #333;
  margin-bottom: 14px;
}
.drink_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0 32px;
  font-size: 14px;
}
.drink_list li::before { content: "・"; }

.drink_list {
  grid-template-columns: repeat(3, 1fr);
  gap: 0 24px;
}
.drink_list li {
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.1;
  margin-bottom: 10px;
}
.drink_list .fs12 {
  font-size: 11px;
  letter-spacing: 0;
}

.plan__drink {
margin-bottom: 16px;
}

/* ------------------------------------------------------------
   注意書き
   ------------------------------------------------------------ */
.plan__note {
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.9;
  color: #666;
  text-align: center;
}

/* ============================================================
   予約ボタン
   ============================================================ */
.reserve_area { text-align: center; margin: 25px auto 64px; }
.reserve_btn {
  display: inline-block;
  min-width: 320px;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 56px;
  text-decoration: none;
  transition: .3s;
}
.reserve_btn:hover { opacity: .8; color: #fff; }
.reserve_btn::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  margin-left: 12px;
  vertical-align: 2px;
  transition: .3s;
}
.reserve_btn:hover::after { margin-left: 18px; }

/* スマホ用の追従ボタン（PCでは非表示） */
.reserve_fixed { display: none; }

/* ============================================================
   スマホ（既存と同じ 768px）
   ============================================================ */
@media screen and (max-width: 768px) {
  #p_contents { width: 100%; }

  .party_section { width: 90%; margin: 0 auto; }

  .plan_list,
  .plan_list.multi {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .plan,
  .plan_list.multi .plan { padding: 0; }
  .plan__name { font-size: 19px; }
  .plan__price .num { font-size: 34px; }

  .plan__body { grid-template-columns: 1fr; }

  .plan__option {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .plan__option img { max-width: 200px; margin: 0 auto; }

  .drink_list { grid-template-columns: 1fr; }

  .plan__spec { grid-template-columns: 1fr; }
  .spec_time li { grid-template-columns: 5.5em minmax(0, 1fr); }
  .plan__spec dt {
    padding: 12px 0 0;
    border-bottom: none;
  }
  .plan__spec dd { padding: 4px 0 12px; }
  .drink_note { text-align: left; }

  /* 予約ボタンを画面下に追従 */
  .reserve_area { display: none; }
  .reserve_fixed {
    display: block;
    position: sticky;
    bottom: 0;
    z-index: 10;
    padding: 10px;
    background: rgba(255, 255, 255, .92);
    border-top: 1px solid var(--line);
    text-align: center;
  }
  .reserve_fixed .reserve_btn {
    min-width: 0;
    width: 100%;
    line-height: 50px;
  }
}
