@charset "utf-8";

/* ==========================================================================
   下層ページ共通 — ヘッダー / ページタイトル
   ========================================================================== */

/* ヘッダーは全ページ共通（style.css の .site-header）。
   以前あった下層ページ専用の .site-header--sub は廃止しました。 */

/* --------------------------------------------------------------------------
   ページタイトル帯
   -------------------------------------------------------------------------- */

.page-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 20px;
  text-align: center;
  background: var(--color-primary);
}

.page-hero__title {
  font-family: var(--font-jp);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-secondary);
}

/* リード文や区切り線を持たないページでは、タイトル下に短いバーを添える */
.page-hero__title:only-child::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 2px;
  background: var(--color-secondary);
  opacity: 0.9;
}

.page-hero__divider {
  width: 11%;
  height: 0;
  margin: 15px auto;
  border: 0;
  border-top: 1px solid var(--color-secondary);
}

.page-hero__lead {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-secondary);
}

@media (max-width: 1024px) {
  .page-hero {
    min-height: 150px;
  }

  .page-hero__title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .page-hero {
    min-height: 100px;
  }

  .page-hero__title {
    font-size: 25px;
  }
}

/* ==========================================================================
   会社案内 — MESSAGE
   ========================================================================== */

.message-section {
  display: flex;
  align-items: center;
  max-width: 1140px; /* オリジナルの Elementor コンテナ幅に合わせる */
  margin: 80px auto;
  padding: 0 20px;
}

.message-content {
  flex: 1;
  padding-right: 40px;
}

.message-content h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.message-content p {
  font-size: 15px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 18px;
}

.message-author {
  font-weight: bold;
  font-size: 18px;
  margin-top: 25px;
}

.message-image {
  flex: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.message-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
  .message-section {
    flex-direction: column;
    text-align: center;
  }

  .message-content {
    padding-right: 0;
  }

  .message-image img {
    max-width: 60%;
  }
}

/* 会社案内のセクション背景（オリジナルの Elementor コンテナ相当） */
/* flow-root で .message-section の上下マージンをセクション内に閉じ込める */
.section-white {
  display: flow-root;
  background: #fff;
}

/* ==========================================================================
   会社案内 — 会社概要
   ========================================================================== */

.company-profile {
  padding: var(--space-section) 20px;
  background: #f5f7fa;
}

.company-profile__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.company-profile__title {
  margin-bottom: 40px;
  padding-left: 12px;
  border-left: 5px solid #f18200;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 1.2px;
  color: #2a2a2a;
}

.company-profile__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.company-profile__table th,
.company-profile__table td {
  padding: 14px 16px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.company-profile__table th {
  width: 30%;
  text-align: left;
  border-radius: 8px 0 0 8px;
}

.company-profile__table td {
  border-radius: 0 8px 8px 0;
}

@media (max-width: 767px) {
  .company-profile {
    padding: 40px 15px;
  }

  .company-profile__title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .company-profile__table,
  .company-profile__table tbody,
  .company-profile__table tr {
    display: block;
  }

  .company-profile__table tr {
    margin-bottom: 10px;
  }

  .company-profile__table th,
  .company-profile__table td {
    display: block;
    width: auto;
  }

  .company-profile__table th {
    border-radius: 8px 8px 0 0;
    box-shadow: none;
    font-size: 14px;
    color: #666;
    padding-bottom: 0;
  }

  .company-profile__table td {
    border-radius: 0 0 8px 8px;
  }
}

/* ==========================================================================
   研修一覧
   ========================================================================== */

/* オリジナルは Elementor の 1140px コンテナ内に置かれているため、そこに合わせる */
.section-block {
  max-width: 1140px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: white;
  box-shadow: var(--shadow-card);
  border-radius: 12px;
}

.training-section {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #f9f9f9;
  border-radius: 10px;
}

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

.training-section h2 {
  color: #e66528;
  border-bottom: 2px solid #e66528;
  padding-bottom: 0.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-size: 1.5rem;
}

.training-section h3 {
  margin: 1.5rem 0 1.2rem 0;
  color: #333;
  font-weight: 600;
  font-size: 1.2rem;
}

.training-section h3:first-of-type {
  margin-top: 0;
}

.training-section h3 a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.training-section h3 a:hover {
  color: #e66528;
}

.training-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  list-style-type: none;
  margin-bottom: 1rem;
}

