@charset "UTF-8";
/* CSS Document */

/* ──────────────── グローバル設定 ──────────────── */

/* ページセクション全体の余白調整 */
.line {
  /* 上部余白を抑えて見切れを防止 */
  padding-top: 100px;
  padding-bottom: 25px;
}

/* セクション見出し（タイトル） */
.line__title {
  width: 90%;
  margin: 2rem auto 25px; /* 上2rem、下25px */
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.3;       /* 行間をゆったり */
}

/* QRコード画像 */
.line__qr {
  display: block;
  width: auto;
  max-width: 350px;
  height: auto;
  margin: 0 auto 1rem;
}
@media (max-width: 767px) {
  .line__qr {
    width: 80%;
    max-width: 300px;
  }
}

/* モバイルだけで使う改行制御 */
br.sp { display: none; }
@media (max-width: 767px) {
  br.sp { display: block; }
}

/* 小さめテキスト用 */
.line__smalltext {
  font-size: 1.4rem;
}

/* ──────────────── プロモカード ──────────────── */

/* カード本体 */
.promo-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  max-width: 720px;
  margin: 3rem auto;
}

/* カード冒頭のバッジ風案内文 */
.promo-card__header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.promo-card__note {
  display: inline-block;
  background: #e0f7fa;
  color: #006064;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* カード内コンテンツ全体 */
.promo-card__content {
  padding: 0 1rem;
}

/* カード内セクション見出し */
.promo-card__title {
  font-size: 1.6rem;
  margin: 1.2rem 0 0.6rem;
  font-weight: 700;
  text-align: center;
  color: #333;
  position: relative;
}
.promo-card__title::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2px;
  background: #333;
  margin: 0.4rem auto 0;
}

.promo-card__subtitle {
  font-size: 1.125rem;
  margin-top: 1.5rem; /* increased from default */
  margin-bottom: 0.5rem;
}

/* カード内特典タイトル */
.promo-card__bonus-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem;
  text-align: center;
  color: #333;
  position: relative;
}

.promo-card__bonus-title::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2px;
  background: #333;
  margin: 0.4rem auto 0;
}

.promo-card__qr-text {
  text-align: center;
  font-size: 1.2rem;
  margin: 1rem 0;
  line-height: 1.4;
}

/* カード内リスト共通設定 */
.promo-card__list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}
.promo-card__list li {
  position: relative;
  padding-left: 2.4rem;
  text-indent: -0.6rem;
  margin: 0.8rem 0;
  color: #444;
  line-height: 1.5;
}

/* チェックリスト（✅） */
.promo-card__list--check li::before {
  content: "✅";
  position: absolute;
  left: 0;
  top: 0.1em;
}

/* 矢印リスト（▶️） */
.promo-card__list--arrow li::before {
  content: "▶️";
  position: absolute;
  left: 0;
  top: 0.1em;
}

/* 番号リスト（1. 2.） */
.promo-card__list--number {
  counter-reset: item;
}
.promo-card__list--number li {
  counter-increment: item;
}
.promo-card__list--number li::before {
  content: counter(item) ". ";
  position: absolute;
  left: 0;
  top: 0.1em;
}
/* ───── 講師プロフィールセクション ───── */
.promo-card__instructor {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #ddd;
}

.instructor__name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: left;
}

.instructor__wrapper {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

/* Additional top margin for second instructor */
.promo-card__instructor .instructor__name:nth-of-type(2) {
  margin-top: 2rem;
}

.instructor__photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1rem;  /* push photo down without affecting text */
}

.instructor__bio-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.instructor__bio p {
  color: #555;
  line-height: 1.6;
  font-size: 1rem;
}

/* ─── モバイル専用タイトルサイズ調整 ─── */
@media (max-width: 767px) {
  .line__title {
    margin-top: 3rem;   /* ヘッダーと被らないよう下にスペースを追加 */
    font-size: 1.5rem;  /* スマホでは 1.5rem に下げる */
    line-height: 1.2;   /* 行間も少し詰める */
  }
}
/* Hero wrapper centering */
.hero {
  text-align: center;
  margin-top: 4rem; /* increased top margin to move section further down */
}

/* Seminar block styling */
.seminar-block {
  border: 1px solid #ddd;
  background-color: #f9f9f9;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
}
.seminar-block h2 {
  margin-bottom: 0.75rem;
}
.seminar-block--1 {
  border-left: 4px solid #4caf50;
}
.seminar-block--2 {
  border-left: 4px solid #2196f3;
}

