/* =================================
   セミナースケジュール
================================= */
.seminar-schedule {position: relative; overflow: hidden; }
.seminar-schedule::before, .seminar-schedule::after { content: ''; position: absolute; border-radius: 50%; opacity: .03; animation: cloudFloat 30s ease-in-out infinite; }
.seminar-schedule::before { width: 600px; height: 600px; top: -300px; right: -100px; }
.seminar-schedule::after { width: 800px; height: 800px; bottom: -400px; left: -200px; animation-delay: -15s; }
@keyframes cloudFloat { 0%,100% { transform: translate(0,0); } 25% { transform: translate(30px,-20px); } 50% { transform: translate(-20px,10px); } 75% { transform: translate(40px,-30px); } }

/* PC/SP表示切り替え */
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

/* セミナースライダー - 共通スタイル */
.seminar-slider-container {
  position: relative;
  margin-top: 3rem;
  overflow: visible; /* 負のオフセットでも表示されるように変更 */
}

/* スライダーラッパー */
.seminar-slider-wrapper {
  overflow: hidden; /* 実際の表示範囲を制限 */
}

/* ナビゲーション矢印 - モバイルのみ表示 */
.seminar-nav-arrow,
.event-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  display: none; /* PC版では非表示 */
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.seminar-nav-arrow:hover,
.event-nav-arrow:hover {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-50%) scale(1.1);
}

.seminar-nav-arrow.prev,
.event-nav-arrow.prev {
  left: 10px;
}

.seminar-nav-arrow.next,
.event-nav-arrow.next {
  right: 10px;
}

.seminar-nav-arrow svg,
.event-nav-arrow svg {
  width: 20px;
  height: 20px;
  color: #333;
}

.seminar-nav-arrow:disabled,
.event-nav-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.5);
}

.seminar-nav-arrow:disabled:hover,
.event-nav-arrow:disabled:hover {
  transform: translateY(-50%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* スケジュールグリッドコンテナ */
.schedule-grid-container {
  position: relative;
  margin-top: 2rem;
  overflow: hidden;
}

.schedule-grid-wrapper {
  overflow: hidden;
  padding: 1rem 0;
}

/* PC表示では swipe-hint を非表示 */
.seminar-schedule .seminar-swipe-hint,
.schedule-swipe-hint {
  display: none;
}

.seminar-slider-wrapper,
.event-slider-wrapper {
  overflow: hidden;
  padding: 1rem 0;
}

.seminar-slider-track,
.event-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
  will-change: transform;
}

/* PCモードではグリッド表示で全て表示 */
@media (min-width: 769px) {
  .seminar-slider-track,
  .event-slider-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    transform: none !important; /* JavaScriptによる変形を無効化 */
  }
  
  .seminar-slide,
  .event-slide {
    display: block;
    width: 100%;
  }
}

/* SPモードではスライド表示 */
@media (max-width: 768px) {
  .seminar-slider-container,
  .event-slider-container {
    overflow: visible;
    position: relative;
    width: 100%;
    margin: 0 auto;
  }
  
  .seminar-slider-wrapper,
  .event-slider-wrapper {
    overflow: visible;
    padding: 0;
  }
  
  .seminar-slider-track,
  .event-slider-track {
    display: flex;
    flex-wrap: nowrap;
    transform: translateX(0);
    padding: 0 40px;
    gap: 16px;
    transition: transform 0.3s ease;
  }
  
  .seminar-slide,
  .event-slide {
    flex: 0 0 calc(100% - 80px);
    max-width: calc(100% - 80px);
    margin-right: 0;
    opacity: 0.6;
    transform: scale(0.9);
    transition: all 0.3s ease;
  }
  
  .seminar-slide.active,
  .event-slide.active {
    opacity: 1;
    transform: scale(1);
  }
  
  .seminar-slide .schedule-header {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
  }
  
  .seminar-slide .schedule-icon {
    flex-shrink: 0;
  }
  
  .seminar-slide .schedule-date {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .seminar-slide .schedule-title {
    flex-basis: 100%;
    margin: 0.5rem 0 0 0;
    font-size: 1rem;
    width: 100%;
  }
}

.seminar-slide .schedule-item,
.event-slide .schedule-item {
  opacity: 1;
  transform: none;
  min-height: 180px; /* より横長に */
  height: 100%;
  background: #fff; 
  border-radius: 12px; 
  padding: 1rem 1.75rem; 
  box-shadow: 0 10px 30px rgba(0,0,0,.05); 
  transition: all .4s; 
  position: relative; 
  overflow: hidden; 
  display: flex; 
  flex-direction: column;
  justify-content: space-between;
}

/* 左側の灰色部分を削除 */
.seminar-slide .schedule-item::before,
.event-slide .schedule-item::before { 
  display: none; /* 左側の灰色バーを非表示に */
}

.seminar-slide .schedule-item:hover,
.event-slide .schedule-item:hover { 
  box-shadow: 0 15px 40px rgba(0,0,0,.1); 
  transform: translateY(-5px); 
}

/* スワイプヒント */
.seminar-swipe-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 24px auto 0;
  color: #607d8b;
  font-size: 14px;
  opacity: 1;
  transition: opacity 0.5s ease;
  animation: fadeInOut 3s ease-in-out infinite;
  white-space: nowrap;
  text-align: center;
}

