

/* === 全体設定 === */
body {
  margin: 0;
  font-family: 'Sawarabi Mincho', serif;
  background-color: #fefdfd;
  color: #050504;
  max-width: 100%;
  overflow-x: hidden;
  padding-right: 44px; /* ボタンの幅＋余裕分 */
}

@media (max-width: 768px) {
  body {
padding-right: 0px; /* スマホでは不要 */
padding-top: calc(56px + env(safe-area-inset-top));

  }
}

 
.first-view {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('picture3/sumibi.webp'); /* 背景画像パス */
  background-size: cover ;
  background-position: center 80px;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  animation: zoomBg 30s ease-in-out infinite alternate;
}

/* 共通（スマホ含む） */
.firstview-message {
  position: relative;
  text-align: center;
  color: #fdfdfb;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 24px;
  line-height: 1.8;
  top: -30px; /* 全体の位置も微調整 */
}

@media (max-width: 769px) {
  .firstview-message {
    position: relative;
    text-align: center;
    color: #f7f5f4;
    font-family: 'Shippori Mincho B1', serif;
    font-weight: 700;
    font-size: 25px;
    line-height: 1.8;
    top: -60px; /* 全体の位置も微調整 */

  }
}
@media (min-width: 769px) {
  .firstview-message {
    font-size: 40px; /* お好みで調整 */
  }

  .firstview-message .fade-text {
    font-size: 40px; /* 必要に応じてこちらも */
  }
}

/* 2行目も順に出すため、delay を外し、個別にアニメーション遅延を設定します */
.fade-text span {
  opacity: 0;
  transform: translateY(20px);
  display: inline-block;
  animation: fadeUp 0.6s ease forwards;
  text-shadow: 6px 6px 12px rgba(3, 3, 3, 0.6)
}

.fade-text span:nth-child(1)  { animation-delay: 0.3s; }
.fade-text span:nth-child(2)  { animation-delay: 0.5s; }
.fade-text span:nth-child(3)  { animation-delay: 0.7s; }
.fade-text span:nth-child(4)  { animation-delay: 0.9s; }
.fade-text span:nth-child(5)  { animation-delay: 1.1s; }
.fade-text span:nth-child(6)  { animation-delay: 1.3s; }
.fade-text span:nth-child(7)  { animation-delay: 1.5s; }
.fade-text span:nth-child(8)  { animation-delay: 1.7s; }
.fade-text span:nth-child(9)  { animation-delay: 1.9s; }
.fade-text span:nth-child(10) { animation-delay: 2.1s; }
.fade-text span:nth-child(11) { animation-delay: 2.3s; }
.fade-text span:nth-child(12) { animation-delay: 2.5s; }
.fade-text span:nth-child(13) { animation-delay: 2.7s; }

