@charset "UTF-8";
/* =========================================================
   びわこの千松 — 共通スタイル
   ※すべて現行サイト（www.senmatsu.co.jp）の実測値に基づく。
     原本にない指定は入れない。変更する場合は HANDOFF.md に記録すること。
   ========================================================= */

/* ---------- 色・数値の集約（原本の実測値） ---------- */
:root {
  --accent: #9c8061;          /* テーマカラー（茶） */
  --accent-dark: #81674b;     /* ホバー時 */
  --text: #333;               /* 本文 */
  --text-sub: #555;           /* リンク・補助文字 */
  --text-strong: #222;        /* 見出し・ナビ */
  --bg-gray: #f5f5f5;         /* トピックス背景 */
  --bg-footer: #f7f7f7;       /* フッター背景 */
  --bg-copyright: #ddd;       /* コピーライト帯 */
  --bg-header: #f8f8f8;       /* ヘッダー背景 */
  --border-header: #e7e7e7;   /* ヘッダー下線 */
  --bottombar: #95a5a6;       /* スマホ下部バー地色 */
  --font-mincho: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  --font-en: "Hiragino Mincho ProN", "Yu Mincho", Georgia, serif;
}

/* ---------- アイコン（原本と同じ Font Awesome 4 のフォントを使用） ---------- */
@font-face {
  font-family: "FontAwesome";
  src: url(/assets/fonts/fontawesome-webfont.woff2) format("woff2"),
       url(/assets/fonts/fontawesome-webfont.woff) format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
.fa-search::before        { content: "\f002"; }
.fa-envelope-o::before    { content: "\f003"; }
.fa-map-marker::before    { content: "\f041"; }
.fa-calendar::before      { content: "\f073"; }
.fa-external-link::before { content: "\f08e"; }
.fa-phone::before         { content: "\f095"; }
.fa-angle-right::before   { content: "\f105"; }
.fa-caret-right::before   { content: "\f0da"; }

/* ---------- リセット（最小限） ---------- */
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font-mincho);
  font-size: 16px;
  line-height: 1.6;          /* 実測 25.6px */
  color: var(--text);
  background: #fff;
}
img { border: 0; vertical-align: middle; max-width: 100%; }
small { font-size: 85%; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }
ul { margin: 0; padding: 0; }

/* 原本の指定。span が途中で折り返さないようにしている（電話番号など） */
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span, p span, li span { display: inline-block; }

