/* ========================================================================== 
   venue-layout.css - 宴会場（会場）専用フル幅対応版
   3カラムレイアウト（左：基本情報 / 中：料金 / 右：人数）
   JS制御最適化・SP/PC画像大型化・料金/人数テーブル装飾済み
   画像サイズ：1400x580 パノラマ対応・隙間完全排除版
   ========================================================================== */

/* -------------------------
   セクション全体
------------------------- */
.venue-section {
  padding: 80px 0;
  background-color: #fff;
  overflow-x: hidden; 
}

/* 各会場の塊 */
.venue-item {
  width: 100%;
  margin: 0 auto 120px auto;
  padding: 0;
}

.venue-item:last-child {
  margin-bottom: 0;
}

/* -------------------------
   3カラムレイアウト（PC用 1101px以上）
------------------------- */
.venue-flex-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px; 
  max-width: 1200px; 
  width: 95%;
  margin: 0 auto;
  text-align: left;
}

.venue-left-col { flex: 1.3; }
.venue-center-col, .venue-right-col { flex: 1; }

/* -------------------------
   各テキスト要素（PCデフォルト）
------------------------- */
.venue-title {
  display: block;
  width: fit-content;
  max-width: 1000px;
  margin: 0 auto 25px auto;
  font-size: 1.8rem;
  font-weight: 700;
  color: #0054a6;
  letter-spacing: 0.1em;
  line-height: 1.2;
  border-bottom: 1px solid #0054a6;
  padding-bottom: 8px;
  text-align: center;
}

/* ルビ（フリガナ）のスタイル微調整 */
.venue-title ruby {
  ruby-position: over; /* フリガナを文字の上に配置 */
}

/* ルビ（フリガナ） */
.venue-title rt {
  font-size: 0.55em;    /* 親文字（香芝）に対して適切な小さめのサイズに設定 */
  font-weight: 500;     /* 太くなりすぎないように調整 */
  letter-spacing: 0.15em;/* フリガナの文字間隔を少し広げて見やすく */
  padding-bottom: 2px;  /* 漢字との間のわずかな隙間 */
  color: #0054a6;       /* 親文字と同じ青色に統一 */
}

.venue-catch {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0054a6;
  margin-bottom: 20px;
  line-height: 1.4;
}

.venue-description {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

/* 基本スペック（PC：注釈風） */
.venue-spec-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 15px 0 0 0;
  margin: 0;
  border-top: 1px dotted #ccc;
}

.venue-spec-list li {
  font-size: 0.85rem;
  color: #888;
  display: flex;
  align-items: center;
}

.venue-spec-list li:not(:last-child)::after {
  content: "/";
  margin: 0 12px;
  color: #ccc;
}

.venue-spec-list li span {
  display: inline;
  font-size: 0.85rem;
  color: #888;
  margin-right: 6px;
}

/* -------------------------
   テーブル共通装飾
------------------------- */
.venue-details-group { width: 100%; }

/* PC：左側に青い縦ライン */
.venue-details-subtitle {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  padding-left: 12px;
  border-left: 3px solid #0054a6;
  line-height: 1.2;
  text-align: left;
}

