@charset "utf-8";

/*--------------------------------------------------------------------
  CSS Variables
--------------------------------------------------------------------*/

:root {
  --bg-base: #F8F6F2;
  --bg-sub: #EFEDE8;
  --bg-gray: #E8E6E1;
  --bg-dark: #2C3B35;
  --accent: #3B6F5C;
  --border: #D8D5CF;
  --text-sub: #666;
  --radius: 4px;
}

/*--------------------------------------------------------------------
  Base Reset
--------------------------------------------------------------------*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #2C2C2C;
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; vertical-align: bottom; }
a { color: inherit; text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .75; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-weight: normal; }
header, footer, div, p, ul, li, h1, h2, h3, h4, h5, h6 {
  position: relative;
  box-sizing: border-box;
}
a, span { position: relative; }

/*--------------------------------------------------------------------
  Container and Contents
--------------------------------------------------------------------*/

#container01 {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  line-height: 1.6;
  overflow: hidden;
}

.contents01,
.contents02,
.contents04,
.contents06,
.contents08,
.contents10 {
  padding: 0 15px;
}

@media screen and (min-width: 1251px) {
  .contents02, .contents03 { max-width: 1900px; margin-left: auto; margin-right: auto; }
  .contents04, .contents05 { max-width: 1400px; margin-left: auto; margin-right: auto; }
  .contents06, .contents07 { max-width: 1200px; margin-left: auto; margin-right: auto; }
  .contents08, .contents09 { max-width: 900px;  margin-left: auto; margin-right: auto; }
  .contents10, .contents11 { max-width: 700px;  margin-left: auto; margin-right: auto; }
}

/*--------------------------------------------------------------------
  SP Navigation
--------------------------------------------------------------------*/

.headerSP {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 600;
  background: var(--bg-dark);
  padding: 10px 20px;
  align-items: center;
  justify-content: space-between;
}

.headerSPLogoLink {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.headerSP .logoImg {
  height: 32px;
  width: auto;
  max-width: 120px;
  display: block;
}

.naviSP {
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.naviSP span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}

.naviSPBox {
  position: fixed;
  top: 0; right: -280px;
  width: 280px;
  height: 100%;
  background: var(--bg-dark);
  padding: 70px 24px 40px;
  overflow-y: auto;
  transition: right .35s ease;
  z-index: 700;
}

.naviSPBox.is-open { right: 0; }

.naviSPOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 590;
}

.naviSPOverlay.is-open { display: block; }

.naviSPBox ul li a {
  display: block;
  color: #fff;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: 1.5rem;
}

.naviSPClose {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 2.2rem;
  color: #fff;
  cursor: pointer;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.naviSPBtn { margin-top: 20px; }

.naviSPBtn a {
  display: block;
  text-align: center;
  color: #fff;
  background: var(--accent);
  padding: 12px;
  border-radius: var(--radius);
  font-weight: 700;
}

/*--------------------------------------------------------------------
  FV / Global Nav
--------------------------------------------------------------------*/

.fv { position: relative; }

.gNavi {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(44,59,53,.85);
  backdrop-filter: blur(5px);
  height: 60px;
}

.gNaviInner {
  padding: 0 32px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: 60px;
}

.gNaviLogo {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 24px 18px;
  background: linear-gradient(145deg, #2C3B35 0%, #1a2721 100%);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.35), 0 2px 8px rgba(0,0,0,.2);
  position: relative;
  z-index: 150;
  border: 1px solid rgba(255,255,255,.08);
  border-top: none;
}

.gNaviLogo::before {
  content: '';
  position: absolute;
  top: 0; left: 10px; right: 10px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.6), transparent);
}

.gNaviLogo::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
}

.gNaviLogoLink {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gNaviLogo .logoImg {
  height: 70px;
  width: auto;
  max-width: 200px;
  display: block;
  margin: 0;
}

.logoTagUpper {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  letter-spacing: .12em;
  text-align: center;
  line-height: 1.3;
  display: block;
  margin-bottom: 6px;
}

.headerSP .logoTagUpper {
  font-size: .8rem;
  letter-spacing: .15em;
  text-align: left;
  margin-bottom: 0;
}

.logoTagLower {
  font-family: 'EB Garamond', serif;
  font-size: 1.1rem;
  letter-spacing: .45em;
  color: rgba(255,255,255,.55);
  text-align: center;
  display: block;
  margin-top: 6px;
}

.headerSP .logoTagLower {
  font-size: .9rem;
  letter-spacing: .35em;
  color: rgba(255,255,255,.6);
  margin-top: 0;
}

.gNaviContainer {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  height: 60px;
}

.gNaviMain {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
}

.gNaviMain li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 16px;
  color: #fff;
  transition: color .2s;
}