/* Layout grid for recommendation and seminars */
.promo-card__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  text-align: left;
}

/* Ensure a single seminar block uses full width (no right whitespace) */
.promo-card__content .seminar-block{
  grid-column: 1 / -1;
}

/* Center subtitles and lists inside seminar block */
.seminar-block .promo-card__subtitle {
  text-align: center;
}
/* Center each list block itself in the card while keeping list text left-aligned */
.seminar-block .promo-card__list {
  margin-left: auto;
  margin-right: auto;
  width: max-content;
  max-width: 100%;
  text-align: left;
}
/* Remove excess left padding so centered lists don't look offset; keep icons readable */
.seminar-block .promo-card__list li {
  padding-left: 2rem;  /* slightly smaller than default */
  text-indent: 0;
}
/* Ensure the schedule divider aligns centrally */
.seminar-block .schedule-divider {
  margin-left: auto;
  margin-right: auto;
  width: 92%;
}

/* Full-width elements */
.promo-card__content > .promo-card__title:first-of-type,
.promo-card__content > .promo-card__list--check,
.promo-card__content > .promo-card__bonus-title,
.promo-card__content > .promo-card__list--number,
.promo-card__content > .promo-card__instructor {
  grid-column: 1 / -1;
}
/* 登壇者エリア */
.seminar-speakers {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

/* 各スピーカー */
.speaker {
  text-align: center;
  font-size: 0.9rem;
  color: #333;
}

/* スピーカー写真 */
.speaker__photo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 4px rgba(0,0,0,0.1);
  margin-bottom: 0.25rem;
}

/* スピーカー名 */
.speaker__name {
  display: block;
  font-weight: 600;
}

/* スピーカー別カラー */
.speaker--nishi .speaker__photo {
  border-color: #4caf50;
}
.speaker--oda .speaker__photo {
  border-color: #2196f3;
}
/* Hero CTA button */
.hero__cta {
  display: inline-block;
  background-color: #e91e63; /* accent color */
  color: #fff;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  margin-top: 1rem;
  text-decoration: none;
  transition: background-color 0.2s;
}
.hero__cta:hover {
  background-color: #d81b60;
}

/* Recommendation list enhancements */
.promo-card__list--check li {
  font-size: 1.25rem;
  margin: 1rem 0;
}
.promo-card__list--check li::before {
  font-size: 1.2rem;
  left: -0.2rem;
}

/* Schedule divider above 日程 */
.schedule-divider {
  border: 0;
  height: 3px;
  background: #ddd;
  margin: 2rem 0 1rem;
}

.seminar-block--1 .schedule-divider {
  background: #4caf50;
}

.seminar-block--2 .schedule-divider {
  background: #2196f3;
}

/* Ensure arrow lists have the same font size as check lists */
.promo-card__list--arrow li {
  font-size: 1.25rem;
  margin: 1rem 0; /* align vertical spacing */
}

/* Left seminar-block schedule font size */
.seminar-block--1 .promo-card__list li {
  font-size: 1.25rem;
}

/* Right seminar-block schedule font size */
.seminar-block--2 .promo-card__list li {
  font-size: 1.25rem;
}

/* Bottom button styled like top CV button */
.line .button.hero__cta {
  display: inline-block;
  background-color: #e91e63;
  color: #ffffff;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  margin: 1rem auto 0;
  text-decoration: none;
  transition: background-color 0.2s;
}

.line .button.hero__cta:hover {
  background-color: #d81b60;
}
/* QRコードブロック */
.qr-block {
  text-align: center;
  margin-top: 1rem;
}

