/*--------------------------------------------------------------------
	dark-theme.css
	スライダー下の雰囲気（ https://nakamura-inc.jp/ 参考）
	ダーク背景・セリフ見出し・巨大漢字ウォーターマーク・スクロール演出
--------------------------------------------------------------------*/

#wrapper01 {
  background-color: #0b0d12;
  color: #cfc9ba;
}

/* 予約検索バーの下の余白と被らないよう最終セクションに余白を足す */
#wrapper01 {
  padding-bottom: 40px;
}

/* ---- スクロール時のグロナビ背景：News & Plansセクションと同じクリーム色に ---- */
#header01.scrolled {
  background-color: #E8E2D3;
}

/* ---- 見出し（セリフ・トラッキング広め） ---- */
#wrapper01 h2.mincho {
  color: #ece3cf;
  font-size: 2.1rem;
  letter-spacing: .04em;
  font-weight: 500;
}

#wrapper01 h3 {
  color: #ece3cf;
}

@media screen and (max-width: 1250px) {
  #wrapper01 h2.mincho {
    font-size: 1.5rem;
  }
}

/* ---- 本文色の上書き ---- */
#wrapper01 .fcGray02 {
  color: #a89f8d !important;
}

#wrapper01 .fcBrown02,
#wrapper01 .fcBrown02 a {
  color: #CAA944 !important;
}

/* ---- カード／セクション背景の上書き（白背景・グレー背景を廃止） ---- */
#wrapper01 .bgWhite,
#wrapper01 .bgGray02,
#wrapper01 .roomCard01 {
  background-color: transparent !important;
  box-shadow: none;
}

#wrapper01 .roomCard01 .priceTag {
  background-color: #142148;
}

/* ---- セクション背景の交互配色（bgGray02は上で無効化されているため、ダークテーマ専用に新設） ---- */
.sectionBgAlt {
  background-color: #14171f !important;
}

/* ---- カード画像：ゆっくりと上品にズームするホバー ---- */
#wrapper01 .bgWhite,
#wrapper01 .roomCard01,
#seasons .flexCommon01 > div {
  overflow: hidden;
}

#wrapper01 .bgWhite img,
#wrapper01 .roomCard01 img,
#seasons .flexCommon01 > div img {
  transition: transform 1.3s cubic-bezier(.19, 1, .22, 1);
}

#wrapper01 .bgWhite:hover img,
#wrapper01 .roomCard01:hover img,
#seasons .flexCommon01 > div:hover img {
  transform: scale(1.06);
}

#wrapper01 .buttonBlack01 {
  border: 1px solid rgba(255, 255, 255, 0.35);
}

#wrapper01 .newsList01 > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

#wrapper01 .newsList01 .newsDate {
  color: #CAA944;
}

#wrapper01 .newsList01 .newsCategory {
  border: 1px solid #977C2B;
  color: #CAA944;
}

#wrapper01 select,
#wrapper01 input {
  color: inherit;
}

.reserveSearchBar__btn--outline {
  color: #ffffff !important;
}

/* ---- 写真のトーン（少し落ち着いた色味に） ---- */
#wrapper01 section img {
  filter: saturate(0.92) brightness(0.96);
}

/* ---- セクションの余白をゆったりと ---- */
@media screen and (min-width: 1251px) {
  #wrapper01 section {
    padding-top: 130px !important;
    padding-bottom: 130px !important;
  }
  #wrapper01 #stars,
  #wrapper01 #reservation,
  #wrapper01 #visual01,
  #wrapper01 #accessHero, #wrapper01 #accessCta,
  #wrapper01 #cuisineHero, #wrapper01 #cuisineCta,
  #wrapper01 #facilitiesHero, #wrapper01 #facilitiesCta,
  #wrapper01 #onsenHero, #wrapper01 #onsenCta,
  #wrapper01 #sightseeingHero, #wrapper01 #sightseeingCta,
  #wrapper01 #stayHero, #wrapper01 #stayCta,
  #wrapper01 #blogHero, #wrapper01 #blogCta {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