.gNaviMain li a:hover { color: #A8D4C4; opacity: 1; }

.gNaviMain li.navReserve a {
  background: #b22222;
  border-radius: var(--radius);
  padding: 8px 16px;
  margin-left: 8px;
}

.gNaviMain li.navReserve a:hover { background: #c92828; opacity: 1; color: #fff; }

.gNaviTxtJa { font-size: 1.35rem; font-weight: 500; letter-spacing: .06em; }
.gNaviTxtEn { font-family: 'EB Garamond', serif; font-size: .95rem; letter-spacing: .1em; color: rgba(255,255,255,.5); }
.gNaviMain li.navReserve .gNaviTxtEn { color: rgba(255,255,255,.7); }

/*--------------------------------------------------------------------
  FV Visual
--------------------------------------------------------------------*/

.fvVisual { height: 640px; overflow: hidden; position: relative; }
.fvBuilding { position: absolute; bottom: 0; right: 0; width: 55%; max-width: 580px; z-index: 10; pointer-events: none; display: block; }
/* Swiper スライド共通 */
.fvSwiper .swiper-slide { background-size: cover; background-position: center; background-repeat: no-repeat; }
.fvSwiper .swiper-slide::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.15); }

/*--------------------------------------------------------------------
  Sub Visual（下層ページ共通ビジュアル）
--------------------------------------------------------------------*/

