/* マップ詳細ページ専用スタイル */

/* カスタムピンスタイル - 共通デザイン */
.custom-pin {
  width: auto;
  min-width: 80px;
  height: auto;
  padding: 5px 15px;
  border: 3px solid var(--red);
  border-radius: 30px;
  background-color: #fff;
  color: var(--red);
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  /* !important を削除し、適切な CSS カスケードを利用 */
}

.custom-pin:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  z-index: 1001;
}

.custom-pin.active {
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(190, 18, 31, 0.6);
  border-width: 4px;
  z-index: 1002;
}

/* 横スライド式サイドパネル */
.side-panel {
  position: fixed;
  top: 110px; /* ヘッダーロゴの高さ分下げる */
  right: 0;
  width: 100%;
  max-width: 400px;
  height: calc(100vh - 110px); /* ヘッダー分を除いた高さ */
  background: linear-gradient(145deg, #ffffff 0%, var(--gray01) 100%);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
  z-index: 1000; /* ヘッダーより低く設定 */
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(190, 18, 31, 0.1);
}

.side-panel.active {
  transform: translateX(0);
}

.side-panel-header {
  background: var(--black);
  color: white;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(17, 17, 17, 0.2);
}

.side-panel-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.5px;
}

.side-panel-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.side-panel-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.side-panel-content {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.side-panel-overlay {
  position: fixed;
  top: 110px; /* ヘッダー下から開始 */
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 500;  /* ピンのz-index(1000-1002)より低く設定 */
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;  /* 地図操作を妨げないように */
}

.side-panel-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;  /* アクティブ時のみクリック可能 */
}

/* デスクトップ：右側のサイドパネル領域のみカバー */
@media (min-width: 769px) {
  .side-panel-overlay {
    left: auto;
    right: 0;
    width: 400px;  /* サイドパネルの最大幅と同じ */
    top: 110px; /* ヘッダー下から開始 */
  }
}

/* レスポンシブ対応：モバイルはボトムシート */
@media (max-width: 768px) {
  .side-panel {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
    height: 60vh;
    max-height: 500px;
    border-radius: 20px 20px 0 0;
    border-left: none;
    border-top: 1px solid rgba(190, 18, 31, 0.1);
    transform: translateY(100%);
  }

  .side-panel.active {
    transform: translateY(0);
  }

  .side-panel-header {
    border-radius: 0px 0px 0 0;
    position: relative;
    padding: 16px 24px;
  }

  /* プルハンドル（引っ張るアイコン） */
  .side-panel-header::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
  }

  .side-panel-content {
    padding: 16px 20px;
    max-height: calc(60vh - 100px);
    overflow-y: auto;
  }

  /* スクロールバーを隠す（iOS風） */
  .side-panel-content::-webkit-scrollbar {
    display: none;
  }
  .side-panel-content {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}

@media (max-width: 480px) {
  .side-panel {
    height: 65vh;
    max-height: 400px;
  }

  .side-panel-content {
    padding: 12px 16px;
    max-height: calc(65vh - 90px);
  }

  .info-section {
    padding: 12px;
    margin-bottom: 16px;
  }
  
  .section-heading {
    font-size: 13px;
    padding: 10px 16px;
    margin-bottom: 12px;
    border-radius: 18px;
    width: 100%;
    text-align: left;
  }


  .info-description.with-sections {
    margin-bottom: 16px;
    padding-bottom: 12px;
  }

}

/* サイドパネル内のコンテンツスタイル */
.info-section {
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  border: 1px solid rgba(190, 18, 31, 0.1);
  position: relative;
}

/* セクション見出し（バッジを伸ばしたデザイン） */
.section-heading {
  font-size: 14px;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, var(--red), #dc2626);
  padding: 12px 20px;
  border-radius: 20px;
  margin-bottom: 16px;
  display: block;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  line-height: 1.4;
  position: relative;
  text-align: left;
}

.info-label {
  font-weight: 600;
  color: var(--red);
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
}

.info-value {
  color: #333;
  font-size: 14px;
  line-height: 1.5;
}

.info-description {
  color: #374151;
  font-size: 13px;
  line-height: 1.6;
}