/* 見出しの行間は原本の実測値（h1=35px / h2=33px / h3=27px） */
h1, h2, h3, h4, h5, h6 { font-family: inherit; font-weight: bold; }
h1 { font-size: 32px; line-height: 35px; margin: 5px 0 10px; }
h2 { font-size: 26px; line-height: 33px; color: var(--text-strong); margin: 0 0 20px; }
h3 { font-size: 20px; line-height: 27px; margin: 0 0 10px; }   /* 原本の実測値 */
p  { margin: 0 0 10px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- コンテナ・グリッド（原本＝Bootstrap3準拠） ---------- */
.container { width: 100%; margin: 0 auto; padding: 0 15px; }
@media (min-width: 768px)  { .container { width: 750px; } }
@media (min-width: 992px)  { .container { width: 970px; } }
@media (min-width: 1200px) { .container { width: 1170px; } }

.container::before, .container::after,
.row::before, .row::after,
.clearfix::before, .clearfix::after { content: " "; display: table; }
.container::after, .row::after, .clearfix::after { clear: both; }

.row { margin: 0 -15px; }
[class*="col-"] { position: relative; min-height: 1px; padding: 0 15px; }

/* スマホ（〜767px）＝1列。col-xs-6 のみ2列 */
.col-xs-6 { float: left; width: 50%; }
.col-xs-12 { width: 100%; }

@media (min-width: 768px) {
  .col-sm-4 { float: left; width: 33.33333%; }
  .col-sm-6 { float: left; width: 50%; }
  .col-sm-12 { float: none; width: 100%; }
}
@media (min-width: 992px) {
  .col-md-3 { float: left; width: 25%; }
  .col-md-4 { float: left; width: 33.33333%; }
  .col-md-6 { float: left; width: 50%; }
  .col-md-9 { float: left; width: 75%; }
  .col-md-10 { float: left; width: 83.33333%; }
  .col-md-12 { float: none; width: 100%; }
  .col-md-offset-1 { margin-left: 8.33333%; }
  .col-md-offset-4 { margin-left: 33.33333%; }
}
@media (min-width: 1200px) {
  .col-lg-3 { float: left; width: 25%; }
  .col-lg-12 { float: none; width: 100%; }
}

/* セクションの上下余白（原本実測） */
.content    { padding-top: 40px; padding-bottom: 40px; }
.content-sm { padding-top: 60px; padding-bottom: 60px; }
.content-md { padding-top: 80px; padding-bottom: 80px; }
@media (max-width: 767px) {
  .content-sm { padding-top: 30px; padding-bottom: 30px; }
}

/* スマホでの見出し（原本の指定） */
@media (max-width: 767px) {
  h1 { font-size: 18px; }
  h2 { font-size: 20px !important; margin: 0 0 10px; }
}

/* 改行の出し分け（原本 visible-xs / hidden-xs。767px で切替） */
.visible-xs { display: none; }
@media (max-width: 767px) {
  .visible-xs { display: inline; }
  .hidden-xs { display: none; }
}

.text-center { text-align: center; }
.text-left   { text-align: left; }
.margin-top-10 { margin-top: 10px; }
.margin-top-20 { margin-top: 20px; }
.margin-bottom-10 { margin-bottom: 10px; }
.margin-bottom-20 { margin-bottom: 20px; }
/* 画面が狭いときだけ効く余白（原本は max-width:992px） */
@media (max-width: 992px) {
  .md-margin-bottom-10 { margin-bottom: 10px; }
  .md-margin-bottom-40 { margin-bottom: 40px; }
}

/* ---------- ボタン（原本の btn-u 系） ---------- */
.btn-u {
  display: inline-block;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: var(--accent);
  font-family: var(--font-mincho);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  padding: 6px 13px;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  /* マウスを乗せたときに、色がふわっと変わるようにする（依頼者のご希望 2026-07-25） */
  transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
.btn-u:hover, .btn-u:focus { background: var(--accent-dark); color: #fff; }

.btn-u.btn-u-sm { font-size: 14px; }
.btn-u.btn-u-lg { font-size: 18px; }
.btn-u.btn-block { display: block; width: 100%; }

/* ★原本から変更（依頼者のご希望 2026-07-25）
   原本の本文ボタンは「細い枠線＋グレー文字」で見えにくかったため、
   茶色（サイトの色）で塗りつぶし、文字を白・大きめにした。
   ※写真の上に乗るボタンだけは、暗い背景で十分読めるので白枠のまま残す。 */
.btn-u.btn-brd {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #fff;
  font-size: 16px;
  padding: 12px 13px;
}
/* マウスを乗せたときは色を反転（背景＝白／文字＝茶色）。依頼者のご希望 2026-07-25 */
.btn-u.btn-brd:hover,
.btn-u.btn-brd:focus,
.btn-u.btn-brd.btn-brd-hover:hover {
  background: #fff;
  border-color: var(--accent);
  color: var(--accent);
}

/* 写真の上の白枠ボタン（お食事について／お部屋について／お風呂について）
   ★原本より少し大きくしている（原本＝14px・高さ34px は小さくて目立たないため。依頼者のご希望 2026-07-25） */
.btn-u.btn-u-light.btn-brd {
  background: transparent;
  border-color: #fff;
  color: #fff;
  font-size: 15px;
  padding: 9px 13px;
}
/* ボタンの上に余白をとる（原本は余白なし） */
.photo-section .well .row { margin-top: 16px; }
/* パソコン幅でボタンの横幅を広げる（原本は1/3幅で窮屈なため。依頼者のご希望 2026-07-25） */
@media (min-width: 992px) {
  .photo-section .well .col-md-4.col-md-offset-4 { width: 50%; margin-left: 25%; }
}
/* 写真の上のボタンだけ、反転時の文字は茶色ではなく黒（依頼者のご希望 2026-07-25） */
.btn-u.btn-u-light.btn-brd:hover,
.btn-u.btn-u-light.btn-brd.btn-brd-hover:hover {
  background: #fff;
  border-color: #fff;
  color: var(--text);
}

/* ---------- ヘッダー ---------- */
.header-v4 { background: #fff; }
.header-v4 .navbar {
  background: var(--bg-header);
  border: 1px solid var(--border-header);
  border-left: 0;
  border-right: 0;
  margin-bottom: 0;
}
.header-v4 .navbar-header { margin: 15px 0; }
.navbar-logo { display: inline-block; padding: 0; }
.navbar-logo img { width: 250px; height: auto; }

.navbar-collapse { text-align: center; border: none; }
.navbar-nav { display: inline-block; list-style: none; margin: 0; padding: 0; }
.navbar-nav > li { float: left; }
.navbar-nav > li > a {
  display: block;
  font-family: var(--font-mincho);
  font-size: 15px;
  font-weight: bold;
  line-height: 20px;
  color: var(--text-strong);
  padding: 10px 12px;
  text-align: center;
}
.navbar-nav > li > a:hover { color: var(--accent); }

/* ハンバーガー（スマホ・タブレット） */
.navbar-toggle {
  display: none;
  float: right;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--text);
  font-family: var(--font-mincho);
  font-size: 12px;
  padding: 9px 10px;
  margin: -61px 0 8px;
  cursor: pointer;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin-top: 4px;
  margin-left: 9px;
}
.navbar-toggle .full-width-menu { display: block; }

@media (max-width: 991px) {
  .navbar-logo { padding: 10px 0; }
  .navbar-logo img { width: 180px; }
  .header-v4 .navbar-header { margin: 0; }
  .navbar-toggle { display: block; }
  .navbar-collapse { display: none; }
  .navbar-collapse.in { display: block; }
  .navbar-nav { display: block; width: 100%; }
  .navbar-nav > li { float: none; }
  .navbar-nav > li > a { padding: 10px 15px; border-top: 1px solid var(--border-header); }
}

/* ---------- 右上の予約パネル（PCのみ） ---------- */
#top_contact_panel {
  position: fixed;
  top: -2px;
  right: 4%;
  left: auto;
  width: 310px;
  height: 105px;
  z-index: 100;
  padding: 8px 20px;
  font-size: 14px;
  line-height: 150%;
  color: var(--text);
  background-image: linear-gradient(rgba(250,250,250,1) 0%, rgba(250,250,250,0.95) 50%, rgba(210,210,210,1) 100%);
  background-repeat: repeat-x;
  border: 1px solid #fff;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  animation-duration: 1.5s;
  animation-delay: 2.5s;
}
#top_contact_panel p { margin-bottom: 7px; line-height: 1.1; }
#top_contact_panel small { font-size: 85%; color: var(--text-strong); }
/* 電話番号（原本 .tel / .en）。行間も原本と同じ 1.6em×1.428 相当 */
.tel { font-size: 1.6em; line-height: 1.4286; }
i.tel { line-height: 1; }
.en { font-family: var(--font-en); }
#top_contact_panel .list-unstyled { list-style: none; margin: 0 0 5px; padding: 0; }
#top_contact_panel .tel-link { color: var(--text-strong); }
@media (max-width: 991px) { #top_contact_panel { display: none; } }

/* ---------- メインスライダー（MV） ---------- */
#top_slider { position: relative; }
.carousel {
  position: relative;
  max-height: 750px;
  overflow: hidden;
}
.carousel-inner { position: relative; width: 100%; overflow: hidden; }
.carousel-inner > .item {
  position: relative;
  display: none;
  max-height: 750px;
}
.carousel-inner > .item.active { display: block; }
.carousel-inner > .item img { width: 100%; height: auto; display: block; }

/* フェード切替（原本 carousel-fade） */
.carousel-fade .carousel-inner > .item {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  display: block;
  z-index: 1;
}
.carousel-fade .carousel-inner > .item.active { position: relative; opacity: 1; z-index: 2; }
.carousel-fade .carousel-inner > .item.is-leaving { opacity: 0; z-index: 3; }

.carousel-caption {
  position: absolute;
  top: 45%;
  right: 0; left: 0; bottom: 0;
  z-index: 10;
  padding: 0;
  color: #fff;
  text-align: center;
}
.carousel-caption .lead {
  display: inline-block;
  margin: 0;
  font-size: 3vw;
  font-weight: bold;
  line-height: 1.4;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}
@media (max-width: 768px) {
  .carousel-caption .lead { font-size: 6vw; margin-bottom: 0; }
}

/* 左右の矢印 */
.carousel-control {
  position: absolute;
  top: 0; bottom: 0;
  width: 15%;
  z-index: 15;
  color: #fff;
  font-size: 20px;
  text-align: center;
  opacity: 0.05;
  background: none;
  border: 0;
  cursor: pointer;
  transition: opacity 0.2s;
}
.carousel-control.left  { left: 0;  background-image: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%); }
.carousel-control.right { right: 0; background-image: linear-gradient(to left,  rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%); }
.carousel-control:hover, .carousel-control:focus { opacity: 0.9; color: #fff; }
.carousel-control .arrow {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  display: inline-block;
  width: 20px; height: 20px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.carousel-control.left  .arrow { left: 50%;  margin-left: -6px; transform: rotate(-135deg); }
.carousel-control.right .arrow { right: 50%; margin-right: -6px; transform: rotate(45deg); }

/* インジケーター（丸） */
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding: 0;
  list-style: none;
  text-align: center;
}
.carousel-indicators li {
  display: inline-block;
  width: 10px; height: 10px;
  margin: 1px;
  cursor: pointer;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 10px;
}
.carousel-indicators li.active {
  width: 12px; height: 12px;
  margin: 0;
  background: #fff;
}
@media (max-width: 767px) { .carousel-indicators { display: none; } }

/* ---------- 和紙（黒）背景のごあいさつ ---------- */
.bg-washi-black {
  background: url(/assets/images/bg/bg-washi-black.jpg) no-repeat;
}
.bg-washi-black h1,
.bg-washi-black p { color: #fff; }
.bg-washi-black h1 { text-align: center; }

/* ---------- 写真の上に文章が重なるセクション ---------- */
.photo-section { position: relative; }
.photo-section > img { width: 100%; height: auto; display: block; }
.flex-center {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.bg-trans-black { background: rgba(0,0,0,0.4); }
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
}
.well.bg-trans-black { border: none; margin-bottom: 0; }
.bg-trans-black h2,
.bg-trans-black h3,
.bg-trans-black p,
.bg-trans-black li { color: #fff; }

@media (max-width: 767px) {
  /* 写真の下に文章ブロックを積む表示。
     ★原本は display:flex のままで、文章ブロックが「文字の幅（373px）」に縮み、
       画面幅400〜767pxで左右に白い余白ができていた（現行サイトの表示崩れ）。
       block に切り替えて幅いっぱいに直した（依頼者のご指摘 2026-07-25）。 */
  .flex-center { position: relative; display: block; padding: 0; }
  .flex-center .row { margin-left: 0; margin-right: 0; }
  .flex-center [class*="col-"] { padding-left: 0; padding-right: 0; }
  .flex-center .well.bg-trans-black {
    background: #333;
    border-radius: 0;
    width: 100%;
  }
}

/* ---------- 下層ページ：タイトル帯（原本 .jumbotron） ---------- */
.jumbotron {
  background: url(/assets/images/page/title-band.jpg) 50% 50% / cover no-repeat;
  padding: 20px 0 10px;
  margin: 0;
}
.jumbotron h1 {
  font-size: 32px;
  line-height: 35px;
  font-weight: bold;
  color: #fff;
  margin: 0;
}
@media (max-width: 767px) {
  .jumbotron { padding: 15px 0 5px; }
  .jumbotron h1 { font-size: 20px; }
}

/* ---------- 下層ページ：上部ビジュアル（原本 .parallaxBg + .page_top_caption） ---------- */
.page-visual { position: relative; }
.page-visual > img { width: 100%; height: auto; display: block; }
.page-visual__caption {
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  padding: 50px 0;
  /* 上下が透明・中央が黒40%のグラデーション（原本の実測値） */
  background: linear-gradient(rgba(0,0,0,0) 0%, rgba(0,0,0,.4) 45%, rgba(0,0,0,.4) 55%, rgba(0,0,0,0) 100%);
}
.page-visual__caption h2 {
  font-size: 2.4vw;
  line-height: 1.2;
  font-weight: bold;
  color: #fff;
  margin: 0 0 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,.7);
}
@media (max-width: 767px) {
  /* スマホは写真の下に帯を置く（原本と同じ） */
  .page-visual__caption {
    position: relative;
    top: auto;
    padding: 20px 0;
    background: rgba(0,0,0,.8);
  }
  .page-visual__caption h2 { font-size: 20px; line-height: 24px; margin: 0; }
}

/* ---------- おすすめプラン ---------- */
section.bg-default { background: #fff; }
section.bg-gray { background: var(--bg-gray); }

h2.h2 {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--text);
  text-align: center;
  margin: 20px 0 30px;
}


.thumbnails.thumbnail-style {
  padding: 7px;
  margin-bottom: 20px;
  border: none;
  background: transparent;
}
.thumbnail-img { overflow: hidden; }
.thumbnail-img img { width: 100%; height: auto; display: block; }
.thumbnail-style .caption { padding: 0; }
.thumbnail-style .caption a { color: var(--accent); }
.thumbnail-style .caption a:hover { color: var(--accent-dark); }

/* ---------- トピックス ---------- */
.portfolio-items { list-style: none; margin: 0 -20px 0 0; padding: 0; }
.portfolio-items::after { content: ""; display: table; clear: both; }
.portfolio-item { list-style: none; padding: 0 20px 0 0; }
.item-inner.thumbnails.thumbnail-style { padding: 0 0 1px; margin-bottom: 20px; }
.item-photo img { width: 100%; height: auto; display: block; }
.item-caption { text-align: left; }
.item-caption::after { content: ""; display: table; clear: both; }
.item-caption .caption {
  margin-top: 5px;
  margin-bottom: 10px;
  font-size: 90%;
  color: var(--text-strong);
}
.item-caption p { margin: 0 0 10px; }
/* 原本はここに CMS の編集アイコン用の空要素があり、38px の余白ができている。
   静的サイトでは編集アイコンが不要なため、余白だけを同じ高さで再現している。 */
.item-caption { padding-bottom: 38px; }
.item-caption p a { color: var(--text-sub); text-decoration: none; }
.item-caption p a:hover { color: var(--accent); }

/* ---------- フッター ---------- */
.footer-v2 .footer {
  background: var(--bg-footer);
  border-top: 3px solid #eee;
  padding: 40px 0;
  color: var(--text);
}
.footer-v2 .footer p { color: var(--text-sub); margin: 0 0 10px; }
.footer-v2 .footer-logo { width: 200px; max-width: 100%; height: auto; margin: 0 0 20px; }
.footer-v2 .heading-sm {
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
  color: var(--text-strong);
  margin: 0 0 20px;
  text-align: left;
}
.footer-v2 .link-list { list-style: none; margin: 0 0 10px; padding: 0; }
.footer-v2 .link-list li { padding: 0; margin: 0; border-top: dotted 1px #ddd; }
/* リンクの先頭につく小さな三角（原本 :before の fontAwesome \f0da） */
.footer-v2 .link-list li::before {
  font-family: "FontAwesome";
  content: "\f0da";
  margin-right: 5px;
  color: #ccc;
}
.footer-v2 .link-list a {
  display: inline-block;
  font-size: 14px;
  color: var(--text-sub);
  padding: 6px 0;
}
.footer-v2 .link-list a:hover { color: var(--accent); }

.copyright {
  background: var(--bg-copyright);
  padding: 20px 0 15px;
}
.copyright p { font-size: 12px; color: var(--text-sub); margin: 0; text-align: center; }

@media (max-width: 991px) {
  .copyright { padding-bottom: 50px; } /* 下部固定バーの分 */
}

/* ---------- スマホ下部の固定バー ---------- */
.bottombar {
  display: none;
  position: fixed;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 50px;
  z-index: 9999;
  background: var(--bottombar);
  animation-duration: 1.5s;
  animation-delay: 2s;
}
.bottombar a.btn-u {
  display: table-cell;
  width: 33%;
  height: 50px;
  border: 1px solid #fff;
  border-bottom: none;
  border-radius: 0;
  font-size: 15px;
  text-align: center;
  vertical-align: middle;
  margin: 0;
  padding: 0;
}
@media (max-width: 991px) { .bottombar { display: table; } }

/* ---------- 表示アニメーション（原本 wow.js の fadeInUp2 / fadeInDown / fadeInUp） ---------- */
@keyframes fadeInUp2 {
  from { opacity: 0; transform: translate3d(0, 40px, 0); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translate3d(0, -100%, 0); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translate3d(0, 100%, 0); }
  to   { opacity: 1; transform: none; }
}
.wow { visibility: hidden; }
.wow.animated { visibility: visible; animation-name: fadeInUp2; animation-fill-mode: both; }
.animated.fadeInDown { animation-name: fadeInDown; animation-fill-mode: both; }
.animated.fadeInUp   { animation-name: fadeInUp;   animation-fill-mode: both; }

@media (prefers-reduced-motion: reduce) {
  .wow, .wow.animated, .animated.fadeInDown, .animated.fadeInUp {
    visibility: visible;
    animation: none;
  }
  /* 動きを減らす設定にしている方には、色の変化もすぐ切り替える */
  .btn-u { transition: none; }
}

/* ---------- 下層ページ：左右入れ替え（原本 col-md-push-6 / col-md-pull-6） ---------- */
@media (min-width: 992px) {
  .col-md-push-6 { left: 50%; }
  .col-md-pull-6 { right: 50%; }
  .col-md-push-6, .col-md-pull-6 { position: relative; }
}

/* ---------- 下層ページ：料理プランの一覧（原本 .portfolio-items） ---------- */
.plan-items {
  list-style: none;
  margin: 0 -10px;   /* 原本と同じ。カードの左右10pxを打ち消して内容幅を揃える */
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 992px) {
  /* PCは2列（原本と同じ。原本はJSで配置するため3・4番目、5・6番目が左右入れ替わるが、
     こちらは並び順どおりに配置する） */
  .plan-items { grid-template-columns: 1fr 1fr; }
}
.plan-item { padding: 0 10px; }
.plan-item__inner { margin-bottom: 40px; }
.plan-item .lead {
  font-size: 21px;
  line-height: 1.4;
  font-weight: bold;
  color: var(--text-strong);
  margin: 0 0 5px;
}
.plan-item img { width: 100%; height: auto; display: block; }
@media (max-width: 767px) {
  .plan-item .lead { font-size: 16px; line-height: 22.4px; }
}

/* 拡大できる画像（原本 fancybox の zoomer）。マウスを乗せると少し暗くなり虫めがねが出る */
.zoomer { display: block; position: relative; }
.overlay-zoom { display: block; position: relative; overflow: hidden; }
.overlay-zoom img { width: 100%; height: auto; display: block; }
.zoom-icon {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0) url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2244%22%20height%3D%2244%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221.5%22%3E%3Ccircle%20cx%3D%2210.5%22%20cy%3D%2210.5%22%20r%3D%226.5%22%2F%3E%3Cpath%20d%3D%22M15.5%2015.5L21%2021M10.5%207.5v6M7.5%2010.5h6%22%2F%3E%3C%2Fsvg%3E) no-repeat 50% 50%;
  background-size: 0 0;
  opacity: 0;
  transition: opacity .3s ease, background-color .3s ease;
}
@media (hover: hover) {
  .zoomer:hover .zoom-icon {
    opacity: 1;
    background-color: rgba(0,0,0,.35);
    background-size: 44px 44px;
  }
}

/* 拡大表示（クリックで開く画面。原本 fancybox の代わり） */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: 100%;
  max-height: calc(100vh - 220px);
  width: auto;
  height: auto;
  display: block;
}
.lightbox__title {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin: 16px 0 4px;
  text-align: center;
  max-width: 800px;
}
.lightbox__caption {
  color: rgba(255,255,255,.85);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  text-align: center;
  max-width: 800px;
}
.lightbox__close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  font-family: inherit;
}
.lightbox__close:hover { color: var(--accent); }
@media (max-width: 767px) {
  .lightbox { padding: 20px 12px; }
  .lightbox__img { max-height: calc(100vh - 260px); }
  .lightbox__title { font-size: 16px; }
  .lightbox__caption { font-size: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .lightbox, .zoom-icon { transition: none; }
}

/* ---------- 下層ページ：4列のサムネイル一覧（原本 portfolio-items の col-md-3） ---------- */
.thumb-items {
  list-style: none;
  margin: 0 -20px 0 0;   /* 原本と同じ。カード右側20pxを打ち消す */
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;   /* スマホは2列（原本 col-xs-6） */
}
@media (min-width: 768px) {
  .thumb-items { grid-template-columns: repeat(4, 1fr); }   /* 768px以上は4列 */
}
.thumb-item { padding: 0; }
.thumb-item__inner { margin: 0 20px 20px 0; padding: 0 0 1px; }
.thumb-item img { width: 100%; height: auto; display: block; }
.thumb-item p {
  font-size: 16px;
  line-height: 25.6px;
  color: var(--text-strong);
  margin: 0 0 10px;
  text-align: center;
}
.thumb-item p strong { font-weight: bold; }

/* ---------- 下層ページ：表（原本 .table） ---------- */
.table {
  width: 100%;
  max-width: 100%;
  margin: 0 0 20px;
  border-collapse: collapse;
  border-spacing: 0;
}
.table th,
.table td {
  padding: 8px;
  line-height: 22.857px;
  vertical-align: top;
  border-top: 1px solid #ddd;
  text-align: left;
}
.table th {
  font-weight: bold;
  padding-left: 5px;
  padding-bottom: 10px;
}
.table > tbody > tr:first-child > th,
.table > tbody > tr:first-child > td { border-top: 0; }
@media (max-width: 640px) {
  /* スマホは項目名と内容を縦に並べる（横だと内容が狭くなりすぎるため） */
  .table, .table tbody, .table tr, .table th, .table td { display: block; width: 100%; }
  .table th { padding-bottom: 0; border-bottom: 0; }
  .table td { border-top: 0; padding-top: 4px; }
  .table tr + tr th { border-top: 1px solid #ddd; padding-top: 12px; }
}

/* ---------- 下層ページ：宴会場などの4列カード（原本 col-md-3 + .caption） ---------- */
.hall-cards { display: flex; flex-wrap: wrap; }
.hall-cards > [class*="col-"] { float: none; }
.hall-cards img { width: 100%; height: auto; display: block; }
.hall-cards .caption { padding: 0; }
.hall-cards .caption h4 {
  font-size: 18px;
  line-height: 25px;
  font-weight: bold;
  color: var(--text-sub);
  margin: 5px 0 10px;
}
@media (max-width: 991px) {
  .sm-margin-bottom10 { margin-bottom: 10px; }
}

/* サムネイル一覧の3列版（原本 col-lg-4。お風呂ページなど） */
@media (min-width: 768px) {
  .thumb-items--3 { grid-template-columns: repeat(3, 1fr); }
}
.thumb-item h4 {
  font-size: 14px;
  line-height: 25px;
  font-weight: bold;
  color: var(--text-sub);
  margin: 5px 0 10px;
  text-align: left;
}
.margin-top-30 { margin-top: 30px; }

/* ---------- 下層ページ：お品書きの開閉（原本 collapse の代わりに <details> を使用） ---------- */
.well.menu-well { background: #f5f5f5; }
.menu-toggle > summary {
  display: block;          /* 標準の三角マークを消す */
  list-style: none;
  cursor: pointer;
  text-align: center;
  font-size: 16px;
  color: var(--accent);
  margin: 0 0 10px;
}
.menu-toggle > summary::-webkit-details-marker { display: none; }
.menu-toggle > summary:hover { color: var(--accent-dark); }
.menu-toggle > summary .fa { transition: transform .3s ease; display: inline-block; }
.menu-toggle[open] > summary .fa { transform: rotate(180deg); }
.menu-toggle ul {
  list-style-type: circle;
  padding: 0 0 0 30px;
  margin: 0 0 10px;
}
.menu-toggle li { font-size: 16px; line-height: 25.6px; color: var(--text-strong); }
.fa-chevron-down::before { content: "\f078"; }
@media (prefers-reduced-motion: reduce) {
  .menu-toggle > summary .fa { transition: none; }
}

/* ---------- 下層ページ：枠線付きの表（原本 .table-bordered） ---------- */
.bg-trans-white { background: rgba(255,255,255,0.7); padding: 20px; }
.table-bordered,
.table-bordered th,
.table-bordered td { border: 1px solid #ddd; }
.table-bordered th {
  background: #f3f3f3;
  padding: 8px 10px 5px;
  vertical-align: middle;
}
.table-bordered td { padding: 8px; }
.table-bordered > tbody > tr:first-child > th,
.table-bordered > tbody > tr:first-child > td { border-top: 1px solid #ddd; }
.lead { font-size: 21px; line-height: 29.4px; font-weight: bold; }
.circle-list { list-style-type: circle; padding: 0 0 0 30px; margin: 0 0 10px; }
.circle-list li { font-size: 16px; line-height: 25.6px; color: var(--text-strong); }
.md-margin-bottom-20 { margin-bottom: 20px; }

/* Googleマップの埋め込み（画面幅に合わせて伸縮） */
.googlemapWrapper { width: 100%; }
.googlemapWrapper iframe { width: 100%; height: 500px; border: 0; display: block; }
@media (max-width: 767px) {
  .googlemapWrapper iframe { height: 300px; }
}

/* 交通手段のアイコン */
.fa-car::before   { content: "\f1b9"; }
.fa-train::before { content: "\f238"; }

/* ---------- 周辺情報：カード（原本 .thumbnail） ---------- */
.guide-cards { display: flex; flex-wrap: wrap; }
.guide-cards > [class*="col-"] { float: none; display: flex; }
.thumbnail {
  background: #fff;
  border: 1px solid #ddd;
  padding: 4px;
  border-radius: 0;
  width: 100%;
}
.thumbnail img { width: 100%; height: auto; display: block; }
.thumbnail h4 {
  font-size: 18px;
  line-height: 25px;
  font-weight: bold;
  color: var(--text-sub);
  margin: 5px 0 10px;
  text-align: center;
}
.thumbnail h4 a { color: inherit; }
.thumbnail h4 a:hover { color: var(--accent); }
.btn.btn-default {
  display: inline-block;
  background: #fff;
  border: 1px solid #ccc;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  line-height: 1.6;
  padding: 6px 12px;
  border-radius: 0;
  text-decoration: none;
  transition: background-color .35s ease, color .35s ease, border-color .35s ease;
}
.btn.btn-default:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ---------- 観光コース：タイムライン（原本 .ct-timeline の実測値どおり） ---------- */
.ct-container { position: relative; margin: 0 0 15px; }

/* 「京都」などの地名ラベル（帯） */
.ct-timeline-index { margin: 0; }
.label {
  display: block;
  font-size: 16px;
  line-height: 16px;
  color: #fff;
  background: #777;
  padding: 4px 7px;
  border-radius: 0;
}

.ct-timeline-date { margin: 0; }

/* 1項目の外枠。左に縦の線（幅5px・#ccc）が通る */
.ct-timeline-block { position: relative; padding: 10px 0; }
.ct-timeline-block::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  width: 5px;
  height: 100%;
  background: #ccc;
}

/* 縦線の上に重なる丸アイコン */
.ct-timeline-img {
  position: absolute;
  left: 18px;
  top: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 4px 0 0;
  z-index: 1;
}
.ct-timeline-img i { font-size: 18px; line-height: 18px; color: #fff; }

.ct-timeline-title {
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
  color: var(--text);
  margin: 0 0 10px 60px;
}

/* 本文は白い箱。左側に小さな三角のツノが出る */
.ct-timeline-content {
  position: relative;
  background: #fff;
  border-radius: 4px;
  margin: 10px 15px 10px 55px;
  padding: 15px 15px 10px;
}
.ct-timeline-content::before {
  content: "";
  position: absolute;
  left: 15px;
  top: -5px;
  width: 9px;
  height: 9px;
  background: #fff;
  transform: rotate(45deg);
}
.ct-timeline-content-detail::after { content: ""; display: table; clear: both; }
.ct-timeline-content-detail img {
  float: left;
  width: 260px;
  height: auto;
  margin: 0 10px 10px 0;
}
@media (max-width: 640px) {
  .ct-timeline-content-detail img { float: none; width: 100%; margin: 0 0 10px; }
  .ct-timeline-content { margin-left: 45px; margin-right: 0; }
  .ct-timeline-title { margin-left: 55px; }
}

/* 「詳細を開く／閉じる」ボタン */
.btn-chg-itinerary { display: inline-block; margin: 0 0 15px; }
.btn-chg-itinerary .btn {
  font-size: 12px;
  line-height: 18px;
  padding: 5px 10px;
  background: #fff;
  border: 1px solid #ccc;
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  border-radius: 0;
}
.btn-chg-itinerary .btn + .btn { margin-left: -1px; }
.btn-chg-itinerary .btn.active { background: #f0f0f0; }
.btn-chg-itinerary .btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
/* 「詳細を閉じる」を押したときは写真と説明文を隠す */
.ct-container.is-simple .ct-timeline-content { display: none; }

.fa-camera::before     { content: "\f030"; }
.fa-users::before      { content: "\f0c0"; }
.fa-folder-o::before   { content: "\f114"; }
.fa-folder-open-o::before { content: "\f115"; }

/* ---------- よくあるご質問（原本 panel + collapse を <details> で再現） ---------- */
.faq-nav { margin: 0; }
.faq-nav .btn-u { margin: 0 3px 10px; }
.faq-item {
  border: 1px solid #ddd;
  border-radius: 0;
  margin: 0 0 20px;
  background: #fff;
}
.faq-item > summary {
  display: block;
  list-style: none;
  cursor: pointer;
  padding: 5px 15px;      /* 原本の実測値 */
  background: #f5f5f5;
  border-bottom: 0;
  border-radius: 0;
  font-size: 16px;
  line-height: 25px;      /* 原本の実測値 */
  color: var(--text);
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary:hover { color: var(--accent); }
.faq-item[open] > summary { border-bottom: 1px solid #ddd; }
.faq-item__body { padding: 15px; }
.faq-item__body p { margin: 0 0 10px; }
.faq-item__body p:last-child { margin-bottom: 0; }
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background: #777;
  border-radius: 10px;
}
.badge-green { background: #333; }   /* 原本の実測値（緑ではなく濃いグレー） */
.badge-gray  { background: #999; }

/* ---------- お知らせ一覧 ---------- */
.topics-list {
  list-style: none;
  margin: 0 -20px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 992px) {
  .topics-list { grid-template-columns: repeat(4, 1fr); }
}
.topics-item { padding: 0; }
.topics-item__inner { margin: 0 20px 20px 0; }
.topics-item img { width: 100%; height: auto; display: block; }
.topics-item .item-caption { padding: 10px 0 0; }
.topics-item .caption { font-size: 14px; color: var(--text-sub); margin: 0 0 5px; }
.topics-item p { margin: 0 0 10px; }
.topics-item a { color: var(--text); }
.topics-item a:hover { color: var(--accent); }

/* ---------- お知らせ記事 ---------- */
.blog-info { list-style: none; margin: 0 0 20px; padding: 0; }
.blog-info li { display: inline-block; margin-right: 15px; color: var(--text-sub); font-size: 14px; }
.mb20 { margin-bottom: 20px; }
.img-responsive-center { max-width: 100%; height: auto; display: inline-block; }
.tmargin-bottom-30 { margin-bottom: 30px; line-height: 1.8; }
.margin-bottom-30 { margin-bottom: 30px; }
@media (max-width: 991px) { .md-margin-bottom-30 { margin-bottom: 30px; } }
.posts .dl-horizontal { margin: 0 0 15px; overflow: hidden; }
.posts .dl-horizontal dt { float: left; width: 60px; margin: 0; }
.posts .dl-horizontal dt img { width: 60px; height: auto; display: block; }
.posts .dl-horizontal dd { margin-left: 72px; }
.posts .dl-horizontal dd p { font-size: 14px; line-height: 1.5; margin: 0; }
.posts .dl-horizontal dd a { color: var(--text); }
.posts .dl-horizontal dd a:hover { color: var(--accent); }
.margin-bottom-40 { margin-bottom: 40px; }
.fa-tags::before { content: "\f02c"; }
.list-inline { list-style: none; padding: 0; }

/* ---------- スマホ幅での右はみ出し対策 ----------
   カード一覧は「右に-20px」で内容幅を揃えているが、スマホでは画面から5pxはみ出すため、
   スマホ幅では負マージンをやめ、カード間の隙間はグリッドの gap で作る。 */
@media (max-width: 767px) {
  .portfolio-items,
  .thumb-items,
  .topics-list { margin-right: 0; column-gap: 20px; }
  .portfolio-item .item-inner,
  .thumb-item__inner,
  .topics-item__inner { margin-right: 0; }
}

/* 翻訳ウィジェット（フッターのツール欄）
   ウィジェットの中身は外からCSSで動かせないため、「置き場所の幅そのものを狭くして」
   Instagramアイコンと同じ左端に来るようにしている。 */
.footer-translate {
  margin-top: 15px;
  width: 130px;      /* ボタンの幅ぶんだけ確保。これより広いと中央寄せで右にずれて見える */
  text-align: left;
}
.footer-translate > div {
  display: flex !important;
  justify-content: flex-start !important;
}
@media (max-width: 991px) {
  .footer-translate { width: 130px; }
}

/* ---------- 交通アクセス：背景に琵琶湖の写真（原本 background-attachment:fixed） ---------- */
.bg-fixed-lake {
  background: url(/assets/images/access/bg-lake.jpg) 50% 50% / cover no-repeat fixed;
}
@media (max-width: 767px) {
  /* スマホは固定背景が動かない端末があるため、通常のスクロール背景にする */
  .bg-fixed-lake { background-attachment: scroll; }
}


/* =========================================================
   ★デザイン改善（2026-07-26）
   構成・文言・写真はそのまま。見た目だけを整えるための上書き。
   方向性＝「落ち着いた上質さ（老舗旅館らしい格）」
   ここから下を消せば、現行サイトと同じ見た目に戻ります。
   ========================================================= */

:root {
  --text: #2b2724;          /* 本文：黒より少し柔らかい墨色 */
  --text-sub: #6b6259;      /* 補助文字 */
  --text-strong: #1f1c19;   /* 見出し */
  --bg-cream: #faf8f4;      /* 生成り（薄い背景） */
  --line: #e6e0d6;          /* 罫線 */
  --line-thin: #efeae2;
}

/* ---------- 1. 文字を読みやすく ---------- */
body {
  font-size: 17px;
  line-height: 1.95;
  letter-spacing: 0.04em;
  color: var(--text);
}
p { margin: 0 0 1.2em; }

/* ---------- 2. 見出しに風格を持たせる ---------- */
h2.h2 {
  font-size: 32px;
  line-height: 1.6;
  font-weight: 400;          /* 明朝は細いほうが上品 */
  letter-spacing: 0.14em;
  color: var(--text-strong);
  text-align: center;
  margin: 0 0 13px;
}
/* 見出しの下に細い飾り線 */
h2.h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 17px auto 0;
}
/* 見出し直後の説明文は中央に */
h2.h2 + p { text-align: center; color: var(--text-sub); margin-bottom: 2.4em; }

h3 {
  font-size: 21px;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-strong);
  margin: 0 0 14px;
}

/* ---------- 3. 余白をゆったり取る ---------- */
.content-sm { padding-top: 100px; padding-bottom: 100px; }
.content-md { padding-top: 120px; padding-bottom: 120px; }
.content    { padding-top: 72px;  padding-bottom: 72px; }
@media (max-width: 767px) {
  .content-sm { padding-top: 56px; padding-bottom: 56px; }
  .content-md { padding-top: 64px; padding-bottom: 64px; }
  .content    { padding-top: 48px; padding-bottom: 48px; }
  h2.h2 { font-size: 22px !important; letter-spacing: 0.1em; }
  h2.h2::after { margin-top: 13px; }
  body { font-size: 16px; line-height: 1.9; }
}

/* 左右2カラム（写真＋文章）に上下の余裕を持たせる */
.col-md-6 + .col-md-6,
.col-md-push-6, .col-md-pull-6 { }
@media (min-width: 992px) {
  .col-md-6 > h2.h2 { text-align: left; }
  .col-md-6 > h2.h2::after { margin-left: 0; }
  .col-md-6 > h2.h2 + p { text-align: left; }
}
@media (max-width: 991px) {
  .col-md-6 + .col-md-6 { margin-top: 32px; }
}

/* ---------- 4. 写真に静かな動きを ---------- */
.zoomer .overlay-zoom,
.thumbnail a,
.item-photo a {
  display: block;
  overflow: hidden;
}
.zoomer img,
.thumbnail img,
.item-photo img,
.topics-item img {
  transition: transform 1.2s cubic-bezier(.2,.6,.2,1), opacity .4s ease;
  will-change: transform;
}
@media (hover: hover) {
  .zoomer:hover img,
  .thumbnail a:hover img,
  .item-photo a:hover img { transform: scale(1.06); }
}

/* ---------- 5. ボタンをゆったり・上品に ---------- */
.btn-u.btn-brd {
  font-size: 15px;
  letter-spacing: 0.16em;
  padding: 17px 13px;
  border-radius: 1px;
}
.btn-u.btn-u-light.btn-brd {
  font-size: 14px;
  letter-spacing: 0.16em;
  padding: 13px 13px;
  border-width: 1px;
}
.btn.btn-default {
  font-size: 13px;
  letter-spacing: 0.12em;
  padding: 11px 22px;
  border-color: var(--line);
  border-radius: 1px;
}

/* ---------- 6. カード・表を軽やかに ---------- */
.thumbnail {
  border: 1px solid var(--line-thin);
  padding: 0 0 22px;
  border-radius: 2px;
  transition: box-shadow .4s ease, transform .4s ease;
}
@media (hover: hover) {
  .thumbnail:hover { box-shadow: 0 10px 30px rgba(43,39,36,.08); transform: translateY(-3px); }
}
.thumbnail h4 { order: 2; font-size: 17px; letter-spacing: 0.06em; font-weight: 500; margin: 20px 18px 12px; }
.thumbnail p.text-center { margin: 0 18px; }

.table th, .table td { border-color: var(--line); padding: 16px 8px; }
.table th { font-weight: 500; letter-spacing: 0.08em; color: var(--text-strong); }
.table-bordered, .table-bordered th, .table-bordered td { border-color: var(--line); }
.table-bordered th { background: var(--bg-cream); font-weight: 500; }

/* 薄い背景のセクションを生成り色に */
section.bg-gray, .bg-gray { background: var(--bg-cream); }

/* ---------- 7. 写真の上の文章ブロック ---------- */
.well.bg-trans-black {
  padding: 44px 40px;
  background: rgba(0,0,0,.42);
}
.bg-trans-black h2 {
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.7;
  margin: 0 0 22px;
}
.bg-trans-black p { line-height: 2.0; letter-spacing: 0.05em; }
@media (max-width: 767px) {
  .well.bg-trans-black { padding: 32px 22px; }
  .bg-trans-black h2 { font-size: 19px !important; }
}

/* ---------- 8. ページ上部の見出し帯 ---------- */
.jumbotron { padding: 34px 0 30px; }
.jumbotron h1 {
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.22em;
  line-height: 1.6;
  text-shadow: 0 1px 12px rgba(0,0,0,.45);
}
@media (max-width: 767px) {
  .jumbotron { padding: 22px 0 20px; }
  .jumbotron h1 { font-size: 17px; letter-spacing: 0.16em; }
}

/* 上部ビジュアルの文字 */
.page-visual__caption h2 { font-weight: 400; letter-spacing: 0.12em; line-height: 1.7; }

/* ---------- 9. スクロールでふわっと現れる ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease, transform 1s cubic-bezier(.2,.6,.2,1);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .zoomer img, .thumbnail img, .item-photo img, .topics-item img { transition: none; }
  .thumbnail { transition: none; }
}


/* =========================================================
   ★フォントを細身に統一（依頼者のご希望 2026-07-26）
   太字（ボールド）を使わず、明朝の細い線で上品に見せる。
   強調したい箇所は「太さ」ではなく「色の濃さ・文字サイズ・字間」で差をつける。
   ========================================================= */

/* Mac・iPhoneで線を一段細く描画する */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 見出し・強調・表の項目名など、太字だったものをすべて標準の太さに */
h1, h2, h3, h4, h5, h6,
strong, b, th,
.lead,
.btn-u, .btn,
.navbar-nav > li > a,
.heading-sm,
.thumbnail h4,
.caption h4,
.thumb-item h4,
.plan-item .lead,
.plan-item .lead strong,
.thumb-item p strong,
.topics-item strong,
.faq-item > summary,
.faq-item__body strong,
.menu-toggle > summary,
.table th,
.table-bordered th,
.jumbotron h1,
.page-visual__caption h2,
.bg-trans-black h2,
.ct-timeline-title,
.badge,
.copyright p,
.blog-info li,
.posts .dl-horizontal dd p {
  font-weight: 400;
}

/* 強調（strong）は太さの代わりに色を濃くして区別する */
strong, b { color: var(--text-strong); }
.bg-trans-black strong, .bg-trans-black b { color: #fff; }

/* 見出しは字間を少し広げて、細くても存在感が出るように */
h3 { letter-spacing: 0.1em; }
.thumbnail h4, .caption h4, .thumb-item h4 { letter-spacing: 0.08em; }
.plan-item .lead { letter-spacing: 0.08em; }

/* 表の項目名は、細くても見分けられるよう色を濃く */
.table th, .table-bordered th { color: var(--text-strong); letter-spacing: 0.08em; }

/* ナビゲーションも細身に（字間で読みやすさを保つ） */
.navbar-nav > li > a { letter-spacing: 0.08em; }

/* 電話番号など数字は細いと弱く見えるため、少しだけ大きさで補う */
.tel { letter-spacing: 0.02em; }

/* サイト全体で太字を使わない、という方針のため、ここは確実に効かせる。
   （フッター見出しやスライダーのリード文など、個別に太字指定が残っていたため） */
h1, h2, h3, h4, h5, h6,
strong, b, th,
.lead, .heading-sm,
.btn-u, .btn,
.navbar-nav > li > a,
.thumbnail h4, .caption h4, .thumb-item h4,
.table th, .table-bordered th,
.faq-item > summary, .menu-toggle > summary,
.ct-timeline-title, .badge, .blog-info li {
  font-weight: 400 !important;
}


/* =========================================================
   ★写真と文章を左右に分ける見せ方（依頼者のご希望 2026-07-26）
   これまでの「写真の上に暗幕を敷いて文字を載せる」やり方をやめ、
   写真を大きく見せ、文章は余白の中に置く形にした。
   ========================================================= */
.feature {
  display: flex;
  align-items: center;    /* 写真を縦中央に置く（3:2を保つため引き伸ばさない） */
  background: var(--bg-cream);  /* 文章側と同じ色。写真の上下に余りが出ても目立たない */
  /* 画面いっぱいに広げず、コンテンツ幅を決めて左右に余白をとる。
     （3:2にした結果、大きな画面で写真が大きくなりすぎたため 2026-07-28） */
  width: calc(100% - 80px);
  max-width: 1620px;
  margin-left: auto;
  margin-right: auto;
  /* 左右の余白も同じ生成り色で埋める（白いままだと浮いて見えるため）
     影を横に大きく伸ばし、上下だけ切り取っている */
  box-shadow: 0 0 0 100vw var(--bg-cream);
  clip-path: inset(0 -100vw);
  /* 左右にとった余白と同じ量を上下にも入れ、色のついた面の中で
     コンテンツの周囲を均等にする（依頼者のご希望 2026-07-28） */
  padding: var(--feature-gap) 0;
}
/* 左右の余白の量（画面幅によって変わるので計算で出す） */
.feature { --feature-gap: calc((100% - min(1620px, 100% - 80px)) / 2); }
@media (max-width: 1279px) { .feature { --feature-gap: calc((100% - min(900px, 100% - 80px)) / 2); } }
@media (max-width: 767px)  { .feature { --feature-gap: 0px; } }
/* 写真は画面の55%。縦横比は3:2に固定し、元画像を切らずに見せる */
.feature__media {
  flex: 0 0 55%;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 2;
}
.feature__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;      /* 枠いっぱいに敷く（この用途に限り使用） */
  transition: transform 2s cubic-bezier(.2,.6,.2,1);
}
@media (hover: hover) {
  .feature:hover .feature__media img { transform: scale(1.04); }
}

/* 文章側は生成りの余白 */
.feature__body {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  background: var(--bg-cream);
  justify-content: center;   /* 文章ブロックを横方向にも中央に置く */
  padding: 44px;
}
.feature__inner { max-width: 560px; }

.feature__title {
  font-size: 27px;
  line-height: 1.9;
  letter-spacing: 0.16em;
  color: var(--text-strong);
  margin: 0 0 22px;
  position: relative;
  padding-bottom: 17px;
}
/* 見出しの下に細い線 */
.feature__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 1px;
  background: var(--accent);
}
.feature__body p {
  font-size: 16px;
  line-height: 2.3;
  letter-spacing: 0.05em;
  color: var(--text);
  margin: 0 0 1.4em;
}
.feature__btn { margin: 26px 0 0 !important; }
.feature__btn .btn-u {
  display: inline-block;
  width: auto;
  min-width: 240px;
  padding: 16px 30px;
}

/* 偶数番目は写真を右に */
.feature--reverse { flex-direction: row-reverse; }

/* タブレット・スマホは上下に積む */
/* 左右分割は1200px以上のみ。
   それ未満は文章側が縦に伸びて写真（3:2固定）との差が開くため、縦積みにする。 */
@media (max-width: 1279px) {
  /* align-items:center は横並びのときだけ。縦積みでは幅いっぱいに戻す */
  .feature, .feature--reverse { flex-direction: column; align-items: stretch; }
  /* 縦積みでは写真が横幅いっぱいになるので、さらに幅を絞る */
  .feature { max-width: 900px; }
  .feature__media { flex: none; min-height: 0; height: auto; }
  .feature__media img { position: static; height: auto; }
  .feature__body { flex: none; padding: 44px; }
}
/* ここから下はスマホ・タブレット縦向けの文字サイズと余白 */
@media (max-width: 767px) {
  /* スマホは写真を画面いっぱいに見せたいので左右の余白をなくす */
  .feature { width: 100%; max-width: none; }
}
@media (max-width: 991px) {
  .feature__body { padding: 48px 24px 56px; }
  .feature__inner { max-width: none; }
  .feature__title { font-size: 21px; letter-spacing: 0.12em; margin-bottom: 20px; padding-bottom: 14px; }
  .feature__body p { font-size: 16px; line-height: 2.1; }
  .feature__btn .btn-u { width: 100%; min-width: 0; }
}

/* 文章側は左揃えにする（中央揃えの共通指定を打ち消す） */
.feature__body .text-center { text-align: left; }


/* =========================================================
   ★おすすめプランをカード型のリンクに（依頼者のご希望 2026-07-26）
   「クリックできると分からない」というご指摘への対応。
   カード全体がリンクになり、白い箱・影・「プランを見る」で押せることを示す。
   ========================================================= */
.plan-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--line-thin);
  border-radius: 2px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: box-shadow .4s ease, transform .4s ease, border-color .4s ease;
}
@media (hover: hover) {
  .plan-card:hover {
    box-shadow: 0 14px 34px rgba(43,39,36,.12);
    transform: translateY(-4px);
    border-color: var(--line);
  }
  .plan-card:hover .plan-card__media img { transform: scale(1.06); }
  .plan-card:hover .plan-card__more { color: var(--accent-dark); }
  .plan-card:hover .plan-card__more::before { width: 40px; }
}
.plan-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.plan-card__media { display: block; overflow: hidden; }
.plan-card__media img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1.2s cubic-bezier(.2,.6,.2,1);
}

.plan-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  padding: 22px 22px 24px;
}
.plan-card__title {
  display: block;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--text-strong);
  flex: 1 0 auto;
}
/* 「プランを見る」＝押せることを示す目印 */
.plan-card__more {
  display: block;
  margin-top: 18px;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--accent);
  transition: color .4s ease;
  position: relative;
  padding-top: 16px;
}
.plan-card__more::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 1px;
  background: var(--accent);
  transition: width .4s ease;
}
.plan-card__more .fa {
  margin-left: 8px;
  font-size: 11px;
  vertical-align: middle;
}