/* ---- 巨大漢字ウォーターマーク ---- */
.kanjiWatermark {
  position: absolute;
  z-index: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Hina Mincho", "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
  font-size: 22rem;
  line-height: 1;
  color: rgba(151, 124, 43, 0.09);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.kanjiWatermark.isRight {
  right: 0;
}

.kanjiWatermark.isLeft {
  left: 0;
}

.hasWatermark {
  position: relative;
  overflow: hidden;
}

.hasWatermark > *:not(.kanjiWatermark) {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1250px) {
  .kanjiWatermark {
    font-size: 8rem;
  }
}

/* ---- A Day at Yuuseikan（過ごし方セクション） ---- */
.experienceFullBleed {
  padding: 0 40px;
}

@media screen and (max-width: 1250px) {
  .experienceFullBleed {
    padding: 0 15px;
  }
}

.experienceHeading {
  font-size: 1.6rem !important;
  line-height: 1.7;
}

.experienceMark {
  color: #977C2B;
  font-size: 1.1rem;
  margin-top: 20px;
}

.experienceMain {
  display: grid;
  grid-template-columns: 40px minmax(0, 1.1fr) minmax(0, 1fr) 40px;
  grid-template-rows: auto auto;
  column-gap: 30px;
  row-gap: 30px;
  align-items: stretch;
  margin-top: 60px;
  grid-template-areas:
    "side image text counter"
    "side image subimgs subimgs";
}

.experienceSide {
  grid-area: side;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.experienceSideLabel {
  white-space: nowrap;
  color: #a89f8d;
  letter-spacing: .1em;
}

.experienceSideLabelSm {
  font-size: 0.7rem;
}

.experienceSideLabelLg {
  font-size: 1.1rem;
  color: #ece3cf;
  font-family: "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
}

.experienceMainImg {
  grid-area: image;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(202, 169, 68, 0.25);
}

.experienceMainImg img,
.experienceSubImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s cubic-bezier(.25, .7, .3, 1);
}

.experienceMainImg:hover img,
.experienceSubImg:hover img {
  transform: scale(1.06);
}

.experienceMainText {
  grid-area: text;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.experienceLink {
  display: inline-block;
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid rgba(151, 124, 43, 0.5);
  color: #CAA944 !important;
  font-size: 0.8rem;
  letter-spacing: .1em;
  text-decoration: none !important;
}

.experienceLink span {
  margin-left: 8px;
}

.experienceCounter {
  grid-area: counter;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #977C2B;
  font-size: 0.75rem;
}

.experienceCounterNum {
  color: #ece3cf;
  font-size: 0.85rem;
}

.experienceCounterDivider {
  width: 1px;
  height: 24px;
  background-color: rgba(151, 124, 43, 0.5);
}

.experienceTimeline {
  grid-area: subimgs;
  position: relative;
}

.experienceSwiper {
  overflow: hidden;
}

.experienceSubItem {
  width: 260px;
  height: auto;
}

.experienceSubImg {
  position: relative;
  height: 208px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(202, 169, 68, 0.25);
  margin-bottom: 16px;
}

.experienceSubNum {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  min-width: 26px;
  height: 26px;
  padding: 0 6px;
  border-radius: 2px;
  border: 1px solid rgba(202, 169, 68, 0.6);
  background-color: rgba(11, 13, 18, 0.75);
  color: #CAA944;
  font-family: "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.experienceSubTime {
  color: #CAA944;
  font-family: "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
  font-size: 1rem;
  letter-spacing: .08em;
  margin-bottom: 6px;
}

.experienceTimelineNav {
  position: absolute;
  top: 104px;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(202, 169, 68, 0.4);
  background-color: rgba(11, 13, 18, 0.8);
  color: #CAA944;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.experienceTimelineNav:hover {
  background-color: rgba(202, 169, 68, 0.15);
  border-color: rgba(202, 169, 68, 0.8);
}

.experienceTimelineNav:disabled {
  opacity: 0.25;
  cursor: default;
}

.experienceTimelineNav--prev {
  left: -22px;
}

.experienceTimelineNav--next {
  right: -22px;
}

.experienceSubDesc {
  color: #a89f8d;
  font-size: 0.75rem;
  line-height: 1.7;
}

.experienceBottomText {
  max-width: 760px;
  margin: 70px auto 0;
}

/* ---- 過ごし方タイムラインを .experienceMain の外（通常セクション内）で単独使用する場合 ---- */
.experienceTimelineStandalone {
  margin-top: 10px;
}

/* ---- 遊星館の囲炉裏時間：カードが3枚程度見える大きさで見せるバリエーション ---- */
.experienceTimelineStandalone .experienceSubItem {
  width: min(30vw, 380px);
}

.experienceTimelineStandalone .experienceSubImg {
  height: min(24vw, 300px);
}

.experienceTimelineStandalone .experienceTimelineNav {
  top: min(12vw, 150px);
}

@media screen and (max-width: 1250px) {
  .experienceTimelineStandalone .experienceSubItem {
    width: min(45vw, 220px);
  }
  .experienceTimelineStandalone .experienceSubImg {
    height: min(35vw, 170px);
  }
  .experienceTimelineStandalone .experienceTimelineNav {
    top: min(17.5vw, 85px);
  }
}

@media screen and (max-width: 1250px) {
  .experienceMain {
    display: block;
    margin-top: 40px;
  }
  .experienceSide {
    display: none;
  }
  .experienceMainImg {
    height: 280px;
    margin-bottom: 25px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
  }
  .experienceMainText {
    margin-bottom: 25px;
  }
  .experienceCounter {
    display: none;
  }
  .experienceSubItem {
    width: 200px;
  }
  .experienceSubImg {
    height: 160px;
  }
  .experienceTimelineNav {
    top: 80px;
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
  .experienceTimelineNav--prev {
    left: -10px;
  }
  .experienceTimelineNav--next {
    right: -10px;
  }
  .experienceBottomText {
    margin-top: 40px;
  }
}

/* ---- フッター（背景に写真が右から左へ流れる） ---- */
.footerNew {
  position: relative;
  overflow: hidden;
  background-color: #0b0d12;
  padding: 90px 60px 30px;
}

.footerBgTrack {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.footerBgTrack__row {
  display: flex;
  width: max-content;
  height: 100%;
  animation: footerBgScroll 70s linear infinite;
}

.footerBgTrack__row img {
  width: 280px;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  filter: brightness(0.5) saturate(0.85);
}

@keyframes footerBgScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.footerOverlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(11, 13, 18, 0.55) 0%, rgba(11, 13, 18, 0.8) 55%, rgba(11, 13, 18, 0.95) 100%);
}

.footerContent {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.footerNavCols {
  display: flex;
  gap: 60px;
}

.footerNavCol {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footerNavCol a {
  color: #ece3cf;
  font-size: 0.85rem;
  letter-spacing: .05em;
  text-decoration: none !important;
}

.footerNavCol a:hover {
  color: #CAA944;
}

.footerBrand {
  text-align: left;
}

.footerBrandLogo {
  width: 200px;
}

.footerTagline {
  color: #a89f8d;
  font-size: 0.75rem;
  margin-top: 10px;
  letter-spacing: .1em;
}

.footerInfoList > div {
  display: flex;
  gap: 20px;
  margin-bottom: 14px;
  font-size: 0.8rem;
}

.footerInfoList dt {
  color: #977C2B;
  min-width: 110px;
  margin: 0;
}

.footerInfoList dd {
  color: #cfc9ba;
  margin: 0;
}

.footerInfoList a {
  color: #CAA944 !important;
  text-decoration: none !important;
}

.footerBottomRow {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(202, 169, 68, 0.2);
  margin-top: 50px;
  padding-top: 20px;
}

.footerCopy {
  color: #a89f8d;
  font-size: 0.7rem;
  margin: 0;
}

.footerBackTop {
  color: #ece3cf !important;
  font-size: 0.75rem;
  text-decoration: none !important;
}

.footerBackTop:hover {
  color: #CAA944 !important;
}

@media screen and (max-width: 1250px) {
  .footerNew {
    padding: 60px 20px 20px;
  }
  .footerContent {
    flex-direction: column;
    gap: 30px;
  }
  .footerNavCols {
    gap: 40px;
  }
  .footerBottomRow {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ---- スクロール演出（フェードイン＋わずかに上昇、ゆっくりと上品に） ---- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1.3s cubic-bezier(.19, 1, .22, 1), transform 1.3s cubic-bezier(.19, 1, .22, 1);
}

.reveal.isVisible {
  opacity: 1;
  transform: translateY(0);
}

/* グリッド系（カード一覧）は1枚ずつ間を置いて現れる */
.flexCommon01.reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.flexCommon01.reveal > * {
  opacity: 0;
  transform: translateY(24px) scale(1.045);
  filter: blur(7px);
}

.flexCommon01.reveal.isVisible > * {
  animation: revealStagger 1.5s cubic-bezier(.19, 1, .22, 1) both;
}

.flexCommon01.reveal.isVisible > *:nth-child(1) { animation-delay: 0s; }
.flexCommon01.reveal.isVisible > *:nth-child(2) { animation-delay: .14s; }
.flexCommon01.reveal.isVisible > *:nth-child(3) { animation-delay: .28s; }
.flexCommon01.reveal.isVisible > *:nth-child(4) { animation-delay: .42s; }
.flexCommon01.reveal.isVisible > *:nth-child(5) { animation-delay: .56s; }
.flexCommon01.reveal.isVisible > *:nth-child(6) { animation-delay: .7s; }

@keyframes revealStagger {
  from { opacity: 0; transform: translateY(24px) scale(1.045); filter: blur(7px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

/* ---- メインビジュアル：開始前に霧が左から右へ晴れる演出 ---- */
.heroFogReveal {
  position: absolute;
  inset: 0;
  z-index: 20;
  overflow: hidden;
  pointer-events: none;
}

.heroFogReveal.isDone {
  display: none;
}

.heroFogPuff {
  position: absolute;
  top: -25%;
  width: 60%;
  height: 150%;
  border-radius: 45%;
  background: radial-gradient(closest-side, rgba(250, 250, 248, 1), rgba(250, 250, 248, 0.75) 55%, rgba(250, 250, 248, 0) 75%);
  filter: blur(45px);
  will-change: transform, opacity;
}

.heroFogPuff--1 { left: -18%; top: -35%; }
.heroFogPuff--2 { left: 4%;   top: -10%; }
.heroFogPuff--3 { left: 26%;  top: -30%; }
.heroFogPuff--4 { left: 46%;  top: -5%;  }
.heroFogPuff--5 { left: 64%;  top: -25%; }
.heroFogPuff--6 { left: 82%;  top: -8%;  }

/* 文字がすべて表示されるまで、霧はここで静止させておく（isPlayingでJSから始動） */
.heroFogReveal.isPlaying .heroFogPuff--1 { animation: fogDriftA 2.2s cubic-bezier(.45, 0, .35, 1) forwards; }
.heroFogReveal.isPlaying .heroFogPuff--2 { animation: fogDriftB 2.5s cubic-bezier(.45, 0, .35, 1) forwards .08s; }
.heroFogReveal.isPlaying .heroFogPuff--3 { animation: fogDriftC 2.4s cubic-bezier(.45, 0, .35, 1) forwards .04s; }
.heroFogReveal.isPlaying .heroFogPuff--4 { animation: fogDriftA 2.6s cubic-bezier(.45, 0, .35, 1) forwards .18s; }
.heroFogReveal.isPlaying .heroFogPuff--5 { animation: fogDriftB 2.8s cubic-bezier(.45, 0, .35, 1) forwards .26s; }
.heroFogReveal.isPlaying .heroFogPuff--6 { animation: fogDriftC 3.0s cubic-bezier(.45, 0, .35, 1) forwards .34s; }

@keyframes fogDriftA {
  0%   { transform: translate(0, 0) scale(1); opacity: 1; }
  100% { transform: translate(55%, -10%) scale(1.5); opacity: 0; }
}

@keyframes fogDriftB {
  0%   { transform: translate(0, 0) scale(1); opacity: 1; }
  100% { transform: translate(65%, 8%) scale(1.6); opacity: 0; }
}

@keyframes fogDriftC {
  0%   { transform: translate(0, 0) scale(1); opacity: 1; }
  100% { transform: translate(48%, -4%) scale(1.4); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .heroFogReveal {
    display: none;
  }
}

/* ---- ヒーローのキャッチコピー：霧の上に重ね、霧がある間だけ濃紺で表示 ---- */
.heroTxtNavy {
  color: #000000 !important;
  z-index: 25;
  opacity: 1;
  transition: opacity 1s ease;
}

.heroTxtNavy.isOut {
  opacity: 0;
}

/* 一文字ずつフェードイン（JSで文字をspan化して順番にisInを付与） */
.heroTypeChar {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s ease, transform .5s ease;
}

.heroTypeChar.isIn {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .heroTxtNavy {
    transition: none;
    opacity: 1;
  }
  .heroTxtNavy.isOut {
    opacity: 1;
  }
}

/* ---- 囲炉裏料理 導入部：コラージュ配置＋モノクロ背景 ---- */
.diningIntro {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding: 60px 50px;
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 20% 24% 56%;
  grid-template-rows: auto auto;
  column-gap: 30px;
  row-gap: 40px;
  align-items: center;
  grid-template-areas:
    "heading imgA imgA"
    "imgB    imgB  text";
}

.diningIntroBgLeft,
.diningIntroBgRight {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(1) brightness(0.55);
  opacity: 0.4;
}

.diningIntroBgLeft {
  left: 10%;
  width: 30%;
  background-image: url('../../f-index/cuisine01.jpg');
}

.diningIntroBgRight {
  right: 0;
  width: 44%;
  background-image: url('../../f-index/cuisine07.jpg');
}

@media screen and (max-width: 1250px) {
  .diningIntroBgLeft,
  .diningIntroBgRight {
    width: 100%;
    left: 0;
    right: 0;
  }
}

.diningIntroHeading {
  grid-area: heading;
  position: relative;
  z-index: 1;
}

.diningIntroHeadingSm {
  color: #a89f8d;
  font-size: 0.85rem;
  letter-spacing: .15em;
  margin-bottom: 10px;
}

.diningIntroHeadingLg {
  color: #ece3cf !important;
  font-size: 1.9rem !important;
  line-height: 1.5 !important;
  letter-spacing: .06em !important;
}

.diningIntroImgA {
  grid-area: imgA;
  height: 260px;
  display: flex;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.diningIntroImgA__item {
  flex: 1;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(202, 169, 68, 0.25);
}

.diningIntroImgBRow {
  grid-area: imgB;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: -70px;
  max-width: 680px;
}

.diningIntroImgB,
.diningIntroImgC,
.diningIntroImgD {
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(202, 169, 68, 0.25);
}

.diningIntroImgB {
  flex: 1.3;
  height: 220px;
}

.diningIntroImgC {
  flex: 1;
  height: 220px;
  margin-top: 40px;
}

.diningIntroImgD {
  flex: 1;
  height: 220px;
  margin-top: 80px;
}

.diningIntroImgA__item img,
.diningIntroImgB img,
.diningIntroImgC img,
.diningIntroImgD img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.3s cubic-bezier(.19, 1, .22, 1);
}

.diningIntroImgA__item:hover img,
.diningIntroImgB:hover img,
.diningIntroImgD:hover img,
.diningIntroImgC:hover img {
  transform: scale(1.06);
}

.diningIntroText {
  grid-area: text;
  position: relative;
  z-index: 1;
}

.diningIntroBtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 14px 28px;
  background-color: #142148;
  color: #ece3cf !important;
  font-size: 0.85rem;
  letter-spacing: .08em;
  text-decoration: none !important;
  transition: background-color 0.4s cubic-bezier(.19, 1, .22, 1);
}

.diningIntroBtn:hover {
  background-color: #CAA944;
  color: #142148 !important;
}

@media screen and (max-width: 1250px) {
  .diningIntro {
    display: block;
    min-height: 0;
    padding: 40px 20px;
  }
  .diningIntroHeading {
    margin-bottom: 30px;
  }
  .diningIntroImgA {
    height: 220px;
    margin-bottom: 20px;
  }
  .diningIntroImgBRow {
    margin-top: 0;
    max-width: none;
    margin-bottom: 30px;
  }
  .diningIntroImgB,
  .diningIntroImgC,
  .diningIntroImgD {
    height: 180px;
    margin-top: 0;
  }
  .diningIntroText {
    margin-top: 0;
  }
}

/* ---- Garden Onsen 導入部：写真コラージュ＋テキスト2カラム ---- */
.onsenIntro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 90px;
  align-items: center;
  margin-bottom: 70px;
}

.onsenIntroImgWrap {
  position: relative;
}

.onsenIntroImgMain {
  height: 520px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(202, 169, 68, 0.25);
}

.onsenIntroImgInset {
  position: absolute;
  top: -40px;
  left: -40px;
  z-index: 1;
  width: 46%;
  height: 200px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
  outline: 1px solid rgba(202, 169, 68, 0.3);
}

.onsenIntroImgMain img,
.onsenIntroImgInset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.3s cubic-bezier(.19, 1, .22, 1);
}

.onsenIntroImgMain:hover img,
.onsenIntroImgInset:hover img {
  transform: scale(1.06);
}

.onsenIntroEyebrow {
  display: inline-block;
  border: 1px solid rgba(202, 169, 68, 0.5);
  padding: 5px 16px;
  color: #CAA944;
  font-size: 0.75rem;
  letter-spacing: .15em;
  margin-bottom: 26px;
}

.onsenIntroHeading {
  font-size: 3.1rem !important;
  line-height: 1.1 !important;
  color: #ece3cf !important;
  letter-spacing: .02em !important;
  font-weight: 500 !important;
  margin-bottom: 28px;
}

.onsenIntroSubheading {
  font-size: 1.15rem;
  font-weight: bold;
  line-height: 1.7;
  color: #2b2620;
  margin-bottom: 24px;
}

.onsenIntroBody {
  color: #6b6355;
  margin-bottom: 32px;
}

.onsenIntroLink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(151, 124, 43, 0.5);
  color: #CAA944 !important;
  font-size: 0.85rem;
  letter-spacing: .1em;
  text-decoration: none !important;
}

.onsenIntroLinkDot {
  color: #CAA944;
}

@media screen and (max-width: 1250px) {
  .onsenIntro {
    display: block;
    margin-bottom: 50px;
  }
  .onsenIntroImgMain {
    height: 280px;
  }
  .onsenIntroImgInset {
    top: -24px;
    left: -20px;
    width: 50%;
    height: 130px;
  }
  .onsenIntroText {
    margin-top: 60px;
  }
  .onsenIntroHeading {
    font-size: 2.2rem !important;
  }
}

/* ---- 大浴場（内湯）補足：庭園露天風呂ギャラリー下の小さな案内 ---- */
.onsenIndoorNote {
  gap: 24px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(202, 169, 68, 0.2);
}

.onsenIndoorNoteImg {
  width: 380px;
  height: 300px;
  object-fit: cover;
  flex-shrink: 0;
}

.onsenIndoorNoteText {
  flex: 1;
}

@media screen and (max-width: 767px) {
  .onsenIndoorNote {
    display: block;
  }
  .onsenIndoorNoteImg {
    width: 100%;
    height: 260px;
    margin-bottom: 15px;
  }
}

/* ---- News & Plans：暖色クリームの背景に切り替え ---- */
#wrapper01 #plans {
  background-color: #E8E2D3 !important;
}

#plans h2.mincho,
#plans h3 {
  color: #2b2620 !important;
}

#plans .fcGray02 {
  color: #6b6355 !important;
}

#plans .fcBrown02,
#plans .fcBrown02 a {
  color: #8a6d2f !important;
}

#plans .kanjiWatermark {
  color: rgba(60, 48, 24, 0.12);
}