.swipe-icon {
  display: flex;
  align-items: center;
  color: #2196f3;
  animation: swipeLeft 2s ease-in-out infinite;
}

.swipe-icon svg {
  width: 20px;
  height: 20px;
}

@keyframes swipeLeft {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
  
  .sp-only {
    display: block;
  }
  
  /* モバイルで矢印ボタンを表示 */
  .seminar-nav-arrow,
  .event-nav-arrow {
    display: flex;
  }
  
  /* スマホ表示では swipe-hint を表示 */
  .seminar-schedule .seminar-swipe-hint,
  .schedule-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 24px auto 0;
    color: #607d8b;
    font-size: 14px;
    opacity: 1;
    transition: opacity 0.5s ease;
    animation: fadeInOut 3s ease-in-out infinite;
    white-space: nowrap;
    text-align: center;
  }
  
  /* スケジュールグリッドをスライド表示に変更 */
  .schedule-grid {
    display: flex !important;
    flex-wrap: nowrap;
    gap: 24px;
    transition: transform 0.5s ease;
    will-change: transform;
    grid-template-columns: none !important;
  }
  
  .schedule-grid .schedule-item {
    flex: 0 0 100%;
    max-width: 100%;
    grid-column: unset !important;
  }
  
  .seminar-schedule { 
    padding: 80px 0; 
  }
  
  .seminar-slide .schedule-item,
  .event-slide .schedule-item {
    min-height: 180px; /* さらに縮小 */
  }
  
  .schedule-body { 
    padding-left: 0; 
  }
  
  .schedule-header { 
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
  }
  
  .schedule-icon {
    flex-shrink: 0;
  }
  
  .schedule-date {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .schedule-header .schedule-title {
    flex-basis: 100%;
    margin: 0.5rem 0 1rem 0;
    font-size: 1rem;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .seminar-schedule { 
    padding: 80px 0; 
  }
  
  .title-main { 
    font-size: 2rem; 
  }
  
  .seminar-slide .schedule-item,
  .event-slide .schedule-item { 
    min-height: 180px; /* さらに縮小 */
    padding: 1.25rem; 
  }
  
  .schedule-icon { 
    width: 42px; 
    height: 42px; 
    flex-shrink: 0;
  }
  
  .schedule-date {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .icon-weekday { 
    font-size: 1rem; 
  }
  
  .date-main { 
    font-size: 1.1rem; 
  }
  
  .date-time {
    font-size: 0.8rem;
  }
  
  .schedule-header .schedule-title { 
    font-size: 1rem;
    margin: 0.5rem 0 1rem 0 !important;
    width: 100%;
    flex-basis: 100%;
  }
}

/* 講師・場所・会場ラベルのスタイル */
.speaker-label, .location-label, .venue-label {
  background: #1e3a8a; /* ネイビー色 */
  color: white;
  padding: 3px 8px;
  border-radius: 2px; /* よりシャープな四角 */
  font-size: 12px;
  font-weight: 500;
  margin-right: 4px;
  display: inline-block;
  white-space: nowrap;
  width: 60px; /* 固定幅に統一 */
  text-align: center;
}

/* 講師名・場所名・会場名は背景なし */
.speaker-name, .location-name, .venue-name {
  color: #374151; /* ダークグレーの文字 */
  font-size: 13px;
  font-weight: 400;
  margin-left: 4px;
}

/* 詳細ボタンのスタイル */
.schedule-button {
  border: 2px solid #6b7280; /* グレーのボーダー */
  background: transparent;
  color: #374151 !important;
  padding: 12px 40px;
  border-radius: 4px;
  transition: all 0.2s ease;
  text-decoration: none;
  display: block;
  text-align: center;
  margin-top: auto; /* 下部に配置 */
  width: 100%; /* 幅を100%に */
  max-width: 320px; /* 最大幅を増加 */
  align-self: center; /* 中央寄せ */
  margin-left: auto;
  margin-right: auto;
}

.schedule-button .btn-text {
  color: #374151 !important; /* ダークグレーの文字 */
  font-weight: 500;
  white-space: nowrap; /* 改行を防ぐ */
}

.schedule-button:hover {
  border-color: #0e3a58;
  background: #0e3a58;
  color: white !important;
}

.schedule-button:hover .btn-text {
  color: white !important;
}

/* スケジュール情報のレイアウト調整 */
.schedule-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-bottom: 0;
}

.schedule-speaker, .schedule-location, .schedule-venue {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0;
  font-size: 0.9rem;
  width: 100%;
}

/* タイトル部分の調整 */
.schedule-header .schedule-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0.5rem 0 0 0;
  line-height: 1.4;
  width: 100%;
  flex-basis: 100%;
  letter-spacing: -0.02em;
  flex-grow: 0; /* 伸縮しないように */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2; /* 2行で省略 */
  letter-spacing: -.01em;
}