.subVisual { position: relative; height: 320px; overflow: hidden; }
.subVisualBg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }
.subVisualBg::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.42); }
.subVisualTitle { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 10; padding-top: 60px; }
.subVisualTitle .ja { font-family: 'Shippori Mincho', serif; font-size: 3rem; font-weight: 600; color: #fff; letter-spacing: .12em; }
.subVisualTitle .ja::after { content: ''; display: block; width: 48px; height: 2px; background: rgba(255,255,255,.5); margin: 10px auto 0; border-radius: 2px; }
.subVisualTitle .en { font-family: 'EB Garamond', serif; font-size: 1.3rem; letter-spacing: .25em; color: rgba(255,255,255,.65); margin-top: 8px; }
.subVisualNews     { background-image: url('../../f-visual/photo01.webp'); }
.subVisualRoom     { background-image: url('../../f-visual/photo02.webp'); }
.subVisualFaci     { background-image: url('../../f-visual/photo03.webp'); }
.subVisualFaq      { background-image: url('../../f-visual/photo02.webp'); }
.subVisualAccess   { background-image: url('../../f-visual/photo03.webp'); }
.subVisualSurround { background-image: url('../../f-visual/photo01.webp'); }

/*--------------------------------------------------------------------
  Sub Content（下層ページメインコンテンツ）
--------------------------------------------------------------------*/

.subContent { max-width: 900px; margin: 0 auto; padding: 64px 40px; }

/*--------------------------------------------------------------------
  Blog List
--------------------------------------------------------------------*/

.blogGrid { display: flex; flex-direction: column; gap: 0; }
.blogCard { border-bottom: 1px solid var(--border); padding: 24px 0; }
.blogCard:first-child { padding-top: 0; }
.blogCardLink { display: flex; gap: 24px; color: inherit; text-decoration: none; }
.blogCardLink:hover .blogCardTitle { text-decoration: underline; }
.blogCardThumb { flex-shrink: 0; width: 200px; aspect-ratio: 16/9; background: var(--bg-gray); border-radius: 4px; overflow: hidden; }
.blogCardThumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blogCardBody { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.blogCardDate { font-size: 1.2rem; color: var(--text-sub); margin-bottom: 8px; }
.blogCardTitle { font-size: 1.6rem; font-weight: 700; line-height: 1.65; }
.blogBack { margin-top: 48px; text-align: center; }

/*--------------------------------------------------------------------
  Blog Detail
--------------------------------------------------------------------*/

.blogDetailArticle { max-width: 860px; margin: 0 auto; }
.blogDetailTitle { font-family: 'Shippori Mincho', serif; font-size: 2.6rem; font-weight: 600; line-height: 1.6; margin-bottom: 10px; }
.blogDetailDate { font-size: 1.2rem; color: var(--text-sub); margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.blogDetailImg { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 4px; margin-bottom: 36px; display: block; }
.blogDetailBody { font-size: 1.5rem; line-height: 1.9; }
.blogDetailBody p { margin-bottom: 1.5em; }
.blogDetailBack { margin-top: 56px; text-align: center; }

/*--------------------------------------------------------------------
  Fixed Nav
--------------------------------------------------------------------*/

.fixNavi01 {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 500;
  background: var(--bg-dark);
  transform: translateY(-100%);
  transition: transform .35s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,.2);
  visibility: hidden;
}

.fixNavi01.is-show { transform: translateY(0); visibility: visible; }

.fixNavi01 .gNaviInner { padding: 0 40px; display: flex; align-items: center; height: 60px; }

.fixNavi01 .fixNaviLogo {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 16px 8px 0;
  gap: 0;
}

.fixNavi01 .logoImg {
  height: 36px;
  width: auto;
  max-width: 160px;
  display: block;
  margin: -3px 0;
}

.fixLogoUpper { font-family: 'Noto Sans JP', sans-serif; font-size: .7rem; font-weight: 600; color: rgba(255,255,255,.75); letter-spacing: .12em; display: block; text-align: center; line-height: 1.2; }
.fixLogoMark  { font-family: 'Shippori Mincho', serif; font-size: 2.6rem; font-weight: 700; color: #fff; line-height: 1; display: block; text-align: center; letter-spacing: .05em; }
.fixLogoLower { font-family: 'EB Garamond', serif; font-size: .7rem; letter-spacing: .35em; color: rgba(255,255,255,.55); display: block; text-align: center; }

.fixNavi01 .gNaviContainer { flex: 1; display: flex; justify-content: flex-end; align-items: center; }
.fixNavi01 .gNaviMain li a { color: #fff; padding: 8px 12px; flex-direction: column; display: flex; align-items: center; }
.fixNavi01 .gNaviMain li a:hover { color: #A8D4C4; opacity: 1; }
.fixNavi01 .gNaviMain li.navReserve a { padding: 8px 16px; }
.fixNavi01 .gNaviSub { display: flex; gap: 8px; margin-left: 24px; }
.fixNavi01 .gNaviSubBtn { font-size: 1.1rem; padding: 5px 12px; border-radius: var(--radius); background: var(--accent); color: #fff; }

/*--------------------------------------------------------------------
  Reservation Bar
--------------------------------------------------------------------*/

.reservationBar { background: #fff; border-bottom: 1px solid var(--border); padding: 16px 40px; }
.reservationBarInner { max-width: 950px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: flex-end; gap: 12px; }
.resTitle { font-size: 1.4rem; font-weight: 700; white-space: nowrap; width: 100%; text-align: center; }
.frmGroup { display: flex; flex-direction: column; gap: 3px; }
.frmGroup label { font-size: 1.1rem; color: var(--text-sub); font-weight: 500; }
.frmGroup select { font-family: 'Noto Sans JP', sans-serif; font-size: 1.3rem; padding: 7px 10px; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; cursor: pointer; min-width: 88px; appearance: none; }
.reserveDateGroup { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.nodateLabel { display: flex; align-items: center; gap: 4px; font-size: 1.2rem; color: var(--text-sub); font-weight: 400; cursor: pointer; white-space: nowrap; }
.frmInput { font-family: 'Noto Sans JP', sans-serif; font-size: 1.3rem; padding: 7px 10px; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; min-width: 160px; }
.cancelWaitLink { font-size: 1.2rem; color: var(--accent); text-decoration: underline; white-space: nowrap; align-self: flex-end; }
.btnSearch { display: inline-flex; align-items: center; line-height: 1; padding: 9px 18px; background: var(--accent); color: #fff; font-size: 1.3rem; font-weight: 700; border-radius: var(--radius); cursor: pointer; border: none; }
.btnPlan { display: inline-flex; align-items: center; line-height: 1; padding: 9px 18px; background: #3A6891; color: #fff; font-size: 1.3rem; font-weight: 700; border-radius: var(--radius); cursor: pointer; border: none; }
.resNote { width: 100%; font-size: 1.1rem; color: var(--text-sub); text-align: center; margin-top: 4px; }

/*--------------------------------------------------------------------
  Section Title
--------------------------------------------------------------------*/

.sectionTitle { text-align: center; margin-bottom: 44px; }
.sectionTitle .ja { display: block; font-family: 'Shippori Mincho', serif; font-size: 2.6rem; font-weight: 600; letter-spacing: .12em; }
.sectionTitle .ja::after { content: ''; display: block; width: 48px; height: 3px; background: #b22222; margin: 12px auto 0; border-radius: 2px; }
.sectionTitle .en { display: block; font-family: 'EB Garamond', serif; font-size: 1.3rem; letter-spacing: .25em; color: var(--text-sub); margin-top: 8px; }
.sectionTitle.wh .ja { color: #fff; }
.sectionTitle.wh .ja::after { background: #e05555; }
.sectionTitle.wh .en { color: rgba(255,255,255,.55); }

/*--------------------------------------------------------------------
  About
--------------------------------------------------------------------*/

.aboutSection { background: var(--bg-sub); padding: 80px 40px; position: relative; overflow: hidden; }
.aboutCloud { position: absolute; bottom: 0; left: 0; width: 90%; max-width: 980px; pointer-events: none; z-index: 0; opacity: 1; }
.aboutGrid { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.aboutImgWrap { border-radius: 4px; background: var(--bg-gray); aspect-ratio: 3/2; display: flex; align-items: center; justify-content: center; color: var(--text-sub); font-size: 1.3rem; }
.aboutImgDuo { display: flex; flex-direction: column; gap: 10px; }
.aboutImgDuo .aboutImgWrap { aspect-ratio: 16/9; overflow: hidden; }
.aboutTagline { font-family: 'EB Garamond', serif; font-size: 1.2rem; letter-spacing: .2em; color: var(--text-sub); margin-bottom: 10px; }
.aboutH2 { font-family: 'Shippori Mincho', serif; font-size: 2.8rem; font-weight: 600; letter-spacing: .1em; line-height: 1.5; }
.aboutBody { margin-top: 20px; font-size: 1.5rem; line-height: 2; color: var(--text-sub); }

/*--------------------------------------------------------------------
  Charm
--------------------------------------------------------------------*/

.charmSection { background: var(--bg-base); padding: 80px 40px; }
.charmGrid { max-width: 1200px; margin: 44px auto 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.charmCard { background: #fff; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,.06); }
.charmImgWrap { position: relative; }
.charmImg { width: 100%; aspect-ratio: 4/3; background: var(--bg-gray); display: flex; align-items: center; justify-content: center; color: var(--text-sub); font-size: 1.3rem; }
.charmNum { position: absolute; top: 12px; left: 12px; background: var(--accent); color: #fff; font-family: 'EB Garamond', serif; font-size: 2rem; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.charmBody { padding: 22px; }
.charmBody h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; }
.charmBody p { font-size: 1.4rem; color: var(--text-sub); line-height: 1.9; }

/*--------------------------------------------------------------------
  Meal
--------------------------------------------------------------------*/

.mealSection { background: var(--bg-dark); color: #fff; padding: 80px 40px; }
.mealGrid { max-width: 1200px; margin: 44px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.mealCard { background: rgba(255,255,255,.06); border-radius: 8px; overflow: hidden; }
.mealImgWrap { width: 100%; aspect-ratio: 16/9; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.3); font-size: 1.3rem; }
.mealCardBody { padding: 24px; }
.mealCardLabel { font-family: 'EB Garamond', serif; font-size: 1.1rem; letter-spacing: .25em; color: rgba(255,255,255,.5); display: block; margin-bottom: 6px; }
.mealCardTitle { font-family: 'Shippori Mincho', serif; font-size: 2rem; font-weight: 600; color: #fff; letter-spacing: .08em; margin-bottom: 12px; }
.mealCardBody p { font-size: 1.45rem; line-height: 2; color: rgba(255,255,255,.8); }

/*--------------------------------------------------------------------
  Room
--------------------------------------------------------------------*/

.roomSection { background: var(--bg-base); padding: 80px 40px; position: relative; overflow: hidden; }
.roomWamon { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.roomWamon svg { width: 100%; height: 100%; display: block; }
.roomWamon-bl { width: 320px; height: 320px; bottom: -40px; left: 8%; }
.roomWamon-tr { width: 360px; height: 360px; top: -40px; right: 8%; }
.roomSection .contents07,
.roomSection .roomGrid { position: relative; z-index: 1; }
.roomSubTitle { text-align: center; font-size: 1.5rem; color: var(--text-sub); margin-bottom: 10px; }
.roomGrid { max-width: 1200px; margin: 44px auto 0; display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; position: relative; z-index: 2; }
.roomGridDuo { grid-template-columns: 1fr 1fr; max-width: 800px; }
.roomCard { background: #fff; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.roomImgWrap { width: 100%; aspect-ratio: 4/3; background: var(--bg-gray); display: flex; align-items: center; justify-content: center; color: var(--text-sub); font-size: 1.2rem; }
.roomCardBody { padding: 16px; }
.roomCardBody h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 6px; }
.roomCardBody p { font-size: 1.2rem; color: var(--text-sub); }
.roomCardBody a { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; font-size: 1.2rem; color: var(--accent); font-weight: 600; border: 1px solid var(--accent); padding: 6px 12px; border-radius: var(--radius); transition: background .2s, color .2s; }
.roomCardBody a:hover { background: var(--accent); color: #fff; opacity: 1; }

/*--------------------------------------------------------------------
  Onsen
--------------------------------------------------------------------*/

.onsenSection { background: #fff; padding: 80px 40px; }
.onsenGrid { max-width: 1200px; margin: 44px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.onsenImgWrap { border-radius: 4px; aspect-ratio: 4/3; background: var(--bg-gray); display: flex; align-items: center; justify-content: center; color: var(--text-sub); font-size: 1.3rem; }
.onsenH3 { font-family: 'Shippori Mincho', serif; font-size: 2rem; font-weight: 600; letter-spacing: .08em; line-height: 1.6; margin-bottom: 16px; }
.onsenBody { font-size: 1.5rem; line-height: 2; color: var(--text-sub); }
.onsenMeta { margin-top: 16px; font-size: 1.3rem; color: var(--text-sub); line-height: 2; }
.onsenMeta span { color: var(--accent); font-weight: 600; }

/*--------------------------------------------------------------------
  Facilities
--------------------------------------------------------------------*/

.facilitiesSection { background: #fff; padding: 80px 40px; }
.facilitiesGrid { max-width: 1200px; margin: 44px auto 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.facilityCard { background: var(--bg-sub); border-radius: 6px; overflow: hidden; }
.facilityImgWrap { width: 100%; aspect-ratio: 4/3; background: var(--bg-gray); display: flex; align-items: center; justify-content: center; color: var(--text-sub); font-size: 1.2rem; }
.facilityBody { padding: 18px; }
.facilityBody h3 { font-size: 1.45rem; font-weight: 700; margin-bottom: 8px; }
.facilityBody p { font-size: 1.3rem; color: var(--text-sub); line-height: 1.8; }

/*--------------------------------------------------------------------
  Reviews
--------------------------------------------------------------------*/

.reviewSection { background: var(--bg-sub); padding: 80px 40px; }
.reviewGrid { max-width: 1200px; margin: 44px auto 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.reviewCard { background: #fff; border-radius: 8px; padding: 28px; box-shadow: 0 2px 10px rgba(0,0,0,.05); display: flex; flex-direction: column; gap: 16px; }
.reviewStars { color: #C9A84C; font-size: 1.6rem; letter-spacing: .1em; }
.reviewText { font-size: 1.45rem; line-height: 1.9; color: #2C2C2C; flex: 1; }
.reviewText::before { content: '「'; color: var(--accent); font-size: 2rem; font-family: 'Shippori Mincho', serif; line-height: 0; vertical-align: -.3em; margin-right: 2px; }
.reviewText::after  { content: '」'; color: var(--accent); font-size: 2rem; font-family: 'Shippori Mincho', serif; line-height: 0; vertical-align: -.3em; margin-left: 2px; }
.reviewMeta { border-top: 1px solid var(--border); padding-top: 14px; display: flex; flex-direction: column; gap: 4px; }
.reviewName { font-size: 1.3rem; font-weight: 700; color: #2C2C2C; }
.reviewInfo { font-size: 1.2rem; color: var(--text-sub); }

/*--------------------------------------------------------------------
  News
--------------------------------------------------------------------*/

.newsSection { background: var(--bg-sub); padding: 80px 40px; position: relative; overflow: hidden; }
.newsWamon { position: absolute; bottom: -20px; right: -40px; width: 600px; height: 450px; pointer-events: none; z-index: 0; }
.newsSection .contents09 { position: relative; z-index: 1; }
.newsBox { max-width: 700px; margin: 0 auto; background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 30px; }
.newsList li { display: flex; gap: 16px; border-bottom: 1px solid var(--border); padding: 18px 0; }
.newsList li:first-child { padding-top: 0; }
.newsItemLink { display: flex; gap: 16px; width: 100%; color: inherit; text-decoration: none; }
.newsItemLink:hover .newsTitle { text-decoration: underline; }
.newsThumb { flex-shrink: 0; width: 120px; aspect-ratio: 16/9; background: var(--bg-gray); border-radius: 4px; overflow: hidden; display: flex; align-items: center; justify-content: center; color: var(--text-sub); font-size: 1.1rem; }
.newsText { flex: 1; }
.newsDate { font-size: 1.2rem; color: var(--text-sub); margin-bottom: 4px; }
.newsTitle { font-size: 1.4rem; line-height: 1.7; }

/*--------------------------------------------------------------------
  Wamon Band
--------------------------------------------------------------------*/

.waBand { position: relative; }
.waBand::before { content: ''; position: absolute; top: 10%; bottom: 10%; z-index: 0; background-color: var(--bg-sub); }
.waBand-left::before  { left: -40px; right: 55%; }
.waBand-right::before { left: 55%; right: -40px; }
.waBand > * { position: relative; z-index: 1; }

/*--------------------------------------------------------------------
  Footer
--------------------------------------------------------------------*/

#footer01 {
  background: var(--bg-dark);
  color: rgba(255,255,255,.85);
  padding: 60px 40px 0;
}

#footer01 .logoImg {
  height: 60px;
  width: auto;
  max-width: 220px;
  display: block;
  margin: 4px 0;
}

.footerInner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding-bottom: 40px;
}

.footerLogoBlock { display: flex; flex-direction: column; align-items: center; margin-bottom: 0; }
.footerLogoUpper { font-size: 1.0rem; color: rgba(255,255,255,.6); letter-spacing: .15em; line-height: 1.8; display: block; text-align: center; }
.footerLogoMark  { font-family: 'Shippori Mincho', serif; font-size: 4rem; font-weight: 700; color: #fff; line-height: 1.1; display: block; letter-spacing: .05em; text-align: center; }
.footerLogoLower { font-family: 'EB Garamond', serif; font-size: 1.1rem; letter-spacing: .45em; color: rgba(255,255,255,.5); margin-top: 3px; display: block; text-align: center; }
.footerInfo p { font-size: 1.3rem; line-height: 2; color: rgba(255,255,255,.7); text-align: center; }
.footerNaviWrap { display: flex; gap: 40px; justify-content: center; }
.footerNavi { display: flex; flex-wrap: wrap; gap: 0 24px; justify-content: center; list-style: none; padding: 0; margin: 0; }
.footerNavi li a { display: block; font-size: 1.3rem; padding: 5px 0; color: rgba(255,255,255,.75); }
.footerNavi li a:hover { color: #A8D4C4; opacity: 1; }
.footerCopy { text-align: center; font-size: 1.1rem; color: rgba(255,255,255,.35); padding: 20px 0; border-top: 1px solid rgba(255,255,255,.08); max-width: 1200px; margin: 0 auto; }

/*--------------------------------------------------------------------
  Fixed Reservation / Page Top
--------------------------------------------------------------------*/

#fixRervation { position: fixed; bottom: 28px; right: 28px; z-index: 300; }
#fixRervation a { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 68px; height: 68px; background: var(--accent); border-radius: 50%; box-shadow: 0 4px 18px rgba(0,0,0,.22); color: #fff; font-size: 1.1rem; font-weight: 700; line-height: 1.3; transition: transform .2s; }
#fixRervation a:hover { transform: scale(1.08); opacity: 1; }

#pageTop { position: fixed; bottom: 28px; left: 28px; z-index: 300; }
#pageTop a { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: rgba(44,59,53,.85); color: #fff; border-radius: 50%; font-size: 1.6rem; }

/*--------------------------------------------------------------------
  Room Page
--------------------------------------------------------------------*/

.roomSpec { margin-top: 24px; }
.roomSpec dl { border-top: 1px solid var(--border); }
.roomSpec dl div { display: grid; grid-template-columns: 8em 1fr; border-bottom: 1px solid var(--border); }
.roomSpec dt, .roomSpec dd { padding: 10px 4px; font-size: 1.35rem; line-height: 1.7; }
.roomSpec dt { color: var(--text-sub); font-weight: 600; }
.singleGallery { display: flex; flex-direction: column; gap: 8px; }
.singleGalleryMain { aspect-ratio: 4/3; overflow: hidden; border-radius: 4px; }
.singleGalleryMain img { width: 100%; height: 100%; object-fit: cover; display: block; }
.singleGallerySub { aspect-ratio: 16/9; overflow: hidden; border-radius: 4px; }
.singleGallerySub img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hanareGallery { display: flex; flex-direction: column; gap: 8px; }
.hanareGalleryMain { aspect-ratio: 4/3; overflow: hidden; border-radius: 4px; }
.hanareGalleryMain img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hanareGallerySub { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.hanareGallerySub div { aspect-ratio: 4/3; overflow: hidden; border-radius: 4px; }
.hanareGallerySub div img { width: 100%; height: 100%; object-fit: cover; display: block; }
.roomCtaSection { background: var(--bg-dark); color: #fff; padding: 80px 40px; text-align: center; }
.roomCtaSection p { font-size: 1.5rem; color: rgba(255,255,255,.8); line-height: 2; margin-bottom: 32px; }
.roomCtaBtns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

@media screen and (min-width: 960px) {
  .onsenGrid.gridReverse > *:first-child { order: 2; }
  .onsenGrid.gridReverse > *:last-child  { order: 1; }
}

/*--------------------------------------------------------------------
  Facilities Page
--------------------------------------------------------------------*/

.facilityCard img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.facilityBody { padding: 20px; }
.facilityBody h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.facilityBody p { font-size: 1.35rem; color: var(--text-sub); line-height: 1.9; }
.faciInfoSection { background: var(--bg-sub); padding: 80px 40px; }
.faciInfoTable { max-width: 700px; margin: 44px auto 0; border-collapse: collapse; width: 100%; }
.faciInfoTable th,
.faciInfoTable td { padding: 14px 20px; border-bottom: 1px solid var(--border); font-size: 1.4rem; line-height: 1.7; text-align: left; vertical-align: top; }
.faciInfoTable th { width: 11em; font-weight: 600; color: var(--text-sub); white-space: nowrap; }
.faciInfoTable td { color: #2C2C2C; }
.faciInfoTable tr:first-child th,
.faciInfoTable tr:first-child td { border-top: 1px solid var(--border); }
.faciCtaSection { background: var(--bg-dark); color: #fff; padding: 80px 40px; text-align: center; }
.faciCtaSection p { font-size: 1.5rem; color: rgba(255,255,255,.8); line-height: 2; margin-bottom: 32px; }
.faciCtaBtns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/*--------------------------------------------------------------------
  FAQ Page
--------------------------------------------------------------------*/

.faqMain { background: var(--bg-base); padding: 80px 40px; }
.faqWrap { max-width: 860px; margin: 0 auto; }
.faqCategory { margin-bottom: 56px; }
.faqCategory:last-child { margin-bottom: 0; }
.faqCategoryTitle {
  display: flex; align-items: center; gap: 14px;
  font-family: 'Shippori Mincho', serif;
  font-size: 1.8rem; font-weight: 600; letter-spacing: .08em;
  padding-bottom: 14px; margin-bottom: 8px;
  border-bottom: 2px solid var(--accent);
}
.faqContactSection { background: var(--bg-sub); padding: 80px 40px; }
.faqContactBox {
  max-width: 700px; margin: 44px auto 0;
  background: #fff; border-radius: 8px; padding: 40px 48px;
  text-align: center; border: 1px solid var(--border);
}
.faqContactBox h3 { font-family: 'Shippori Mincho', serif; font-size: 2rem; font-weight: 600; letter-spacing: .08em; margin-bottom: 12px; }
.faqContactBox p { font-size: 1.45rem; color: var(--text-sub); line-height: 2; margin-bottom: 28px; }
.faqTelWrap { margin-bottom: 20px; }
.faqTelNum { font-family: 'EB Garamond', serif; font-size: 3.2rem; font-weight: 500; letter-spacing: .05em; color: #2C2C2C; display: block; line-height: 1.2; }
.faqTelNum a { color: inherit; }
.faqTelSub { font-size: 1.25rem; color: var(--text-sub); margin-top: 4px; display: block; }
.faqCtaSection { background: var(--bg-dark); color: #fff; padding: 80px 40px; text-align: center; }
.faqCtaSection p { font-size: 1.5rem; color: rgba(255,255,255,.8); line-height: 2; margin-bottom: 32px; }
.faqCtaBtns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/*--------------------------------------------------------------------
  Access Page
--------------------------------------------------------------------*/

.accessMapSection { background: #fff; padding: 80px 40px; }
.accessMapGrid { max-width: 1200px; margin: 44px auto 0; display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: start; }
.accessMapWrap { width: 100%; aspect-ratio: 4/3; border-radius: 6px; overflow: hidden; border: 1px solid var(--border); }
.accessMapWrap iframe { width: 100%; height: 100%; border: none; display: block; }
.accessInfoBox { background: var(--bg-sub); border-radius: 6px; padding: 32px; }
.accessInfoBox h3 { font-family: 'Shippori Mincho', serif; font-size: 1.8rem; font-weight: 600; letter-spacing: .08em; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.accessInfoTable { width: 100%; border-collapse: collapse; }
.accessInfoTable th,
.accessInfoTable td { padding: 11px 0; border-bottom: 1px solid var(--border); font-size: 1.4rem; text-align: left; vertical-align: top; line-height: 1.75; }
.accessInfoTable th { width: 5.5em; font-weight: 600; color: var(--text-sub); white-space: nowrap; }
.accessInfoTable a { color: var(--accent); text-decoration: underline; }
.accessRouteSection { background: var(--bg-sub); padding: 80px 40px; }
.accessRouteGrid { max-width: 1200px; margin: 44px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.accessParkingSection { background: #fff; padding: 80px 40px; }
.accessParkingGrid { max-width: 1200px; margin: 44px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.accessParkingImg { aspect-ratio: 4/3; overflow: hidden; border-radius: 6px; background: var(--bg-gray); }
.accessParkingImg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.accessParkingBody h3 { font-family: 'Shippori Mincho', serif; font-size: 2rem; font-weight: 600; letter-spacing: .08em; margin-bottom: 14px; line-height: 1.5; }
.accessParkingBody p { font-size: 1.45rem; color: var(--text-sub); line-height: 2; }
.accessParkingMeta { margin-top: 20px; border-top: 1px solid var(--border); }
.accessParkingMeta dl div { display: grid; grid-template-columns: 7em 1fr; border-bottom: 1px solid var(--border); }
.accessParkingMeta dt,
.accessParkingMeta dd { padding: 10px 4px; font-size: 1.35rem; line-height: 1.7; }
.accessParkingMeta dt { color: var(--text-sub); font-weight: 600; }
.accessCtaSection { background: var(--bg-dark); color: #fff; padding: 80px 40px; text-align: center; }
.accessCtaSection p { font-size: 1.5rem; color: rgba(255,255,255,.8); line-height: 2; margin-bottom: 32px; }
.accessCtaBtns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/*--------------------------------------------------------------------
  Surround Page
--------------------------------------------------------------------*/

.catSection { padding: 80px 40px; }
.catSection.bgWhite { background: #fff; }
.catSection.bgSub   { background: var(--bg-sub); }
.catSection.bgDark  { background: var(--bg-dark); }
.catCardGrid { max-width: 1200px; margin: 44px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.catSection.bgSub .catCard { background: #fff; }
.surroundCtaSection { background: var(--bg-dark); color: #fff; padding: 80px 40px; text-align: center; }
.surroundCtaSection p { font-size: 1.5rem; color: rgba(255,255,255,.8); line-height: 2; margin-bottom: 32px; }
.surroundCtaBtns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/*--------------------------------------------------------------------
  Responsive
--------------------------------------------------------------------*/

@media screen and (max-width: 959px) {
  .aboutGrid,
  .onsenGrid,
  .mealGrid { grid-template-columns: 1fr; }
  .charmGrid { grid-template-columns: 1fr 1fr; }
  .roomGrid  { grid-template-columns: 1fr 1fr; }
  .roomGridDuo { grid-template-columns: 1fr; max-width: 100%; }

  /* gNavi ロゴをタブレット時に fixNavi と同サイズに縮小 */
  .gNaviLogo {
    padding: 8px 8px 8px;
  }
  .gNaviLogo .logoImg {
    height: 36px;
    max-width: 120px;
  }
  .gNaviLogo .logoTagUpper {
    font-size: .7rem;
    margin-bottom: 0;
  }
  .gNaviLogo .logoTagLower {
    font-size: .7rem;
    margin-top: 0;
  }
  .gNavi .gNaviInner { padding: 0 16px; }
  .gNavi .gNaviMain { gap: 2px; }
  .gNavi .gNaviMain li a { padding: 6px 10px; }
  .gNavi .gNaviMain li.navReserve a { padding: 6px 12px; }
  .accessMapGrid     { grid-template-columns: 1fr; }
  .accessParkingGrid { grid-template-columns: 1fr; }
  .catCardGrid       { grid-template-columns: 1fr 1fr; }
}

@media screen and (max-width: 767px) {
  .gNavi     { display: none; }
  .fixNavi01 { display: none; }
  .headerSP  { display: flex; }
  body       { padding-top: 60px; }
  .fvVisual  { height: 55vw; min-height: 260px; }
  .aboutSection,
  .charmSection,
  .roomSection,
  .onsenSection,
  .mealSection,
  .facilitiesSection,
  .reviewSection,
  .newsSection { padding: 50px 20px; }
  .reservationBar  { padding: 14px 20px; }
  .btnSearch,
  .btnPlan         { width: 100%; justify-content: center; }
  .charmGrid,
  .roomGrid        { grid-template-columns: 1fr; }
  .facilitiesGrid  { grid-template-columns: repeat(2,1fr); }
  .footerNaviWrap  { display: none; }
  .footerInner     { gap: 20px; }
  .reviewGrid      { grid-template-columns: 1fr; }
  .newsItemLink    { flex-direction: column; }
  .newsThumb       { width: 100%; }
  .subVisual       { height: 44vw; min-height: 200px; }
  .subContent      { padding: 40px 20px; }
  .blogCardLink    { flex-direction: column; }
  .blogCardThumb   { width: 100%; }
  .roomCtaSection  { padding: 50px 20px; }
  .roomCtaBtns     { flex-direction: column; align-items: center; }
  .faciInfoSection { padding: 50px 20px; }
  .faciCtaSection  { padding: 50px 20px; }
  .faciCtaBtns     { flex-direction: column; align-items: center; }
  .faciInfoTable th,
  .faciInfoTable td { padding: 10px 14px; }
  .faciInfoTable th { width: auto; white-space: normal; }
  .faqMain          { padding: 50px 20px; }
  .faqContactSection { padding: 50px 20px; }
  .faqContactBox    { padding: 28px 24px; }
  .faqCtaSection    { padding: 50px 20px; }
  .faqCtaBtns       { flex-direction: column; align-items: center; }
  .faqTelNum        { font-size: 2.4rem; }
  .accessMapSection,
  .accessRouteSection,
  .accessParkingSection,
  .accessCtaSection { padding: 50px 20px; }
  .accessRouteGrid  { grid-template-columns: 1fr; }
  .accessCtaBtns    { flex-direction: column; align-items: center; }
  .catSection       { padding: 50px 20px; }
  .catCardGrid      { grid-template-columns: 1fr; }
  .surroundCtaSection { padding: 50px 20px; }
  .surroundCtaBtns  { flex-direction: column; align-items: center; }
}

/*--------------------------------------------------------------------
  FV スライダー背景画像
--------------------------------------------------------------------*/
.fvSlide01 { background: url('../../f-visual/photo01.webp') center center / cover no-repeat; }
.fvSlide02 { background: url('../../f-visual/photo02.webp') center center / cover no-repeat; }
.fvSlide03 { background: url('../../f-visual/photo03.webp') center center / cover no-repeat; }
.fvSlide04 { background: url('../../f-visual/photo04.webp') center center / cover no-repeat; }
.fvSlide05 { background: url('../../f-visual/photo05.webp') center center / cover no-repeat; }
.fvSlide06 { background: url('../../f-visual/photo06.webp') center center / cover no-repeat; }

/*--------------------------------------------------------------------
	available
--------------------------------------------------------------------*/
#Popular,#PopularSat{padding:16px 0 4px}
#date-cards>li,#saturday-cards>li{display:block}
#Popular .date-btn,#PopularSat .date-btn{
  width:100%;display:flex;flex-direction:column;align-items:center;gap:5px;
  padding:14px 10px;color:#333;text-decoration:none;border-radius:var(--radius);
  transition:.25s ease
}
#Popular .date-btn{
  background:linear-gradient(160deg,#f7fde8 0%,#d8f0a0 100%);
  border:1px solid #c2e070;box-shadow:0 1px 4px rgba(120,160,40,.1)
}
#Popular .date-btn:hover{
  background:var(--accent);border-color:var(--accent);color:#fff;
  box-shadow:0 3px 10px rgba(120,160,40,.3);transform:translateY(-2px);opacity:1
}
#PopularSat .date-btn{
  background:linear-gradient(160deg,#f0faff 0%,#bde8f8 100%);
  border:1px solid #90d0ee;box-shadow:0 1px 4px rgba(40,130,180,.1)
}
#PopularSat .date-btn:hover{
  background:#2882b4;border-color:#2882b4;color:#fff;
  box-shadow:0 3px 10px rgba(40,130,180,.3);transform:translateY(-2px);opacity:1
}
#Popular .date-top,#PopularSat .date-top{display:flex;align-items:baseline;gap:2px;white-space:nowrap}
#Popular .month-day{
  font-family:'Noto Sans JP',sans-serif;font-size:1.1rem;
  font-weight:500;letter-spacing:.04em;line-height:1;color:var(--accent)
}
#PopularSat .month-day{
  font-family:'Noto Sans JP',sans-serif;font-size:1.1rem;
  font-weight:500;letter-spacing:.04em;line-height:1;color:#2882b4
}
#Popular .date-btn:hover .month-day,#PopularSat .date-btn:hover .month-day{color:#fff}
#Popular .day-suffix{
  font-family:'Noto Sans JP',sans-serif;font-size:1.1rem;
  font-weight:500;letter-spacing:.04em;line-height:1;color:var(--accent)
}
#PopularSat .day-suffix{
  font-family:'Noto Sans JP',sans-serif;font-size:1.1rem;
  font-weight:500;letter-spacing:.04em;line-height:1;color:#2882b4
}
#Popular .date-btn:hover .day-suffix,#PopularSat .date-btn:hover .day-suffix{color:#fff}
#Popular .date-number,#PopularSat .date-number{
  font-family:'Noto Sans JP',sans-serif;font-size:3.0rem;
  font-weight:700;line-height:1;letter-spacing:-.01em
}
#Popular .day-of-week,#PopularSat .day-of-week{
  font-family:'Noto Sans JP',sans-serif;font-size:1.1rem;
  letter-spacing:.06em;color:#888
}
#Popular .date-btn:hover .day-of-week,#PopularSat .date-btn:hover .day-of-week{color:rgba(255,255,255,.85)}
/* 料金（現在非表示 / 表示する場合はコメントを解除）*/
/*#date-cards .date-price,#saturday-cards .date-price{font-size:1.0rem;opacity:.85}*/
/* 部屋タイプ（現在非表示 / 表示する場合はコメントを解除）*/
/*#date-cards .date-rooms,#saturday-cards .date-rooms{font-size:.9rem;opacity:.8;text-align:center}*/