/* ====================================
   タイムテーブル (海デザイン・2列改修)
   ==================================== */
.timeTable {
  padding: 4rem 5%;
  color: #fff;
}

.timeTable h2 {
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  /* 縦方向に並べる */
  align-items: center;
  /* 必要に応じて中央揃え */
}



.timeTable p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  font-weight: bold;
}

/* 日付ラベルのスタイル追加 */
.timeTable-date-label {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 2rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.timeTable-wrapper {
  display: flex;
  flex-wrap: wrap;
  /* スマホで折り返す */
  justify-content: center;
  gap: 2rem;
  /* テーブル間の隙間 */
  max-width: 1100px;
  /* 全体の最大幅 */
  margin: 0 auto;
}

.timeTable-content {
  flex: 1;
  min-width: 320px;
  max-width: 500px;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 0;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.timeTable-content caption {
  font-size: 1.4rem;
  font-weight: bold;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);

  border-radius: 20px 20px 0 0;
}

.timeTable-content th {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1rem;
  font-size: 1.1rem;
  border-radius: 0 !important;
}

/* --- 4. 中のセル(td) --- */
.timeTable-content td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  border-radius: 0 !important;
  /* 中もすべて四角 */
}

/* 時刻列（左側）の強調設定 */
.timeTable-content td:first-child {
  font-weight: bold;
  color: #80DEEA;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  width: 80px;
}


/* 左下のセル（時刻側） */
.timeTable-content tr:last-child td:first-child {
  border-bottom-left-radius: 20px;
}

/* 右下のセル（内容側） */
.timeTable-content tr:last-child td:last-child {
  border-bottom-right-radius: 20px;
}

/* 最後の行の線が残っていると角丸が綺麗に見えないので消す */
.timeTable-content tr:last-child td {
  border-bottom: none;
}


.timeTable-content tr:hover td {
  background-color: rgba(255, 255, 255, 0.15);
}

/* スマホ対応の微調整 */
@media (max-width: 767px) {
  .timeTable-wrapper {
    gap: 1.5rem;
  }

  .timeTable-content {
    flex: none;
    width: 100%;
    /* スマホでは1枚ずつ縦に並ぶ */
  }
}


/* ====================================
   展示会について (海デザイン)
   ==================================== */
.exhibition {
  padding: 4rem 0;
  color: #fff;
  overflow: hidden;
}

.exhibition h2,
.description-exhibition {
  padding-left: 5%;
  padding-right: 5%;
  box-sizing: border-box;
  text-align: center;
}

/* スクロールバーのデザイン */
.picture-slide {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 0 2rem;
  margin-bottom: 3rem;
  scrollbar-width: thin;
  scrollbar-color: #81d4fa transparent;
}

/* スクロールバーのデザイン */
.picture-slide::-webkit-scrollbar {
  height: 8px;
}

.picture-slide::-webkit-scrollbar-thumb {
  background: #81d4fa;
  border-radius: 10px;
}

.picture {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.picture img {
  width: 350px;
  height: 230px;
  object-fit: cover;
  border-radius: 15px;
  border: 4px solid #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.picture:hover {
  transform: translateY(-10px) rotate(2deg);
}

.description-exhibition {
  max-width: 900px;
  margin: 0 auto;
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  color: #fff;
  padding: 2rem 5%;
  /* スマホで端がくっつかないよう少し余裕を持たせる */
  position: relative;
}

.description-exhibition p {
  /* pre-wrap から pre-line に変更して不要な空白を無視 */
  white-space: pre-line;
  font-size: 1.15rem;
  line-height: 2.1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  /* 左右の端を揃えて美しく見せる */
  text-align: justify;
  /* 単語の途中で変に切れないようにする */
  word-break: break-all;
}

.slideshow-container {
  width: 100vw;
  margin-left: 0;
  margin-right: 0;
  margin-top: 3rem;
  overflow: hidden;
  position: relative;
}

.product-card {
  flex-shrink: 0;
  width: 450px;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: block;
  -webkit-user-drag: none;
  pointer-events: none;
}


.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: none;
}

/* 一覧へのボタン */
.product-detail-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0 20px;
}

/* --- スマホレスポンシブ時の調整 --- */
@media (max-width: 767px) {
  .exhibition {
    padding: 2rem 0;
    /* スマホでも左右余白は0 */
  }

  /* 画像スライド部分の余白も0にする */
  .picture-slide {
    padding-left: 0;
    padding-right: 0;
  }
}
