/*--------------------------------------------------------------------
	cuisine.css
	料理ページ（cuisine.html）専用の追加スタイル
	共通CSS（reset/basis/structure/parts/dark-theme）で足りない
	最小限のページ固有スタイルのみをここに記述する。
--------------------------------------------------------------------*/

/* ---- クリーム背景セクション（Garden Onsen等と同じ配色ルールを踏襲） ---- */
#wrapper01 #whyIrori,
#wrapper01 #seasonCalendar,
#wrapper01 #breakfast,
#wrapper01 #lunch {
  background-color: #E8E2D3 !important;
}

#whyIrori h2.mincho, #whyIrori h3,
#seasonCalendar h2.mincho, #seasonCalendar h3,
#breakfast h2.mincho, #breakfast h3,
#lunch h2.mincho, #lunch h3 {
  color: #2b2620 !important;
}

#whyIrori .fcGray02,
#seasonCalendar .fcGray02,
#breakfast .fcGray02,
#lunch .fcGray02 {
  color: #6b6355 !important;
}

#whyIrori .fcBrown02, #whyIrori .fcBrown02 a,
#seasonCalendar .fcBrown02, #seasonCalendar .fcBrown02 a,
#breakfast .fcBrown02, #breakfast .fcBrown02 a,
#lunch .fcBrown02, #lunch .fcBrown02 a {
  color: #8a6d2f !important;
}

#whyIrori .kanjiWatermark,
#seasonCalendar .kanjiWatermark,
#breakfast .kanjiWatermark,
#lunch .kanjiWatermark {
  color: rgba(60, 48, 24, 0.12);
}

#whyIrori .buttonBlack01,
#seasonCalendar .buttonBlack01,
#breakfast .buttonBlack01,
#lunch .buttonBlack01 {
  border: 1px solid rgba(0, 0, 0, 0.3);
}

/* ---- 昼食のご案内：受付時間・お電話の定義リスト（クリーム背景用に文字色を明示） ---- */
#lunch dl dt {
  color: #2b2620;
}

#lunch dl dd,
#lunch dl dd a {
  color: #6b6355 !important;
}

/* ---- 囲炉裏がおいしい理由：4つの理由カード ---- */
.reasonList > * {
  padding: 28px 24px;
  border: 1px solid rgba(60, 48, 24, 0.18);
}

.reasonNum {
  display: inline-block;
  color: #8a6d2f;
  font-size: 0.75rem;
  letter-spacing: .15em;
  margin-bottom: 10px;
}

/* ---- 好みから選ぶ：おすすめカード ---- */
.preferenceCard {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.preferenceCard p.preferenceTag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: .1em;
  color: #CAA944;
  border: 1px solid rgba(202, 169, 68, 0.5);
  padding: 3px 12px;
  margin: 0 auto 14px;
}

/* ---- 遊星館の囲炉裏時間：囲炉裏で炙る湯気（煙）が立ちのぼる背景演出 ----
   !important は .hasWatermark > *:not(.kanjiWatermark) の
   position:relative; z-index:1; を確実に上書きするため ---- */
.steamBg {
  position: absolute !important;
  z-index: 0 !important;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.steamBg .steamPuff {
  position: absolute;
  bottom: -15%;
  border-radius: 45%;
  background: radial-gradient(closest-side, rgba(250, 247, 240, 0.95), rgba(250, 247, 240, 0.55) 50%, rgba(250, 247, 240, 0) 72%);
  filter: blur(42px);
  opacity: 0;
  animation-name: preferenceSteamRise;
  animation-iteration-count: infinite;
  animation-timing-function: ease-out;
}

@keyframes preferenceSteamRise {
  0%   { transform: translate(0, 0) scale(.7); opacity: 0; }
  22%  { opacity: .8; }
  100% { transform: translate(var(--steamDrift, 40px), -260%) scale(1.8); opacity: 0; }
}

.steamPuff--1 { left: -4%; width: 310px; height: 390px; --steamDrift: 60px;  animation-duration: 10s;   animation-delay: 0s;   }
.steamPuff--2 { left: 14%; width: 390px; height: 470px; --steamDrift: -55px; animation-duration: 12.5s; animation-delay: 2.4s; }
.steamPuff--3 { left: 34%; width: 320px; height: 400px; --steamDrift: 65px;  animation-duration: 9.5s;  animation-delay: 4.8s; }
.steamPuff--4 { left: 54%; width: 420px; height: 500px; --steamDrift: -60px; animation-duration: 13.5s; animation-delay: 1.2s; }
.steamPuff--5 { left: 74%; width: 300px; height: 385px; --steamDrift: 50px;  animation-duration: 10.5s; animation-delay: 6s;   }
.steamPuff--6 { left: 88%; width: 350px; height: 430px; --steamDrift: -58px; animation-duration: 11.5s; animation-delay: 3.6s; }

@media screen and (max-width: 1250px) {
  .steamBg .steamPuff {
    filter: blur(28px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .steamBg .steamPuff {
    animation: none;
    opacity: 0;
  }
}

/* ---- テキスト＋画像の2カラム帯（朝食／銀河／昼食で共通利用） ---- */
.splitBlock > .splitBlockImg > img {
  width: 100%;
  display: block;
  object-fit: cover;
}

@media screen and (min-width: 1251px) {
  .splitBlock > .splitBlockImg {
    height: 420px;
    overflow: hidden;
  }
  .splitBlock > .splitBlockImg > img {
    height: 100%;
  }
}

@media screen and (max-width: 1250px) {
  .splitBlock > .splitBlockImg {
    height: 260px;
    overflow: hidden;
    margin-bottom: 20px;
  }
  .splitBlock > .splitBlockImg > img {
    height: 100%;
  }
}

/* ---- 画像2枚を並べる朝食セクション用のバリエーション ---- */
.splitBlockImgPair {
  display: flex;
  gap: 4px;
}

.splitBlockImgPair > div {
  flex: 1;
  overflow: hidden;
}

.splitBlockImgPair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.splitBlockImgPair.isVertical {
  flex-direction: column;
}

@media screen and (min-width: 1251px) {
  .splitBlock > .splitBlockImg.splitBlockImgPair.isVertical {
    height: 840px;
  }
}

@media screen and (max-width: 1250px) {
  .splitBlock > .splitBlockImg.splitBlockImgPair.isVertical {
    height: 520px;
  }
}

/* ---- お食事処のご案内：炉端食事処「銀河」を大きく見せるメイン画像 ---- */
.gingaFeatureImg {
  overflow: hidden;
}

.gingaFeatureImg img {
  width: 100%;
  display: block;
  object-fit: cover;
}

@media screen and (min-width: 1251px) {
  .gingaFeatureImg {
    height: 480px;
  }
  .gingaFeatureImg img {
    height: 100%;
  }
}

@media screen and (max-width: 1250px) {
  .gingaFeatureImg {
    height: 280px;
  }
  .gingaFeatureImg img {
    height: 100%;
  }
}

/* ---- ご案内（注意事項）box ---- */
.noticeBox {
  border: 1px solid rgba(202, 169, 68, 0.3);
  padding: 30px 30px 30px 45px;
}

@media screen and (max-width: 767px) {
  .noticeBox {
    padding: 20px 20px 20px 35px;
  }
}