/* カードの高さを揃える */
.equal-height-columns-v2 { display: flex; flex-wrap: wrap; }
.equal-height-columns-v2 > [class*="col-"] {
  float: none;
  display: flex;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .plan-card__body { padding: 18px 18px 20px; }
  .equal-height-columns-v2 > [class*="col-"] { margin-bottom: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .plan-card, .plan-card__media img, .plan-card__more, .plan-card__more::before { transition: none; }
}

/* カードを周辺情報・料理プランにも適用したことによる調整 */
.plan-card .zoom-icon {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  opacity: 0;
  transition: opacity .4s ease, background-color .4s ease;
  background-image: none;
}
.plan-card__media { position: relative; }
@media (hover: hover) {
  .plan-card:hover .zoom-icon { opacity: 1; background-color: rgba(43,39,36,.12); }
}
/* 料理プランは2列のまま、カードの高さを揃える */
.plan-items { align-items: stretch; }
.plan-item { display: flex; }
.plan-item .plan-card { width: 100%; }
/* 周辺情報のカードも高さを揃える */
.guide-cards > [class*="col-"] { display: flex; }
.guide-cards .plan-card { width: 100%; }
.fa-search::before { content: "\f002"; }

/* 料理プランを3列に（依頼者のご希望 2026-07-26） */
@media (min-width: 768px) and (max-width: 991px) {
  .plan-items { grid-template-columns: 1fr 1fr; }   /* タブレットは2列 */
}
@media (min-width: 992px) {
  .plan-items { grid-template-columns: repeat(3, 1fr); }   /* パソコンは3列 */
}


/* =========================================================
   ★下層ページの上部ビジュアルの高さを抑える（依頼者のご指摘 2026-07-26）
   これまでは写真の縦横比のまま表示していたため、パソコンで高さ約1000pxとなり、
   スクロールしないと本文が見えなかった。
   画面の高さに収まる大きさにして、「下に続きがある」ことが分かるようにする。
   ========================================================= */
@media (min-width: 768px) {
  .page-visual {
    position: relative;
    /* 画面の高さの42%。狭い画面でも320px、広い画面でも460pxまで */
    height: clamp(320px, 42vh, 460px);
    overflow: hidden;
  }
  .page-visual > img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* 枠に合わせて中央を表示（この用途に限り使用） */
    object-position: center;
  }
  /* 文字の帯は写真の中央に重ねる */
  .page-visual__caption {
    top: 50%;
    transform: translateY(-50%);
    padding: 34px 0;
  }
}