#plans .newsList01 > li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

#plans .newsList01 .newsDate {
  color: #8a6d2f;
}

#plans .newsList01 .newsCategory {
  border: 1px solid #6B5424;
  color: #6B5424;
}

#plans .newsList01 .newsCategory.newsCategory--important {
  border-color: #952336;
  color: #952336;
}

#plans .newsList01 .newsCategory.newsCategory--event {
  border-color: #2A5C40;
  color: #2A5C40;
}

#plans .newsList01 .newsCategory.newsCategory--plan {
  border-color: #33507A;
  color: #33507A;
}

#plans .buttonBlack01 {
  border: 1px solid rgba(0, 0, 0, 0.3);
}

/* ---- Garden Onsen：News & Plansと同じクリーム背景 ---- */
#wrapper01 #onsen {
  background-color: #E8E2D3 !important;
}

#onsen h2.mincho,
#onsen h3 {
  color: #2b2620 !important;
}

#onsen .onsenSeasonTitle {
  color: #1c1912 !important;
}

#onsen .fcGray02 {
  color: #6b6355 !important;
}

#onsen .fcBrown02,
#onsen .fcBrown02 a {
  color: #8a6d2f !important;
}

#onsen .kanjiWatermark {
  color: rgba(60, 48, 24, 0.12);
}

