/* =============================================
   サブページ共通スタイル
   css/pages.css
   ============================================= */

/* ── ページヘッダー（パンくずリスト・タイトル） ── */
.page-hero {
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-dark) 50%, #C05515 100%);
  padding: 48px 0 52px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 200'%3E%3Ccircle cx='700' cy='50' r='180' fill='rgba(255,255,255,0.05)'/%3E%3Ccircle cx='100' cy='180' r='120' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E") no-repeat right center;
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

/* パンくずリスト */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.breadcrumb-item {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
}

.breadcrumb-item a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: var(--color-white);
  text-decoration: underline;
}

.breadcrumb-sep {
  color: rgba(255,255,255,0.45);
  font-size: 0.7rem;
}

.page-title {
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.page-title-en {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}

/* ── コンテンツエリア ── */
.page-content {
  padding: 64px 0;
}

.page-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}

.page-main {
  min-width: 0;
}

/* ── コンテンツセクション ── */
.content-section {
  margin-bottom: 64px;
}

.content-section:last-child {
  margin-bottom: 0;
}

.content-heading {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text-main);
  padding-bottom: 12px;
  border-bottom: 3px solid var(--color-orange);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}

.content-heading > i {
  color: var(--color-orange);
  font-size: 1.1rem;
}

.content-heading-2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin: 32px 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.content-heading-2::before {
  content: '';
  display: block;
  width: 5px;
  height: 20px;
  background: var(--color-green);
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.content-body {
  font-size: 1rem;
  line-height: 2;
  color: var(--color-text-body);
}

.content-body p + p {
  margin-top: 16px;
}

/* 定義リスト（概要テーブル） */
.definition-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-size: 0.95rem;
}

.definition-table th,
.definition-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  vertical-align: top;
  line-height: 1.8;
  font-size: 1rem;
}

.definition-table th {
  background: var(--color-bg-section);
  font-weight: 700;
  color: var(--color-text-main);
  width: 160px;
  white-space: nowrap;
  font-size: 0.95rem;
}

.definition-table td {
  background: var(--color-white);
  color: var(--color-text-body);
}

.definition-table tr:last-child th,
.definition-table tr:last-child td {
  border-bottom: none;
}

/* 番号付きステップリスト */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  counter-reset: step;
}

.step-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-num {
  counter-increment: step;
  width: 36px;
  height: 36px;
  background: var(--color-orange);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-body {
  flex: 1;
}

.step-title {
  font-weight: 700;
  color: var(--color-text-main);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--color-text-body);
  line-height: 1.85;
}

/* 参加区分テーブル
.fee-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
}

.fee-table th {
  background: var(--color-orange);
  color: var(--color-white);
  padding: 14px 16px;
  text-align: center;
  font-weight: 700;
}

.fee-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-border-light);
  background: var(--color-white);
}

.fee-table tr:nth-child(even) td {
  background: var(--color-bg);
}

.fee-table tr:last-child td {
  border-bottom: none;
}

.fee-table td:nth-child(2),
.fee-table td:nth-child(3) {
  text-align: center;
  font-weight: 600;
  color: var(--color-orange-dark);
}
 */
 
 
 /* ===============================
   参加区分テーブル 共通設定 20260225
================================= */
.fee-table-wrap{
  border: 2px solid #cfcfcf; /* 外枠 */
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed; /* ← 列幅固定（重要） */
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
}

/* ---------- ヘッダー ---------- */

.fee-table th {
  padding: 14px 16px;
  text-align: center;
  font-weight: 700;
  color: #fff;

  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #cfcfcf;
}

.fee-table thead th:last-child{
  border-right: none;
}

.fee-table thead th{
  color:#ffffff !important;
}

/* ---------- 本文 ---------- */

.fee-table td {
  padding: 14px 16px;
  background: #ffffff;

  border-right: 1px solid #cfcfcf;
  border-bottom: 1px solid #cfcfcf;
}

.fee-table tbody td:last-child{
  border-right: none;
}

.fee-table tr:last-child td{
  border-bottom: none;
}

/* ストライプ */
.fee-table tr:nth-child(even) td{
  background: var(--color-bg);
}

/* =================================
   列幅統一（全テーブル共通）
================================= */

/* 区分列 */
.fee-table th:nth-child(1),
.fee-table td:nth-child(1){
  width: 75%;
}