/* 交通アクセスの施設情報の表（背景写真の上ではなくなったため、白地で見せる） */
.facility-table { background: transparent; padding: 0; }
.facility-table .table-bordered { border-color: var(--line); }
.facility-table .table-bordered th { background: var(--bg-cream); }
.facility-table .table-bordered td { background: #fff; }

/* 交通アクセス：施設情報の表と地図を横並びに（依頼者のご希望 2026-07-26） */
.access-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}
.access-split .table-bordered { margin: 0; }
.access-split__map .googlemapWrapper iframe { height: 400px; }
.access-split__btn { margin: 18px 0 0 !important; }
.access-split__btn .btn-u {
  display: block;
  width: 100%;
}
@media (max-width: 991px) {
  /* 狭い画面では上下に積む */
  .access-split { grid-template-columns: 1fr; gap: 36px; }
  .access-split__map .googlemapWrapper iframe { height: 320px; }
}

/* 施設情報の表：項目名の列が広すぎたので、内容側を広く取る（依頼者のご指摘 2026-07-26） */
.access-split .table-bordered { table-layout: fixed; }
.access-split .table-bordered th {
  width: 33%;
  padding-left: 14px;
  padding-right: 14px;
  word-break: normal;
  line-height: 1.7;
}
.access-split .table-bordered td { width: 67%; }
@media (max-width: 640px) {
  /* スマホは項目名と内容が縦に並ぶため、幅の指定を解除 */
  .access-split .table-bordered { table-layout: auto; }
  .access-split .table-bordered th,
  .access-split .table-bordered td { width: auto; }
}