/* 2行目（炭火焼〜） */
.fade-text:nth-of-type(2) span:nth-child(1)  { animation-delay: 2.9s; }
.fade-text:nth-of-type(2) span:nth-child(2)  { animation-delay: 3.1s; }
.fade-text:nth-of-type(2) span:nth-child(3)  { animation-delay: 3.3s; }
.fade-text:nth-of-type(2) span:nth-child(4)  { animation-delay: 3.5s; }
.fade-text:nth-of-type(2) span:nth-child(5)  { animation-delay: 3.7s; }
.fade-text:nth-of-type(2) span:nth-child(6)  { animation-delay: 3.9s; }
.fade-text:nth-of-type(2) span:nth-child(7)  { animation-delay: 4.1s; }
.fade-text:nth-of-type(2) span:nth-child(8)  { animation-delay: 4.3s; }
.fade-text:nth-of-type(2) span:nth-child(9)  { animation-delay: 4.5s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* PC向け（768px以上） */
@keyframes slideInLeft {
  0% {
    transform: translateX(-200px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  0% {
    transform: translateX(200px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes zoomBg {
  from {
      background-size: 100%;
  }
  to {
      background-size: 120%;
  }
}
/* === セクション共通設定 === */
.section {
  padding: 100px 20px;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.section h2 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 28px;
  color:  #971c06;
  margin-bottom: 15px;
}
.section h3 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 28px;
  color:  #fbeae1;
  margin-bottom: 30px;
  margin-top: 30px;

  background: linear-gradient(to right, #2c1b0c, #5c3b1e); /* 茶系のグラデ背景 */
  border-left: 6px solid #d88c36; /* オレンジ系アクセント */
  padding: 10px 15px;
  font-weight: bold;

}
@media screen and (max-width: 768px) {
  .section h3 {
    font-size: 20px;            /* 少し小さくして見やすく */
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 8px 12px;          /* 余白をコンパクトに */
    border-left-width: 4px;     /* アクセントラインも少し細く */
    background: linear-gradient(to right, #3a2311, #6b4424); /* コントラストを少し落として圧迫感軽減 */
  }
}

.section p {
  font-size: 16px;
  line-height: 2;
  text-align: center;
}

h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #050504;
  margin: 10px auto 0;
}

/* === トップページ用 お知らせ一覧 === */
.top-news-list {
  margin-top: 0px;
  text-align: left;
}

.top-news-ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'Shippori Mincho B1', serif;
}

.top-news-ul li {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px dotted #d88c36;
  font-size: 16px;
  line-height: 1.6;
}

.top-news-date {
  font-size: 14px;
  color: #666;
  min-width: 110px;  /* 日付部分をそろえる用 */
}

.top-news-title {
  font-weight: 700;
  color: #1c1c1c;
}

/* 一覧へのリンク */
.news-link-wrapper {
  margin-top: 12px;
}

.news-more-link {
  display: inline-block;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 14px;
  color: #971c06;
  text-decoration: underline;
}

/* スマホで少しだけ小さく */
@media (max-width: 768px) {
  .top-news-ul li {
    font-size: 14px;
  }

  .top-news-date {
    font-size: 13px;
    min-width: 90px;
  }
}
/* === スクロールアニメーション === */
.fade-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.show {
  opacity: 1;
  transform: scale(1);
}

/* === Googleマップ・カレンダー共通 === */
.map, .calendar {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.map iframe, .calendar iframe {
  width: 300px;
  height: 300px;
  border: 0;
}

@media (min-width: 768px) {
  .map iframe, .calendar iframe {
    width: 800px;
    height: 400px;
    border: 0;
  }
}
/* === 固定MENUボタン === */
.fixed-menu-btn {
  position: fixed;
  right: 1px;
  top: 20%;
  z-index: 999;
  width: 35px;
  height: 500px;
  display: flex;                /* 🔴変更：grid → flex（縦並びに変更） */
  flex-direction: column;       /* 🔴追加：縦方向に配置 */
  align-items: center;          /* 🔴追加：中央寄せ */
  justify-content: center;      /* 🔴追加：中央寄せ */
  gap: 10px;                    /* 🔴追加：アイコンと文字の間隔 */
  font-weight: 700;
  letter-spacing: .18em;
  color: #111;
  background: rgba(255,255,255,.22);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 20px;
  backdrop-filter: blur(8px) saturate(1.2);
  cursor: pointer;
  user-select: none;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
  padding: 10px 0; 
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  line-height: 1.1;
}

/* ホバー時の動き */
.fixed-menu-btn:hover {
  background: rgba(255,255,255,.36);
  transform: translateX(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

/* フォーカス時の枠（キーボード操作対策） */
.fixed-menu-btn:focus-visible {
  outline: 2px solid #a00000;
  outline-offset: 3px;
}
/* ホバー時に軽く動く */
.fixed-menu-btn:hover::before {
  transform: rotate(90deg) translateY(-2px);
}

/* === スマホ時はメニューボタンを右上固定に変更 === */
@media (max-width: 768px) {
  .fixed-menu-btn {
    width: 70px;     /* ボタン幅調整 */
    height: 55px;    /* 高さを小さくしてスマホで見やすく */
    flex-direction: column;
    justify-content: center;
    background: rgba(255,255,255,0.3);
    backdrop-filter: blur(6px);
    writing-mode: horizontal-tb; /* 横書き指定 */
    line-height: 1;
    font-size: 16px;
    letter-spacing: 0.05em;
  }
    .fixed-menu-btn br {
    display: none;
  }
}

/* ===== SPだけ：ヘッダーを上部固定、ロゴ＋MENUを横並び ===== */
@media (max-width: 768px){
  /* ヘッダーを常時上部に固定（本文と重ならないよう背景あり） */
  .site-header{
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1100;
    background: rgba(253, 253, 253, 0.7);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    height: 56px;                 /* ヘッダー高さ */
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 10px 20px;
  }
  /* ロゴ行（今の .site-logo-header をバー内左寄せに） */
  .site-logo-header{
    position: static;             /* 既存の absolute を無効化 */
    display: flex;
  align-items: center;
  transform: translateY(-2px);
  }
   .site-logo-header .logo-image{ height: 45px; }
  .site-logo-header .logo-text{
    font-size: 20px;
    color: #040404;
  }
  
}
/* iOSノッチ安全域（任意だが推奨） */
@supports (padding-top: env(safe-area-inset-top)){
  @media (max-width: 768px){
 .site-header{
 padding-top: env(safe-area-inset-top);
      height: calc(56px + env(safe-area-inset-top));
}
  }
}

/* === 下から出るメニュー === */
.bottom-menu-overlay {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(105, 103, 103, 0.95);
  overflow: hidden;
  transition: height 0.4s ease;
  z-index: 999;
}


.bottom-menu-overlay.open {
  height: 45vh;
}

.bottom-menu-overlay ul {
  list-style: none;
  padding: 20px;
  margin: 0;
  text-align: center;
}

.bottom-menu-overlay li {
  margin: 15px 0;
}

.bottom-menu-overlay a {
  color: #fafaf9;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s;
}

.bottom-menu-overlay a:hover {
  color: #e07a3f;
}

.top-slideshow {
  height: 140vh;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .top-slideshow {
  height: 40vh;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  transform: translateY(-50px); /* ← 上だけ動く（横にはみ出さない） */
}
}

.slideshow {
  width: 100%;
}

.slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

@media (min-width: 769px) {
  .slideshow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transform: scale(0.8);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease;
  }
}

.slideshow img.active {
  opacity: 1;
}

.indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicators span {
  position: relative;
  width: 60px;
  height: 4px;
  background-color: #888;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}

.indicators span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: #e07a3f;
}

.indicators span.active::before {
  animation: fillBar 5s linear forwards;
}

@keyframes fillBar {
  from { width: 0%; }
  to { width: 100%; }
}

@media (max-width: 600px) {
  .first-view {
    height: 60vh;
  }

  .section {
    padding: 60px 15px;
  }

  .section h2 {
    font-size: 22px;
  }
}
@media (max-width: 600px) {
  /* セクションのパディング縮小 */
  .section {
    padding: 60px 15px;
  }

  /* インジケーターの大きさ調整 */
  .indicators span {
    width: 60px;
    height: 3px;
    bottom: -30px; 
  }

  /* 下部メニューリンクの文字サイズ調整 */
  .bottom-menu-overlay a {
    font-size: 16px;
  }
}

.menu-tab {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  display: none;
}

.menu-tab.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.scroll-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-fade.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- 四角でつながるボタンデザイン --- */
.menu-category-nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  border: 2px solid #b41f1f; /* 外枠（全体） */
  border-radius: 6px;
  overflow: hidden; /* 角の丸みを一括制御 */
  width: 100%;
  max-width: 1200px;
  margin: -60px auto 40px;
}

.menu-category-nav .tab-btn {
  flex: 1 1 150px;        /* 均等に広がる */
  border: none;           /* 個別の枠を消す */
  border-right: 1px solid #b41f1f; /* 縦仕切り線 */
  background-color: #fff;
  color: #1c1c1c;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 18px;
  padding: 12px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;       /* ← 丸みを消す */
}
.menu-category-nav .tab-btn:last-child {
  border-right: none;
}

@media (max-width: 768px) {
  .menu-category-nav {
    flex-wrap: wrap;
  }
  .menu-category-nav .tab-btn {
    flex: 1 1 45%; /* 2列になるように幅指定 */
    border-bottom: 1px solid #b41f1f;
    font-size: 15px;      /* ← 文字小さく */
    padding: 8px 0; 

  }
  .menu-category-nav .tab-btn:nth-child(2n) {
    border-right: none; /* 右端の列は線を消す */
  }
}

/* ホバー時・アクティブ時 */
.menu-category-nav .tab-btn:hover,
.menu-category-nav .tab-btn.active {
  background-color: #b41f1f;
  color: #fff;
}


.site-footer {
  background-color: #282626;
  color: #fafaf9;
  text-align: center;
  padding: 30px 20px;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 14px;
  border-top: 1px solid #444;
}

.site-footer a[href^="tel"] {
  color: #fafaf9;          /* フッターの文字色と合わせる */
  text-decoration: none;   /* 下線も消す */
  font-weight: normal;
}

#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1c1c1c;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  transition: opacity 1s ease;
}

#loading-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loading-logo-container {
  text-align: center;
  color: #fafaf9;
  font-family: 'Shippori Mincho B1', serif;
}

.loading-logo {
  max-width: 180px;
  opacity: 0.9;
  animation: pulse 2s infinite ease-in-out;
}

.loading-text {
  font-size: 28px;
  margin-top: 10px;
  opacity: 0.9;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'Shippori Mincho B1', serif;
}

.menu-list li {
  display: flex;
  justify-content: center;
  gap: 2em;  
  padding: 8px 0;
  border-bottom: 1px dotted #d88c36;
  color: #1c1c1c;
  margin: 10px 0;
  font-size: 25px;
}
@media (max-width: 768px){
  .menu-list li{
    font-size: 18px;
    line-height: 1.6;
    padding: 8px 0;
    gap: 12px;
  }
}
.sdgs-section h2 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #400404;
}

.sdgs-section p {
  margin: 10px 0;
  font-size: 1em;
  margin-bottom: 60px;
}


.sdgs-section a {
  color: #1c1c1c;
  text-decoration: underline;
}
.sdgs-section a:hover {
  text-decoration: none;
  color: #ffa348;
}

.contact-phone {
  text-align: center;
  margin-top: 30px;
}

.phone-button {
  display: inline-block;
  padding: 14px 24px;
  background-color: transparent;
  color: #1c1c1c;
  border: 2px solid #e07a3f;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 18px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.phone-button:hover {
  background-color: #e07a3f;
  color: #1c1c1c;
}

@media (max-width: 768px) {
  .phone-button {
    font-size: 15px; /* ← 好きなサイズに調整 */
    padding: 10px 18px; /* ボタンの高さも少し小さく */
  }
}

.site-logo-header {
  display: flex;
  align-items: center;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 100;
}

.logo-image {
  height: 50px;
  margin-right: 10px;
}

.logo-text {
  font-family: 'Shippori Mincho B1', serif;
  color: #1c1c1c;
  font-size: 20px;
}

.room-info {
  background-color: #fefdfd;
  color: #1c1c1c;
  font-family: 'Shippori Mincho B1', serif;
}

.room-info h2 {
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 2px solid #e07a3f;
  display: inline-block;
  padding-bottom: 5px;
}

.room {
  text-align: center;
  font-size: 20px;
  margin-top: 100px;
  margin-bottom: 160px;
}

.room-image {
  max-width: 400px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  margin-bottom: 10px;
}

@media (min-width: 769px) {
  .room-image {
    max-width: 800px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    margin-bottom: 10px;
  }
}

.room-name {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 20px;
  color: #1c1c1c;
  margin-top: 5px;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

@media (min-width: 769px) {
  .room-name {
    font-family: 'Shippori Mincho B1', serif;
    font-size: 30px;
    color: #1c1c1c;
    margin-top: 5px;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
  }
}

  a {
    color: #1c1c1c; /* リンクの色変更 */
  }

  /* 宴会の説明文の所 */
.banquet-description {
  max-width: 700px;
  margin: 30px auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #1c1c1c; /* 生成り色 */
}


.enkai-list{
  display: block;
  max-width: 1000px;
  margin: 30px auto;
  font-size: 1rem;
  line-height: 1.8;
  color: #1c1c1c; /* 生成り色 */
  padding-right: 2.5rem; /* ← ここで右に余白を作る */
    font-family: 'Shippori Mincho B1', serif;
}

.enkai-list li{

  padding: 8px 0;
  border-bottom: 1px dotted #d88c36;
  color: #1c1c1c;
  margin: 10px 0;
  font-size: 25px;
}

@media (max-width: 768px) {
  .enkai-list li {
    font-size: 15px;    /* ← 好きなサイズに調整（例: 14〜16px） */
    line-height: 1.6;
    margin: 6px 0;
  }

  .enkai-list .price {
    font-size: 15px;    /* 金額部分も同時に縮小 */
  }
}

.card-acc {
  border:1px solid #e6e6e6;
  border-radius:14px;
  background:#ffffff;
  box-shadow:0 6px 20px rgba(183, 14, 14, 0.06);
  padding:12px;
  border-bottom:none !important;
}
.card-acc .bar {
  display:grid;
  grid-template-columns:1fr auto;
  align-items:baseline;
  gap:.8rem;
  padding:.2rem .2rem;
}
.card-acc .bar strong {
font-size: 22px; 
font-weight: 700; 
}
.card-acc .bar .price {
  justify-self:end;
  font-weight:700;
  white-space:nowrap;
  font-variant-numeric: tabular-nums;
  font-feature-settings:"tnum" 1;
}
.card-acc details {
  margin-top:.5rem;
  border-top:1px dashed #e6e6e6;
  padding-top:.5rem;
}
.card-acc summary {
  cursor:pointer;
  font-weight: 300;
  font-size: 0.9rem; 
  color: #af0404;
}
.card-acc summary::before {
  content:"＋";
  margin-right:.4em;
}
.card-acc details[open] summary::before {
  content:"－";
}
.card-acc small {
  display:block;
  color: #1c1c1c;
  line-height:1.7;
  margin-top:.4rem;
}

/* === 宴会コース内の小ブロック（デザイン強め版） === */

/* details 全体はそのままでOK（必要なら少しだけ調整） */
.card-acc details {
  margin-top: .6rem;
  border-top: 1px dashed #e6e6e6;
  padding-top: .6rem;
}

/* 1コース分の箱 */
.card-acc .course-block {
  position: relative;
  margin-top: .8rem;
  padding: .85rem 1rem .95rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #fbf4e6 0%, #f7eee1 45%, #fbf4e6 100%);
  border: 1px solid rgba(180, 31, 31, 0.22);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* 左側の“縦ライン”＋和柄っぽいニュアンス */
.card-acc .course-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 4px;
  background: linear-gradient(to bottom, #e07a3f, #b41f1f);
  opacity: 0.9;
}

/* 右上の折り返し風ワンポイント */
.card-acc .course-block::after {
  content: "";
  position: absolute;
  right: -18px;
  top: -18px;
  width: 40px;
  height: 40px;
  background: rgba(180, 31, 31, 0.08);
  transform: rotate(45deg);
}

/* 価格ラベル（〇4,400円など） */
.card-acc .course-title {
  display: inline-block;
  position: relative;
  margin-left: .9rem;   /* 縦ライン分を少し開ける */
  padding: .12rem .9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(180, 31, 31, 0.6);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .08em;
}

/* タイトル左に小さな印 */
.card-acc .course-title::before {
  content: "◆";
  margin-right: .35rem;
  font-size: .7rem;
}

/* コース内容 */
.card-acc .course-body {
  display: block;
  margin-top: .35rem;
  margin-left: 1.1rem;  /* 縦ライン＋タイトル揃え */
  font-size: .9rem;
  line-height: 1.8;
}

/* 強調用 .highlight はそのまま活かす前提 */
.card-acc .course-body .highlight {
  font-weight: 600;
  border-bottom: 1px solid rgba(180, 31, 31, 0.5);
}

/* 補足（※時季により〜 など） */
.card-acc .course-note {
  display: block;
  margin-top: .6rem;
  font-size: .8rem;
  color: #666;
}

/* スマホ用に少し軽めにする */
@media (max-width: 768px) {
  .card-acc .course-block {
    margin-top: .6rem;
    padding: .7rem .8rem .8rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  }

  .card-acc .course-title {
    font-size: .85rem;
    padding: .08rem .75rem;
  }

  .card-acc .course-body {
    font-size: .8rem;
    line-height: 1.7;
    margin-left: 1rem;
  }
}
.card-acc .photo {
  margin-top: .6rem;
  border-radius: 10px;
  overflow: hidden;
}
.card-acc .photo img {
  width: 70%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform .3s ease;
}


/* ===== 1) スマホ～タブレット最適化（<= 768px） ===== */
@media (max-width: 768px){
    .banquet-description {
    font-size: 13px;
    line-height: 1.7;
    margin: 20px 15px;
    text-align: left; /* 中央→左寄せで読みやすく */
  }
  /* 右上の固定MENUボタンと価格の干渉をより確実に回避 */
  .enkai-list{ padding-right: 2.5rem; }        /* 既存を維持/上書き */
  .card-acc .bar .price{ padding-right: .75rem; }

  /* 文字・余白をややコンパクトに */
  .card-acc{ padding: 14px; }
  .card-acc .bar{ gap: .6rem; }
  .card-acc .bar strong{ font-size: 20px; }    /* 誤記修正後を基準に縮小 */
  .card-acc .bar .price{ font-size: 18px; }
  .card-acc small {
    font-size: 13px;
    line-height: 1.6;
  }
 .card-acc .photo {
    display: flex;
    justify-content: center; /* 中央寄せ */
    align-items: center;
    margin-top: 10px;
}
}


/* ===== 2) 狭幅スマホ（<= 480px） ===== */
@media (max-width: 480px){
  .card-acc{ padding: 12px; border-radius: 12px; }
  .card-acc .bar strong{ font-size: 18px; }
  .card-acc .bar .price{ font-size: 16px; }
  .card-acc .photo{ aspect-ratio: 3 / 2; }  /* さらに占有率を下げる */
}

/* ===== 3) 体験品質（任意だが実務で効く） ===== */
/* モーション軽減希望端末ではアニメ無効化 */
@media (prefers-reduced-motion: reduce){
  .card-acc *{ transition:none !important; animation:none !important; }
}

.payment-icons {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 1rem;
}

.payment-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* ← 画像を中央に集める */
  align-items: center;
  gap: 1px 15px;
}

.payment-group h4 {
  width: 100%;
  font-size: 1.1rem;
  color: #a00000; /* 赤基調で統一 */
  margin-bottom: 0.5rem;
}

.payment-group img {
  width: 60px;
  height: auto;
  border-radius: 6px;
  background-color: #fff;
  padding: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

@media screen and (max-width: 768px) {
  .payment-group img {
    width: 30px;     /* ← 60pxから縮小 */
    padding: 2px;    /* 内側の余白も少し減らす */
  }

  .payment-group h4 {
    font-size: 1rem; /* 見出しも少し小さめ */
  }
}
.unagi-toggle-box {
  margin-top: 20px;
  text-align: center;
}

.toggle-btn {
  background-color: #f6b38d;
  color: #1c1c1c;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 18px;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.toggle-btn:hover {
  background-color: #d27a35;
}

.toggle-content {
  display: none;
  margin-top: 15px;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.responsive-image {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: auto;
}

/* --- ページタイトル（ヘッダーの下に独立表示） --- */
.page-header {
  display: flex;
  justify-content: center;
  padding: 20px 12px 0;
}

.page-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 33px;
  color: #1c1c1c;
  border-bottom: 3px solid #e07a3f;
  display: inline-block;
  padding-bottom: 6px;
  scroll-margin-top: 70px; /* アンカー時に隠れ防止 */
}

/* スマホ用微調整 */
@media (max-width: 768px){
  .page-title {
    font-size: 30px;
    border-bottom-width: 2px;
  }
}

.highlight {
  color: #f31111; /* 赤系など好きな色に変更 */
  font-weight: bold; /* 強調したい場合 */
}

/* ===========================
   店舗情報ページの共通スタイル
=========================== */

/* 見出し h3 のスタイル */
.shop-overview h3,
.shop-access h3,
.shop-rooms h3,
.shop-payment h3,
.shop-message h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 2px solid #9d0808;  /* 赤で和風アクセント */
  font-weight: 700;
}

/* テキスト */
.shop-overview p,
.shop-access p,
.shop-rooms p,
.shop-payment p,
.shop-message p {
  line-height: 1.9;
  font-size: 1rem;
  color: #050504;  /* 読みやすい濃い黒 */
  margin: 8px 0;
}

/* マップを中央寄せ＋余白 */
.shop-access .map {
  margin: 20px 0;
  text-align: center;
}

.shop-access iframe {
  width: 100%;
  max-width: 800px;
  border-radius: 5px;
  border: none;
}

/* 挨拶（shop-message）だけ少し柔らかい感じに */
.shop-message p {
  font-size: 1.05rem;
  line-height: 1.95;
}

/* --- ページトップへ戻るボタン --- */
.back-to-top-btn {
  position: fixed;
  right: 16px;
  bottom: 80px; /* 固定MENUやフッターと少し距離をあける */
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid #e07a3f;          /* 既存のアクセントカラーに合わせる */
  background: rgba(0, 0, 0, 0.75);     /* 和風の落ち着いた黒背景 */
  color: #fdf6e8;                      /* 生成り系の文字色に合わせる想定 */
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);

  opacity: 0;                          /* 初期は非表示 */
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.back-to-top-btn.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .back-to-top-btn {
    right: 12px;
    bottom: 88px; /* スマホで固定MENUボタンと重なりにくく少し上に */
  }
}

/* PC では非表示（スマホ専用ボタンにする） */
@media (min-width: 769px) {
  .back-to-top-btn {
    display: none;
  }
}

/* テキスト部分は固定幅の“中央ボックス”にする */
.menu-with-thumb .menu-text {
  width: 300px;              /* ← ここが超重要（テキスト範囲を固定） */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 既存のカラムをそのまま維持 */
.menu-item-name {
  width: 250px;
  text-align: left;
   white-space: nowrap;
   display: inline-block;
  
}

.menu-item-price {
  width: 150px;
  text-align: right;
  white-space: nowrap;
  display: inline-block;
}

/* サムネボタン */
.menu-thumb {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.menu-thumb picture,
.menu-thumb img {
  display: block;
}

.menu-thumb img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

/* スマホは縦並びにしてキレイに */
@media (max-width: 768px) {

  .menu-with-thumb .menu-text {
    width: 100%;
    justify-content: center;
    gap: 16px;
  }

  .menu-thumb img {
    width: 70px;
    height: 70px;
  }
  .menu-item-name {
  width: 160px;
}

.menu-item-price {
  width: 90px;
}
}

/* === 拡大画像モーダル === */

.menu-image-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;              /* 初期は非表示 */
  align-items: center;
  justify-content: center;
  z-index: 1500;
}

.menu-image-modal.open {
  display: flex;
}

.menu-image-modal-inner {
  background: #111;
  padding: 10px;
  border-radius: 10px;
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}

.menu-image-modal-inner img {
  max-width: 100%;
  max-height: 80vh;
  display: block;
}

.menu-image-modal-close {
  position: absolute;
  top: 4px;
  right: 8px;
  border: none;
  background: transparent;
  color: #fdf6e8;
  font-size: 28px;
  cursor: pointer;
}

/* ===========================
   お知らせページ
=========================== */

.news-page {
  max-width: 900px;
  margin: 0 auto 80px;
  padding: 0 12px;
}

.news-intro {
  text-align: center;
  margin: 10px 0 20px;
}

.news-intro p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

/* 一覧の枠 */
.news-container {
  border-radius: 12px;
  border: 1px solid rgba(151, 28, 6, 0.2);
  background: #fffdf7;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
  padding: 14px 18px;
}

/* 1件ごとの行 */
.news-item {
  padding: 12px 0;
  border-bottom: 1px dotted #e0c2b0;
  cursor: pointer;
}

.news-item:last-child {
  border-bottom: none;
}

/* タイトル行（クリック部分） */
.news-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 18px;
  font-weight: 700;
  color: #971c06;
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-title::before {
  content: "●";
  font-size: 8px;
  color: #d88c36;
}

/* 開いたときに表示される本文 */
.news-content {
  display: none;
  margin-top: 6px;
  padding-left: 1.4em;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  text-align: left;
}

/* クリックで .active になったときに表示 */
.news-item.active .news-content {
  display: block;
}

/* スマホ調整 */
@media (max-width: 768px) {
  .news-page {
    margin-bottom: 60px;
  }

  .news-container {
    padding: 10px 12px;
  }

  .news-title {
    font-size: 15px;
  }

  .news-content {
    font-size: 13px;
  }
}

/* ===========================
   店舗情報：共通の箱（カード）とラベル
=========================== */

.shop-card{
  margin: 14px 0 22px;
  padding: 16px 18px;
  background: #fffdf7;
  border-radius: 10px;
  border: 1px solid rgba(151, 28, 6, 0.20);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

/* 既存の .shop-*** p を上書きせず、箱の中だけ整える */
.shop-card p{
  display: flex;
  gap: 14px;
  margin: 10px 0; /* 既存の p margin を軽く整える */
  align-items: flex-start;
}

/* ラベル（見出し） */
.shop-label{
  min-width: 90px;
  font-family: 'Shippori Mincho B1', serif;
  font-weight: 700;
  color: #971c06;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

/* スマホは縦並びにして読みやすく */
@media (max-width: 768px){
  .shop-card{
    padding: 16px 14px;
    text-align: center;              /* ← 全体を中央寄せ */
  }

  .shop-card p{
    flex-direction: column;
    gap: 4px;
    align-items: center;             /* ← ラベルも内容も中央 */
  }

  .shop-label{
    min-width: auto;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
  }
}

/* =========================
   宴会ページ：お部屋紹介（案①）
========================= */

/* 既存 .room-info を活かしつつ、余白と背景だけ整える */
.room-info{
  padding: 40px 0 80px;
}

/* 1部屋のカード */
.room-card{
  margin: 40px auto 55px;
  max-width: 920px;
  text-align: center;
}

/* 写真ブロック */
.room-photos{
  display: grid;
  gap: 12px;
}

/* メイン写真 */
.room-photos .room-main{
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.22);
  display: block;
  object-fit: cover;
}

/* サブ写真：横並び */
.room-sub{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* サブ写真の見た目 */
.room-sub img{
  width: 100%;
  height: 170px;            /* PCは高さを揃えて“付属感” */
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  display: block;
  object-fit: cover;
}

/* 部屋名 */
.room-name{
  margin: 12px 0 0;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 22px;
  letter-spacing: 0.06em;
}

/* スマホ最適化 */
@media (max-width: 768px){
  .room-info{
    padding: 25px 0 60px;
  }

  .room-card{
    margin: 28px auto 42px;
  }

  .room-photos{
    gap: 10px;
  }

  .room-photos .room-main{
    border-radius: 12px;
  }

  .room-sub{
    gap: 10px;
  }

  .room-sub img{
    height: 110px;          /* スマホは圧迫しない高さに */
    border-radius: 10px;
  }

  .room-name{
    font-size: 18px;
  }
}




.room-card{
  margin: 50px auto 70px;
  max-width: 920px;
  text-align: center;

  background: #fffdf7;
  border: 1px solid rgba(151, 28, 6, 0.18);
  border-radius: 16px;
  padding: 22px 22px 26px;

  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

/* ===== お部屋一覧：サムネグリッド ===== */
.room-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

/* 画面が広いPCだけ3列 */
@media (min-width: 1100px){
  .room-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* スマホは1列 */
@media (max-width: 768px){
  .room-grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* カード：縦長をやめてコンパクト化 */
.room-card{
  margin: 0;                 /* ← 縦の余白をグリッドに任せる */
  max-width: none;
  text-align: left;          /* ← 一覧は左寄せが読みやすい */
  padding: 14px;
  border-radius: 14px;
}



/* メイン画像をサムネ化 */
.room-photos{
  gap: 10px;
}

.room-photos .room-main{
  width: 100%;
  height: 180px;             /* サムネ高さ */
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

/* 部屋名 */
.room-name{
  margin: 10px 0 0;
  font-size: 18px;
  color: #971c06;
  letter-spacing: 0.05em;
}

/* 推奨人数（あなたの書き方を整える） */
.room-meta{
  margin: 4px 0 0;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

/* スマホはもう少し低く */
@media (max-width: 768px){
  .room-photos .room-main{ height: 160px; }
}

/* 部屋写真：クリック拡大用（ボタンの見た目を消す） */
.room-zoom-btn{
  border: none;
  background: none;
  padding: 0;
  width: 100%;
  cursor: pointer;
}

.room-zoom-btn picture,
.room-zoom-btn img{
  display: block;
}



/* =========================================================
   追加：スマホ横（landscape）と タブレット縦（portrait）を安定化
========================================================= */

/* ========== 1) スマホ横：崩壊の主因（PC用769px以上）を打ち消す ========== */
/* 高さが低い横画面＝ほぼスマホ横だけを拾う */
@media (max-height: 500px) and (orientation: landscape) {

  /* index背景とテキストのズレ対策 */
  .first-view{
    background-position: center 40px; /* 80pxだとズレやすい */
  }

  /* フォントがやたら大きくなるのを防止（min-width:769pxの40pxを上書き） */
  .firstview-message{
    font-size: 22px;
    top: -20px;
    line-height: 1.6;
  }

  /* スライドが横長になる原因（contain＋scale0.8）を上書き */
  .slideshow img{
    object-fit: cover;
    transform: scale(1);
  }

  /* インジケーターがかぶる対策（少し上に or 余白を確保） */
  .indicators{
    bottom: 8px;
  }

  /* 下から出るメニュー：全部タップできる高さまで上げる */
  .bottom-menu-overlay.open{
    height: 95svh;
  }
  .bottom-menu-overlay ul{
    max-height: calc(95svh - 40px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}


/* ========== 2) タブレット縦：スマホ寄せ（間延び・ズレ・インジケーター） ========== */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {

  /* index背景とテキストのズレ対策 */
  .first-view{
    background-position: center 60px;
    height: 85svh; /* 100vhだと間延びしやすい */
  }

  .firstview-message{
    font-size: 26px;
    top: -40px;
  }

  /* タブ縦だとmax-width:768のルールが効かない機種があるので、ここでスマホ寄せ */
  .top-slideshow{
    height: 45svh;
    top: -30px;
  }

  /* インジケーターが下に離れすぎるのを抑える */
  .indicators{
    bottom: 10px;
  }

  /* 下メニュー：空きすぎを抑えつつ、スクロール可能にして破綻ゼロに */
  .bottom-menu-overlay.open{
    height: 60svh;
  }
  .bottom-menu-overlay ul{
    max-height: calc(60svh - 40px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}