/* スケジュールボディ部分の調整 */
.schedule-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* 上下に分散 */
}

/* スケジュールヘッダー部分の調整 */
.schedule-header {
  margin-bottom: 0.1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.5rem;
}

.section-header { 
  text-align: center; 
  margin-bottom: 60px; 
  position: relative; 
  z-index: 1;
  width: 100%;
  padding-left: 0; /* パディングを削除 */
  padding-right: 0; /* パディングを削除 */
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title { 
  margin-bottom: 1rem; 
  display: block;
  width: 100%;
  text-align: center;
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.03em;
  line-height: 1.3;
}

.section-description {
  text-align: center;
  width: 100%;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.8;
  margin-top: 24px;
  max-width: 700px;
}

/* 青背景のセクションなど、背景が濃い場合のテキスト色調整 */
.section-blue .section-title {
  color: var(--text-inverse);
}

.section-blue .section-description {
  color: var(--text-inverse);
  opacity: 0.95;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .section-header {
    padding-left: 0;
    padding-right: 0;
  }
  
  .section-title {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .section-header {
    padding-left: 0;
    padding-right: 0;
  }
  
  .section-title {
    font-size: 24px;
  }
}

/* ニュースセクションの既存スタイル調整 */
.news .section-badge {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%); /* 回転を削除 */
  writing-mode: horizontal-tb; /* 横書きを明示 */
}

/* ニュースセクションの既存スタイル調整 */
.news .section-badge {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%); /* 回転を削除 */
  writing-mode: horizontal-tb; /* 横書きを明示 */
}

.schedule-grid { 
  display: grid; 
  grid-template-columns: repeat(12,1fr); 
  gap: 2rem; 
  max-width: 1400px; 
  margin: 0 auto; 
  padding: 0 20px; 
  position: relative; 
  z-index: 1; 
}

.schedule-item { 
  grid-column: span 4; 
  background: #ffffff; 
  border-radius: 8px; /* さらにシャープに */
  padding: 2rem; 
  box-shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06); /* よりシャープなシャドウ */
  transition: all .2s ease; 
  position: relative; 
  opacity: 0; 
  transform: translateY(30px); 
  display: flex; 
  flex-direction: column; 
  min-height: 320px; 
  overflow: hidden; 
  border: 1px solid #f3f4f6; 
}

.schedule-item::before { 
  content: ''; 
  position: absolute; 
  top: 0; 
  left: 0; 
  right: 0; 
  height: 4px; /* 少し太めに */
  background: #f8f9fa; /* デフォルトはニュートラル */
  opacity: 0; /* 初期は非表示 */
  transition: all .3s ease; 
}

/* スケジュールアイテム用アニメーション - base.cssで統一管理 */

.schedule-item:hover { 
  transform: translateY(-10px); /* 元の大きなホバー効果に戻す */
  box-shadow: 0 20px 60px rgba(0,0,0,.15); /* より強いシャドウ */
  border-color: rgba(0,0,0,.2); 
}

.schedule-item:hover::before { 
  opacity: 1; /* ホバー時に表示 */
}