/* =========================================================
   ★よくあるご質問のデザインを刷新（依頼者のご指摘 2026-07-26）
   灰色の帯＋枠線＋丸バッジという古い「パネル」風をやめ、
   細い線で区切るだけの、余白を活かした見せ方にする。
   ========================================================= */

/* カテゴリーの見出しリンク：塗りボタン → 細い下線のリンク */
.faq-nav { margin: 0 0 10px; }
.faq-nav .btn-u,
.faq-nav .btn-u.btn-brd {
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid transparent !important;
  border-radius: 0;
  color: var(--text-sub) !important;
  font-size: 15px;
  letter-spacing: 0.12em;
  padding: 6px 2px;
  margin: 0 20px 14px;
  transition: color .35s ease, border-color .35s ease;
}
.faq-nav .btn-u:hover {
  color: var(--accent) !important;
  border-bottom-color: var(--accent) !important;
}
@media (max-width: 767px) {
  .faq-nav .btn-u { margin: 0 12px 12px; font-size: 14px; }
}

/* 質問1件：枠で囲まず、下線だけで区切る */
.faq-item {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  margin: 0;
  background: transparent;
}
.faq-item:first-of-type { border-top: 1px solid var(--line); }

.faq-item > summary {
  background: transparent;
  border: 0;
  padding: 30px 56px 30px 0;
  position: relative;
  font-size: 17px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--text-strong);
  transition: color .35s ease;
}
.faq-item[open] > summary { border-bottom: 0; }

