
/****************** セッション全体フレーム ******************/
#main .session-block {
  margin: 40px 0;
  padding: 25px 20px;
  border: 2px solid #ccc;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px rgba(0,0,0,0.08);
}




/****************** アコーディオン ******************/
#main .accordion_label {
  cursor: pointer;
  display: inline-block;
  margin: 10px 0 15px;
  padding: 6px 16px;
  background: #004c8f;
  border-radius: 6px;
  color: #fff;
}

/* ===== accordion fix for long contents ===== */

.accordion_box {
  position: relative;
  margin-bottom: 40px; /* セッション間の空き */
}

.accordion_box label {
  position: relative;     /* ← ここが超重要（absoluteを封じる） */
  display: block;
  width: 100%;
  padding: 12px;
  background: #004080;
  color: #fff;
  cursor: pointer;
  text-align: center;
  margin-top: 10px;
}

/* 折りたたまれた本文 */
.accordion_contents {
  height: 0;
  overflow: hidden;
  transition: all 0.35s ease-in-out; /* スムーズ開閉 */
}

/* 展開時に全文表示 */
.accordion_box input:checked ~ .accordion_contents {
  height: auto;
  padding: 20px 0 40px 0; /* ← 下に余白を確保（切れ防止） */
}

/* ===== セッション画像 固定サイズ設定 ===== */
.session-visual img {
  width: 900px !important;   /* 横幅固定 */
  height: 100px !important;  /* 高さ固定 */
  object-fit: cover;         /* はみ出す場合はトリミング */
  display: block;
}


/* ===== セッション情報ラベル ===== */
.session-label {
  font-size: 1.1em;
  color: #003366;
  font-weight: 700;
  margin: 6px 0 12px;
}
.session-label a {
  color: #004B99;
  font-weight: 700;
  text-decoration: underline;
}
.session-label a:hover {
  color: #0074FF;
}

.session-lead {
  font-size: 1.15em;
  line-height: 1.55;
  margin-top: 10px;
  padding: 12px 16px;
  background: #E8F2FF;
  border-left: 4px solid #004B99;
  border-radius: 4px;
  color: #003366;

.session-header {
  padding: 20px 24px;
  margin: 45px 0 30px;
  border-left: 6px solid #004B99;
  background: #F8FBFF;
  border-radius: 6px;
}

.session-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 1.05em;
  color: #003366;
}

.session-top a {
  color: #004B99;
  text-decoration: none;
  font-weight: 700;
}

.session-top a:hover {
  text-decoration: underline;
}

.session-title {
  font-size: 1.85em;
  line-height: 1.35;
  color: #002244;
  font-weight: 900;
  margin: 6px 0 14px;
}


}

/* ===== メインタイトル（ページタイトル） ===== */

.main-title {
  font-size: 2.0em;
  font-weight: 700;
  line-height: 1.3;
  margin: 40px 0 32px;
  padding-bottom: 10px;
  border-bottom: 3px solid #003366; /* ネイビーのラインのみ */
  color: #002244; /* 深みのあるダークブルー */
  letter-spacing: 0.02em;
}
/* ===== セッション先頭行のレイアウト調整 ===== */
.session-top {
  display: flex;
  align-items: center;
  justify-content: space-between; /* 左：セッション番号＋時間 ／ 右：講師 */
  margin-bottom: 6px;
  gap: 1em;
  font-size: 16px;
  font-weight: 600;
}

/* セッション番号を視認性良く */
.session-number {
  color: #003366;
  font-size: 1.2em; /* フォントサイズ */
  font-weight: bold; /* より強調 */
}

/* 時間表示を少し落ち着かせる */
.session-time {
  color: #555;
  font-size: 1.2em; /* フォントサイズ */
}

/* 講師名を右端へ寄せる */
.session-speaker {
  margin-left: auto;        /* ★これが右寄せの核心 ★*/
  text-align: right;
  white-space: nowrap;      /* 改行防止 */
}

.session-speaker a {
  color: #003366;           /* 紺色で統一 */
  font-weight: 500;         /* しっかり存在感 */
  font-size: 1em; /* フォントサイズ */
  text-decoration: none;
}

.session-speaker a:hover {
  text-decoration: underline;
}


/* ===== ZEP Footer (Light & Compact) ===== */
.zep-footer {
  background: #223A55;  /* ← 濃紺より 30% 明度アップ */
  color: #fff;
  padding: 25px 0 12px; /* ← 全体高さを約40%ダウン */
  margin-top: 40px;     /* ← 前要素からの間隔もコンパクト */
  font-size: 0.88rem;   /* ← 1段階小さくして軽量化 */
  text-align: center;
}

.zep-footer-inner {
  max-width: 800px;     /* ← コンパクト化 */
  margin: 0 auto;
  line-height: 1.6;     /* ← 行間も少し詰める */
}

.zep-footer-logo {
  font-size: 1.1rem;    /* ← フッターの主張を抑える */
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.zep-footer-bottom {
  margin-top: 14px;
  border-top: 1px solid #446;  /* ← コントラストを柔らかく */
  padding-top: 8px;
  font-size: 0.75rem;
  opacity: 0.7;         /* ← 重さを軽減 */
}

.zep-footer-bottom {
  text-transform: none !important;
}

.zep-footer a {
  color: #ffffff !important;  /* ← これが決め手 */
  font-weight: 600;
  text-decoration: none;
}

.zep-footer a:hover {
  text-decoration: underline;
}