/* ─────────────── 固定CTAバー（下部追従） ─────────────── */
.bottomFixd{
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 9990;
  font-weight: 700;
  background:#fff;                     /* white band fallback */
  border-top:1px solid #e5e7eb;
  box-shadow:0 -2px 10px rgba(0,0,0,.06);
  padding:12px 8px;                    /* create inner space */
  display:flex;                        /* center inner row */
  justify-content:center;
  align-items:center;
}
/* If .bottom-bar exists, style it; otherwise these rules will apply to .bottomFixd itself via the previous block */
.bottomFixd .bottom-bar{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  background:transparent;
  padding:0;
  text-align:left;
  flex-wrap:nowrap;
  width:100%;
  max-width:980px;
  margin:0 auto;
}
.bottomFixd .bottom-bar > *{ flex: 0 0 auto; }
/* Desktop: create a joined white box between text group and button */
.bottomFixd .join-container{
  display:flex;
  align-items:center;
  gap:12px;
  background:#fff;
  padding:10px 16px;
  border-radius:10px 0 0 10px;
  box-shadow:0 2px 8px rgba(0,0,0,.08);
  flex:0 1 820px;        /* cap width while allowing shrink */
  max-width:820px;
  min-width:0;
}
.bottomFixd .join__top__element{ display:flex; align-items:center; gap:8px; white-space:nowrap; min-width:0; }
/* --- Mid-width desktop: allow wrap to avoid collisions --- */
@media (max-width: 1100px){
  .bottomFixd .join__top__element{
    flex-wrap: wrap;
    row-gap: 4px;
  }
  /* Let the opening date expand to a full row first if needed */
  .bottomFixd .join__top__element p{
    flex: 1 1 100%;
  }
  .bottomFixd .join__top__element .week,
  .bottomFixd .join__top__element time{
    flex: 0 0 auto;
  }
}
.bottomFixd p{
  min-width:0;
  overflow: visible;        /* PCでのテキスト欠けを防止 */
  text-overflow: clip;      /* 省略記号を無効化（PC） */
  flex: 0 1 auto;           /* 収まり優先で縮む */
}
.bottomFixd .link{ border-radius:0 10px 10px 0; }
@media (max-width: 980px){
  .bottomFixd .join-container{ flex-basis: calc(100% - 200px); max-width: calc(100% - 200px); }
}
.bottomFixd .link span,
.bottomFixd .link p {
  vertical-align: middle;
  display: inline-block;
}
.bottomFixd .join__top__small{
  display:inline-block;
  position:relative;
  font-size: 1.3rem;           /* was 1.6rem */
  background:#F6CE00;
  padding: 0 8px;              /* was 0 10px */
  border-radius: 4px;
  margin-right: 8px;
  vertical-align: middle;
}
.bottomFixd .capacity{
  display:block;
  font-size: 1.3rem;    /* 6期と同じ大きさに揃える */
  font-weight: 700;     /* 6期と同じ太さに揃える */
  color:#333;
  margin-top: 4px;      /* バッジの外（下）に配置 */
  line-height:1.2;
  text-align:center;
}
.bottomFixd .urgent-badge{
  display:inline-block;
  background:#d00;
  color:#fff;
  font-size:1.3rem;
  font-weight:700;
  padding:2px 6px;
  margin-right:8px;
  border-radius:4px;
  vertical-align: middle;
}
.bottomFixd p{
  display:inline-block;
  margin: 0 8px 0 0;
  font-size: 2.4rem;
  font-weight: 800;
}
.bottomFixd span{
  font-family: var(--en, inherit);
  font-size: 4rem;
}
.bottomFixd span{
  font-family: var(--en, inherit);
  font-size: 4rem;
}

@media (min-width: 981px){
  .bottomFixd span{ font-size: 3.2rem; }   /* 21/23 の数字をやや縮小 */
  .bottomFixd p{ font-size: 2.2rem; }      /* 「12月1日(月)開校」も僅かに縮小 */
}
@media (max-width: 1100px) and (min-width: 769px){
  .bottomFixd span{ font-size: 3.0rem; }
  .bottomFixd p{ font-size: 2.0rem; }
}
.bottomFixd .week{
  margin-right: 8px;
  font-style: normal;
}
.bottomFixd time{
  color:#000;
}
.bottomFixd .link{
  display:flex;
  align-items:center;
  gap:8px;
  padding:12px 20px;
  background:#FFC107;           /* yellow button to match black-bg design */
  color:#000;                   /* black text */
  text-decoration:none;
  border-radius:4px;
  transition:opacity .2s ease;
  white-space:nowrap;
  font-weight:700;
  flex:0 0 auto;
}
.bottomFixd .link:hover{ opacity:.7; }
.bottomFixd .link img{ width:22px; height:22px; }

/* バーに埋もれないように下余白を確保 */
body{ padding-bottom: 110px; }