/* 右端の「＋」。開くと「−」に変わる */
.faq-item > summary::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 13px;
  height: 1px;
  background: var(--accent);
  transition: transform .35s ease;
}
.faq-item > summary::before {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 13px;
  height: 1px;
  background: var(--accent);
  transform: rotate(90deg);
  transition: transform .35s ease, opacity .35s ease;
}
.faq-item[open] > summary::before { transform: rotate(0deg); opacity: 0; }

/* 「Q」「A」の丸バッジをやめ、茶色の細い文字にする */
.badge {
  display: inline-block;
  min-width: 0;
  background: transparent !important;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.14em;
  padding: 0;
  border-radius: 0;
  margin-right: 14px;
  vertical-align: 1px;
}

.faq-item__body {
  padding: 0 56px 34px 0;
  position: relative;
  color: var(--text);
  line-height: 2.1;
}
.faq-item__body p { margin: 0 0 1em; }
.faq-item__body p:last-child { margin-bottom: 0; }

/* カテゴリー見出し */
section[id^="anc_tab"] h2 {
  font-size: 22px;
  letter-spacing: 0.14em;
  font-weight: 400;
  color: var(--text-strong);
  margin: 0 0 34px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--accent);
}


/* =========================================================
   ★観光コースのタイムラインを刷新（依頼者のご指摘 2026-07-26）
   幅いっぱいの灰色帯・太い縦線・白い箱＋三角のツノをやめ、
   写真を大きく、余白で区切る静かな見せ方にする。
   ========================================================= */
.ct-container { position: relative; margin: 0; }

/* 地名ラベル：幅いっぱいの帯 → 小さなタグ */
.ct-timeline-index { margin: 0 0 14px; }
.label {
  display: inline-block;
  width: auto;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.16em;
  color: var(--accent);
  background: transparent;
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 0;
}

/* 1項目 */
.ct-timeline-date { margin: 0 0 72px; }
.ct-timeline-date:last-child { margin-bottom: 0; }

/* 縦線をやめ、項目ごとの余白で区切る */
.ct-timeline-block { position: relative; padding: 0; }
.ct-timeline-block::before { display: none; }

/* 丸アイコンは小さく、見出しの左に添える */
.ct-timeline-img {
  position: absolute;
  left: 0;
  top: 2px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.ct-timeline-img i { font-size: 12px; line-height: 1; color: var(--accent); }

.ct-timeline-title {
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: 0.1em;
  color: var(--text-strong);
  margin: 0 0 22px 40px;
}

/* 白い箱と三角のツノをやめ、写真と文章を左右に */
.ct-timeline-content {
  position: static;
  background: transparent;
  border-radius: 0;
  margin: 0;
  padding: 0;
  display: block;
}
.ct-timeline-content::before { display: none; }
.ct-timeline-content-detail {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 36px;
  align-items: start;
}
.ct-timeline-content-detail::after { display: none; }
.ct-timeline-content-detail img {
  float: none;
  width: 100%;
  height: auto;
  margin: 0;
  display: block;
  transition: transform 1.2s cubic-bezier(.2,.6,.2,1);
}
.ct-timeline-content-detail {
  font-size: 16px;
  line-height: 2.2;
  letter-spacing: 0.04em;
  color: var(--text);
}
@media (max-width: 767px) {
  .ct-timeline-date { margin-bottom: 48px; }
  .ct-timeline-title { font-size: 17px; margin-left: 36px; margin-bottom: 16px; }
  .ct-timeline-content-detail { grid-template-columns: 1fr; gap: 16px; }
  .ct-timeline-img { width: 24px; height: 24px; }
}

/* 「詳細を開く／閉じる」ボタンも細い線に */
.btn-chg-itinerary { margin: 0 0 40px; }
.btn-chg-itinerary .btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text-sub);
  font-size: 12px;
  letter-spacing: 0.12em;
  padding: 9px 18px;
}
.btn-chg-itinerary .btn.active { background: var(--bg-cream); border-color: var(--line); color: var(--text-strong); }
.btn-chg-itinerary .btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* =========================================================
   ★観光コース：順路が分かるように縦線と通し番号を戻す
   （依頼者のご指摘 2026-07-26「縦線がないと1日のモデルコースだと分かりづらい」）
   ただし以前の「太い灰色の線」ではなく、細い線＋番号で静かに示す。
   ========================================================= */
.ct-container {
  position: relative;
  padding-left: 58px;
  counter-reset: spot;      /* 立ち寄り先の通し番号 */
}
/* 順路を示す細い縦線（最初の丸から最後の丸まで） */
.ct-container::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: var(--line);
}
@media (max-width: 767px) {
  .ct-container { padding-left: 44px; }
  .ct-container::before { left: 11px; }
}