#onsen .buttonBlack01 {
  border: 1px solid rgba(0, 0, 0, 0.3);
}

/* ---- Nature in Uruki：Garden Onsenと同じクリーム背景 ---- */
#wrapper01 #nature {
  background-color: #E8E2D3 !important;
}

#nature h2.mincho,
#nature h3 {
  color: #2b2620 !important;
}

#nature .fcGray02 {
  color: #6b6355 !important;
}

#nature .kanjiWatermark {
  color: rgba(60, 48, 24, 0.12);
}

/* ---- こんな旅におすすめ：Nature in Urukiと同じクリーム背景 ---- */
#wrapper01 #recommend {
  background-color: #E8E2D3 !important;
}

#recommend h2.mincho {
  color: #2b2620 !important;
}

#recommend li p {
  color: #2b2620 !important;
}

#recommend .kanjiWatermark {
  color: rgba(60, 48, 24, 0.12);
}

#recommend .buttonBlack01 {
  border: 1px solid rgba(0, 0, 0, 0.3);
}

/* ---- お知らせ一覧／詳細：News & Plansと同じクリーム背景 ---- */
#wrapper01 #blogList,
#wrapper01 #blogDetail {
  background-color: #E8E2D3 !important;
}

#blogList h2.mincho, #blogList h3,
#blogDetail h2.mincho, #blogDetail h3 {
  color: #2b2620 !important;
}