@media (max-width: 768px){
  .bottomFixd{
    bottom: env(safe-area-inset-bottom, 0);
    padding:8px 6px;
  }

  /* --- Mobile: make the CTA layout match the current HTML structure --- */
  .bottomFixd{
    display:flex;
    flex-wrap: wrap;                /* allow stacking */
    justify-content: center;
    align-items: center;
  }
  .bottomFixd .join-container{
    width:100%;
    display:flex;
    flex-direction: column;
    align-items:center;
    gap:6px;
  }
  .bottomFixd .join__top__element{
    width:100%;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;         /* center date/time row */
    align-items:center;
    gap:6px;
    text-align:center;
  }
  .bottomFixd .join__top__element .term-wrap{
    display:flex;
    align-items:center;
    gap:6px;
  }
  /* compact type scales for small screens */
  .bottomFixd .join__top__element p{
    margin:0;
    font-size: 1.2rem;
    line-height:1.2;
  }
  .bottomFixd .join__top__element span{ font-size: 1.6rem; }
  .bottomFixd .join__top__element .week,
  .bottomFixd .join__top__element time{
    font-size: 1.0rem;
  }
  /* ensure button sits as the second row and full width (within cap) */
  .bottomFixd .link{
    order: 2;
    width: 92%;
    max-width: 420px;
    margin: 8px auto 0;
    justify-content:center;
  }
  .bottomFixd .bottom-bar{
    gap:6px;
    padding:0;
    flex-wrap:wrap;
    -webkit-overflow-scrolling:touch;
    justify-content:center;
    max-width:100%;
    margin:0;
    text-align:center;
  }
  .bottomFixd p{
    font-size: 1.1rem;
    line-height: 1.1;
    margin: 0 6px 0 0;
    white-space: nowrap; /* prevent unintended wraps */
  }
  /* Scale headline and numbers responsively to fit the viewport */
  .bottomFixd span{
    font-size: clamp(1.1rem, 3.8vw, 1.4rem);
  }
  .bottomFixd .week,
  .bottomFixd time{
    font-size: clamp(0.8rem, 3.2vw, 1.05rem);
  }
  .bottomFixd .join__top__small{
    font-size: 1.0rem;
    padding: 0 5px;
  }
  .bottomFixd .capacity{
    font-size: clamp(0.9rem, 3.2vw, 1.2rem);
    display: inline-block; /* inline to save height */
    margin-top: 0;
    margin-left: 4px;
    text-align: left;
    vertical-align: middle;
  }
  .bottomFixd .urgent-badge{
    font-size: 1.0rem;
    padding: 2px 6px;
  }
  .bottomFixd .link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 420px;
    margin: 6px auto 0;
    padding: 10px 16px;
    background: #FFC107;   /* yellow button */
    color: #000;            /* black text */
    border-radius: 4px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    transition: opacity 0.2s ease;
  }

  .bottomFixd .link:hover {
    opacity: 0.85;
  }

  .bottomFixd .link img {
    width: 18px;
    height: 18px;
    margin-right: 6px;
    filter: none;
  }
  .bottomFixd p, .bottomFixd .week, .bottomFixd time{
    flex: 0 0 auto;      /* keep items natural width on row 1 */
  }

  /* --- Mobile: 2-line layout --- */
  /* Hide badges on mobile to focus on date/time + CTA */
  .bottomFixd .join__top__small,
  .bottomFixd .capacity,
  .bottomFixd .urgent-badge{
    display: none;
  }
  /* First row: date + time centered */
  .bottomFixd p,
  .bottomFixd .week,
  .bottomFixd time{
    order: 1;
    text-align: center;
  }
  /* Second row: CTA full-width centered */
  .bottomFixd .link{
    order: 2;
    flex: 0 0 100%;
    justify-content: center;
    text-align: center;
    margin-top: 4px;
  }

  /* Allow items to shrink within one line to avoid horizontal scroll */
  .bottomFixd .bottom-bar > *{
    flex: 1 1 auto;
    min-width: 0;
  }

  .bottomFixd p,
  .bottomFixd .week,
  .bottomFixd time{
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body{ padding-bottom: 64px; }
}

/* Extra-narrow devices */
@media (max-width: 360px){
  .bottomFixd p{ font-size: 1.2rem; }
  .bottomFixd span{ font-size: 1.6rem; }
  .bottomFixd .link{ padding: 6px 12px; font-size: 1.1rem; }
}
/* =====================
   セミナー：内容／日程 2段組（CSSのみ）
   ===================== */