.ct-timeline-date {
  position: relative;
  counter-increment: spot;
}

/* 丸アイコンは縦線の上に重ねる（背景を白くして線を隠す） */
.ct-timeline-img {
  position: absolute;
  left: -58px;
  top: 30px;
  width: 27px;
  height: 27px;
  background: #fff;
  border: 1px solid var(--accent);
  color: var(--accent);
  z-index: 1;
}
@media (max-width: 767px) {
  .ct-timeline-img { left: -44px; width: 23px; height: 23px; top: 26px; }
  .ct-timeline-img i { font-size: 10px; }
}

/* 立ち寄り順が分かるよう、見出しの前に通し番号を置く */
.ct-timeline-title { margin-left: 0; position: relative; }
.ct-timeline-title::before {
  content: counter(spot, decimal-leading-zero);
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.16em;
  margin-right: 16px;
  vertical-align: 2px;
}
.ct-timeline-index { margin-left: 0; }

/* 観光コース：アイコンをスポット名と同じ高さに揃え、地域名ラベルは名前の右に置く
   （依頼者のご希望 2026-07-26） */
.ct-timeline-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 16px;
  margin-bottom: 24px;
}
/* 地域名ラベル（京都・大津など）はスポット名の右へ */
.ct-timeline-title .label {
  font-size: 11px;
  padding: 5px 11px;
  letter-spacing: 0.14em;
  line-height: 1;
  flex: 0 0 auto;
}
/* アイコンをスポット名の行の中心に合わせる */
.ct-timeline-img {
  top: 50%;
  transform: translateY(-50%);
}
/* スポット名の行だけを基準にするため、位置の基準を作り直す */
.ct-timeline-block { position: static; }
.ct-timeline-title { position: relative; }
.ct-timeline-title .ct-timeline-img { position: absolute; }
@media (max-width: 767px) {
  .ct-timeline-title { gap: 0 12px; margin-bottom: 18px; }
  .ct-timeline-title .label { font-size: 10px; padding: 4px 9px; }
}

/* スマホで名前が長いとき、地域名ラベルが次の行に落ちてしまうため、
   名前を折り返させてラベルは常に名前のすぐ右に置く */
@media (max-width: 767px) {
  .ct-timeline-title { align-items: flex-start; }
  .ct-timeline-title .label { margin-top: 4px; }
  /* アイコンは1行目の高さに合わせる（名前が2行でもずれないように） */
  .ct-timeline-title .ct-timeline-img { top: 14px; transform: none; }
}


/* =========================================================
   ★日帰りプランのデザインを整える（依頼者のご希望 2026-07-26）
   写真が右上に浮いて見えていたため、他のページと同じ左右分割に統一。
   お品書きの開閉も、よくあるご質問と同じ「細い線」の見せ方に揃えた。
   ========================================================= */

/* コース名の下の小見出し（和牛ステーキ付旬の会席料理 など） */
.feature__sub {
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin: -14px 0 26px !important;
}

/* お品書きの開閉：灰色の箱 → 上下の細い線 */
.course-menu {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 0;
  margin: 0 0 24px;
}
.course-menu .menu-toggle > summary {
  text-align: left;
  padding: 18px 30px 18px 0;
  margin: 0;
  position: relative;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--text-strong);
}
/* 右端の「＋」。開くと「−」に */
.course-menu .menu-toggle > summary .fa { display: none; }
.course-menu .menu-toggle > summary::after,
.course-menu .menu-toggle > summary::before {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 12px;
  height: 1px;
  background: var(--accent);
  transition: transform .35s ease, opacity .35s ease;
}
.course-menu .menu-toggle > summary::before { transform: rotate(90deg); }
.course-menu .menu-toggle[open] > summary::before { transform: rotate(0deg); opacity: 0; }

.course-menu .menu-toggle ul {
  list-style: none;
  padding: 0 0 20px;
  margin: 0;
  columns: 2;              /* 品数が多いので2列に */
  column-gap: 28px;
}
.course-menu .menu-toggle li {
  font-size: 15px;
  line-height: 2.1;
  color: var(--text);
  letter-spacing: 0.04em;
  break-inside: avoid;
  position: relative;
  padding-left: 16px;
}
.course-menu .menu-toggle li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 5px;
  height: 1px;
  background: var(--accent);
}

/* 注記（※季節により…） */
.feature__note {
  font-size: 14px !important;
  line-height: 1.9 !important;
  color: var(--text-sub);
  margin: 0 0 0.8em !important;
}
.feature__inner .feature__note:last-child { margin-bottom: 0 !important; }

@media (max-width: 767px) {
  .course-menu .menu-toggle ul { columns: 1; }
  .feature__sub { margin: -10px 0 20px !important; }
}


/* =========================================================
   ★トップの「ごあいさつ」の黒背景をやめる（依頼者のご希望 2026-07-26）
   紺色の和紙背景＋白文字 → 生成りの明るい背景＋黒文字に。
   ========================================================= */
.bg-washi-black {
  /* 下の料理セクション（生成り）と同じ色だと埋もれるため、こちらは白にして差を出す */
  background: #fff !important;
  padding-top: 0;
  padding-bottom: 0;
}
.bg-washi-black h1 {
  color: var(--text-strong) !important;
  font-size: 26px;
  line-height: 1.9;
  letter-spacing: 0.12em;
  margin: 0 0 30px;
}
/* 見出しの下に細い飾り線（他のページと同じ） */
.bg-washi-black h1::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 30px auto 0;
}
.bg-washi-black p {
  color: var(--text) !important;
  line-height: 2.2;
}
/* バナー2つの間隔を整える */
.bg-washi-black .margin-top-20 { margin-top: 40px; }
.bg-washi-black img { max-width: 100%; height: auto; }
@media (max-width: 767px) {
  .bg-washi-black h1 { font-size: 18px !important; letter-spacing: 0.08em; margin-bottom: 22px; }
  .bg-washi-black h1::after { margin-top: 22px; }
}

/* ごあいさつを導入部として見せる（依頼者のご指摘 2026-07-26「下と同じ色で目立たない」） */
.bg-washi-black h1 {
  font-size: 29px;
  letter-spacing: 0.16em;
  line-height: 2.0;
}
.bg-washi-black p {
  font-size: 17px;
  line-height: 2.4;
  color: var(--text-sub);
}
/* バナーは少し小さめにして、文章を主役に */
.bg-washi-black .margin-top-20 { margin-top: 34px; }
@media (max-width: 767px) {
  .bg-washi-black > .container.content-sm { padding-top: 48px; padding-bottom: 48px; }
  .bg-washi-black h1 { font-size: 19px !important; }
  .bg-washi-black p { font-size: 16px; line-height: 2.2; }
  .bg-washi-black .margin-top-20 { margin-top: 36px; }
}

/* ごあいさつ：中の余白も詰める（依頼者のご指摘 2026-07-26「上下の余白が広すぎる」） */
.bg-washi-black h1 { margin-bottom: 22px; }
.bg-washi-black h1::after { margin-top: 22px; }
.bg-washi-black p { line-height: 2.1; margin-bottom: 0.6em; }
@media (max-width: 767px) {
  .bg-washi-black h1 { margin-bottom: 16px; }
  .bg-washi-black h1::after { margin-top: 16px; }
  .bg-washi-black .margin-top-20 { margin-top: 26px; }
}

/* ごあいさつ：上下の余白は中のcontainerだけで作る（二重にかかっていたため） */
.bg-washi-black > .container.content-sm {
  padding-top: 72px;
  padding-bottom: 72px;
}
@media (max-width: 767px) {
  .bg-washi-black > .container.content-sm { padding-top: 44px; padding-bottom: 44px; }
}


/* =========================================================
   ★見出しの字間を詰める（依頼者のご指摘 2026-07-26）
   「文字間が若干広すぎて、逆に読みにくくなってる」
   日本語の明朝は字間を空けすぎると読みづらいため、
   0.12〜0.22em → 0.05〜0.08em に調整。
   ========================================================= */

/* セクション見出し */
h2.h2 { letter-spacing: 0.07em; }
/* 写真と文章を左右に分けたセクションの見出し */
.feature__title { letter-spacing: 0.07em; }
/* トップのごあいさつ */
.bg-washi-black h1 { letter-spacing: 0.07em; }
/* ページタイトル帯 */
.jumbotron h1 { letter-spacing: 0.12em; }
/* 上部ビジュアルの文字 */
.page-visual__caption h2 { letter-spacing: 0.07em; }
/* 写真の上に文字が乗る箇所（トップのスライダー） */
.bg-trans-black h2 { letter-spacing: 0.07em; }
/* 小見出し */
h3 { letter-spacing: 0.05em; }
.feature__sub { letter-spacing: 0.05em; }
/* 観光コースのスポット名 */
.ct-timeline-title { letter-spacing: 0.06em; }
/* カード類の見出し */
.thumbnail h4, .caption h4, .thumb-item h4 { letter-spacing: 0.04em; }
.plan-item .lead { letter-spacing: 0.04em; }
.plan-card__title { letter-spacing: 0.03em; }
/* よくあるご質問 */
.faq-item > summary { letter-spacing: 0.03em; }
section[id^="anc_tab"] h2 { letter-spacing: 0.08em; }
/* 表の項目名 */
.table th, .table-bordered th { letter-spacing: 0.05em; }
/* お品書き */
.course-menu .menu-toggle > summary { letter-spacing: 0.05em; }

@media (max-width: 767px) {
  .feature__title { letter-spacing: 0.06em; }
  .jumbotron h1 { letter-spacing: 0.1em; }
  h2.h2 { letter-spacing: 0.06em; }
  .bg-washi-black h1 { letter-spacing: 0.05em; }
}

/* ページタイトル帯も他の見出しと揃える（0.12em → 0.08em） */
.jumbotron h1 { letter-spacing: 0.08em; }
@media (max-width: 767px) {
  .jumbotron h1 { letter-spacing: 0.07em; }
}


/* =========================================================
   ★ページタイトル帯の背景を、写真からボタンと同じ茶色の塗りに
   （依頼者のご指摘 2026-07-26「画像のせいで文字が読みづらい」）
   ========================================================= */
.jumbotron {
  background: var(--accent) !important;
  padding: 30px 0 28px;
}
.jumbotron h1 {
  color: #fff;
  text-shadow: none;   /* 写真の上ではなくなったので影は不要 */
}
@media (max-width: 767px) {
  .jumbotron { padding: 20px 0 18px; }
}


/* =========================================================
   ★よくあるご質問：カテゴリーリンクの余白と見た目
   （依頼者のご指摘 2026-07-26「余白が広すぎる」「アンカーリンクだとわかりづらい」）
   ========================================================= */