.info-description.with-sections {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(190, 18, 31, 0.1);
}


/* リッチコンテンツ用のスタイル */
.content-headline {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 16px;
  padding-bottom: 10px;
  position: relative;
  letter-spacing: 0.5px;
}

.content-headline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, rgba(190, 18, 31, 0.3) 100%);
  border-radius: 2px;
}


.content-images {
  margin-bottom: 16px;
  position: relative;
}

.image-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 8px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  border-radius: 12px;
  padding: 2px;
}

.image-carousel::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.image-item {
  position: relative;
  flex: 0 0 280px;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  scroll-snap-align: start;
}

.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.image-item:hover img {
  transform: scale(1.02);
}

/* 画像バッジ */
.image-badge {
  position: absolute;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 10;
}

/* 整理券配布バッジ（左上角の四角） */
.image-badge.ticket {
  top: 0;
  left: 0;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: white;
  padding: 8px 12px;
  margin: 2px 0 0 0;
  border-radius: 0 0 8px 0;
  font-size: 11px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  border: none;
  text-shadow: none;
  backdrop-filter: none;
  transform: translateY(-2px);
  z-index: 15;
}

/* カテゴリバッジ（境目にかけるデザイン） */
.image-badge.category {
  position: absolute;
  bottom: -12px;
  left: 16px;
  background: linear-gradient(135deg, var(--red), #dc2626);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 2px solid white;
  z-index: 20;
  text-shadow: none;
  backdrop-filter: none;
}

/* カルーセルインジケーター */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(190, 18, 31, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--red);
  transform: scale(1.2);
}

/* カルーセルコンテナ */
.image-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
}