#blogList .fcGray02,
#blogDetail .fcGray02 {
  color: #6b6355 !important;
}

#blogList .newsList01 > li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

#blogList .newsList01 .newsDate,
#blogDetail .newsDate {
  color: #8a6d2f;
}

#blogList .newsList01 .newsCategory,
#blogDetail .newsCategory {
  border: 1px solid #6B5424;
  color: #6B5424;
}

#blogList .newsList01 .newsCategory.newsCategory--important,
#blogDetail .newsCategory.newsCategory--important {
  border-color: #952336;
  color: #952336;
}

#blogList .newsList01 .newsCategory.newsCategory--event,
#blogDetail .newsCategory.newsCategory--event {
  border-color: #2A5C40;
  color: #2A5C40;
}

#blogList .newsList01 .newsCategory.newsCategory--plan,
#blogDetail .newsCategory.newsCategory--plan {
  border-color: #33507A;
  color: #33507A;
}

#blogList .kanjiWatermark,
#blogDetail .kanjiWatermark {
  color: rgba(60, 48, 24, 0.12);
}

#blogList .buttonBlack01,
#blogDetail .buttonBlack01 {
  border: 1px solid rgba(0, 0, 0, 0.3);
}

/* ---- Starry Night：全面ビジュアル＋PHOTO GALLERY ---- */
.starsHero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-start;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  filter: saturate(90%);
}

.starsHeroOverlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(4, 6, 14, 0.55) 0%, rgba(4, 6, 14, 0.15) 30%, rgba(4, 6, 14, 0.1) 55%, rgba(4, 6, 14, 0.7) 100%);
}

.starsHeroInner {
  position: relative;
  z-index: 1;
  width: 820px;
  padding: 100px 60px 70px 130px;
}

.starsHeroHeading {
  font-size: 2.3rem !important;
  line-height: 1.7 !important;
  color: #fff !important;
  letter-spacing: .04em !important;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.55);
  margin-bottom: 26px;
}

.starsHeroLead {
  font-size: 0.95rem;
  line-height: 2.1;
  color: #e9e4d7;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
  margin-bottom: 18px;
}

.starsHeroNote {
  font-size: 0.7rem;
  color: rgba(233, 228, 215, 0.8);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  margin-bottom: 34px;
}

.starsHeroBtns {
  display: flex;
  flex-wrap: wrap;
}

.starsGallery {
  position: relative;
  background-color: #0b0d12;
  padding: 80px 0 20px;
}

.starsGalleryEyebrow {
  display: inline-block;
  position: relative;
  font-size: 1rem;
  letter-spacing: .38em;
  color: #ece3cf;
  padding-bottom: 24px;
  margin: 0 0 46px;
}

.starsGalleryEyebrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 1px;
  background-color: #CAA944;
}