/* 金額列 */
.fee-table th:nth-child(2),
.fee-table td:nth-child(2){
  width: 25%;
  text-align: right;
  font-weight: 600;
  color: var(--color-orange-dark);
  white-space: nowrap;
}

/* =================================
   区分別カラー
================================= */

/* 会員 */
.fee-table--member thead th{
  background-color:#2f6fb3;
}

/* 非会員 */
.fee-table--nonmember thead th{
  background-color:#2e8b57;
}

/* オプション */
.fee-table--option thead th{
  background-color:#d97706;
}
 
 /* =================================
   モバイル最適化：表のまま（横スクロールOK）20260225
================================= */
@media (max-width: 680px){

  /* スクロールしやすく */
  .fee-table-wrap{
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
	border: 2px solid #cfcfcf; /* 外枠 */
  }

  /* テーブル幅は内容に合わせて横に伸ばす（＝スクロール発生） */
  .fee-table{
    min-width: 520px;     /* ←列が潰れない最低幅（必要に応じて調整） */
    table-layout: fixed;  /* 列幅固定で複数テーブルの金額列が揃う */
  }

  /* セル余白と文字サイズを少し詰める */
  .fee-table th,
  .fee-table td{
    padding: 12px 12px;
    font-size: 0.88rem;
  }

  /* 金額列は常に同じ幅に固定（複数テーブルでも揃う） */
  .fee-table th:nth-child(2),
  .fee-table td:nth-child(2){
    width: 160px;          /* ←金額列の固定幅 */
    text-align: right;
    white-space: nowrap;
  }

  /* 区分列は残りを使う */
  .fee-table th:nth-child(1),
  .fee-table td:nth-child(1){
    width: auto;
  }

  /* ヘッダーを固定（スクロールしても見失わない） */
  .fee-table thead th{
    position: sticky;
    top: 0;
    z-index: 2;
  }

  /* 横スクロール中でも外枠が見やすいように */
  .fee-table{
    border-width: 1.5px;
  }
}
 
 
 /* ===============================
   チケットに含まれる内容 表示 260318
================================= */

.ticket-includes{
  margin-top: 14px;
  padding: 18px 20px;
  border: 2px solid #d9e6f5;
  border-radius: var(--radius-lg);
  background: #f7fbff;
  box-shadow: var(--shadow-sm);
}

.ticket-includes--member{
  border-color: #cfe0f4;
  background: #f5f9ff;
}

.ticket-includes__label{
  display: inline-block;
  margin: 0 0 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #2f6fb3;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
}

.ticket-includes__title{
  margin: 0 0 14px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.5;
  color: #1f4f88;
}

.ticket-includes__list{
  list-style: none;
  margin: 0;
  padding: 0;
}

.ticket-includes__list li{
  position: relative;
  margin-bottom: 10px;
  padding-left: 34px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-text);
}

.ticket-includes__list li:last-child{
  margin-bottom: 0;
}

.ticket-includes__list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #2f6fb3;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
}

.ticket-includes__note{
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px dashed #c7d8ee;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-text);
}

.ticket-includes__note strong{
  color: #1f4f88;
  font-weight: 700;
}

/* モバイル */
@media (max-width: 680px){
  .ticket-includes{
    padding: 16px 14px;
    margin-top: 12px;
  }

  .ticket-includes__title{
    font-size: 1rem;
  }

  .ticket-includes__list li{
    padding-left: 30px;
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .ticket-includes__list li::before{
    width: 20px;
    height: 20px;
    top: 3px;
    font-size: 0.76rem;
    line-height: 20px;
  }

  .ticket-includes__note{
    font-size: 0.92rem;
  }
}
 .ticket-includes__list strong{
  color: #1f4f88;
  font-weight: 700;
}
 
 
 
 
 
 
 
 
 
 
/* 注意ボックス */
.notice-box {
  background: #FFF3E0;
  border: 1.5px solid var(--color-orange-mid);
  border-left: 5px solid var(--color-orange);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--color-text-body);
}

.notice-box--alert {
  background: #FFF0F0;
  border-color: #FFAAAA;
  border-left-color: #E74C3C;
}

.notice-box--blue {
  background: var(--color-blue-light);
  border-color: var(--color-blue-mid);
  border-left-color: var(--color-blue);
}

.notice-box--green {
  background: var(--color-green-light);
  border-color: var(--color-green-mid);
  border-left-color: var(--color-green);
}

