/* ==============================
   Lecturer Page（Figma 4:883）
   認定講師になりたい方へ
   ============================== */

/* ページ全体: ライトティール背景 */
.lecturer-page {
  background-color: var(--color-bg-teal);
  padding: 80px var(--container-pad-sp) 120px;
}

@media (min-width: 768px) {
  .lecturer-page {
    padding: 100px var(--container-pad-pc) 160px;
  }
}

/* 白カード */
.lecturer-page__card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 48px var(--container-pad-sp);
  max-width: 1280px;
  margin-inline: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

@media (min-width: 768px) {
  .lecturer-page__card {
    padding: 64px;
    gap: 60px;
  }
}

/* ページタイトル（タイトル＋右側アイコン） */
.lecturer-page__title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: var(--text-xl);
}

@media (min-width: 768px) {
  .lecturer-page__title-wrap {
    font-size: 40px;
  }
}

.lecturer-page__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1em;
  color: var(--color-secondary);
  text-align: center;
  line-height: 1.3;
}

.lecturer-page__title-deco {
  height: 1em;
  width: auto;
  flex-shrink: 0;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .lecturer-page__title {
    font-size: 1em;
  }
}


/* ==============================
   共通セクション
   ============================== */
.lc-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* セクションヘッダー */
.lc-section__header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lc-section__heading-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lc-section__icon {
  flex-shrink: 0;
  display: inline-block;
  width: 48px;
  height: 40px;
  background-color: var(--color-secondary);
  mask: url(../img/icon-kisya.svg) no-repeat center;
  mask-size: contain;
  -webkit-mask: url(../img/icon-kisya.svg) no-repeat center;
  -webkit-mask-size: contain;
}

@media (min-width: 768px) {
  .lc-section__icon {
    width: 60px;
    height: 47px;
  }
}

.lc-section__heading {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: var(--text-md);
  color: var(--color-text);
  letter-spacing: 0.05em;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .lc-section__heading {
    font-size: var(--text-xl);
    white-space: nowrap;
  }
}

/* 水平区切り線 */
.lc-section__divider {
  border: none;
  height: 2px;
  background: var(--color-secondary);
  width: 100%;
}


/* ==============================
   セクションボディ
   ============================== */
.lc-section__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* テキスト + 画像 横並びバリアント */
.lc-section__body--with-images {
  flex-direction: column;
}

@media (min-width: 768px) {
  .lc-section__body--with-images {
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
  }
}

/* テキストエリア */
.lc-section__text {
  flex: 1;
  font-size: var(--text-md);
  color: var(--color-text);
  line-height: 1.8;
  min-width: 0;
}

.lc-section__text p {
  margin-bottom: 1em;
}

.lc-section__text p:last-child {
  margin-bottom: 0;
}

/* 画像カラム */
.lc-section__images {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lc-section__img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--color-placeholder);
  border-radius: var(--radius-md);
  overflow: hidden;
}

@media (min-width: 768px) {
  .lc-section__img-wrap {
    width: 250px;
    height: 187px;
    aspect-ratio: unset;
  }
}

.lc-section__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ==============================
   箇条書きリスト
   ============================== */
.lc-list {
  list-style: disc;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: var(--text-md);
  color: var(--color-text);
  line-height: 1.8;
}


/* ==============================
   スケジュール表画像
   ============================== */
.lc-schedule-table {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.lc-schedule-table__img {
  width: 100%;
  height: auto;
  display: block;
}


/* ==============================
   CTAボタン行
   ============================== */
.lc-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}


/* ==============================
   YouTube プレースホルダー
   ============================== */
.lc-youtube {
  background: var(--color-placeholder);
  border-radius: var(--radius-md);
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lc-youtube iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


/* ==============================
   点線囲みのCTAボックス
   ============================== */
.lc-cta-box {
  border: 2px dashed var(--color-secondary);
  border-radius: var(--radius-md);
  background: rgba(100, 185, 188, 0.10);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.lc-cta-box__title {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--color-secondary);
  line-height: 1.8;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .lc-cta-box__title {
    font-size: var(--text-lg);
    white-space: nowrap;
  }
}

.lc-cta-box__sub {
  font-size: var(--text-md);
  color: var(--color-text);
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.lc-cta-box__sub p {
  margin: 0;
}


/* ==============================
   日程エントリ
   ============================== */
.lc-schedule-entry {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lc-section__body > .lc-schedule-entry + .lc-schedule-entry {
  padding-top: 16px;
}

.lc-schedule-entry__title {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .lc-schedule-entry__title {
    font-size: var(--text-lg);
  }
}

.lc-schedule-entry__detail {
  font-size: var(--text-md);
  color: var(--color-text);
  line-height: 1.8;
  margin: 0;
}

/* 注意テキスト（赤） */
.lc-schedule-entry__note {
  font-weight: 700;
  color: #f66d6d;
}

/* ティール色バリアント */
.lc-schedule-entry__note--teal {
  color: var(--color-secondary);
}