.seminar-two-column{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  justify-items: center; /* keep blocks centered within columns */
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
/* Columns */
.seminar-two-column .seminar-column{
  width: 100%;
  max-width: 520px;
}
/* keep subtitle centered */
.seminar-two-column .promo-card__subtitle{
  text-align: center;
  margin-top: 0; /* compact when side-by-side */
}
/* lists should use full column width; text left-aligned */
.seminar-two-column .promo-card__list{
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  max-width: 100%;
  text-align: left;
}
/* divider not needed inside 2-column; hide if present */
.seminar-two-column .schedule-divider{ display:none; }
/* Responsive: stack on small screens */
@media (max-width: 768px){
  .seminar-two-column{
    grid-template-columns: 1fr;
    gap: 1.5rem;
    justify-items: stretch;
  }
  .seminar-two-column .seminar-column{ max-width: none; }
}
/* =====================
   セミナー：内容／日程 2段組（HTML変更なし版）
   ===================== */
.seminar-block--1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
  column-gap: 3rem;
  row-gap: 0.75rem;
  align-items: start;
}
/* タイトルは全幅 */
.seminar-block--1 .promo-card__title { grid-column: 1 / -1; }
/* 仕切り線は非表示 */
.seminar-block--1 .schedule-divider { display: none; }
/* 左列：内容 */
.seminar-block--1 .promo-card__subtitle:first-of-type {
  grid-column: 1;
  text-align: center;
  margin-top: 0.5rem;
}
.seminar-block--1 .promo-card__list--arrow {
  grid-column: 1;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0;
  text-align: left;
}
/* 右列：開催日程 */
.seminar-block--1 .promo-card__subtitle:last-of-type {
  grid-column: 2;
  text-align: center;
  margin-top: 0.5rem;
}
.seminar-block--1 .promo-card__list:not(.promo-card__list--arrow) {
  grid-column: 2;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0;
  text-align: left;
}
/* 2段組内のリスト・アイテムのパディングは標準に戻す */
.seminar-block--1 .promo-card__list li {
  padding-left: 2.4rem;
  text-indent: -0.6rem;
}
/* モバイルは1カラムに戻す */
@media (max-width: 768px){
  .seminar-block--1 {
    grid-template-columns: 1fr;
    row-gap: 0.5rem;
  }
  .seminar-block--1 .promo-card__subtitle:first-of-type,
  .seminar-block--1 .promo-card__list--arrow,
  .seminar-block--1 .promo-card__subtitle:last-of-type,
  .seminar-block--1 .promo-card__list:not(.promo-card__list--arrow) {
    grid-column: 1 / -1;
  }
}
/* =====================
   説明会日程：2列グリッド（⑦で折り返し）
   ===================== */
.schedule-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3rem;
  row-gap: 0.5rem;
  align-items: stretch;
  justify-items: stretch;
  width: 100%;
}
.schedule-left, .schedule-right{
  width: 100%;
  background: #fff; /* 白いカード */
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;             /* 角丸 */
  box-shadow: 0 6px 18px rgba(0,0,0,0.06); /* うっすら影 */
  padding: 2rem;                   /* 内側余白 */
  display: flex;                   /* タイトル→本文の縦積み */
  flex-direction: column;
}