.notice-box-title {
  font-weight: 700;
  color: var(--color-orange-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.notice-box--alert .notice-box-title {
  color: #C0392B;
}

.notice-box--blue .notice-box-title {
  color: var(--color-blue-dark);
}

/* サイドバー */
.sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-widget {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
}

.sidebar-widget-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-orange-light);
}

.sidebar-nav-list li {
  border-bottom: 1px solid var(--color-border-light);
}

.sidebar-nav-list li:last-child {
  border-bottom: none;
}

.sidebar-nav-list a {
  display: block;
  padding: 10px 0;
  font-size: 0.85rem;
  color: var(--color-text-body);
  transition: color var(--transition);
}

.sidebar-nav-list a:hover {
  color: var(--color-orange);
}

.sidebar-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.deadline-badge {
  background: #FFF0F0;
  border: 1.5px solid #FFAAAA;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.82rem;
  color: #C0392B;
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
}

.deadline-badge strong {
  display: block;
  font-size: 1rem;
}

/* ── チェックリスト ── */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.97rem;
  color: var(--color-text-body);
  line-height: 1.75;
}

.check-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--color-green);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* =============================================
   タイムテーブル
   ============================================= */

/* 日付ヘッダー */
.tt-day-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin-bottom: 0;
  color: var(--color-white);
}

.tt-day-header--orange {
  background: linear-gradient(90deg, var(--color-orange-dark) 0%, var(--color-orange) 100%);
}

.tt-day-header--green {
  background: linear-gradient(90deg, var(--color-green-dark, #1a7a4a) 0%, var(--color-green) 100%);
}

/* PCテーブルラッパー（横スクロール対応） */
.timetable-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  border-top: none;
  margin-bottom: 40px;
}

/* PC テーブル本体 */
.timetable {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.timetable thead tr {
  background: var(--color-bg-section);
}

.timetable th {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text-main);
  border-bottom: 2px solid var(--color-border-light);
  white-space: nowrap;
}

.tt-th-time {
  width: 110px;
  min-width: 90px;
}

/* 時間セル */
.tt-time {
  padding: 14px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-main);
  white-space: nowrap;
  vertical-align: middle;
  border-bottom: 1px solid var(--color-border-light);
  background: var(--color-bg);
}

/* セッションセル共通 */
.tt-cell {
  padding: 12px 16px;
  vertical-align: middle;
  border-bottom: 1px solid var(--color-border-light);
  border-left: 1px solid var(--color-border-light);
}

.session-name {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text-main);
  line-height: 1.5;
}

.session-note {
  display: block;
  font-size: 0.84rem;
  color: var(--color-text-light);
  margin-top: 4px;
  line-height: 1.5;
}

/* セルカラー（テーブル用） */
.tt-cell.session-orange { background: #FFF3E0; border-left-color: var(--color-orange); }
.tt-cell.session-blue   { background: var(--color-blue-light); border-left-color: var(--color-blue); }
.tt-cell.session-green  { background: var(--color-green-light); border-left-color: var(--color-green); }
.tt-cell.session-gray   { background: var(--color-bg-section); border-left-color: #ccc; }

/* テーブル末尾行のボーダー除去 */
.timetable tbody tr:last-child .tt-time,
.timetable tbody tr:last-child .tt-cell {
  border-bottom: none;
}

/* ── モバイル: カード ── */
/* 通常時は非表示 */
.tt-cards {
  display: none;
}

/* 全幅カード（1会場のみの行） */
.tt-card {
  display: flex;
  align-items: stretch;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs, 0 1px 4px rgba(0,0,0,.07));
  border: 1px solid var(--color-border-light);
  margin-bottom: 8px;
}

.tt-card-time {
  min-width: 76px;
  padding: 14px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,.07);
  background: rgba(255,255,255,0.5);
  line-height: 1.4;
  flex-shrink: 0;
}

.tt-card-body {
  padding: 12px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tt-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1.5;
  margin: 0;
}

.tt-card-note {
  font-size: 0.84rem;
  color: var(--color-text-light);
  margin: 4px 0 0;
  line-height: 1.5;
}

/* カードカラー */
.tt-card.session-orange { background: #FFF3E0; border-left: 4px solid var(--color-orange); }
.tt-card.session-blue   { background: var(--color-blue-light); border-left: 4px solid var(--color-blue); }
.tt-card.session-green  { background: var(--color-green-light); border-left: 4px solid var(--color-green); }
.tt-card.session-gray   { background: var(--color-bg-section); border-left: 4px solid #bbb; }

/* 複数会場グループ */
.tt-card-group {
  margin-bottom: 8px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-xs, 0 1px 4px rgba(0,0,0,.07));
}

.tt-card-group-time {
  background: var(--color-bg-section);
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text-main);
  border-bottom: 1px solid var(--color-border-light);
}