.training-list li {
  background-color: white;
  padding: 1rem;
  border-left: 4px solid #e66528;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  font-weight: 400;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.training-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

@media screen and (max-width: 768px) {
  .section-block {
    margin: 1rem;
    padding: 1rem;
    border-radius: 8px;
  }

  .training-section {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }

  .training-section h2 {
    font-size: 1.3rem;
    padding-bottom: 0.5rem;
  }

  .training-section h3 {
    font-size: 1.1rem;
    margin: 1.2rem 0 1rem 0;
  }

  .training-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .training-list li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
}

/* ==========================================================================
   通信制 — 導入（通信制講座について / 受講要項）
   --------------------------------------------------------------------------
   3つの講座・受講の仕組み・資料ダウンロードは sections.css の
   .wp-block-ai-courses / .wp-block-ai-method をそのまま使っています。
   ここはページ冒頭の導入部だけのスタイルです。
   ========================================================================== */

.tuushin-intro {
  padding: var(--space-section) 20px;
  background: #fff;
}

.tuushin-intro__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.tuushin-intro__title {
  margin-bottom: 24px;
  padding-left: 12px;
  border-left: 5px solid var(--color-primary);
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 1.2px;
  color: #2a2a2a;
}

.tuushin-intro__lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #555;
}

/* 3つの特徴 */
.tuushin-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.tuushin-point {
  padding: 28px 24px;
  background: #f8f9fa;
  border-radius: 14px;
  box-shadow: var(--shadow-card);
}

.tuushin-point__icon {
  line-height: 1;
  margin-bottom: 12px;
}

.tuushin-point__icon .icon {
  width: 36px;
  height: 36px;
  color: var(--color-orange);
}

.tuushin-point__title {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-orange);
}

.tuushin-point__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.8;
  color: #555;
}

/* 受講要項 */
.tuushin-summary__title {
  margin: 56px 0 20px;
  padding-left: 12px;
  border-left: 5px solid var(--color-primary);
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1.2px;
  color: #2a2a2a;
}

.tuushin-summary {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}