/* 曜日別ホバー時のアクセントカラー */
.schedule-item[data-day="月"]:hover::before, .schedule-item.monday:hover::before { 
  background: linear-gradient(90deg, #003909 0%, #004a0b 50%, #005b0d 100%); 
}
.schedule-item[data-day="火"]:hover::before, .schedule-item.tuesday:hover::before { 
  background: linear-gradient(90deg, #b33e5c 0%, #c5556e 50%, #d76c80 100%); 
}
.schedule-item[data-day="水"]:hover::before, .schedule-item.wednesday:hover::before { 
  background: linear-gradient(90deg, #000080 0%, #1a1a9a 50%, #3333b4 100%); 
}
.schedule-item[data-day="木"]:hover::before, .schedule-item.thursday:hover::before { 
  background: linear-gradient(90deg, #805ad5 0%, #9f7aea 50%, #b794f6 100%); 
}
.schedule-item[data-day="金"]:hover::before, .schedule-item.friday:hover::before { 
  background: linear-gradient(90deg, #d69e2e 0%, #ecc94b 50%, #f6e05e 100%); 
}
.schedule-item[data-day="土"]:hover::before, .schedule-item.saturday:hover::before { 
  background: linear-gradient(90deg, #319795 0%, #4fd1c7 50%, #81e6d9 100%); 
}
.schedule-item[data-day="日"]:hover::before, .schedule-item.sunday:hover::before { 
  background: linear-gradient(90deg, #dd6b20 0%, #ed8936 50%, #f6ad55 100%); 
}

/* 講師・場所ラベルのスタイル（シャープな四角、ネイビー背景、白文字） */
.speaker-label, .location-label {
  background: #1e3a8a; /* ネイビー色 */
  color: white;
  padding: 4px 10px;
  border-radius: 2px; /* よりシャープな四角 */
  font-size: 13px;
  font-weight: 500;
  margin-right: 6px;
  display: inline-block;
  margin-bottom: 4px;
}

/* 講師名・場所名は背景なし */
.speaker-name, .location-name {
  color: #374151; /* ダークグレーの文字 */
  font-size: 13px;
  font-weight: 400;
  margin-left: 4px;
}

/* 詳細・参加申込ボタンのスタイル（画像参考：グレーボーダー） */
.schedule-button {
  border: 2px solid #6b7280; /* グレーのボーダー */
  background: transparent;
  color: #374151 !important;
  padding: 12px 40px;
  border-radius: 4px;
  transition: all 0.2s ease;
  text-decoration: none;
  display: block;
  text-align: center;
}

.schedule-button .btn-text {
  color: #374151 !important; /* ダークグレーの文字 */
  font-weight: 500;
  white-space: nowrap; /* 改行を防ぐ */
}

.schedule-button:hover {
  border-color: #0e3a58;
  background: #0e3a58;
  color: white !important;
}

.schedule-button:hover .btn-text {
  color: white !important;
}
.schedule-icon[data-day="月"] .icon-weekday, .schedule-icon.monday .icon-weekday { 
  color: #003909; /* 緑色の曜日文字 */
}
.schedule-icon[data-day="火"] .icon-weekday, .schedule-icon.tuesday .icon-weekday { 
  color: #b33e5c; /* ローズ色の曜日文字 */
}
.schedule-icon[data-day="水"] .icon-weekday, .schedule-icon.wednesday .icon-weekday { 
  color: #000080; /* ネイビーブルーの曜日文字 */
}
.schedule-icon[data-day="木"] .icon-weekday, .schedule-icon.thursday .icon-weekday { 
  color: #805ad5; /* パープルの曜日文字 */
}
.schedule-icon[data-day="金"] .icon-weekday, .schedule-icon.friday .icon-weekday { 
  color: #d69e2e; /* ゴールドの曜日文字 */
}
.schedule-icon[data-day="土"] .icon-weekday, .schedule-icon.saturday .icon-weekday { 
  color: #319795; /* ティールの曜日文字 */
}
.schedule-icon[data-day="日"] .icon-weekday, .schedule-icon.sunday .icon-weekday { 
  color: #dd6b20; /* オレンジの曜日文字 */
}

.schedule-icon[data-day="月"], .schedule-icon.monday { 
  background: #ffffff; 
  border: 2px solid #f1f3f4; 
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.schedule-icon[data-day="火"], .schedule-icon.tuesday { 
  background: #ffffff; 
  border: 2px solid #f1f3f4; 
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.schedule-icon[data-day="水"], .schedule-icon.wednesday { 
  background: #ffffff; 
  border: 2px solid #f1f3f4; 
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.schedule-icon[data-day="木"], .schedule-icon.thursday { 
  background: #ffffff; 
  border: 2px solid #f1f3f4; 
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.schedule-icon[data-day="金"], .schedule-icon.friday { 
  background: #ffffff; 
  border: 2px solid #f1f3f4; 
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.schedule-icon[data-day="土"], .schedule-icon.saturday { 
  background: #ffffff; 
  border: 2px solid #f1f3f4; 
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.schedule-icon[data-day="日"], .schedule-icon.sunday { 
  background: #ffffff; 
  border: 2px solid #f1f3f4; 
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.schedule-header { 
  display: flex; 
  align-items: center; 
  gap: 1.25rem; 
  margin-bottom: 1.75rem; 
  position: relative; 
}

.schedule-icon { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  width: 42px; 
  height: 42px; 
  background: #ffffff; 
  color: #374151; 
  border-radius: 6px; /* よりシャープに */
  flex-shrink: 0; 
  transition: all .2s ease; 
  position: relative; 
  border: 2px solid #f1f3f4; 
  font-weight: 600; /* 文字を少し太く */
  font-size: 14px; /* 文字サイズ調整 */
}

.schedule-icon[data-day="月"], .schedule-icon.monday { 
  background: #f8f9fa; 
  color: #003909; /* 緑色のテキスト */
  border-color: #e9ecef; 
}
.schedule-icon[data-day="火"], .schedule-icon.tuesday { 
  background: #f8f9fa; 
  color: #b33e5c; /* ローズ色のテキスト */
  border-color: #e9ecef; 
}
.schedule-icon[data-day="水"], .schedule-icon.wednesday { 
  background: #f8f9fa; 
  color: #000080; /* ネイビーブルーのテキスト */
  border-color: #e9ecef; 
}
.schedule-icon[data-day="木"], .schedule-icon.thursday { 
  background: #f8f9fa; 
  color: #805ad5; /* パープルのテキスト */
  border-color: #e9ecef; 
}
.schedule-icon[data-day="金"], .schedule-icon.friday { 
  background: #f8f9fa; 
  color: #d69e2e; /* ゴールドのテキスト */
  border-color: #e9ecef; 
}
.schedule-icon[data-day="土"], .schedule-icon.saturday { 
  background: #f8f9fa; 
  color: #319795; /* ティールのテキスト */
  border-color: #e9ecef; 
}
.schedule-icon {
  flex-shrink: 0;
}

.schedule-icon[data-day="日"], .schedule-icon.sunday { 
  background: #f8f9fa; 
  color: #dd6b20; /* オレンジのテキスト */
  border-color: #e9ecef; 
}
.schedule-icon.priority { animation: pulse 2s ease-in-out infinite; }
.schedule-icon.priority::after { content: ''; position: absolute; top: -2px; right: -2px; width: 12px; height: 12px; background: currentColor; border-radius: 50%; border: 2px solid #fff; animation: blink 1.5s ease-in-out infinite; }

.icon-weekday { font-size: 1rem; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: -.02em; }
.schedule-date { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  flex-shrink: 0;
}
.date-main { font-size: 1.25rem; font-weight: 700; color: #263238; line-height: 1; letter-spacing: -.02em; }
.date-time { font-size: .85rem; color: #607d8b; font-weight: 500; letter-spacing: .02em; }

.schedule-body { 
  flex: 1; 
  display: flex; 
  flex-direction: column; 
  gap: 0.15rem;
  padding-top: 0;
}
.schedule-title { font-size: 1.25rem; font-weight: 700; color: #263238; margin-bottom: 1.25rem; line-height: 1.5; flex-grow: 1; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; letter-spacing: -.01em; }
.schedule-info { margin-bottom: 1.75rem; flex-shrink: 0; }
.schedule-speaker, .schedule-location, .schedule-venue { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; font-size: 1rem; color: #546e7a; line-height: 1.5; }
.speaker-label, .location-label, .venue-label { background: #0e3a58; color: #ffffff; padding: .35rem .75rem; border-radius: 3px; font-size: .8rem; font-weight: 600; flex-shrink: 0; width: 60px; text-align: center; letter-spacing: .02em; }
.speaker-name, .location-name, .venue-name { color: #37474f; font-weight: 500; font-size: 1rem; word-break: break-word; line-height: 1.5; }

.schedule-button { 
  display: block; 
  text-decoration: none; 
  margin-top: auto; 
  flex-shrink: 0;
  border: 2px solid #6b7280; 
  background: transparent;
  color: #374151 !important;
  padding: 8px 36px;
  border-radius: 4px;
  transition: all 0.2s ease;
  text-align: center;
  width: 100%;
  max-width: 320px;
  align-self: center;
  margin-left: auto;
  margin-right: auto;
}

.schedule-button .btn-text { 
  display: inline-block; 
  color: #374151 !important; 
  text-decoration: none; 
  font-weight: 600; 
  transition: all .3s; 
  font-size: .95rem; 
  letter-spacing: .02em; 
  position: relative; 
  white-space: nowrap;
}

.schedule-button:hover { 
  border-color: #0e3a58;
  background: #0e3a58;
  color: white !important;
}

.schedule-button:hover .btn-text { 
  color: white !important; 
}

/* @keyframes slideInUp - base.cssで統一管理 */
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .5; } }