.tt-card-group-sessions {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tt-card-mini {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  border-left: 4px solid transparent;
}

.tt-card-mini:last-child {
  border-bottom: none;
}

.tt-mini-venue {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-bottom: 6px;
  color: var(--color-white);
}

/* ミニカードカラー */
.tt-card-mini.session-orange {
  background: #FFF8F0;
  border-left-color: var(--color-orange);
}
.tt-card-mini.session-orange .tt-mini-venue { background: var(--color-orange); }

.tt-card-mini.session-blue {
  background: #F0F6FF;
  border-left-color: var(--color-blue);
}
.tt-card-mini.session-blue .tt-mini-venue { background: var(--color-blue); }

.tt-card-mini.session-green {
  background: #F0FFF6;
  border-left-color: var(--color-green);
}
.tt-card-mini.session-green .tt-mini-venue { background: var(--color-green); }

/* ── レスポンシブ ── */
@media (max-width: 900px) {
  .page-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    order: -1;
  }

  .sidebar-widget {
    display: none;
  }

  .sidebar-cta {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sidebar-cta .btn {
    flex: 1;
    min-width: 200px;
  }

  /* タイムテーブル: 中間サイズではテーブルを維持、カードは非表示 */
  .tt-cards {
    display: none;
  }
  .timetable-scroll {
    display: block;
  }
  .timetable {
    font-size: 0.85rem;
  }
  .timetable th,
  .tt-time,
  .tt-cell {
    padding: 10px 12px;
  }
  .session-name {
    font-size: 0.85rem;
  }
  .session-note {
    font-size: 0.72rem;
  }
}

@media (max-width: 600px) {
  .page-hero {
    padding: 36px 0 40px;
  }

  .page-title {
    font-size: 1.5rem;   /* 1.4rem → 1.5rem */
  }

  .definition-table {
    font-size: 0.95rem;  /* 0.85rem → 0.95rem */
  }

  .definition-table th {
    width: 110px;
  }

  .fee-table {
    font-size: 0.92rem;  /* 0.82rem → 0.92rem */
  }

  /* ── サブページ本文・各要素のモバイル補正 ── */

  /* セクション見出し */
  .content-heading {
    font-size: 1.15rem;   /* PC: 1.35rem → モバイル: 1.15rem（ベース18px換算で適切） */
  }
  .content-heading-2 {
    font-size: 1rem;
  }

  /* 本文 */
  .content-body {
    font-size: 1rem;
    line-height: 1.9;
  }

  /* チェックリスト・ステップ */
  .check-list li {
    font-size: 0.95rem;
  }
  .step-title {
    font-size: 1rem;
  }
  .step-desc {
    font-size: 0.92rem;
  }

  /* サイドバー */
  .sidebar-widget-title {
    font-size: 0.88rem;
  }
  .sidebar-nav-list a {
    font-size: 0.9rem;
  }

  /* バッジ */
  .badge {
    font-size: 0.78rem;
  }

  /* 告知ボックス */
  .notice-box-title {
    font-size: 0.95rem;
  }

  /* タイムテーブル: テーブルを非表示、カードを表示 */
  .timetable-scroll {
    display: none;
  }
  .tt-cards {
    display: block;
    margin-bottom: 40px;
  }
  .tt-day-header {
    font-size: 0.95rem;
    padding: 10px 16px;
  }
}




 /* 20260312 */
.os-announcement-box {
  margin: 32px 0 32px;
  padding: 28px 30px;
  background: #fff;
  border: 1px solid #e6ddd2;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.os-announcement-head {
  margin-bottom: 18px;
}

.os-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  color: #9a5b14;
  background: #fff3e4;
  border: 1px solid #f1d2a9;
  border-radius: 999px;
}

.os-announcement-title {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
}
/*
.os-announcement-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.5;
  color: #1f2a37;
}
*/
.os-announcement-body p {
  margin: 0 0 14px;
  line-height: 2;
  color: #333;
}

.os-theme {
  padding: 14px 16px;
  background: #faf7f2;
  border-left: 4px solid #e59b49;
  border-radius: 10px;
}