/* 余白を詰める（上100px→40px、下210px→48px） */
.faq-nav { margin: 0; }
section:has(.faq-nav) > .container.content-sm {
  padding-top: 40px;
  padding-bottom: 0;
}
/* :has に対応していないブラウザ向けの保険 */
.faq-nav-section > .container.content-sm {
  padding-top: 40px;
  padding-bottom: 0;
}
/* 最初のカテゴリーの上の余白も詰める */
section[id^="anc_tab"] > .container.content-sm { padding-top: 48px; }

/* リンクだと分かるようにする：茶色の文字＋常に下線＋下向きの印 */
.faq-nav .btn-u,
.faq-nav .btn-u.btn-brd {
  color: var(--accent) !important;
  border-bottom: 1px solid rgba(156,128,97,.4) !important;
  padding: 4px 2px 9px;
  margin: 0 18px 16px;
  position: relative;
}
.faq-nav .btn-u:hover {
  color: var(--accent-dark) !important;
  border-bottom-color: var(--accent-dark) !important;
}
/* 「このページの下に移動する」ことを示す小さな下向き記号 */
.faq-nav .btn-u::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 9px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .3s ease;
}
.faq-nav .btn-u:hover::after { transform: rotate(45deg) translate(0, 0); }

@media (max-width: 767px) {
  .faq-nav .btn-u { margin: 0 10px 14px; font-size: 14px; }
  section[id^="anc_tab"] > .container.content-sm { padding-top: 36px; }
}


/* =========================================================
   ★お食事の料理プラン：TOPのおすすめプランと同じ余白に揃える
   （依頼者のご指摘 2026-07-26「上下の間がなくなっている」）
   TOP＝左右15px・下30px。こちらは左右10px・下0pxだった。
   ========================================================= */
.plan-items { margin: 0 -15px; }
.plan-item {
  padding: 0 15px;
  margin: 0 0 30px;
}
@media (max-width: 767px) {
  .plan-item { margin-bottom: 20px; }
}

/* =========================================================
   ★左右分割セクション：文章エリアの幅を全セクションで統一
   （依頼者のご指摘 2026-07-26「セクションによって幅がバラバラで不自然」）
   これまでは max-width だけの指定で、中身の文字数によって幅が変わっていた。
   幅を固定して、どの写真のときも同じ幅に揃える。
   ========================================================= */
.feature__inner {
  width: 100%;
  max-width: 560px;
}
/* お品書きや小見出しも文章幅いっぱいに広げる */
.feature__inner > * { width: 100%; }
.course-menu { width: 100%; }

/* 縦積みのときは文章が横に長くなりすぎないよう720pxで中央に。
   （幅を全セクションで揃える方針はそのまま） */
@media (max-width: 1279px) {
  .feature__inner { max-width: 720px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 991px) {
  .feature__inner { max-width: none; }
}


/* =========================================================
   ★フォントを少しだけ太くする（依頼者のご希望 2026-07-26）
   ・細く見せるための描画指定（antialiased）を解除して標準描画に戻す
   ・太さは 400 → 500 に。ボールド（700）にはしない
   ========================================================= */
body {
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  font-weight: 500;
}
.fa { -webkit-font-smoothing: antialiased; }   /* アイコンだけは滑らかなまま */

h1, h2, h3, h4, h5, h6,
strong, b, th,
.lead, .heading-sm,
.btn-u, .btn,
.navbar-nav > li > a,
.thumbnail h4, .caption h4, .thumb-item h4,
.table th, .table-bordered th,
.faq-item > summary, .menu-toggle > summary,
.ct-timeline-title, .badge, .blog-info li,
.feature__title, .plan-card__title, .jumbotron h1,
.bg-washi-black h1, .page-visual__caption h2, .bg-trans-black h2 {
  font-weight: 500 !important;
}


/* =========================================================
   ★見出し直後の1段落だけ色が変わる問題を解消
   （依頼者のご指摘 2026-07-26）
   「h2.h2 + p」に補助色を当てていたため、続きの文章のうち
   1行目（最初の段落）だけ色が薄くなり、一続きの文章なのに
   途中から色が変わって見えていた。→ 本文と同じ色に戻す。
   ========================================================= */
h2.h2 + p {
  color: var(--text);
  text-align: inherit;
  margin-bottom: 1.2em;
}

/* 「見出しの下に1文だけ説明がある」セクション（おすすめプラン・料理プラン等）は
   これまでどおり中央揃え・下に余裕を持たせる */
.text-center > h2.h2 + p,
section .col-md-12 > h2.h2 + p {
  text-align: center;
  margin-bottom: 2.2em;
}
/* ただし、その下にさらに段落が続く場合は中央にしない（文章として不自然なため） */
section .col-md-12 > h2.h2 + p:not(:last-of-type) {
  text-align: left;
  margin-bottom: 1.2em;
}


/* =========================================================
   ★行間をサイト全体で詰める（依頼者のご指摘 2026-07-26）
   1.95〜2.4 と広めにしていたが、間延びして見えるため
   日本語の本文として読みやすい 1.8 前後に統一する。
   ========================================================= */
body { line-height: 1.8; }

/* 左右分割セクションの本文 */
.feature__body p { line-height: 1.85; }
/* トップのごあいさつ */
.bg-washi-black p { line-height: 1.85; }
/* 写真の上に文字が乗る箇所（トップのスライダー） */
.bg-trans-black p { line-height: 1.85; }
/* よくあるご質問の回答 */
.faq-item__body { line-height: 1.85; }
/* 観光コースの説明文 */
.ct-timeline-content-detail { line-height: 1.85; }
/* お品書きの項目 */
.course-menu .menu-toggle li { line-height: 1.9; }
/* 表の中 */
.table th, .table td { line-height: 1.8; }
/* 箇条書き */
.circle-list li { line-height: 1.8; }
/* カードの見出し */
.plan-card__title { line-height: 1.8; }

@media (max-width: 767px) {
  body { line-height: 1.8; }
  .feature__body p { line-height: 1.85; }
  .bg-washi-black p { line-height: 1.85; }
}

/* ★デザイン改善：お知らせ記事の写真
   PCのみ高さに上限（縦長写真が画面をはみ出すため）。
   スマホ・タブレットは幅いっぱいに表示する。 */
@media (min-width: 992px) {
  .col-md-9 .img-responsive-center { max-height: 62vh; width: auto; }
}


/* =========================================================
   お知らせバナー（トップ／ベストレート保証の上）
   PCは横並び2枚、スマホは縦並び1枚。
   ========================================================= */
.topics-banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 40px auto 40px;   /* 上にも余白をとる */
}
.topics-banners a {
  display: block;
  overflow: hidden;
  line-height: 0;   /* 画像の下にすき間ができるのを防ぐ */
}
.topics-banners img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .6s cubic-bezier(.2,.6,.2,1);
}
@media (hover: hover) {
  .topics-banners a:hover img { transform: scale(1.03); }
}
/* タブレット以下は横に並べると1枚が小さくなり、
   バナー内の文字が読めなくなるため縦並びにする */
@media (max-width: 991px) {
  .topics-banners { grid-template-columns: 1fr; gap: 16px; max-width: 620px; margin-top: 34px; margin-bottom: 34px; }
}
@media (max-width: 767px) {
  .topics-banners { gap: 14px; margin-top: 28px; margin-bottom: 30px; }
}

/* =========================================================
   フッターの段ズレ対策
   従来の float 並びだと、列の高さが違うときに互いが回り込み、
   「ご案内」が下にずれる／「ツール」が上に潜り込む不具合が出た。
   タブレット以下では横並びの仕組みを変えて、段ズレしないようにする。
   ========================================================= */
/* 旧レイアウト方式の名残である見えない要素（::before/::after）が
   1マス分を占領し、列が1つずつ後ろにずれていた。フッターでは無効にする。 */
.footer-v2 .row::before,
.footer-v2 .row::after { content: none; display: none; }

.footer-v2 .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
}
.footer-v2 .row > [class*="col-"] {
  float: none;
  width: auto;
  margin-top: 0 !important;
}
/* タブレット以下：ロゴとツールは横いっぱい、サービスとご案内は2列 */
@media (max-width: 991px) {
  .footer-v2 .row { grid-template-columns: 1fr 1fr; }
  .footer-v2 .row > [class*="col-"]:first-child,
  .footer-v2 .row > [class*="col-"]:last-child { grid-column: 1 / -1; }
}

/* 本文中のボタンも、左右分割セクションのボタンと同じ幅・余白にそろえる
   （文字が窮屈で他のボタンより細かったため 2026-08-03） */
.btn-u.btn-wide {
  display: inline-block;
  min-width: 240px;
  padding: 16px 30px;
  text-align: center;
}
@media (max-width: 767px) {
  .btn-u.btn-wide { width: 100%; min-width: 0; }
}

/* トップのおすすめプランは、全カードの遷移先が同じで不親切だったため
   カード自体のリンクをやめた（2026-08-03）。
   リンクでないカードは、指カーソルや拡大の反応を出さない。 */
div.plan-card { cursor: default; }
@media (hover: hover) {
  div.plan-card:hover { transform: none; box-shadow: none; }
  div.plan-card:hover .plan-card__media img { transform: none; }
}
div.plan-card .zoom-icon { display: none; }

/* 電話番号のリンク：見た目は文字のまま、スマホではタップで発信できるようにする */
a.tel-link,
.footer-v2 a.tel-link,
.footer-v2 .footer a.tel-link {
  color: inherit;
  text-decoration: none;
}
a.tel-link:hover,
.footer-v2 a.tel-link:hover,
a.tel-link:focus { color: var(--accent); text-decoration: none; }

/* =========================================================
   追従ヘッダー（ハンバーガーメニューの幅＝991px以下のみ）2026-08-03
   スマホ・タブレットでは、ロゴとメニューボタンの帯が画面上部に貼りつく。
   PCは従来どおり追従しない。
   ヘッダーを包む入れ物はそのままだと「貼りつく範囲」を狭めるため透過させる。
   ========================================================= */
@media (max-width: 991px) {
  div[data-include="/partials/header.html"] { display: contents; }

  .header-v4 {
    position: sticky;
    top: 0;
    z-index: 90;               /* 右上の電話パネル(100)より下、本文より上 */
    background: var(--bg-header);
  }

  /* メニューを開いたとき、画面に収まらない場合はスクロールできるように */
  .navbar-collapse.in {
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }

  /* ページ内リンクで飛んだとき、追従ヘッダーの下に隠れないようにする */
  [id^="anc_"] { scroll-margin-top: 74px; }
}