.venue-details-table { width: 100%; border-collapse: collapse; }
.venue-details-table tr { border-bottom: 1px solid #f0f0f0; }
.venue-details-table th, .venue-details-table td { padding: 12px 0; font-size: 0.9rem; }
.venue-details-table th { font-weight: normal; color: #777; text-align: left; }
.venue-details-table td { font-weight: 700; color: #333; text-align: right; white-space: nowrap; }

/* -------------------------
   会場スライダー（画像エリア）
------------------------- */
.venue-img-area {
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  height: auto !important;
  position: relative !important;
  padding: 0 !important;
  overflow: hidden !important;
  margin-top: 20px;
  margin-bottom: 40px !important;
  line-height: 0;
}

.venue-slider {
  position: relative !important;
  width: 100vw !important;
  max-width: none !important;
  overflow: hidden !important;
  background: #fff;
  z-index: 10;
  display: block !important;
}

.venue-slide-wrapper {
  display: flex !important;
  flex-wrap: nowrap !important;
  justify-content: flex-start !important;
  margin-left: 0 !important;
  width: max-content !important;
}

.venue-slide { flex: 0 0 850px !important; width: 850px !important; }
.venue-slide-img { width: 100% !important; padding: 0 15px; box-sizing: border-box !important; }

.venue-slide-img img {
  width: 100% !important;
  aspect-ratio: 140 / 58; 
  object-fit: cover !important;
  display: block !important;
  height: auto !important; 
}

/* -------------------------
   分割案内詳細エリア（フリージア分割表用）
------------------------- */
.venue-split-details {
  max-width: 1200px;
  width: 95%;
  margin: 60px auto 0;
  padding: 30px;
  background-color: #fcfdfe;
  border: 1px solid #eef2f6;
  border-radius: 8px;
  box-sizing: border-box;
}

.split-title {
  font-size: 1.3rem;
  color: #0054a6;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 700;
}

.split-intro {
  font-size: 0.9rem;
  color: #666;
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.6;
}

.split-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* iOSでのスクロールを滑らかに */
}

.split-data-table {
  width: 100%;
  min-width: 1000px; /* 項目が多いので最小幅を確保 */
  border-collapse: collapse;
  font-size: 0.85rem;
}

.split-data-table th, 
.split-data-table td {
  border: 1px solid #d0d8e0;
  padding: 15px 10px;
  text-align: center;
  vertical-align: middle;
}

.split-data-table thead th {
  background-color: #f0f4f9;
  color: #0054a6;
  font-weight: 700;
}

.split-data-table tbody th {
  background-color: #fafafa;
  color: #333;
}

.split-data-table td {
  background-color: #fff;
  color: #555;
  white-space: nowrap;
}

.split-data-table small {
  color: #999;
  font-size: 0.75rem;
  display: block;
}

/* -------------------------
   レスポンシブ
------------------------- */
@media (min-width: 768px) {
  .venue-section { padding: 120px 0; }
  .venue-title { font-size: 2.6rem; margin-bottom: 40px; padding-bottom: 12px; }
}

/* ■ 1100px以下：タブレット〜スマホまで共通の中央揃え処理 ■ */
@media (max-width: 1100px) {
  .venue-flex-wrapper {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .venue-left-col, .venue-center-col, .venue-right-col {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 600px;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .venue-left-col {
    margin-bottom: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 25px;
  }

  .venue-details-subtitle {
    border-left: none !important;
    padding-left: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin-bottom: 15px;
  }
  
  .venue-details-subtitle::before,
  .venue-details-subtitle::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background-color: #0054a6;
    margin: 0 10px;
  }

  .venue-center-col { margin-top: 15px !important; }
  .venue-right-col { margin-top: 25px !important; }

  .venue-catch, .venue-description {
    width: 100% !important;
    text-align: center !important;
  }

  .venue-spec-list {
    justify-content: center !important;
    width: 100% !important;
    border-top: 1px dotted #ccc;
  }

  .venue-split-details {
    width: 100%;
    margin-top: 40px;
  }
}

/* ★ 767px以下：スマホ専用 ★ */
@media (max-width: 767px) {
  .venue-section { background-color: #f9f9f9; padding: 50px 0; }
  
  .venue-item { 
    margin-bottom: 40px; 
    padding: 30px 15px; 
    background-color: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
  }

  .venue-title { 
    font-size: 1.4rem; 
    margin-bottom: 25px; 
    border-bottom: none !important;
    position: relative;
    padding-bottom: 15px;
  }
  .venue-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #0054a6;
  }

  .venue-description { 
    font-size: 0.85rem; 
    line-height: 1.7; 
    color: #666; 
    margin-bottom: 15px;
  }

  .venue-spec-list {
    border-top: none !important;
    gap: 8px;
    padding-top: 0;
    margin-bottom: 0;
  }
  .venue-spec-list li span {
    display: inline-block;
    background-color: #f8f8f8;
    color: #888;
    font-size: 0.65rem;
    padding: 3px 8px;
    border-radius: 3px;
    border: 1px solid #eee;
  }

  .venue-center-col { margin-top: 10px !important; }
  .venue-right-col { margin-top: 20px !important; }

  .venue-details-subtitle { font-size: 1rem; margin-bottom: 12px; }

  .venue-details-table { 
    border: 1px solid #f0f0f0;
    background: #fafafa;
    border-radius: 5px;
  }

  .venue-img-area { 
    height: auto !important; 
    margin-bottom: 20px !important;
  }
  .venue-slide { flex: 0 0 420px !important; width: 420px !important; }

  /* 分割案内のスマホ調整 */
  .venue-split-details {
    padding: 20px 10px;
    margin-top: 30px;
  }
  .split-title { font-size: 1.1rem; }
  .split-intro { font-size: 0.8rem; text-align: left; }
}