.os-points {
  margin: 18px 0;
  padding: 18px 20px;
  background: #fcfbf8;
  border: 1px solid #ece4d8;
  border-radius: 14px;
}

.os-points-title {
  margin-bottom: 10px;
  font-weight: 700;
  color: #222;
}

.os-points-list {
  margin: 0;
  padding-left: 1.3em;
}

.os-points-list li {
  margin-bottom: 8px;
  line-height: 1.9;
  color: #333;
}

.os-note {
  margin-top: 18px;
  padding: 16px 18px;
  background: #f8fbff;
  border: 1px solid #d7e6f5;
  border-radius: 14px;
}

.os-note p {
  margin: 0;
}

.os-meta {
  margin: 22px 0 0;
  padding: 0;
  border-top: 1px solid #ece4d8;
}

.os-meta-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #f1ebe2;
}

.os-meta-row dt {
  font-weight: 700;
  color: #555;
}

.os-meta-row dd {
  margin: 0;
  color: #222;
}

@media (max-width: 767.98px) {
  .os-announcement-box {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .os-announcement-title {
    font-size: 1.2rem;
    line-height: 1.6;
  }

  .os-meta-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}


/* =============================================
   タイムテーブル追加調整 260319
   ============================================= */

/* 会場表示 */
.tt-venue-note {
  margin: 0 0 16px;
  padding: 10px 14px;
  background: var(--color-bg-section);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  font-size: 1rem;
  color: var(--color-text-main);
  line-height: 1.6;
}

/* 詳細テキスト */
.session-detail {
  display: block;
  font-size: 0.88rem;
  color: var(--color-text-main);
  margin-top: 6px;
  line-height: 1.7;
  white-space: normal;
}

.session-detail.is-indent {
  padding-left: 1em;
  text-indent: -1em;
}

/* PCテーブル内の長文を見やすく */
.tt-cell .session-name {
  line-height: 1.6;
}

.tt-cell .session-note,
.tt-cell .session-detail {
  word-break: break-word;
}

/* モバイルカード内の詳細 */
.tt-card-detail {
  font-size: 0.86rem;
  color: var(--color-text-main);
  margin: 6px 0 0;
  line-height: 1.7;
}

.tt-card-detail.is-indent {
  padding-left: 1em;
  text-indent: -1em;
}

/* 長文カードは上寄せ */
.tt-card.tt-card--top {
  align-items: flex-start;
}

.tt-card.tt-card--top .tt-card-time {
  align-items: flex-start;
  padding-top: 16px;
}

.tt-card.tt-card--top .tt-card-body {
  justify-content: flex-start;
}

/* モバイルで会場注記を少し詰める */
@media (max-width: 600px) {
  .tt-venue-note {
    font-size: 0.9rem;
    padding: 9px 12px;
    margin-bottom: 12px;
  }

  .tt-card-title {
    line-height: 1.6;
  }

  .tt-card-note,
  .tt-card-detail {
    line-height: 1.7;
  }
}



/* =============================================
   発表に関するご案内 20260319
   ============================================= */

.guideline-grid {
  display: grid;
  gap: 24px;
}

.guide-card {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-xs, 0 1px 4px rgba(0,0,0,.05));
}

.guide-list {
  margin-top: 8px;
}

.guide-list li + li {
  margin-top: 8px;
}

.guide-subbox {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: var(--color-bg-section);
  border: 1px solid var(--color-border-light);
}

.guide-subbox--orange {
  background: #FFF8F1;
  border-color: rgba(230, 126, 34, 0.25);
}

.guide-subbox--green {
  background: #F3FBF6;
  border-color: rgba(46, 125, 50, 0.22);
}

.guide-subtitle {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin: 0 0 10px;
}

.guide-mini-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin: 14px 0 10px;
}

.guide-badge-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.guide-note {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.guide-link {
  margin: 12px 0 0;
}

.guide-link a {
  font-weight: 700;
  word-break: break-all;
}

.guide-example {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--color-text-body);
}

.guide-example p + p {
  margin-top: 12px;
}

.guide-notice {
  margin-top: 6px;
}

@media (max-width: 600px) {
  .guide-card {
    padding: 18px 16px;
  }

  .guide-subbox {
    padding: 14px 14px;
  }

  .guide-subtitle {
    font-size: 0.94rem;
  }

  .guide-example {
    font-size: 0.92rem;
    line-height: 1.85;
  }

  .guide-note {
    font-size: 0.85rem;
  }
}