.starsGallerySubtitle {
  font-size: 0.8rem;
  letter-spacing: .15em;
  color: #ece3cf;
  margin: -24px 0 46px;
}

.starsGalleryTrack {
  position: relative;
  padding: 0 60px;
}

.starsGalleryTrackInner {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.starsGalleryTrackInner::-webkit-scrollbar {
  display: none;
}

.starsGalleryTrackRow {
  display: flex;
  gap: 20px;
  width: max-content;
  margin: 0 auto;
}

.starsGalleryItem {
  position: relative;
  flex: 0 0 300px;
  height: 340px;
  margin: 0;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(202, 169, 68, 0.2);
}

.starsGalleryItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.3s cubic-bezier(.19, 1, .22, 1);
}

.starsGalleryItem:hover img {
  transform: scale(1.06);
}

/* ---- 写真クリックで拡大表示（.starsLightboxを使う任意の写真に付与） ---- */
.imgZoom {
  cursor: zoom-in;
}

.starsGalleryZoom {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(11, 13, 18, 0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.starsGalleryZoom:hover {
  background-color: #CAA944;
  border-color: #CAA944;
  color: #142148;
}

.starsGalleryNav {
  position: absolute;
  top: 170px;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(202, 169, 68, 0.4);
  background-color: rgba(11, 13, 18, 0.8);
  color: #CAA944;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.starsGalleryNav:hover {
  background-color: rgba(202, 169, 68, 0.15);
  border-color: rgba(202, 169, 68, 0.8);
}

.starsGalleryNav:disabled {
  opacity: 0.25;
  cursor: default;
}

.starsGalleryNav--prev {
  left: 6px;
}

.starsGalleryNav--next {
  right: 6px;
}

.starsGalleryDots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.starsGalleryDots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: rgba(236, 227, 207, 0.3);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.starsGalleryDots button.isActive {
  background-color: #CAA944;
  transform: scale(1.4);
}

.starsLightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  background-color: rgba(4, 6, 12, 0.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.starsLightbox.isOpen {
  opacity: 1;
  pointer-events: auto;
}

.starsLightboxFigure {
  margin: 0;
  max-width: 100%;
  max-height: 100%;
  text-align: center;
}

.starsLightboxImg {
  display: block;
  max-width: 90vw;
  max-height: 80vh;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  margin: 0 auto;
}

.starsLightboxCaption {
  margin-top: 16px;
  color: #ece3cf;
  font-size: 0.8rem;
  letter-spacing: .05em;
}

.starsLightboxClose {
  position: absolute;
  top: 26px;
  right: 34px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background-color: rgba(11, 13, 18, 0.6);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.starsLightboxClose:hover {
  border-color: #CAA944;
  color: #CAA944;
}

@media screen and (max-width: 1250px) {
  .starsHero {
    min-height: 0;
    padding-bottom: 40px;
  }
  .starsHeroInner {
    width: auto;
    padding: 60px 20px 10px;
  }
  .starsHeroHeading {
    font-size: 1.5rem !important;
    margin-bottom: 18px;
  }
  .starsHeroLead {
    font-size: 0.85rem;
    line-height: 1.9;
  }
  .starsHeroNote {
    margin-bottom: 24px;
  }
  .starsGallery {
    padding: 50px 0 10px;
  }
  .starsGalleryEyebrow {
    font-size: 0.85rem;
    letter-spacing: .3em;
    margin-bottom: 30px;
  }
  .starsGallerySubtitle {
    font-size: 0.7rem;
    margin: -16px 0 30px;
  }
  .starsGalleryTrack {
    padding: 0 15px;
  }
  .starsGalleryItem {
    flex: 0 0 220px;
    height: 250px;
  }
  .starsGalleryNav {
    top: 125px;
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
  .starsGalleryNav--prev {
    left: -8px;
  }
  .starsGalleryNav--next {
    right: -8px;
  }
  .starsLightboxClose {
    top: 14px;
    right: 14px;
  }
}

/* ---- Access：売木村の位置図（黒線画像をダーク背景向けに反転） ----
   #wrapper01 section img の filter を上書きするため詳細度を合わせている ---- */
#wrapper01 section img.accessMapImg {
  max-width: 420px;
  width: 100%;
  filter: invert(1) saturate(0.92) brightness(0.96);
}

/* ---- Access：Googleマップを隣の列と同じ高さまで広げる ---- */
.accessMapCol {
  display: flex;
  flex-direction: column;
}

.accessMapCol iframe {
  flex: 1;
  height: 100% !important;
  min-height: 300px;
}

/* ---- 星空アニメーション背景（Rooms／過ごし方セクションなどで共通利用） ----
   !important は .hasWatermark > *:not(.kanjiWatermark) の
   position:relative; z-index:1; を確実に上書きするため ---- */
.starfieldBg {
  position: absolute !important;
  z-index: 0 !important;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.starfieldBg .star {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #fff;
  opacity: .15;
  animation-name: roomsStarTwinkle;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@keyframes roomsStarTwinkle {
  0%, 100% { opacity: .12; transform: scale(1); }
  50%      { opacity: .95; transform: scale(1.8); }
}

.star--1  { top: 8%;  left: 4%;  animation-duration: 3.4s; animation-delay: .0s; }
.star--2  { top: 18%; left: 92%; animation-duration: 4.1s; animation-delay: .6s; }
.star--3  { top: 62%; left: 8%;  animation-duration: 2.8s; animation-delay: 1.2s; }
.star--4  { top: 74%; left: 95%; animation-duration: 3.7s; animation-delay: .3s; }
.star--5  { top: 4%;  left: 34%; animation-duration: 4.6s; animation-delay: 1.8s; }
.star--6  { top: 12%; left: 60%; animation-duration: 3.1s; animation-delay: .9s; }
.star--7  { top: 30%; left: 16%; animation-duration: 3.9s; animation-delay: 2.2s; }
.star--8  { top: 40%; left: 80%; animation-duration: 2.6s; animation-delay: .5s; }
.star--9  { top: 50%; left: 46%; animation-duration: 4.3s; animation-delay: 1.5s; }
.star--10 { top: 86%; left: 28%; animation-duration: 3.3s; animation-delay: 2.6s; }
.star--11 { top: 92%; left: 66%; animation-duration: 2.9s; animation-delay: .2s; }
.star--12 { top: 22%; left: 42%; animation-duration: 4.8s; animation-delay: 1.1s; }
.star--13 { top: 6%;  left: 78%; animation-duration: 3.6s; animation-delay: 2.9s; }
.star--14 { top: 56%; left: 90%; animation-duration: 2.7s; animation-delay: .8s; }
.star--15 { top: 68%; left: 52%; animation-duration: 4.0s; animation-delay: 1.7s; }
.star--16 { top: 36%; left: 4%;  animation-duration: 3.2s; animation-delay: 2.4s; }
.star--17 { top: 80%; left: 12%; animation-duration: 4.4s; animation-delay: .4s; }
.star--18 { top: 14%; left: 20%; animation-duration: 2.5s; animation-delay: 1.9s; }
.star--19 { top: 46%; left: 66%; animation-duration: 3.8s; animation-delay: .1s; }
.star--20 { top: 96%; left: 44%; animation-duration: 4.2s; animation-delay: 2.1s; }

.starfieldBg .shootingStar {
  position: absolute;
  width: 120px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .95));
  opacity: 0;
  animation-name: roomsShootingStar;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in;
}

@keyframes roomsShootingStar {
  0%   { transform: translate(0, 0) rotate(145deg); opacity: 0; }
  2%   { opacity: 1; }
  16%  { transform: translate(-300px, 210px) rotate(145deg); opacity: 0; }
  100% { opacity: 0; }
}

.shootingStar--1 { top: 6%;  left: 88%; animation-duration: 7.5s; animation-delay: 1.5s; }
.shootingStar--2 { top: 28%; left: 60%; width: 90px; animation-duration: 9s; animation-delay: 5s; }

@media (prefers-reduced-motion: reduce) {
  .starfieldBg .star,
  .starfieldBg .shootingStar {
    animation: none;
    opacity: .2;
  }
}

/* ---- カスタムカーソル：星系の演出（追従する星＋軌道リング） ---- */
html.jsStarCursor,
html.jsStarCursor * {
  cursor: none !important;
}

.starCursorDot,
.starCursorRing {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  border-radius: 50%;
  transform: translate(-9999px, -9999px);
}

.starCursorDot {
  width: 7px;
  height: 7px;
  background: #f6e8bd;
  box-shadow: 0 0 6px 2px rgba(202, 169, 68, .9), 0 0 16px 5px rgba(202, 169, 68, .45);
  transition: opacity .3s ease, box-shadow .25s ease;
}

.starCursorRing {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(202, 169, 68, .5);
  transition: opacity .3s ease, width .3s cubic-bezier(.19, 1, .22, 1), height .3s cubic-bezier(.19, 1, .22, 1), border-color .3s ease;
}

.starCursorDot.isActive,
.starCursorRing.isActive {
  opacity: 1;
}

.starCursorDot.isActive {
  animation: starCursorTwinkle 2.4s ease-in-out infinite;
}

.starCursorDot.isHover {
  box-shadow: 0 0 9px 3px rgba(202, 169, 68, 1), 0 0 22px 7px rgba(202, 169, 68, .6);
}

.starCursorRing.isHover {
  width: 56px;
  height: 56px;
  border-color: rgba(202, 169, 68, .9);
}

@keyframes starCursorTwinkle {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.6); }
}

@media (prefers-reduced-motion: reduce) {
  .starCursorDot.isActive {
    animation: none;
  }
}

@media (hover: none), (pointer: coarse) {
  html.jsStarCursor,
  html.jsStarCursor * {
    cursor: auto !important;
  }
  .starCursorDot,
  .starCursorRing {
    display: none;
  }
}