.tuushin-summary th,
.tuushin-summary td {
  padding: 14px 16px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.tuushin-summary th {
  width: 28%;
  text-align: left;
  border-radius: 8px 0 0 8px;
  white-space: nowrap;
}

.tuushin-summary td {
  border-radius: 0 8px 8px 0;
}

.tuushin-summary__hours {
  font-weight: 700;
  color: var(--color-orange);
}

@media (max-width: 1024px) {
  .tuushin-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .tuushin-intro {
    padding: 40px 15px;
  }

  .tuushin-intro__title {
    font-size: 24px;
  }

  .tuushin-summary__title {
    margin-top: 40px;
    font-size: 20px;
  }

  .tuushin-summary,
  .tuushin-summary tbody,
  .tuushin-summary tr {
    display: block;
  }

  .tuushin-summary tr {
    margin-bottom: 10px;
  }

  .tuushin-summary th,
  .tuushin-summary td {
    display: block;
    width: auto;
  }

  .tuushin-summary th {
    border-radius: 8px 8px 0 0;
    box-shadow: none;
    font-size: 14px;
    color: #666;
    padding-bottom: 0;
    white-space: normal;
  }

  .tuushin-summary td {
    border-radius: 0 0 8px 8px;
  }
}

/* ==========================================================================
   講師一覧
   ========================================================================== */

.igo-corp-teachers {
  padding: var(--space-section) 20px;
}

.igo-corp-teachers h3,
.igo-corp-teachers h4 {
  color: #222;
  line-height: 1.3;
}

.igo-corp-teachers .teacher-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.igo-corp-teachers .teacher-card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  overflow: visible; /* 画像をカード外にはみ出させる */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.igo-corp-teachers .teacher-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.igo-corp-teachers .card-header {
  background: #2c3e50;
  height: 120px;
  border-radius: 16px 16px 0 0;
}

.igo-corp-teachers .card-body {
  padding: 1.5rem;
  padding-top: 80px; /* 重なる写真のぶんの余白 */
}

/* 円形プロフィール写真 */
.igo-corp-teachers .card-profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.igo-corp-teachers .teacher-info {
  text-align: center;
  margin-bottom: 1.5rem;
}

.igo-corp-teachers .teacher-info h3 {
  font-size: 1.8rem;
  margin: 0;
}

.igo-corp-teachers .teacher-info .name-en {
  font-size: 1rem;
  color: #777;
  margin-bottom: 0.5rem;
}

.igo-corp-teachers .teacher-info .qualifications {
  font-size: 0.9rem;
  color: #555;
  font-weight: 500;
}

.igo-corp-teachers .teacher-details p {
  font-size: 0.95rem;
}

.igo-corp-teachers .teacher-details h4 {
  font-size: 1.1rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.3rem;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.igo-corp-teachers .teacher-details ul {
  list-style-type: none;
  padding-left: 0;
  font-size: 0.9rem;
}

.igo-corp-teachers .teacher-details ul li {
  margin-bottom: 0.4rem;
  padding-left: 1.2em;
  position: relative;
}

.igo-corp-teachers .teacher-details ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #007bff;
  font-weight: bold;
}

@media (max-width: 768px) {
  .igo-corp-teachers .teacher-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   人事評価制度
   ========================================================================== */

.hr-page {
  max-width: 1180px; /* コンテンツ幅 1140px ＋ 左右余白 20px */
  margin-inline: auto;
  padding: 40px 20px;
}

.hr-page .highlight {
  font-weight: 700;
  color: #e66528;
}

.partner-section {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 40px;
  margin-bottom: 40px;
}

.partner-intro {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.partner-logo {
  flex: 0 0 200px;
  text-align: center;
  margin-right: 30px;
}

.partner-logo img {
  max-width: 100%;
  height: auto;
}

.partner-description {
  flex: 1;
}

.partner-description p + p {
  margin-top: 1em;
}

.stats-box {
  background-color: #0066cc;
  color: #fff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  margin: 30px 0 0;
}

.stats-number {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 5px;
}

.stats-number span {
  font-size: 24px;
}

.challenges-section {
  background-color: #eaeef2;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
}

.challenges-section h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.challenges-list {
  margin: 20px 0;
}

.challenge-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.challenge-icon {
  flex: 0 0 50px;
  height: 50px;
  background-color: #e66528;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}

.seminar-cta {
  background-color: #0066cc;
  color: #fff;
  border-radius: 10px;
  padding: 40px;
  text-align: center;
}

.seminar-title {
  font-size: 24px;
  margin-bottom: 20px;
}

.seminar-cta .btn {
  display: inline-block;
  background-color: #e66528;
  color: #fff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.seminar-cta .btn:hover,
.seminar-cta .btn:focus-visible {
  background-color: #e68a00;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.seminar-cta .note {
  font-size: 14px;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .partner-section {
    padding: 24px;
  }

  .partner-intro {
    flex-direction: column;
    text-align: center;
  }

  .partner-logo {
    margin-right: 0;
    margin-bottom: 20px;
    flex: 0 0 65px;
  }

  .seminar-cta {
    padding: 24px;
  }
}

/* ==========================================================================
   お問い合わせフォーム
   ========================================================================== */

.contact-section {
  padding: var(--space-section) 20px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-form label {
  font-weight: bold;
  display: block;
  margin-top: 10px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
  font-size: 16px;
  background: #fff;
  color: inherit;
}

.contact-form textarea {
  height: 120px;
  resize: vertical;
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
  border-color: var(--color-primary);
}

/* 未入力・形式エラーの表示（送信を試みたあとのみ） */
.contact-form.is-validated input:invalid,
.contact-form.is-validated select:invalid,
.contact-form.is-validated textarea:invalid {
  border-color: #d33;
}

.contact-form__submit {
  background: #0073e6;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 15px;
  width: 100%;
  transition: background 0.25s ease;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
  background: #005bb5;
}

.contact-form__response {
  margin-top: 16px;
  padding: 12px 14px;
  border: 2px solid #d33;
  border-radius: 5px;
  font-size: 14px;
  line-height: 1.7;
}

.contact-form__response:empty {
  display: none;
}

/* ==========================================================================
   eラーニング研修（elearning.html）
   --------------------------------------------------------------------------
   6コースをステップ順に並べたカード。研修一覧セクションからは
   elearning.html#basic のようにコース単位のアンカーで着地します。
   ========================================================================== */

.elearning {
  padding: var(--space-section) 20px;
  background: #f8f9fa;
}

.elearning__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.elearning__title {
  margin-bottom: 20px;
  padding-left: 12px;
  border-left: 5px solid var(--color-primary);
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 1.2px;
  color: #2a2a2a;
}

.elearning__lead {
  margin: 0 0 44px;
  font-size: 15px;
  line-height: 1.9;
  color: #555;
}

.elearning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.elearning-card {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  background: #fff;
  border-radius: 14px;
  border-top: 4px solid var(--color-orange);
  box-shadow: var(--shadow-card);
  /* 固定ヘッダーに隠れずに着地させる */
  scroll-margin-top: 120px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.elearning-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

/* アンカーで飛んできたカードを一時的に強調する */
.elearning-card:target {
  border-top-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(230, 101, 40, 0.35), var(--shadow-card-hover);
}

.elearning-card__step {
  margin: 0 0 10px;
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--color-orange);
}

.elearning-card__title {
  margin: 0 0 auto;
  padding-bottom: 18px;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.6;
  color: #222831;
}

.elearning-card__meta {
  margin: 0 0 14px;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: #8a949a;
}

.elearning-card__dl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 6px;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.25s ease;
}

.elearning-card__dl .icon {
  width: 16px;
  height: 16px;
  flex: none;
}

.elearning-card__dl:hover,
.elearning-card__dl:focus-visible {
  background: #c9541b;
}

.elearning__note {
  margin: 32px 0 0;
  font-size: 0.85rem;
  color: #777;
}

@media (max-width: 1024px) {
  .elearning-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .elearning__title {
    font-size: 24px;
  }

  .elearning-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* ==========================================================================
   営業・マーケティング研修（sales-marketing.html）
   --------------------------------------------------------------------------
   1件あたりの情報量が多いため、横長のカードを縦に積む構成にしています。
   研修一覧からは sales-marketing.html#inside-sales のように着地します。
   ========================================================================== */

.program {
  padding: var(--space-section) 20px;
  background: #f8f9fa;
}

.program__inner {
  max-width: 900px;
  margin: 0 auto;
}

.program__title {
  margin-bottom: 20px;
  padding-left: 12px;
  border-left: 5px solid var(--color-primary);
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 1.2px;
  color: #2a2a2a;
}

.program__lead {
  margin: 0 0 44px;
  font-size: 15px;
  line-height: 1.9;
  color: #555;
}

.program-card {
  padding: 36px 34px;
  background: #fff;
  border-radius: 16px;
  border-top: 4px solid var(--color-orange);
  box-shadow: var(--shadow-card);
  scroll-margin-top: 120px;
}

.program-card + .program-card {
  margin-top: 32px;
}

/* アンカーで飛んできたカードを一時的に強調する */
.program-card:target {
  border-top-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(230, 101, 40, 0.35), var(--shadow-card-hover);
}

.program-card__head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid #eceff1;
}

.program-card__icon {
  flex: none;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fdeee4;
}

.program-card__icon .icon {
  width: 26px;
  height: 26px;
  color: var(--color-orange);
}

.program-card__label {
  margin: 0 0 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-orange);
}

.program-card__title {
  margin: 0 0 8px;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.5;
  color: #222831;
}

.program-card__catch {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #555;
}

.program-card__desc {
  margin: 0 0 24px;
  font-size: 0.95rem;
  line-height: 1.95;
  color: #444;
}

.program-card__desc strong {
  color: var(--color-orange);
}

/* 仕様（時間・カリキュラム など） */
.program-card__spec {
  margin: 0 0 24px;
  display: grid;
  gap: 10px;
}

.program-card__spec > div {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
  line-height: 1.8;
}

.program-card__spec dt {
  flex: 0 0 7.5em;
  font-weight: 700;
  color: #8a949a;
}

.program-card__spec dd {
  margin: 0;
  color: #444;
}

.program-card__for {
  margin: 0 0 28px;
  padding: 18px 20px;
  background: #f8f9fa;
  border-radius: 10px;
  font-size: 0.88rem;
  line-height: 1.9;
  color: #555;
}

.program-card__for strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.92rem;
  color: #222831;
}

.program-card__dl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px 20px;
  border-radius: 8px;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.25s ease;
}

.program-card__dl .icon {
  width: 18px;
  height: 18px;
  flex: none;
}

.program-card__dl:hover,
.program-card__dl:focus-visible {
  background: #c9541b;
}

.program__note {
  margin: 32px 0 0;
  font-size: 0.85rem;
  line-height: 1.9;
  color: #777;
}

.program__note a {
  color: var(--color-primary);
  font-weight: 600;
}

@media (max-width: 767px) {
  .program__title {
    font-size: 24px;
  }

  .program-card {
    padding: 26px 20px;
  }

  .program-card__head {
    flex-direction: column;
    gap: 14px;
  }

  .program-card__title {
    font-size: 1.15rem;
  }

  .program-card__spec > div {
    flex-direction: column;
    gap: 0;
  }

  .program-card__spec dt {
    flex: none;
  }
}