/* ── 見出し『内容』『開催日程』を強調（白バック＋アンダーバー）── */
.schedule-left .schedule-title,
.schedule-right .schedule-title,
.schedule-left .promo-card__subtitle:first-child,
.schedule-right .promo-card__subtitle:first-child{
  text-align: center;
  display: inline-block;
  background: #FFC107;
  color: #000;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.6rem;              /* 既存より少し大きく */
  margin: 0 0 1.2rem;             /* 下に余白 */
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.schedule-left .schedule-title::after,
.schedule-right .schedule-title::after,
.schedule-left .promo-card__subtitle:first-child::after,
.schedule-right .promo-card__subtitle:first-child::after{
  content: "";
  position: absolute;
  left: 6px; right: 6px; bottom: -6px;
  height: 3px;
  background: #eaeaea;
  border-radius: 2px;
}

/* リストの上下マージンを最適化 */
.schedule-left .promo-card__list,
.schedule-right .promo-card__list{
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
/* ULの中央寄せ＆max-content指定をこの領域だけ無効化 */
.schedule-grid .promo-card__list{
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left;
}
.schedule-grid .promo-card__list li{
  text-indent: -0.6rem;   /* 既存スタイルと整合 */
  padding-left: 2.4rem;
}
@media (max-width: 768px){
  .schedule-grid{
    grid-template-columns: 1fr;
    row-gap: 1rem;
  }
  .schedule-left, .schedule-right{
    padding: 1.25rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  }
  .schedule-left .schedule-title,
  .schedule-right .schedule-title,
  .schedule-left .promo-card__subtitle:first-child,
  .schedule-right .promo-card__subtitle:first-child{
    font-size: 1.3rem;
    padding: 0.3rem 0.6rem;
    margin-bottom: 0.9rem;
  }
}
/* =====================
   内容リスト：2列グリッド（左3項目／右2項目）
   ===================== */
.content-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 2rem;
  row-gap: 0.5rem;
  align-items: start;
  justify-items: stretch;
  width: 100%;
}
.content-left, .content-right{ width: 100%; }
/* この領域では中央寄せ/max-contentを無効化 */
.content-grid .promo-card__list{
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left;
}
.content-grid .promo-card__list li{
  text-indent: -0.6rem;
  padding-left: 2.4rem;
}
@media (max-width: 768px){
  .content-grid{ grid-template-columns: 1fr; row-gap: 1rem; }
}
/* =====================
   内容アイコン（▶️/✅）を日程①と完全同位置に揃える（左右共通）
   ===================== */
  .content-left .promo-card__list--arrow li::before,
  .content-right .promo-card__list--arrow li::before,
  .content-left .promo-card__list--check li::before,
  .content-right .promo-card__list--check li::before {
    position: absolute;
    left: -0.6rem;   /* 数字①/⑧の開始位置と同一（text-indentと同値） */
    top: 0.1em;
    font-size: 1.2rem;
  }
  .content-left .promo-card__list--arrow li,
  .content-right .promo-card__list--arrow li,
  .content-left .promo-card__list--check li,
  .content-right .promo-card__list--check li {
    position: relative;
    padding-left: 2.4rem; /* 日程リストと同一 */
    text-indent: -0.6rem; /* 数字①の開始位置と一致させる */
    margin: 0.8rem 0;
    line-height: 1.6;
  }
  @media (max-width: 768px) {
    .content-left .promo-card__list--arrow li,
    .content-right .promo-card__list--arrow li,
    .content-left .promo-card__list--check li,
    .content-right .promo-card__list--check li {
      padding-left: 2.4rem;
    }
  }
/* =====================
   内容リストの文字サイズ（「特別講義動画…」と同一に統一）
   ===================== */
/* 左カラム：▶️のリストを本文と同じ 1.25rem に固定 */
/* ▶ アイコンと本文を右にずらし、緑のラインと被らないよう調整 */
.seminar-block--1 .promo-card__list--arrow li {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 700;
  padding-left: 3.2rem; /* デフォルトより広げて右にオフセット */
}
.seminar-block--1 .promo-card__list--arrow li::before {
  font-size: 1.2rem;
  left: 0.4rem; /* 元より右へ移動 */
  top: 0.1em;
}
@media (max-width: 768px){
  .seminar-block--1 > .promo-card__list--arrow li {
    font-size: 1.2rem;  /* モバイルは控えめ */
    line-height: 1.6;
  }
  .seminar-block--1 > .promo-card__list--arrow li::before {
    font-size: 1.05rem;
  }
}

/* =====================
   『内容』『開催日程』見出し（カード内2カラム）を視認性アップ
   ===================== */
.seminar-block--1 .promo-card__subtitle{
  display: inline-block;
  background: #FFC107;
  color: #000;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.35rem;            /* ひと回り大きく */
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.seminar-block--1 .promo-card__subtitle::after{
  content: "";
  position: absolute;
  left: 6px; right: 6px; bottom: -6px;
  height: 3px;
  background: #eaeaea;           /* アンダーバー */
  border-radius: 2px;
}
@media (max-width: 768px){
  .seminar-block--1 .promo-card__subtitle{
    font-size: 1.2rem;
    padding: 0.3rem 0.6rem;
  }
}


.bottomFixd .urgent-badge {
  font-size: 1.8rem; /* ← ここで大きさを調整（例：1.8rem～2.4rem） */
  font-weight: 900;  /* 太字で目立たせる */
  padding: 4px 10px; /* 文字が大きくなった分、内側の余白も広げる */
  line-height: 1.3;
}