/* カルーセル矢印ボタン */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--red);
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.carousel-arrow:hover {
  background: var(--red);
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.carousel-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-arrow-left {
  left: -20px;
}

.carousel-arrow-right {
  right: -20px;
}

/* PC用のドットスタイル改善 */
@media (min-width: 641px) {
  .carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(190, 18, 31, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .carousel-dot:hover {
    background: rgba(190, 18, 31, 0.6);
    transform: scale(1.3);
  }

  .carousel-dot.active {
    background: var(--red);
    transform: scale(1.4);
    box-shadow: 0 0 0 2px rgba(190, 18, 31, 0.2);
  }

  .carousel-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .carousel-dot.active::after {
    opacity: 1;
  }
}

/* スマホ表示での矢印ボタン調整 */
@media (max-width: 640px) {
  .carousel-arrow {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .carousel-arrow-left {
    left: -16px;
  }

  .carousel-arrow-right {
    right: -16px;
  }
}

/* 単一画像の場合（後方互換） */
.content-image {
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.content-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* ギャラリー（縦積み + 折りたたみ） */
.content-gallery {
  margin-bottom: 16px;
}

.gallery-item {
  margin-bottom: 24px;
  border-radius: 8px;
  overflow: visible;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: white;
  transition: all 0.3s ease;
  position: relative;
}

.gallery-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 8px 8px 0 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .gallery-item img {
    height: 250px;
  }
}

.gallery-caption {
  padding: 20px 16px 16px 16px;
  color: #374151;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 8px;
}

.gallery-caption h4 {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}

.gallery-caption p {
  margin: 0;
}


/* アラート情報表示用スタイル（重要な情報を強調） */
.alert-section {
  margin-top: 16px;
  padding: 0;
}

.alert-item {
  margin-bottom: 12px;
  padding: 12px;
  background: rgba(190, 18, 31, 0.05);
  border-left: 3px solid var(--red);
  border-radius: 0 8px 8px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.alert-item strong {
  color: var(--red);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.alert-description {
  color: #6b7280;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  word-break: keep-all;
}


/* レスポンシブ調整 */
@media (max-width: 480px) {
  .content-headline {
    font-size: 14px;
    margin-bottom: 12px;
    padding-bottom: 8px;
  }
  
  .content-headline::after {
    width: 60px;
    height: 2px;
  }

  .image-item {
    flex: 0 0 240px;
    height: 150px;
  }

  .image-badge {
    font-size: 10px;
    padding: 3px 6px;
  }

  .image-badge.ticket {
    top: 0;
    left: 0;
    padding: 6px 10px;
    font-size: 10px;
    border-radius: 0 0 8px 0;
    transform: translateY(-1px);
  }

  .image-badge.category {
    bottom: 6px;
    left: 6px;
  }

  .content-image img {
    height: 150px;
  }



  .alert-item {
    padding: 10px;
    margin-bottom: 10px;
    gap: 4px;
  }

  .alert-item strong {
    font-size: 13px;
  }

  .alert-description {
    font-size: 12px;
    line-height: 1.3;
  }
}

/* カスタムコントロール */
.map-controls {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.map-control-btn {
  width: 40px;
  height: 40px;
  background: var(--black);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.map-control-btn:hover {
  background: var(--red);
  transform: scale(1.1);
}

.map-control-btn:disabled {
  background: #9ca3af;
  color: #6b7280;
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.map-control-btn:disabled:hover {
  background: #9ca3af;
  transform: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.map-control-btn.reset {
  width: auto;
  padding: 0 12px;
  border-radius: 20px;
  font-size: 14px;
}


/* LIVE配信ボタンスタイル */
.live-stream-section {
  margin: 20px 0;
  padding: 0;
}

.live-stream-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: #007bff;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(128, 128, 128, 0.3);
  position: relative;
  overflow: hidden;
  width: auto;
  max-width: fit-content;
}

.live-stream-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(128, 128, 128, 0.4);
  text-decoration: none;
  color: white;
}


.live-stream-icon {
  position: relative;
  margin-right: 8px;
  font-size: 18px;
}

.live-indicator {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 8px;
  height: 8px;
  background: #00ff00;
  border-radius: 50%;
  animation: pulse 2s infinite;
  border: 1px solid white;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.live-stream-text {
  display: flex;
  flex-direction: column;
}

.live-label {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.live-desc {
  font-size: 14px;
  opacity: 0.9;
  font-weight: 300;
}

.live-stream-arrow {
  font-size: 18px;
  opacity: 0.8;
  transition: transform 0.3s ease;
}

.live-stream-btn:hover .live-stream-arrow {
  transform: translateX(4px);
}

/* レスポンシブ対応 */
@media (max-width: 640px) {
  .live-stream-btn {
    padding: 6px 12px;
  }
  
  .live-stream-icon {
    font-size: 16px;
    margin-right: 6px;
  }
  
  .live-label {
    font-size: 13px;
  }
}

/* 整理券配布情報スタイル */
.ticket-info-section {
  margin-top: 15px;
  padding: 12px;
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 102, 204, 0.1);
}

.ticket-location {
  display: flex;
  align-items: center;
}

.ticket-location.has-sessions {
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #cce7ff;
}

.ticket-label {
  font-size: 12px;
  font-weight: bold;
  color: #0066cc;
  margin-right: 8px;
  min-width: 90px;
}

.ticket-value {
  font-size: 14px;
  font-weight: bold;
  color: #003d7a;
}

.ticket-session {
  margin-bottom: 10px;
}

.ticket-session:last-child {
  margin-bottom: 0;
}

.session-name {
  font-size: 13px;
  font-weight: bold;
  color: #0066cc;
  margin-bottom: 5px;
  padding: 3px 8px;
  background: rgba(0, 102, 204, 0.1);
  border-radius: 12px;
  display: inline-block;
}

.session-details {
  padding-left: 8px;
}

.session-time {
  display: flex;
  align-items: center;
  margin-bottom: 3px;
}

.time-label {
  font-size: 12px;
  color: #5a6c7d;
  margin-right: 6px;
  min-width: 80px;
}

.time-value {
  font-size: 13px;
  font-weight: bold;
  color: #212529;
}


/* レスポンシブ対応 */
@media (max-width: 640px) {
  .ticket-info-section {
    padding: 10px;
    margin-top: 12px;
  }
  
  .ticket-location {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .ticket-label {
    margin-bottom: 3px;
    margin-right: 0;
    min-width: auto;
  }
  
  .session-time {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .time-label {
    margin-bottom: 2px;
    margin-right: 0;
    min-width: auto;
  }
}

/* ギャラリーリンクスタイル */
.gallery-links {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gallery-links-title {
  font-size: 12px;
  font-weight: bold;
  color: #0066cc;
  margin-bottom: 4px;
  padding-left: 2px;
}

.gallery-link {
  display: block;
  padding: 10px 12px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 1px solid #dee2e6;
  border-radius: 6px;
  text-decoration: none;
  color: #0066cc;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  line-height: 1.4;
}

.gallery-link:hover {
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 102, 204, 0.2);
  text-decoration: none;
  color: #003d7a;
}

.gallery-link-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.gallery-link-text {
  flex: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-right: 8px;
}

.gallery-link-site {
  font-size: 11px;
  color: #6c757d;
  font-weight: 400;
  opacity: 0.8;
  margin-top: 4px;
  text-align: right;
}

.gallery-link .fa-external-link {
  font-size: 11px;
  opacity: 0.7;
  flex-shrink: 0;
  margin-top: 1px;
}

/* レスポンシブ対応 */
@media (max-width: 640px) {
  .gallery-links {
    margin-top: 10px;
    gap: 6px;
  }
  
  .gallery-links-title {
    font-size: 11px;
  }
  
  .gallery-link {
    padding: 8px 10px;
    font-size: 12px;
  }
  
  .gallery-link-site {
    font-size: 10px;
  }
  
  .gallery-link .fa-external-link {
    margin-left: 6px;
    font-size: 10px;
  }
}

/* 場所情報スタイル */
.location-info {
  display: flex;
  align-items: flex-start;
  margin: 8px 0;
}

.location-info .fa-map-marker {
  color: #dc2626;
  font-size: 14px;
  margin-right: 8px;
  margin-top: 2px;
  flex-shrink: 0;
}

.location-text {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* 時間帯情報スタイル */
.time-slots {
  margin: 8px 0;
}

.time-slot {
  display: flex;
  align-items: flex-start;
  margin-bottom: 4px;
  padding: 2px 0;
}

.time-slot:last-child {
  margin-bottom: 0;
}

.time-slot .fa-clock-o {
  color: #6b7280;
  font-size: 14px;
  margin-right: 8px;
  margin-top: 1px;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}

.time-slot-spacer {
  width: 14px;
  margin-right: 8px;
  flex-shrink: 0;
}

.time-slot-content {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 1px;
}

.time-slot-label {
  font-size: 13px;
  font-weight: 600;
  color: #1e40af;
  white-space: nowrap;
  min-width: 80px;
  flex-shrink: 0;
}

.time-slot-time {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
/*  font-family: 'Courier New', monospace;*/
}

/* レスポンシブ対応 */
@media (max-width: 640px) {
  .location-info {
    margin: 6px 0;
  }
  
  .location-info .fa-map-marker {
    font-size: 13px;
    margin-right: 6px;
  }
  
  .location-text {
    font-size: 12px;
  }
  
  .time-slot {
    margin-bottom: 3px;
    padding: 1px 0;
    align-items: flex-start;
  }
  
  .time-slot .fa-clock-o {
    font-size: 13px;
    margin-right: 6px;
    width: 13px;
    text-align: center;
    color: #6b7280;
  }
  
  .time-slot-spacer {
    width: 13px;
    margin-right: 6px;
  }
  
  .time-slot-content {
    gap: 6px;
    margin-top: 1px;
  }
  
  .time-slot-label {
    font-size: 12px;
    font-weight: 600;
    color: #1e40af;
    min-width: 70px;
    flex-shrink: 0;
  }
  
  .time-slot-time {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
  }
}

/* Description アイコンスタイル */
.info-description {
  display: flex;
  align-items: flex-start;
}

.description-icon {
  color: #0066cc;
  font-size: 14px;
  margin-right: 8px;
  margin-top: 2px;
  flex-shrink: 0;
}

.description-text {
  flex: 1;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* レスポンシブ対応 */
@media (max-width: 640px) {
  .description-icon {
    font-size: 13px;
    margin-right: 6px;
  }
}