/* ================================================================
   株式会社オファーズ TOPページ用CSS
   ホームページ・ビルダーで編集しやすいよう、標準CSSのみ使用しています。
   色を変更する場合は、まず下の「基本色」を変更してください。
   ================================================================ */

:root {
  --navy: #0b2b4a;       /* 濃紺 */
  --blue: #126aa3;       /* 青 */
  --orange: #d86120;     /* 申込みボタン */
  --pale: #f3f7fa;       /* 薄い背景 */
  --text: #3f5363;       /* 本文 */
  --line: #d7e2ea;       /* 枠線 */
  --white: #ffffff;
}

/* Skills training portal: primary course selector */
.training-course-selector {
  margin: 34px 0 42px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid #d7e6e5;
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(43, 155, 154, .13), transparent 38%),
    linear-gradient(145deg, #f7fbfb 0%, #eef7f5 100%);
  box-shadow: 0 20px 48px rgba(14, 68, 73, .09);
}

.training-course-selector-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.legacy-modern .training-course-selector-heading h2 {
  margin: 5px 0 0;
  color: #103f48;
  font-size: clamp(25px, 3vw, 36px);
  letter-spacing: .03em;
}

.training-course-selector-heading > p {
  max-width: 440px;
  margin: 0;
  color: #47676b;
  font-size: 14px;
  line-height: 1.8;
}

.training-course-selector-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.training-course-choice {
  --course-accent: #1769aa;
  position: relative;
  display: flex;
  min-height: 270px;
  padding: 25px 22px 22px;
  overflow: hidden;
  flex-direction: column;
  color: #173f46;
  text-decoration: none;
  border: 1px solid rgba(21, 93, 99, .15);
  border-radius: 22px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 30px rgba(17, 70, 75, .09);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.training-course-choice::before {
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  content: "";
  background: linear-gradient(90deg, var(--course-accent), color-mix(in srgb, var(--course-accent) 45%, white));
}

.training-course-choice::after {
  position: absolute;
  top: -34px;
  right: -34px;
  width: 130px;
  height: 130px;
  content: "";
  border-radius: 50%;
  background: color-mix(in srgb, var(--course-accent) 9%, transparent);
}

.training-course-choice.is-instructor { --course-accent: #16805d; }
.training-course-choice.is-life { --course-accent: #a06419; }

.training-course-overview {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.legacy-content a.training-course-overview {
  color: inherit;
  text-decoration: none;
}

.training-course-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  place-items: center;
  color: #fff;
  border-radius: 14px;
  background: var(--course-accent);
  box-shadow: 0 8px 18px color-mix(in srgb, var(--course-accent) 25%, transparent);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
}

.training-course-copy {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.training-course-copy small {
  min-height: 30px;
  color: var(--course-accent);
  font-size: 9px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: .08em;
}

.training-course-copy strong {
  margin: 8px 0 13px;
  color: #163d45;
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.45;
}

.training-course-copy em {
  color: #5a6f73;
  font-size: 13px;
  font-style: normal;
  line-height: 1.75;
}

.training-course-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
  padding-right: 42px;
}

.legacy-content .training-course-meta a {
  position: relative;
  display: flex;
  min-height: 52px;
  padding: 9px 8px 8px 33px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  border: 0;
  border-radius: 12px;
  background: color-mix(in srgb, var(--course-accent) 68%, #173d46);
  box-shadow: 0 7px 16px rgba(20, 60, 67, .15);
  font-size: 12px;
  line-height: 1.3;
  white-space: nowrap;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.legacy-content .training-course-meta a::before {
  position: absolute;
  left: 10px;
  top: 50%;
  display: grid;
  width: 17px;
  height: 17px;
  content: "";
  transform: translateY(-50%);
  border: 2px solid currentColor;
  border-radius: 4px;
  opacity: .9;
}

.legacy-content .training-course-meta a.is-onsite::after {
  position: absolute;
  left: 13px;
  top: calc(50% - 2px);
  width: 11px;
  height: 2px;
  content: "";
  background: currentColor;
  box-shadow: 0 4px 0 currentColor;
}

.legacy-content .training-course-meta a.is-online {
  background: var(--course-accent);
}

.legacy-content .training-course-meta a.is-online::before {
  border-radius: 50%;
}

.legacy-content .training-course-meta a.is-online::after {
  position: absolute;
  left: 14px;
  top: 50%;
  width: 9px;
  height: 9px;
  content: "";
  transform: translateY(-50%);
  border: 1px solid currentColor;
  border-radius: 50%;
}

.legacy-content .training-course-meta a small {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, .78);
  font-size: 8px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .04em;
}

.legacy-content .training-course-meta a:hover,
.legacy-content .training-course-meta a:focus-visible {
  color: #fff;
  filter: brightness(1.1);
  box-shadow: 0 10px 21px rgba(20, 60, 67, .24);
  transform: translateY(-2px);
}

.training-course-arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--course-accent);
  font-weight: 900;
  text-decoration: none;
  transition: transform .22s ease;
}

.legacy-content a.training-course-arrow,
.legacy-content a.training-course-arrow:hover,
.legacy-content a.training-course-arrow:focus-visible {
  color: #fff;
  text-decoration: none;
}

.training-course-choice:hover,
.training-course-choice:focus-within {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--course-accent) 45%, white);
  box-shadow: 0 20px 42px rgba(17, 70, 75, .16);
}

.training-course-choice:hover .training-course-arrow,
.training-course-choice:focus-within .training-course-arrow { transform: translateX(3px); }

.schedule-registration-notice {
  display: flex;
  margin: 14px 18px 18px;
  padding: 13px 18px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: #713c00;
  border: 1px solid #efc66c;
  border-radius: 13px;
  background: linear-gradient(135deg, #fff9e9, #fff1c8);
  box-shadow: 0 8px 20px rgba(145, 91, 8, .1);
  text-align: center;
}

.schedule-registration-notice[hidden] { display: none !important; }

.schedule-registration-notice small {
  padding: 4px 8px;
  color: #fff;
  border-radius: 999px;
  background: #a96109;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  white-space: nowrap;
}

.schedule-registration-notice strong {
  font-size: clamp(14px, 1.8vw, 18px);
  line-height: 1.5;
}

@media (max-width: 850px) {
  .training-course-selector-heading { align-items: start; flex-direction: column; }
  .training-course-selector-grid { grid-template-columns: 1fr; }
  .training-course-choice { min-height: 0; }
  .training-course-copy small { min-height: 0; }
}

@media (max-width: 520px) {
  .training-course-selector { margin: 24px 0 32px; padding: 20px 15px; border-radius: 20px; }
  .training-course-choice { padding: 22px 18px 19px; border-radius: 17px; }
  .training-course-copy strong { padding-right: 34px; }
  .training-course-meta { padding-right: 0; }
  .training-course-arrow { top: 20px; bottom: auto; }
  .schedule-registration-notice { margin: 12px 10px 15px; padding: 12px; align-items: stretch; flex-direction: column; gap: 8px; }
  .schedule-registration-notice small { align-self: center; }
}

/* 技能実習3講習：オンライン申込み */
.training-online-application-modern {
  --online-ink: #123f48;
  --online-teal: #087d7c;
  --online-blue: #12658c;
  --online-gold: #b27b27;
  color: #405a61;
}

.training-online-application-modern .online-condition-section,
.training-online-application-modern .online-payment-section {
  overflow: hidden;
  border: 1px solid #d8e7e7;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(15, 73, 78, .09);
}

.training-online-application-modern .online-payment-section { margin-top: 34px; }

.training-online-application-modern .online-application-heading {
  padding: clamp(27px, 5vw, 45px);
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 91% 12%, rgba(121, 235, 220, .19), transparent 27%),
    linear-gradient(130deg, #073b4d, #087e7c);
}

.training-online-application-modern .online-application-heading::after {
  content: "";
  width: 180px;
  height: 180px;
  position: absolute;
  right: -92px;
  bottom: -112px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
}

.training-online-application-modern .online-application-heading p {
  margin: 0 0 7px;
  color: #9de8df;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .19em;
}

.legacy-content .training-online-application-modern .online-application-heading h3 {
  margin: 0;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.45;
  text-align: left;
}

.training-online-application-modern .online-application-heading > span {
  display: block;
  margin-top: 10px;
  color: #d8f2ef;
  font-size: .84rem;
}

.training-online-application-modern .online-condition-list {
  margin: 0;
  padding: clamp(22px, 4vw, 38px);
  display: grid;
  gap: 13px;
  counter-reset: online-condition;
  list-style: none;
  background: linear-gradient(145deg, #f4faf9, #fff);
}

.training-online-application-modern .online-condition-list > li {
  margin: 0;
  padding: 21px 22px;
  display: grid;
  grid-template-columns: 45px 1fr;
  align-items: start;
  gap: 17px;
  border: 1px solid #dce9e9;
  border-radius: 16px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 7px 20px rgba(17, 76, 81, .045);
  counter-increment: online-condition;
}

.training-online-application-modern .online-condition-list > li::before {
  content: counter(online-condition, decimal-leading-zero);
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, #0b5869, #079586);
  box-shadow: 0 8px 17px rgba(8, 119, 119, .18);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .05em;
}

.training-online-application-modern .online-condition-list strong {
  display: block;
  color: var(--online-ink);
  font-size: .96rem;
  line-height: 1.7;
}

.training-online-application-modern .online-condition-list p {
  margin: 7px 0 0;
  color: #5f7479;
  font-size: .82rem;
  line-height: 1.85;
}

.training-online-application-modern .online-condition-list p.is-alert {
  color: #a93f32;
  font-weight: 750;
}

.training-online-application-modern .online-document-actions {
  margin-top: 17px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.legacy-content .training-online-application-modern .online-document-actions a {
  min-height: 74px;
  padding: 13px 34px 13px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border: 1px solid #d4e6e7;
  border-radius: 12px;
  color: #214d56;
  background: #f5fbfa;
  font-size: .78rem;
  font-weight: 900;
  text-decoration: none;
}

.training-online-application-modern .online-document-actions small {
  margin-bottom: 4px;
  color: #168585;
  font-size: .53rem;
  letter-spacing: .13em;
}

.training-online-application-modern .online-document-actions span {
  position: absolute;
  right: 14px;
  top: 50%;
  color: #168585;
  transform: translateY(-50%);
}

.training-online-application-modern .online-payment-grid {
  padding: clamp(22px, 4vw, 38px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  background: #f7fafb;
}

.training-online-application-modern .online-payment-card {
  min-width: 0;
  padding: clamp(25px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border-radius: 21px;
  color: #fff;
  box-shadow: 0 16px 34px rgba(7, 53, 68, .16);
}

.training-online-application-modern .online-payment-card.is-bank {
  background: linear-gradient(135deg, #073b50, #087f80);
}

.training-online-application-modern .online-payment-card.is-card {
  background: linear-gradient(135deg, #24395f, #326d9b);
}

.training-online-application-modern .payment-card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 17px;
  color: #fff;
  background: rgba(255, 255, 255, .09);
  font-size: .56rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.training-online-application-modern .online-payment-card > small {
  color: #a9ece6;
  font-size: .59rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.training-online-application-modern .online-payment-card.is-card > small { color: #c9e6ff; }

.legacy-content .training-online-application-modern .online-payment-card h4 {
  margin: 7px 0 0;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: clamp(1.12rem, 2.4vw, 1.5rem);
  text-align: left;
}

.training-online-application-modern .online-payment-card p {
  min-height: 77px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: .84rem;
  line-height: 1.8;
}

.training-online-application-modern .online-payment-card p strong {
  color: #fff;
  font-weight: 900;
}

.training-online-application-modern .bank-transfer-deadline {
  margin: 17px 0 22px;
  padding: 13px 14px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  border: 1px solid rgba(255, 224, 145, .68);
  border-radius: 12px;
  color: #fff8df;
  background: rgba(4, 35, 43, .35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
  font-size: .79rem;
  font-weight: 750;
  line-height: 1.7;
}

.training-online-application-modern .bank-transfer-deadline > strong {
  padding: 3px 8px;
  border-radius: 999px;
  color: #553500;
  background: #ffd979;
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.45;
}

.training-online-application-modern .bank-transfer-deadline-details {
  display: grid;
  gap: 9px;
}

.training-online-application-modern .bank-transfer-deadline-details p {
  min-height: 0;
  margin: 0;
  padding: 10px 12px;
  display: grid;
  gap: 3px;
  border: 1px solid rgba(138, 91, 0, .2);
  border-radius: 10px;
  color: #583c0a;
  background: rgba(255, 255, 255, .68);
  font-size: .78rem;
  line-height: 1.65;
}

.training-online-application-modern .bank-transfer-deadline-details p.is-urgent {
  border-color: #e1a638;
  background: #fff2c7;
}

.training-online-application-modern .bank-transfer-deadline-details b {
  color: #644100;
  font-size: .7rem;
  letter-spacing: .04em;
}

.training-online-application-modern .bank-transfer-deadline-details span {
  display: block;
}

.training-online-application-modern .bank-transfer-deadline-details span strong {
  color: #a4360e;
  font-size: 1rem;
}

.legacy-content .training-online-application-modern .online-payment-card > a {
  margin-top: auto;
  padding: 15px 45px 15px 18px;
  display: block;
  position: relative;
  border-radius: 11px;
  color: #173e48;
  background: #fff;
  box-shadow: 0 9px 21px rgba(0, 0, 0, .12);
  font-size: .82rem;
  font-weight: 900;
  text-decoration: none;
}

.training-online-application-modern .online-payment-card > a span {
  position: absolute;
  right: 18px;
  top: 50%;
  color: #087c7c;
  font-size: 1.15rem;
  transform: translateY(-50%);
}

.training-online-application-modern .paypal-information {
  margin: 0 clamp(22px, 4vw, 38px) clamp(22px, 4vw, 38px);
  padding: clamp(22px, 4vw, 32px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 25px;
  border: 1px solid #d9e2ec;
  border-radius: 18px;
  background: linear-gradient(135deg, #f3f8fe, #fff);
}

.training-online-application-modern .paypal-information small {
  color: #3572a9;
  font-size: .56rem;
  font-weight: 900;
  letter-spacing: .15em;
}

.legacy-content .training-online-application-modern .paypal-information h4 {
  margin: 6px 0 0;
  padding: 0;
  border: 0;
  color: #173f61;
  background: transparent;
  font-size: 1.05rem;
  text-align: left;
}

.training-online-application-modern .paypal-information p {
  margin: 7px 0 0;
  color: #657886;
  font-size: .8rem;
}

.legacy-content .training-online-application-modern .paypal-information div > a {
  margin-top: 12px;
  display: inline-flex;
  gap: 7px;
  color: #1d6397;
  font-size: .76rem;
  font-weight: 900;
  text-decoration: none;
}

.legacy-content .training-online-application-modern a.paypal-official-logo {
  padding: 8px;
  display: block;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(20, 62, 94, .08);
}

.training-online-application-modern .paypal-official-logo img {
  width: 203px;
  max-width: 100%;
  height: auto;
  display: block;
}

.training-online-application-modern a:hover { transform: translateY(-2px); }
.training-online-application-modern a:focus-visible { outline: 3px solid #e4ae4e; outline-offset: 3px; }

td.auto-schedule-closed {
  color: #a13028 !important;
  background: #fff0ed !important;
  font-weight: 900 !important;
  letter-spacing: .05em;
}

@media (max-width: 760px) {
  .training-online-application-modern .online-payment-grid,
  .training-online-application-modern .paypal-information { grid-template-columns: 1fr; }
  .training-online-application-modern .paypal-information { text-align: center; }
  .legacy-content .training-online-application-modern .paypal-information h4 { text-align: center; }
  .training-online-application-modern .paypal-official-logo { justify-self: center; }
}

@media (max-width: 620px) {
  .training-online-application-modern .online-condition-section,
  .training-online-application-modern .online-payment-section { border-radius: 20px; }
  .training-online-application-modern .online-condition-list { padding: 17px; }
  .training-online-application-modern .online-condition-list > li { padding: 18px 16px; grid-template-columns: 38px 1fr; gap: 12px; }
  .training-online-application-modern .online-condition-list > li::before { width: 37px; height: 37px; border-radius: 11px; }
  .training-online-application-modern .online-document-actions { grid-template-columns: 1fr; }
  .training-online-application-modern .online-payment-grid { padding: 17px; }
  .training-online-application-modern .online-payment-card { padding: 25px 20px; border-radius: 17px; }
  .training-online-application-modern .online-payment-card p { min-height: 0; }
  .training-online-application-modern .bank-transfer-deadline { grid-template-columns: 1fr; }
  .training-online-application-modern .bank-transfer-deadline > strong { justify-self: start; }
  .training-online-application-modern .paypal-information { margin: 0 17px 17px; padding: 22px 17px; }
}

/* 技能実習関連ページ：共通ハブナビゲーション */
.training-hub-nav {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
  border: 1px solid #dbe8ea;
  border-radius: 22px;
  background: linear-gradient(145deg, #f5fafb, #fff);
  box-shadow: 0 14px 38px rgba(18, 67, 78, .07);
}

.training-hub-nav a {
  --hub-accent: #137781;
  min-height: 108px;
  padding: 17px 48px 17px 18px;
  display: grid;
  place-items: initial;
  align-content: center;
  position: relative;
  border: 1px solid #dce8ea;
  border-left: 4px solid var(--hub-accent);
  border-radius: 14px;
  color: #294950;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 6px 18px rgba(18, 67, 78, .04);
  line-height: 1.4;
  text-align: left;
}

.training-hub-nav a[data-hub-kind="course"] { --hub-accent: #137781; }
.training-hub-nav a[data-hub-kind="portal"] { --hub-accent: #0b536f; }
.training-hub-nav a[data-hub-kind="guide"] { --hub-accent: #a36a12; }
.training-hub-nav a[data-hub-kind="reference"] { --hub-accent: #496a9b; }

.training-hub-nav a small {
  margin-bottom: 4px;
  color: var(--hub-accent);
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.training-hub-nav a strong {
  color: #173f4b;
  font-size: .98rem;
  font-weight: 900;
}

.training-hub-nav a span {
  margin-top: 4px;
  color: #6b7f84;
  font-size: .74rem;
}

.training-hub-nav a::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: 17px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--hub-accent);
  font-size: 1.15rem;
  transform: translateY(-50%);
}

.training-hub-nav a:hover,
.training-hub-nav a:focus-visible,
.training-hub-nav a[aria-current="page"] {
  border-color: color-mix(in srgb, var(--hub-accent) 48%, #dce8ea);
  background: color-mix(in srgb, var(--hub-accent) 7%, #fff);
  transform: translateY(-2px);
}

.training-hub-nav a[aria-current="page"] {
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--hub-accent) 30%, transparent), 0 8px 22px rgba(18, 67, 78, .07);
}

@media (max-width: 900px) {
  .training-hub-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .training-hub-nav {
    grid-template-columns: 1fr;
    padding: 12px;
    border-radius: 17px;
  }

  .training-hub-nav a {
    min-height: 94px;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--navy); background: var(--white); font-family: "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif; line-height: 1.7; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ヘッダー */
.site-header { min-height: 82px; padding: 10px 3vw; display: flex; align-items: center; gap: 22px; position: sticky; top: 0; z-index: 30; background: rgba(255,255,255,.97); box-shadow: 0 3px 15px rgba(18,48,74,.10); }
.brand { display: flex; align-items: center; gap: 11px; white-space: nowrap; }
.brand img { width: 66px; height: 60px; object-fit: contain; }
.brand span { display: flex; flex-direction: column; font-size: 19px; font-weight: 800; }
.brand small { margin-top: 2px; color: #687c8d; font-size: 9px; }
.global-nav { display: flex; gap: 14px; margin-left: auto; font-size: 13px; font-weight: 700; }
.global-nav a:hover, .global-nav a:focus { color: var(--blue); }
.header-cta, .button-orange { display: inline-flex; justify-content: center; align-items: center; border-radius: 5px; background: var(--orange); color: var(--white); font-weight: 800; }
.header-cta { padding: 14px 20px; }
.menu-toggle, .menu-button { display: none; }
.global-nav a[aria-current="page"] { color: var(--blue); }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 100; padding: 10px 16px; background: var(--navy); color: var(--white); }
.skip-link:focus { top: 10px; }

/* メイン画像 */
.hero { min-height: 590px; display: grid; grid-template-columns: 52% 48%; overflow: hidden; }
.hero-copy { padding: 100px 5vw; position: relative; z-index: 2; }
.hero-kicker, .section-label { color: var(--blue); font-weight: 900; letter-spacing: .13em; }
.hero h1 { margin: 20px 0; font-size: clamp(44px, 5vw, 66px); line-height: 1.3; }
.hero h1 span { color: var(--blue); }
.hero-lead { max-width: 570px; margin: 0 0 30px; color: var(--text); font-size: 18px; line-height: 2; }
.hero-course-links { max-width: 610px; margin: -7px 0 28px; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.hero-course-links .hero-course-link { --hero-course-accent:#126aa3; --hero-course-tint:#edf7fd; min-width:0; min-height:66px; padding:10px 12px; display:grid; grid-template-columns:32px minmax(0,1fr) 16px; align-items:center; gap:9px; border:1px solid #bcd9e9; border-radius:13px; color:#12354d; background:linear-gradient(145deg,#fff,var(--hero-course-tint)); box-shadow:0 8px 20px rgba(11,43,74,.1); text-decoration:none; transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease; }
.hero-course-links .hero-course-link.is-placement { --hero-course-accent:#9b4058; --hero-course-tint:#fff2f5; border-color:#e3c2ca; }
.hero-course-links .hero-course-link.is-training { --hero-course-accent:#397354; --hero-course-tint:#f0f8f3; grid-column:1/-1; border-color:#c5dccf; }
.hero-course-mark { width:32px; height:32px; display:grid; place-items:center; border-radius:9px; color:#fff; background:var(--hero-course-accent); font-family:Arial,sans-serif; font-size:10px; font-weight:900; letter-spacing:.04em; }
.hero-course-link small,.hero-course-link strong { display:block; }
.hero-course-link small { margin-bottom:3px; color:var(--hero-course-accent); font-family:Arial,sans-serif; font-size:8px; font-weight:900; letter-spacing:.1em; }
.hero-course-link strong { color:#12354d; font-size:13px; font-weight:900; line-height:1.45; white-space:nowrap; }
.hero-course-link i { color:var(--hero-course-accent); font-size:15px; font-style:normal; font-weight:900; }
.hero-course-links .hero-course-link:hover,.hero-course-links .hero-course-link:focus-visible { border-color:var(--hero-course-accent); color:#12354d; background:#fff; box-shadow:0 12px 25px rgba(11,43,74,.16); transform:translateY(-3px); }
.button-orange { min-height: 52px; padding: 0 24px; }
.button-orange:hover { background: #b84d14; }
.hero-photo { background: url("hero-classroom.png") center center / cover no-repeat; }

/* 特長 */
.trust-strip { padding: 28px 8vw; display: grid; grid-template-columns: repeat(3,1fr); background: var(--navy); color: var(--white); text-align: center; }
.trust-strip strong { padding: 4px 15px; border-right: 1px solid rgba(255,255,255,.25); }
.trust-strip strong:last-child { border-right: 0; }

/* TOP：実用的な講習選択・申込み導線 */
.quick-application-hub {
  scroll-margin-top: 88px;
  padding: clamp(34px, 5vw, 62px) 8vw;
  color: #fff;
  background: radial-gradient(circle at 8% 0, rgba(30,144,160,.32), transparent 32%), linear-gradient(135deg, #071f35 0%, #0b2b4a 52%, #123f59 100%);
}
.quick-application-heading { display: grid; grid-template-columns: minmax(0,1fr) minmax(260px,.7fr); gap: 12px 40px; align-items: end; max-width: 1240px; margin: 0 auto 26px; }
.quick-application-heading .section-label { grid-column: 1 / -1; margin: 0; color: #68d2dc; }
.quick-application-heading h2 { margin: 0; color: #fff; font-size: clamp(1.65rem,3.1vw,2.55rem); line-height: 1.35; }
.quick-application-heading > p:last-child { margin: 0; color: #d7e8ef; line-height: 1.75; }
.quick-application-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; max-width: 1240px; margin: 0 auto; }
.quick-application-card,
.quick-application-training { position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: 20px; background: rgba(255,255,255,.08); box-shadow: 0 18px 38px rgba(0,0,0,.16); backdrop-filter: blur(8px); }
.quick-application-card { display: grid; grid-template-columns: auto minmax(0,1fr); gap: 6px 16px; padding: 24px; }
.quick-application-number { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: #9ae4ea; font-size: .75rem; font-weight: 900; letter-spacing: .08em; }
.quick-application-card small,
.quick-application-training small { color: #9fc7d6; font-size: .75rem; font-weight: 800; letter-spacing: .08em; }
.quick-application-card h3 { margin: 3px 0 0; color: #fff; font-size: clamp(1.1rem,2vw,1.42rem); }
.quick-application-links { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; margin-top: 14px; }
.quick-application-links a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px; border-radius: 12px; color: #153548; background: #fff; text-decoration: none; transition: transform .2s, box-shadow .2s, background-color .2s; }
.quick-application-links a::after { content: "›"; color: #e5672e; font-size: 1.45rem; line-height: 1; }
.quick-application-links a b { white-space: nowrap; font-size: .95rem; }
.quick-application-links a span { margin-left: auto; color: #58717e; font-size: .76rem; }
.quick-application-links a:hover,
.quick-application-links a:focus-visible { transform: translateY(-2px); background: #f2fbfc; box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.quick-application-training { grid-column: 1 / -1; display: flex; align-items: center; gap: 18px; padding: 20px 24px; color: #fff; text-decoration: none; transition: transform .2s, background-color .2s; }
.quick-application-training > span:last-child { display: grid; grid-template-columns: minmax(190px,.55fr) minmax(360px,1.35fr) auto; grid-template-rows: auto auto; gap: 4px 24px; align-items: center; flex: 1; }
.quick-application-training-content > small { grid-column: 1; grid-row: 1; }
.quick-application-training b { color: #fff; font-size: 1.18rem; }
.quick-application-training-content > b { grid-column: 1; grid-row: 2; }
.quick-application-training-courses { grid-column: 2; grid-row: 1 / 3; display: flex; flex-wrap: wrap; gap: 7px; align-items: center; }
.quick-application-training-courses > span { display: inline-flex; align-items: center; gap: 7px; min-height: 31px; padding: 6px 11px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; color: #f7fcfd; background: rgba(255,255,255,.1); box-shadow: inset 0 1px 0 rgba(255,255,255,.08); font-size: .76rem; font-weight: 850; line-height: 1.35; white-space: nowrap; }
.quick-application-training-courses > span::before { content: ""; width: 7px; height: 7px; flex: 0 0 7px; border-radius: 50%; background: #68b8ed; box-shadow: 0 0 0 3px rgba(104,184,237,.16); }
.quick-application-training-courses > span:nth-child(2)::before { background: #62c895; box-shadow: 0 0 0 3px rgba(98,200,149,.16); }
.quick-application-training-courses > span:nth-child(3)::before { background: #d6ad63; box-shadow: 0 0 0 3px rgba(214,173,99,.16); }
.quick-application-training em { grid-column: 3; grid-row: 1 / 3; justify-self: end; color: #fff; font-size: .84rem; font-style: normal; font-weight: 800; white-space: nowrap; }
.quick-application-training em::after { content: "  →"; color: #8be1e7; }
.quick-application-training:hover,
.quick-application-training:focus-visible { transform: translateY(-2px); background: rgba(255,255,255,.13); }
.common-course-guidance { display: grid; gap: 8px; max-width: 1240px; margin: 20px auto 0; padding: 18px 20px; border: 1px solid rgba(255,255,255,.13); border-radius: 15px; background: rgba(2,19,33,.34); list-style: none; }
.common-course-guidance li { position: relative; margin: 0; padding-left: 22px; color: #dbeaf0; font-size: .86rem; line-height: 1.65; }
.common-course-guidance li::before { content: "✓"; position: absolute; left: 0; color: #70d7de; font-weight: 900; }
.common-course-online-notice { display: block; width: fit-content; max-width: 100%; margin-top: 9px; padding: 8px 12px; border: 1px solid rgba(255,211,116,.5); border-left: 4px solid #f2bb4f; border-radius: 8px; color: #fff3cf; background: rgba(155,91,16,.3); box-shadow: 0 7px 18px rgba(0,0,0,.12); font-size: .82rem; line-height: 1.65; }

/* TOP：全講習のお知らせ */
.home-information { background: #fff; }
.home-information-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 24px; }
.home-information-heading h2 { margin-bottom: 0; }
.home-information-heading > p { max-width: 520px; margin: 0; color: #647782; line-height: 1.7; }
.home-information-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.home-information-list li { display: grid; grid-template-columns: 110px 112px minmax(0,1fr) auto; gap: 14px; align-items: center; padding: 18px 20px; border: 1px solid #dfe9ed; border-radius: 14px; background: #fafdfe; }
.home-information-list time { color: #0e6e79; font-size: .86rem; font-weight: 900; letter-spacing: .03em; }
.home-information-tag { padding: 5px 9px; border-radius: 999px; color: #0d5c78; background: #e2f3fa; font-size: .7rem; font-weight: 900; text-align: center; }
.home-information-tag.is-all { color: #fff; background: linear-gradient(135deg, #0b3853, #126e78); }
.home-information-tag.is-training { color: #23624b; background: #e3f4e9; }
.home-information-tag.is-system { color: #79500f; background: #fff0ce; }
.home-information-list p { margin: 0; color: #304a57; line-height: 1.7; }
.home-information-list a { padding: 8px 12px; border-radius: 999px; color: #0d6973; background: #e7f4f5; font-size: .78rem; font-weight: 850; text-decoration: none; white-space: nowrap; }
.home-information-list a:hover,
.home-information-list a:focus-visible { color: #fff; background: #0d6973; }
.home-information-more { display: flex; width: max-content; max-width: 100%; align-items: center; gap: 10px; margin: 20px 0 0 auto; padding: 12px 19px; border-radius: 999px; color: #fff; background: linear-gradient(135deg,#0d6973,#12818b); box-shadow: 0 10px 22px rgba(13,105,115,.2); font-weight: 850; text-decoration: none; }
.home-information-more::after { content: "›"; font-size: 1.25em; }

/* 全講習お知らせページ：入口 */
.all-course-news-intro { margin: 0 0 28px; padding: clamp(22px,4vw,38px); border: 1px solid #d5e5ea; border-radius: 24px; background: radial-gradient(circle at 100% 0,rgba(40,152,165,.14),transparent 34%), linear-gradient(145deg,#f4fafb,#fff 60%); box-shadow: 0 18px 45px rgba(14,70,82,.08); }
.legacy-modern .all-course-news-intro h2 { margin: 5px 0 10px; padding: 0; border: 0; color: #173f4a; background: none; font-size: clamp(1.5rem,3vw,2.1rem); }
.all-course-news-intro > p:last-of-type { color: #4d6871; line-height: 1.8; }
.all-course-news-intro nav { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.all-course-news-intro nav a { padding: 10px 14px; border: 1px solid #b9dce0; border-radius: 999px; color: #0b6871; background: #fff; font-size: .82rem; font-weight: 850; text-decoration: none; }
.all-course-news-intro nav a:hover,
.all-course-news-intro nav a:focus-visible { color: #fff; background: #0d717b; border-color: #0d717b; }

@media (max-width: 860px) {
  .quick-application-heading { grid-template-columns: 1fr; }
  .quick-application-heading .section-label { grid-column: auto; }
  .quick-application-grid { grid-template-columns: 1fr; }
  .quick-application-training { grid-column: auto; }
  .quick-application-training > span:last-child { grid-template-columns: 1fr; grid-template-rows: auto; gap: 7px; }
  .quick-application-training-content > small,
  .quick-application-training-content > b,
  .quick-application-training-courses,
  .quick-application-training em { grid-column: 1; grid-row: auto; }
  .quick-application-training-courses { margin: 5px 0 2px; }
  .quick-application-training em { justify-self: start; }
  .home-information-heading { align-items: flex-start; flex-direction: column; }
  .home-information-list li { grid-template-columns: 100px minmax(0,1fr); }
  .home-information-list p,
  .home-information-list a { grid-column: 1 / -1; }
  .home-information-list a { width: max-content; }
}

@media (max-width: 560px) {
  .quick-application-hub { padding-inline: 5vw; }
  .quick-application-card { padding: 19px; }
  .quick-application-links { grid-template-columns: 1fr; }
  .quick-application-training { align-items: flex-start; padding: 19px; }
  .quick-application-training-courses { display: grid; width: 100%; }
  .quick-application-training-courses > span { width: 100%; white-space: normal; }
  .home-information-list li { grid-template-columns: 1fr; padding: 16px; }
  .home-information-list p,
  .home-information-list a { grid-column: auto; }
  .home-information-tag { width: max-content; }
  .home-information-more { width: 100%; justify-content: center; }
}

/* 共通セクション */
.section { padding: 90px max(5vw, calc((100vw - 1240px) / 2)); }
.section-pale { background: var(--pale); }
.section-label { margin: 0; font-size: 13px; }
.section h2 { margin: 10px 0; font-size: clamp(30px, 3vw, 44px); }
.section-lead { margin: 0 0 35px; color: var(--text); line-height: 1.8; }

/* 講習カード */
.course-grid { margin-top: 35px; display: grid; grid-template-columns: repeat(4,1fr); gap: 17px; }
.course-card { min-height: 245px; padding: 26px; border: 1px solid var(--line); border-top: 4px solid var(--blue); background: var(--white); box-shadow: 0 8px 25px rgba(11,43,74,.07); transition: transform .2s, box-shadow .2s; }
.course-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(11,43,74,.13); }
.course-card small, .schedule-info small { display: inline-block; padding: 5px 7px; background: #e9f4fb; color: var(--blue); font-weight: 800; }
.course-card h3 { margin: 25px 0 8px; font-size: 20px; }
.course-card p { color: var(--text); font-size: 14px; line-height: 1.8; }
.course-card b { color: var(--orange); font-size: 14px; }
.course-card.future { border-top-color: var(--orange); }

/* 開催日程 */
.schedule-list { display: grid; gap: 10px; }
.sample-notice { margin: 0 0 8px; padding: 12px 15px; border-left: 4px solid var(--orange); background: #fff4e8; color: #70431e; font-size: 13px; font-weight: 700; }
.schedule-card { padding: 18px 22px; display: grid; grid-template-columns: 200px 1fr auto; align-items: center; gap: 20px; border: 1px solid var(--line); background: var(--white); }
.schedule-date { display: flex; flex-direction: column; gap: 6px; padding-right: 20px; border-right: 1px solid var(--line); }
.schedule-date span, .schedule-info p { color: var(--text); font-size: 13px; }
.schedule-info h3 { margin: 7px 0 3px; font-size: 17px; }
.schedule-info p { margin: 0; }
.schedule-info small.online { background: #e7f5ef; color: #126345; }
.schedule-card > a { padding: 12px; color: var(--orange); font-weight: 800; }
.empty-message { padding: 30px; background: var(--white); color: var(--text); text-align: center; }

/* 申込み前の案内 */
.guide-grid { margin-top: 30px; display: grid; grid-template-columns: repeat(5,1fr); gap: 15px; }
.guide-grid a { padding: 26px; border-bottom: 3px solid var(--blue); background: var(--pale); font-weight: 800; }
.guide-grid a:hover { color: var(--blue); }

/* フッター */
.site-footer { padding: 45px 7vw 18px; display: grid; grid-template-columns: 2fr 3fr; gap: 35px; background: var(--navy); color: var(--white); }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 78px; height: 71px; object-fit: contain; }
.footer-brand span { display: flex; flex-direction: column; gap: 5px; }
.footer-brand b { font-size: 17px; }
.footer-brand small, .footer-links { color: #c7d7e2; font-size: 12px; }
.footer-links { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 20px; }
.copyright { grid-column: 1 / -1; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.15); color: #adc1cf; }
.site-footer address { color: #c7d7e2; font-size: 12px; font-style: normal; }

/* 下層ページ */
.page-hero { min-height: 310px; padding: 80px max(6vw, calc((100vw - 1120px) / 2)); display: flex; align-items: center; position: relative; overflow: hidden; background: linear-gradient(115deg, #eef6fb 0%, #f8fbfd 62%, #dcecf6 100%); }
.page-hero::after { content: ""; width: 420px; height: 420px; position: absolute; right: -80px; top: -170px; border: 80px solid rgba(18,106,163,.07); border-radius: 50%; }
.page-hero > div { position: relative; z-index: 1; }
.page-hero h1 { margin: 8px 0 12px; font-size: clamp(34px, 4.3vw, 54px); letter-spacing: .03em; line-height: 1.25; }
.page-hero p:last-child { max-width: 720px; margin: 0; color: var(--text); }
.breadcrumb { max-width: 1120px; margin: 0 auto; padding: 22px 28px 0; display: flex; gap: 10px; color: #6c7f8d; font-size: 13px; }
.breadcrumb a { color: var(--blue); }
.content-shell { max-width: 1120px; margin: 0 auto; padding: 48px 28px 90px; color: var(--text); }
.legacy-content > div, .legacy-content #shop, .legacy-content #order, .legacy-content #item { width: 100%; }
.legacy-content h2, .legacy-content h3, .legacy-content h4 { color: var(--navy); }
.legacy-content h3 { margin: 54px 0 18px; padding: 0 0 13px; border-bottom: 2px solid var(--line); position: relative; font-size: clamp(21px, 2.2vw, 28px); line-height: 1.5; }
.legacy-content h3::after { content: ""; width: 82px; height: 3px; position: absolute; left: 0; bottom: -2px; background: var(--blue); }
.legacy-content h3:first-child { margin-top: 0; }
.faq-accordion { display: grid; gap: 14px; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: 10px; background: var(--white); box-shadow: 0 8px 24px rgba(11,43,74,.06); }
.faq-item summary { min-height: 82px; padding: 22px 72px 22px 26px; position: relative; display: flex; align-items: center; color: var(--navy); font-size: clamp(17px, 2vw, 21px); font-weight: 900; line-height: 1.55; cursor: pointer; list-style: none; transition: color .2s, background-color .2s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "＋"; width: 36px; height: 36px; position: absolute; right: 24px; top: 50%; display: grid; place-items: center; border-radius: 50%; background: var(--pale); color: var(--blue); font-size: 24px; line-height: 1; transform: translateY(-50%); }
.faq-item summary:hover { color: var(--blue); background: var(--pale); }
.faq-item summary:focus-visible { outline: 3px solid rgba(18,106,163,.35); outline-offset: -3px; }
.faq-item[open] summary { color: var(--blue); background: var(--pale); }
.faq-item[open] summary::after { content: "−"; }
.faq-answer { padding: 26px; border-top: 1px solid var(--line); }
.faq-answer > :first-child { margin-top: 0; }
.faq-answer > :last-child { margin-bottom: 0; }
.legacy-content h4 { margin: 28px 0 10px; font-size: 18px; }
.legacy-content p, .legacy-content li, .legacy-content td, .legacy-content th { line-height: 1.9; }
.legacy-content a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.legacy-content a:hover { color: var(--orange); }
.legacy-content img { height: auto; margin: 12px 0; border-radius: 6px; }
.legacy-content hr { height: 1px; margin: 38px 0; border: 0; background: var(--line); }
.legacy-content table { width: 100% !important; margin: 22px 0; border-collapse: collapse; border: 1px solid var(--line); }
.legacy-content th, .legacy-content td { width: auto !important; padding: 13px 15px; border: 1px solid var(--line) !important; background: var(--white) !important; text-align: left; vertical-align: top; }
.legacy-content th { background: var(--pale) !important; color: var(--navy); }
.legacy-content ol { padding-left: 1.6em; }
.legacy-content ul { padding-left: 1.3em; }
.legacy-content #flow ol { padding: 0; list-style: none; counter-reset: flow-step; }
.legacy-content #flow li { margin: 0 0 12px; padding: 18px 18px 18px 64px; position: relative; border: 1px solid var(--line); border-radius: 7px; background: var(--pale); counter-increment: flow-step; }
.legacy-content #flow li::before { content: counter(flow-step); width: 32px; height: 32px; position: absolute; left: 17px; top: 16px; display: grid; place-items: center; border-radius: 50%; background: var(--blue); color: var(--white); font-weight: 800; }
.legacy-content #page-executive, .legacy-content #page-grande { display: inline-block; margin: 0 8px 8px 0; padding: 10px 15px; border: 1px solid var(--line); border-radius: 5px; background: var(--pale); }
.legacy-content #hpb-executive, .legacy-content #hpb-grande { text-align: center; }
.legacy-content #hpb-executive h3::after, .legacy-content #hpb-grande h3::after { left: 50%; transform: translateX(-50%); }
.legacy-content #hpb-executive img, .legacy-content #hpb-grande img { display: block; margin-left: auto; margin-right: auto; }
.legacy-content object, .legacy-content embed, .legacy-content video { max-width: 100%; }
.legacy-content [align="center"] { max-width: 100%; }
.legacy-content font[color="#ff0000"], .legacy-content [style*="color : red"], .legacy-content [style*="color: red"] { color: #b64118 !important; }
.legacy-content font[color="#0000ff"] { color: #125f99 !important; }
.page-actions { margin-top: 70px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; border-top: 1px solid var(--line); }
.page-actions a { font-weight: 800; text-decoration: none; }
.sitemap-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.legacy-content .sitemap-grid > a { min-height: 112px; padding: 22px; display: flex; flex-direction: column; justify-content: center; border: 1px solid var(--line); border-top: 3px solid var(--blue); border-radius: 6px; background: var(--white); text-decoration: none; box-shadow: 0 7px 20px rgba(11,43,74,.05); }
.legacy-content .sitemap-grid b { color: var(--navy); font-size: 17px; }
.legacy-content .sitemap-grid span { margin-top: 5px; color: var(--text); font-size: 13px; }
.related-pages { margin-top: 70px; padding: 34px; border-radius: 8px; background: var(--pale); }
.related-pages h2 { margin: 5px 0 22px; font-size: clamp(22px, 2.4vw, 30px); }
.related-pages > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.legacy-content .related-pages a { min-height: 120px; padding: 20px; display: flex; flex-direction: column; justify-content: center; border: 1px solid var(--line); border-top: 3px solid var(--blue); border-radius: 6px; background: var(--white); text-decoration: none; }
.legacy-content .related-pages b { color: var(--navy); font-size: 17px; }
.legacy-content .related-pages span { margin-top: 5px; color: var(--text); font-size: 13px; }

/* 講習別サイト */
.course-page-hero { background: linear-gradient(115deg, #eef6fb 0%, #f8fbfd 58%, #e6f0f6 100%); }
.venue-hero { min-height: 240px; background: linear-gradient(115deg, #f3f7fa 0%, #ffffff 65%, #e8f1f6 100%); }
.course-content { overflow-wrap: anywhere; }
.course-content iframe, .course-content object, .course-content embed { max-width: 100%; }
.course-content input:not([type="checkbox"]):not([type="radio"]), .course-content textarea, .course-content select { max-width: 100%; padding: 10px 12px; border: 1px solid var(--line); border-radius: 5px; background: var(--white); font: inherit; }
.course-content input[type="submit"], .course-content input[type="button"], .course-content button { padding: 11px 18px; border: 0; border-radius: 5px; background: var(--blue); color: var(--white); font: inherit; font-weight: 800; cursor: pointer; }
.course-content .more a, .course-content a[class*="button"] { display: inline-flex; padding: 11px 18px; border-radius: 5px; background: var(--blue); color: var(--white); font-weight: 800; text-decoration: none; }
.course-content .attention { padding: 24px; border: 1px solid #efc7b2; border-left: 5px solid var(--orange); border-radius: 6px; background: #fff8f3; }
.course-content .attention ul { margin-block: 20px; }
.course-content .content-alert-title { margin: 0 0 22px; padding: 18px; border: 1px solid #efc7b2; border-radius: 6px; background: #fff8f3; color: var(--navy); font-size: clamp(24px, 3vw, 38px); text-align: center; }
.course-directory { margin-top: 70px; padding: 34px; border-radius: 8px; background: var(--pale); }
.course-directory h2 { margin: 5px 0 22px; color: var(--navy); font-size: clamp(22px, 2.4vw, 30px); }
.course-directory > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.legacy-content .course-directory a { min-height: 112px; padding: 20px; display: flex; flex-direction: column; justify-content: center; border: 1px solid var(--line); border-top: 3px solid var(--blue); border-radius: 6px; background: var(--white); text-decoration: none; box-shadow: 0 7px 20px rgba(11,43,74,.05); }
.legacy-content .course-directory a[aria-current="page"] { border-top-color: var(--orange); background: #fff8f3; }
.legacy-content .course-directory b { color: var(--navy); font-size: 16px; }
.legacy-content .course-directory span { margin-top: 4px; color: var(--text); font-size: 12px; }
.venue-back { margin-top: 65px; padding: 32px; border-radius: 8px; background: var(--pale); text-align: center; }
.venue-back h2 { margin: 5px 0 22px; color: var(--navy); font-size: clamp(22px, 2.4vw, 30px); }
.legacy-content .venue-back .button-orange { color: var(--white); text-decoration: none; }
.legacy-content .schedule-premium-logo { width: 210px; max-width: 100%; height: auto; margin: 10px auto 0; display: block; border-radius: 4px; }
.application-cta { margin: 56px auto 28px; display: flex; justify-content: center; text-align: center; }
.legacy-content .application-cta a { width: min(100%, 540px); min-height: 116px; padding: 22px 70px 22px 34px; display: inline-flex; position: relative; flex-direction: column; align-items: center; justify-content: center; gap: 3px; border: 3px solid #fff; border-radius: 16px; outline: 2px solid #bd4c12; background: linear-gradient(135deg, #ed843d 0%, var(--orange) 52%, #b8420b 100%); box-shadow: 0 16px 36px rgba(216,97,32,.36); color: var(--white); font-weight: 900; text-decoration: none; transition: transform .2s, box-shadow .2s, filter .2s; }
.application-cta a small { color: #fff4ec; font-size: 13px; font-weight: 800; letter-spacing: .05em; }
.application-cta a strong { color: var(--white); font-size: clamp(30px, 4vw, 40px); line-height: 1.25; letter-spacing: .12em; }
.legacy-content .application-cta a:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(216,97,32,.36); color: var(--white); filter: brightness(1.04); }
.legacy-content .application-cta a:focus-visible { outline: 4px solid rgba(18,106,163,.3); outline-offset: 4px; }
.application-cta .application-cta-arrow { position: absolute; right: 28px; top: 50%; color: var(--white); font-size: 30px; transform: translateY(-50%); transition: transform .2s; }
.application-cta a:hover .application-cta-arrow { transform: translate(5px, -50%); }

/* FAQは質問を見つけやすいカード表示 */
body:has(.page-hero .section-label:first-child) .legacy-content { overflow-wrap: anywhere; }

/* キーボード操作時の枠 */
a:focus-visible, .menu-button:focus-visible { outline: 3px solid rgba(18,106,163,.35); outline-offset: 3px; }

/* タブレット */
@media (max-width: 1180px) {
  .menu-button { display: block; margin-left: auto; padding: 10px 12px; border: 1px solid var(--line); border-radius: 4px; cursor: pointer; font-size: 13px; font-weight: 800; }
  .global-nav { display: none; position: absolute; top: 82px; left: 0; right: 0; margin: 0; padding: 20px 5vw; flex-direction: column; gap: 18px; background: var(--white); box-shadow: 0 8px 18px rgba(11,43,74,.12); }
  .menu-toggle:checked ~ .global-nav { display: flex; }
  .hero { grid-template-columns: 1fr; position: relative; }
  .hero-copy { background: rgba(255,255,255,.87); }
  .hero-photo { position: absolute; inset: 0; z-index: 0; }
  .course-grid { grid-template-columns: repeat(2,1fr); }
  .guide-grid { grid-template-columns: repeat(2,1fr); }
}

/* スマートフォン */
@media (max-width: 650px) {
  .site-header { min-height: 70px; padding: 8px 4vw; gap: 8px; }
  .brand img { width: 48px; height: 44px; }
  .brand span { font-size: 14px; }
  .brand small { display: none; }
  .header-cta { padding: 10px; font-size: 11px; }
  .global-nav { top: 70px; }
  .hero { min-height: 620px; }
  .hero-copy { padding: 70px 6vw; }
  .hero h1 { font-size: 41px; }
  .hero-lead { font-size: 16px; }
  .hero { min-height: auto; }
  .hero-course-links { margin-bottom: 24px; grid-template-columns: 1fr; gap: 8px; }
  .hero-course-links .hero-course-link { min-height: 60px; padding: 9px 11px; }
  .hero-course-links .hero-course-link.is-training { grid-column:auto; }
  .hero-course-link strong { font-size: 13px; }
  .trust-strip { padding: 16px 6vw; grid-template-columns: 1fr; }
  .trust-strip strong { padding: 13px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.25); }
  .trust-strip strong:last-child { border-bottom: 0; }
  .section { padding: 65px 6vw; }
  .course-grid, .guide-grid { grid-template-columns: 1fr; }
  .schedule-card { grid-template-columns: 1fr; gap: 12px; }
  .schedule-date { padding: 0; border-right: 0; }
  .schedule-card > a { padding: 8px 0; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .page-hero { min-height: 245px; padding: 58px 6vw; }
  .breadcrumb { padding-inline: 6vw; }
  .content-shell { padding: 38px 6vw 65px; }
  .legacy-content table { display: block; overflow-x: auto; white-space: normal; }
  .legacy-content #flow li { padding-left: 58px; }
  .page-actions { flex-direction: column; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .related-pages { padding: 24px; }
  .related-pages > div { grid-template-columns: 1fr; }
  .course-directory { padding: 24px; }
  .course-directory > div { grid-template-columns: 1fr; }
  .course-content .attention { padding: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* =========================================================
   技能実習養成講習 統合ページ
   旧4サイトの内容を、トップページと同じデザインで一体運用する
   ========================================================= */
.ikusei-updates {
  margin: 0 0 2rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid #d7e6df;
  border-radius: 20px;
  background: linear-gradient(145deg, #f7fcfa 0%, #eef8f4 100%);
}

.ikusei-updates > h2,
.ikusei-updates > h3 {
  margin: .25rem 0 1.1rem;
}

.ikusei-update-list {
  display: grid;
  gap: 1rem;
}

.ikusei-update-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(13, 92, 68, .14);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(20, 62, 50, .06);
}

.ikusei-update-card p {
  margin: 0;
}

.ikusei-update-card a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .75rem 1rem;
  border-radius: 999px;
  color: #fff;
  background: #0d684d;
  font-weight: 700;
  text-decoration: none;
}

.ikusei-update-card a:hover,
.ikusei-update-card a:focus-visible {
  background: #084d39;
  transform: translateY(-1px);
}

.ikusei-update-card .pdf-link {
  color: inherit;
  border-color: rgba(255, 255, 255, .55);
}

.ikusei-transition {
  scroll-margin-top: 100px;
  margin: 2rem 0;
  padding: clamp(1.4rem, 4vw, 2.7rem);
  overflow: hidden;
  position: relative;
  border: 1px solid #dce8e4;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(32, 154, 120, .13), transparent 34%),
    linear-gradient(150deg, #fff 0%, #f7fbfa 100%);
  box-shadow: 0 20px 55px rgba(12, 65, 52, .09);
}

.ikusei-transition::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(#16a078, #0d684d);
}

.ikusei-transition-heading {
  max-width: 900px;
}

.ikusei-transition-heading h2,
.ikusei-transition-heading h3 {
  margin: .25rem 0 .8rem;
  color: #123e34;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.45;
}

.ikusei-transition-heading > p:last-child {
  margin: 0;
  color: #405b54;
  line-height: 1.9;
}

.ikusei-measure-card {
  margin: 1.5rem 0 1.25rem;
  padding: 1.35rem 1.45rem;
  border: 1px solid rgba(8, 126, 145, .24);
  border-radius: 16px;
  background: linear-gradient(135deg, #effcfb, #f9ffff);
  box-shadow: inset 4px 0 0 #18a7a0;
}

.ikusei-measure-label {
  display: inline-block;
  margin-bottom: .7rem;
  padding: .28rem .7rem;
  border-radius: 999px;
  color: #fff;
  background: #087e91;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.ikusei-measure-card p {
  margin: 0;
  line-height: 1.8;
}

.ikusei-measure-card > p:first-of-type {
  color: #075b70;
  font-size: 1.04rem;
}

.ikusei-measure-note {
  margin-top: .7rem !important;
  padding-top: .7rem;
  border-top: 1px dashed rgba(8, 126, 145, .28);
  color: #426e77;
  font-size: .9rem;
}

.ikusei-recommend {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin: 1.6rem 0 1rem;
  color: #0d684d;
  font-weight: 800;
}

.ikusei-recommend > span:first-child {
  display: grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #14906d;
}

.ikusei-mapping {
  display: grid;
  gap: .75rem;
}

.ikusei-mapping-head,
.ikusei-mapping-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px minmax(0, 1fr);
  align-items: center;
}

.ikusei-mapping-head {
  padding: 0 1rem;
  color: #527168;
  font-size: .82rem;
  font-weight: 800;
  text-align: center;
}

.ikusei-mapping-row {
  padding: .8rem;
  border: 1px solid #deebe7;
  border-radius: 15px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 7px 20px rgba(18, 70, 57, .045);
}

.ikusei-mapping-row > div {
  min-height: 72px;
  padding: .75rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 10px;
}

.ikusei-mapping-row > div:first-child {
  background: #f2f5f6;
  color: #344c52;
}

.ikusei-mapping-row > div:last-child {
  background: #e9f7f2;
  color: #0c6249;
}

.ikusei-mapping-row small {
  margin-bottom: .2rem;
  opacity: .7;
  font-size: .72rem;
}

.ikusei-mapping-row strong {
  font-size: clamp(.94rem, 2vw, 1.08rem);
}

.ikusei-arrow {
  display: grid;
  width: 36px;
  height: 36px;
  margin: auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #20a47d, #0d684d);
  box-shadow: 0 5px 14px rgba(13, 104, 77, .2);
  font-size: 1.15rem;
  font-weight: 900;
}

.ikusei-recommend strong {
  color: #07523d;
  text-decoration: underline;
  text-decoration-color: rgba(20, 144, 109, .35);
  text-decoration-thickness: .22em;
  text-underline-offset: .08em;
}

.ikusei-roadmap {
  margin: 2.2rem 0 1rem;
  padding: clamp(1.4rem, 4vw, 2.7rem);
  border: 1px solid #dbe7ec;
  border-radius: 24px;
  background:
    radial-gradient(circle at 94% 8%, rgba(32, 164, 125, .12), transparent 28%),
    linear-gradient(145deg, #f8fbfc 0%, #fff 62%);
  box-shadow: 0 18px 50px rgba(16, 59, 73, .08);
}

.ikusei-roadmap > header {
  margin-bottom: 1.6rem;
}

.ikusei-roadmap > header h2,
.ikusei-roadmap > header h3 {
  margin: .2rem 0 .35rem;
  color: #173f4b;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.ikusei-roadmap > header > p:last-child {
  margin: 0;
  color: #6b7e84;
}

.ikusei-timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ikusei-timeline li {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 1.25rem;
  position: relative;
  padding: 0 0 1.25rem;
}

.ikusei-timeline li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 68px;
  bottom: 0;
  left: 69px;
  width: 2px;
  background: linear-gradient(#87c9b6, #d8e7e3);
}

.ikusei-timeline-date {
  min-height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  border: 1px solid #cee3dc;
  border-radius: 15px;
  color: #0d684d;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 91, 70, .08);
}

.ikusei-timeline-date small {
  font-size: .75rem;
  font-weight: 700;
}

.ikusei-timeline-date strong {
  font-size: 1.22rem;
}

.ikusei-timeline-content {
  min-height: 72px;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #e0e9ec;
  border-radius: 15px;
  background: rgba(255, 255, 255, .92);
}

.ikusei-timeline-content span {
  width: max-content;
  margin-bottom: .25rem;
  padding: .18rem .55rem;
  border-radius: 999px;
  color: #0d684d;
  background: #e5f5ef;
  font-size: .72rem;
  font-weight: 800;
}

.ikusei-timeline-content h4 {
  margin: 0;
  color: #263f47;
  font-size: clamp(1rem, 2.3vw, 1.2rem);
}

.ikusei-timeline li.is-launch .ikusei-timeline-date,
.ikusei-timeline li.is-launch .ikusei-timeline-content {
  border-color: #15906c;
  color: #fff;
  background: linear-gradient(135deg, #159c76, #0b6349);
  box-shadow: 0 12px 30px rgba(13, 104, 77, .2);
}

.ikusei-timeline li.is-launch .ikusei-timeline-content span {
  color: #07543e;
  background: #fff;
}

.ikusei-timeline li.is-launch .ikusei-timeline-content h4 {
  color: #fff;
}

@media (max-width: 720px) {
  .ikusei-update-card {
    align-items: stretch;
    flex-direction: column;
  }

  .ikusei-update-card a {
    justify-content: center;
  }

  .ikusei-transition {
    border-radius: 18px;
  }

  .ikusei-mapping-head {
    display: none;
  }

  .ikusei-mapping-row {
    grid-template-columns: 1fr;
    gap: .55rem;
  }

  .ikusei-arrow {
    transform: rotate(90deg);
  }

  .ikusei-roadmap {
    border-radius: 18px;
  }

  .ikusei-timeline li {
    grid-template-columns: 1fr;
    gap: .55rem;
  }

  .ikusei-timeline li:not(:last-child)::before {
    display: none;
  }

  .ikusei-timeline-date {
    min-height: 62px;
    align-items: flex-start;
    padding: .7rem 1rem;
  }
}

/* 技能実習3講習：講習内容と時間割 */
.training-program .program-section-title {
  margin: 38px 0 20px;
  padding: 0 0 14px;
  position: relative;
  border-bottom: 1px solid #d8e6e9;
  color: #173f4b;
  background: none;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.training-program .program-section-title::before {
  content: "PROGRAM";
  display: block;
  margin-bottom: 4px;
  color: #137781;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.training-program .program-section-title.is-time::before {
  content: "TIMETABLE";
}

.training-program .program-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  list-style: none;
  counter-reset: program-item;
}

.training-program .program-list > li {
  min-height: 82px;
  margin: 0;
  padding: 18px 18px 18px 62px;
  display: flex;
  align-items: center;
  position: relative;
  border: 1px solid #dce8ea;
  border-left: 5px solid #137781;
  border-radius: 12px;
  color: #344f57;
  background: linear-gradient(145deg, #fff, #f7fbfc);
  box-shadow: 0 7px 20px rgba(18, 67, 78, .045);
  line-height: 1.65;
  counter-increment: program-item;
}

.training-program .program-list > li::before {
  content: counter(program-item, decimal-leading-zero);
  position: absolute;
  left: 16px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #168b94, #0b626c);
  font-size: .78rem;
  font-weight: 900;
}

.training-program .program-item {
  min-height: 82px;
  margin: 10px 0;
  padding: 18px 20px 18px 24px;
  display: flex;
  align-items: center;
  border: 1px solid #dce8ea;
  border-left: 5px solid #137781;
  border-radius: 12px;
  color: #344f57;
  background: linear-gradient(145deg, #fff, #f7fbfc);
  box-shadow: 0 7px 20px rgba(18, 67, 78, .045);
  font-size: 1rem;
  line-height: 1.65;
}

.training-program .program-item :is(font, span) {
  margin-left: .35rem;
  color: #b32828 !important;
}

.training-program .certificate-note {
  margin: 16px 0 26px !important;
  padding: 16px 18px 16px 50px !important;
  position: relative;
  border: 1px solid #bcded3;
  border-radius: 12px;
  color: #0b654d !important;
  background: #eef9f5;
  font-size: .94rem;
  line-height: 1.7;
}

.training-program .certificate-note::before {
  content: "✓";
  position: absolute;
  top: 15px;
  left: 17px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #168363;
  font-weight: 900;
}

.training-program .certificate-note :is(font, span) {
  color: inherit !important;
}

.training-program .time-notice {
  margin: 0 0 22px !important;
  padding: 15px 18px !important;
  border: 1px solid #e8c98b;
  border-radius: 12px;
  color: #71500d !important;
  background: #fff9e9;
  font-size: .94rem;
  line-height: 1.7;
}

.training-program .time-notice :is(font, span) {
  color: inherit !important;
}

.training-program .program-divider {
  display: none;
}

.training-program .training-timetable {
  width: 100% !important;
  margin: 0 0 24px;
  overflow: hidden;
  border: 1px solid #d6e4e7 !important;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(18, 67, 78, .07);
  table-layout: fixed;
}

.training-program .training-timetable td {
  width: auto !important;
  min-width: 0;
  padding: 14px 16px !important;
  border: 0 !important;
  border-right: 1px solid #e3ecee !important;
  border-bottom: 1px solid #e3ecee !important;
  color: #344f57;
  background: #fff !important;
  line-height: 1.55;
  vertical-align: middle;
}

.training-program .training-timetable tr:last-child td {
  border-bottom: 0 !important;
}

.training-program .training-timetable td:last-child {
  border-right: 0 !important;
}

.training-program .training-timetable .timetable-heading-row td {
  padding: 16px !important;
  color: #fff !important;
  background: linear-gradient(135deg, #062f4a, #075f7a) !important;
  font-size: 1rem;
  font-weight: 900;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .35);
  text-align: center;
}

.training-program .training-timetable .timetable-heading-row td :is(b, strong, span, font, h4) {
  color: #fff !important;
}

.training-program .training-timetable .timetable-heading-row td.is-online-heading {
  background: linear-gradient(135deg, #522568, #7b398d) !important;
}

.training-program .training-timetable .timetable-heading-row td.is-online-heading::before {
  content: "ONLINE";
  display: inline-block;
  margin-right: .55rem;
  padding: .18rem .48rem;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .14);
  font-size: .62rem;
  letter-spacing: .08em;
  vertical-align: .08em;
}

.training-program .training-timetable td.is-lunch {
  color: #245f85 !important;
  background: #edf7ff !important;
  font-weight: 750;
}

.training-program .training-timetable td.is-break {
  color: #7a570d !important;
  background: #fff8e8 !important;
  font-weight: 750;
}

.training-program .training-timetable h4 {
  margin: 0;
  padding: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.training-program #pagetop {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
}

.training-program #pagetop a {
  padding: 10px 16px;
  border: 1px solid #bad6da;
  border-radius: 999px;
  color: #0b6570;
  background: #f2f9fa;
  font-size: .84rem;
  font-weight: 800;
  text-decoration: none;
}

.training-program #pagetop a::before {
  content: "↑";
  margin-right: 7px;
}

@media (max-width: 650px) {
  .training-program .program-list {
    grid-template-columns: 1fr;
  }

  .training-program .program-item {
    min-height: 0;
  }

  .training-program .training-timetable {
    min-width: 700px;
    display: table;
  }
}

/* 技能実習3講習：料金案内と講習内容リンク */
.training-page .legacy-modern #schedule > table.hpb-cnt-tb2:first-of-type {
  width: 100%;
  margin: 0 0 18px;
  overflow: hidden;
  border: 1px solid #d4e5e7 !important;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(18, 67, 78, .09);
}

.training-page .legacy-modern #schedule > table.hpb-cnt-tb2:first-of-type tbody {
  display: block;
}

.training-page .legacy-modern #schedule > table.hpb-cnt-tb2:first-of-type tr {
  display: grid;
  grid-template-columns: 155px minmax(0, 1fr);
}

.training-page .legacy-modern #schedule > table.hpb-cnt-tb2:first-of-type td {
  width: auto !important;
  height: auto !important;
  min-width: 0;
  border: 0;
}

.training-page .legacy-modern #schedule > table.hpb-cnt-tb2:first-of-type td:first-child {
  padding: 24px 18px !important;
  display: grid;
  place-items: center;
  position: relative;
  color: #fff;
  background: linear-gradient(145deg, #075762, #0d7f8b) !important;
  font-size: 1.05rem;
  font-weight: 900;
  text-align: center;
}

.training-page .legacy-modern #schedule > table.hpb-cnt-tb2:first-of-type td:first-child::before {
  content: "PRICE";
  position: absolute;
  top: 16px;
  color: rgba(255, 255, 255, .72);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.training-page .legacy-modern #schedule > table.hpb-cnt-tb2:first-of-type td:last-child {
  padding: 25px 28px !important;
  color: #344f57;
  background:
    radial-gradient(circle at 100% 0, rgba(19, 119, 129, .08), transparent 34%),
    #fff !important;
  font-size: .98rem;
  line-height: 1.9;
}

.training-page .legacy-modern #schedule > table.hpb-cnt-tb2:first-of-type td:last-child b {
  font-weight: 750;
}

.training-page .legacy-modern #schedule > table.hpb-cnt-tb2:nth-of-type(2) {
  width: 100%;
  margin: 20px 0 34px;
  border: 0;
  background: transparent !important;
}

.training-page .legacy-modern #schedule > table.hpb-cnt-tb2:nth-of-type(2) :is(tbody, tr, td) {
  width: 100% !important;
  min-width: 0;
  padding: 0 !important;
  display: block;
  border: 0;
  background: transparent;
}

.training-page .legacy-modern #schedule > table.hpb-cnt-tb2:nth-of-type(2) a {
  width: 100%;
  padding: 17px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #8fc3c8;
  border-radius: 14px;
  color: #0b6570;
  background: linear-gradient(135deg, #eef8f9, #fff);
  box-shadow: 0 9px 24px rgba(19, 119, 129, .08);
  font-size: 1rem;
  font-weight: 850;
  text-decoration: none;
}

.training-page .legacy-modern #schedule > table.hpb-cnt-tb2:nth-of-type(2) a::after {
  content: "詳しく見る  ›";
  flex: 0 0 auto;
  margin-left: 16px;
  padding: .38rem .72rem;
  border-radius: 999px;
  color: #fff;
  background: #137781;
  font-size: .76rem;
}

.training-page .legacy-modern #schedule > table.hpb-cnt-tb2:nth-of-type(2) a:hover,
.training-page .legacy-modern #schedule > table.hpb-cnt-tb2:nth-of-type(2) a:focus-visible {
  border-color: #137781;
  background: #e4f4f5;
  transform: translateY(-1px);
}

@media (max-width: 650px) {
  .training-page .legacy-modern #schedule > table.hpb-cnt-tb2:first-of-type {
    display: block;
    border-radius: 16px;
  }

  .training-page .legacy-modern #schedule > table.hpb-cnt-tb2:first-of-type tr {
    grid-template-columns: 1fr;
  }

  .training-page .legacy-modern #schedule > table.hpb-cnt-tb2:first-of-type td:first-child {
    min-height: 78px;
    padding-top: 32px !important;
  }

  .training-page .legacy-modern #schedule > table.hpb-cnt-tb2:nth-of-type(2) a {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .training-page .legacy-modern #schedule > table.hpb-cnt-tb2:nth-of-type(2) a::after {
    margin-left: 0;
  }
}

.training-hero {
  background:
    radial-gradient(circle at 88% 45%, rgba(255,255,255,.72) 0 18%, transparent 18.3%),
    linear-gradient(120deg, #edf7f8 0%, #f7fbfc 58%, #dceef1 100%);
}

.training-hero::after {
  border-color: rgba(19, 119, 129, .08);
}

.training-page .section-label {
  color: #137781;
}

.training-hub-nav,
.course-page-nav {
  width: min(1180px, 88vw);
  margin: 34px auto 0;
  display: grid;
  gap: 10px;
}

.training-hub-nav {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

.course-page-nav {
  margin-top: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.training-hub-nav a,
.course-page-nav a {
  min-height: 58px;
  padding: 12px 10px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 7px 20px rgba(11, 43, 74, .05);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}

.training-hub-nav a:hover,
.course-page-nav a:hover,
.course-page-nav a[aria-current="page"] {
  border-color: #65aeb5;
  background: #f0f9fa;
  transform: translateY(-2px);
}

.course-page-nav a[aria-current="page"] {
  box-shadow: inset 0 3px 0 #137781, 0 7px 20px rgba(11, 43, 74, .06);
  color: #0d6972;
}

.training-page .content-shell {
  width: min(1180px, 88vw);
  padding-inline: 0;
}

.legacy-modern {
  overflow-wrap: anywhere;
}

.legacy-modern > div:first-child > h3:first-child,
.legacy-modern > div:first-child > h2:first-child {
  margin-top: 0;
}

.legacy-modern h3 {
  margin-top: 46px;
  padding: 17px 20px;
  border-left: 5px solid #137781;
  border-radius: 0 8px 8px 0;
  background: #eff8f9;
  color: var(--navy);
}

.legacy-modern h4 {
  margin-top: 30px;
  color: var(--navy);
  line-height: 1.65;
}

.legacy-modern p,
.legacy-modern li,
.legacy-modern dd {
  line-height: 1.9;
}

.legacy-modern ul,
.legacy-modern ol {
  margin-block: 18px;
}

.legacy-modern li + li {
  margin-top: 8px;
}

.legacy-modern dl {
  margin: 22px 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
}

.legacy-modern dt {
  color: #0d6972;
  font-weight: 800;
}

.legacy-modern dd {
  margin: 4px 0 18px;
}

.legacy-modern table {
  max-width: 100%;
  border-radius: 8px;
  overflow: hidden;
  font-size: 14px;
}

.legacy-modern th,
.legacy-modern td {
  min-width: 92px;
  height: auto !important;
  padding: 13px 12px !important;
  vertical-align: middle;
}

.legacy-modern th {
  background: #eaf4f6 !important;
  color: var(--navy);
  font-weight: 800;
  text-align: center;
}

.legacy-modern img {
  max-width: 100%;
  height: auto !important;
  object-fit: contain;
}

.legacy-modern a {
  text-underline-offset: .2em;
}

.legacy-modern .apply-mini,
.legacy-modern .map-link,
.legacy-modern .pdf-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.legacy-modern .apply-mini {
  min-width: 86px;
  min-height: 42px;
  padding: 11px 18px;
  background: linear-gradient(135deg, #ed843d, #c44b12);
  box-shadow: 0 8px 18px rgba(196, 75, 18, .24);
  color: #fff;
}

.legacy-modern a:has(.apply-mini) {
  text-decoration: none;
}

.legacy-modern .map-link,
.legacy-modern .pdf-link {
  padding: 8px 12px;
  background: #e9f4f8;
  color: #126aa3;
  font-size: 12px;
}

.legacy-modern #toppage-information,
.legacy-modern [id^="toppage-g"] {
  margin: 28px 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(11, 43, 74, .06);
}

.legacy-modern .pur,
.legacy-modern .re,
.legacy-modern .bu {
  margin-bottom: 18px;
  padding: 15px 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0f6470, #168d98);
  color: #fff;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900;
  text-align: center;
}

.legacy-modern .large {
  margin: 0 0 28px;
  padding: 24px 26px;
  border-left: 5px solid #137781;
  border-radius: 0 8px 8px 0;
  background: #eff8f9;
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
}

.training-application-panel {
  padding: clamp(26px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, #fff 0%, #f6fbfc 100%);
  box-shadow: 0 18px 50px rgba(11, 43, 74, .08);
}

.training-application-panel .application-kicker {
  margin: 0 0 8px;
  color: #137781;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}

.legacy-modern .training-application-panel > h3 {
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: clamp(25px, 4vw, 40px);
}

.application-precheck {
  margin: 30px 0 8px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.legacy-modern .application-precheck a {
  min-height: 98px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  text-decoration: none;
}

.application-precheck b {
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 50%;
  background: #137781;
  color: #fff;
}

.application-precheck span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.application-precheck strong {
  color: var(--navy);
  font-size: 16px;
}

.application-precheck small {
  color: var(--text);
}

.training-apply-cta {
  margin-top: 38px;
}

.application-note {
  margin: 26px 0 0;
  padding: 16px 18px;
  border-radius: 8px;
  background: #eef6fb;
  text-align: center;
}

.mode-switcher {
  display: grid;
  gap: 38px;
}

.mode-overview {
  padding: 8px 0 10px;
  text-align: center;
}

.mode-overview .mode-badge {
  width: fit-content;
  margin: 0 auto 20px;
  padding: 8px 13px;
  border-radius: 3px;
  background: #eaf4fb;
  color: #126aa3;
  font-size: 12px;
  font-weight: 900;
}

.legacy-modern .mode-overview h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 500;
  letter-spacing: .02em;
}

.mode-overview > p:last-of-type {
  margin: 0 auto;
  max-width: 850px;
}

.mode-tabs {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.legacy-modern .mode-tabs a {
  min-width: 190px;
  padding: 16px 22px;
  border: 2px solid #1379b4;
  border-radius: 6px;
  background: #fff;
  color: #075f98;
  font-weight: 900;
  text-decoration: none;
}

.legacy-modern .mode-tabs a[aria-selected="true"] {
  background: #1379b4;
  color: #fff;
}

.mode-panel {
  overflow: hidden;
  border: 1px solid #d7e2ea;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(11, 43, 74, .09);
}

.mode-panel[hidden] {
  display: none !important;
}

.mode-panel-heading {
  padding: 28px 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  background: #0b3152;
  color: #fff;
}

.mode-panel-heading small {
  order: 2;
  color: #d9eaf5;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.legacy-modern .mode-panel-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
}

.mode-panel-body {
  padding: clamp(22px, 4vw, 42px);
}

.mode-panel-body > div > :first-child,
.mode-panel-body > section > :first-child {
  margin-top: 0;
}

.mode-panel:focus {
  outline: 3px solid rgba(19, 121, 180, .28);
  outline-offset: 4px;
}

@media (max-width: 1050px) {
  .training-hub-nav { grid-template-columns: repeat(4, 1fr); }
  .course-page-nav { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 650px) {
  .training-hub-nav,
  .course-page-nav,
  .training-page .content-shell {
    width: 88vw;
  }

  .training-hub-nav { grid-template-columns: repeat(2, 1fr); }
  .course-page-nav { grid-template-columns: repeat(2, 1fr); }
  .training-hub-nav a,
  .course-page-nav a { min-height: 54px; font-size: 12px; }
  .legacy-modern h3 { margin-top: 34px; padding: 14px 16px; }
  .legacy-modern #toppage-information,
  .legacy-modern [id^="toppage-g"] { padding: 19px; }
  .legacy-modern table { display: block; overflow-x: auto; }
  .legacy-modern th,
  .legacy-modern td { min-width: 108px; padding: 11px 10px !important; }
  .application-precheck { grid-template-columns: 1fr; }
  .training-application-panel { border-radius: 12px; }
  .mode-tabs { flex-direction: column; }
  .legacy-modern .mode-tabs a { width: 100%; min-width: 0; }
  .mode-panel-heading { padding: 22px 20px; align-items: flex-start; flex-direction: column; }
  .mode-panel-heading small { order: 0; }
}

/* 技能実習養成講習トップ：3講習の月別スケジュール */
.legacy-modern :is(#toppage-gsekininn, #toppage-gshidou, #toppage-sshidou) {
  --summary-accent: #137781;
  --summary-head-start: #075762;
  --summary-head-end: #0d7f8b;
  margin: 28px 0;
  padding: clamp(18px, 3vw, 30px);
  overflow-x: auto;
  border: 1px solid #d9e8ea;
  border-radius: 22px;
  background:
    radial-gradient(circle at 96% 0, rgba(19, 119, 129, .1), transparent 30%),
    linear-gradient(150deg, #fff 0%, #f7fbfc 100%);
  box-shadow: 0 16px 42px rgba(21, 67, 78, .08);
  scrollbar-color: #8bbfc4 #edf5f6;
}

.legacy-modern #toppage-gshidou {
  --summary-accent: #9b365b;
  --summary-head-start: #72213f;
  --summary-head-end: #a33c62;
}

.legacy-modern #toppage-sshidou {
  --summary-accent: #9b6908;
  --summary-head-start: #684400;
  --summary-head-end: #a16e08;
}

.legacy-modern :is(#toppage-gsekininn, #toppage-gshidou, #toppage-sshidou) > :is(.pur, .re, .ye) {
  margin: 0 0 18px;
  padding: 0 0 14px;
  border-bottom: 1px solid #dce8ea;
  color: #173f4b;
  background: none;
  font-size: clamp(1.25rem, 2.6vw, 1.65rem);
  font-weight: 900;
  line-height: 1.4;
  text-align: left;
}

.legacy-modern :is(#toppage-gsekininn, #toppage-gshidou, #toppage-sshidou) > :is(.pur, .re, .ye)::before {
  content: "SCHEDULE";
  display: block;
  margin-bottom: 4px;
  color: var(--summary-accent);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.legacy-modern :is(#toppage-gsekininn, #toppage-gshidou, #toppage-sshidou) table {
  width: 100%;
  min-width: 720px;
  margin: 0 0 18px;
  overflow: hidden;
  border: 0;
  border-collapse: separate;
  border-spacing: 7px;
  table-layout: fixed;
  background: transparent;
}

.legacy-modern :is(#toppage-gsekininn, #toppage-gshidou, #toppage-sshidou) th {
  min-width: 0;
  padding: 13px 12px !important;
  border: 0;
  border-radius: 10px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--summary-head-start), var(--summary-head-end)) !important;
  box-shadow: 0 7px 16px rgba(17, 55, 65, .18);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .02em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .28);
  text-align: center;
}

.legacy-modern :is(#toppage-gsekininn, #toppage-gshidou, #toppage-sshidou) td {
  min-width: 0;
  padding: 12px 10px !important;
  border: 1px solid #e1ebed;
  border-radius: 10px;
  color: #344f57;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 4px 12px rgba(25, 70, 81, .035);
  font-size: .9rem;
  line-height: 1.5;
  text-align: center;
}

.legacy-modern :is(#toppage-gsekininn, #toppage-gshidou, #toppage-sshidou) td:has(a) {
  border-color: color-mix(in srgb, var(--summary-accent) 25%, #e1ebed);
}

.legacy-modern :is(#toppage-gsekininn, #toppage-gshidou, #toppage-sshidou) td a {
  display: block;
  color: #173f4b;
  font-weight: 750;
  text-decoration: none;
}

.legacy-modern :is(#toppage-gsekininn, #toppage-gshidou, #toppage-sshidou) td a:hover,
.legacy-modern :is(#toppage-gsekininn, #toppage-gshidou, #toppage-sshidou) td a:focus-visible {
  color: var(--summary-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legacy-modern :is(#toppage-gsekininn, #toppage-gshidou, #toppage-sshidou) > a {
  width: max-content;
  max-width: 100%;
  margin: 3px auto 0;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: var(--summary-accent);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--summary-accent) 23%, transparent);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.legacy-modern :is(#toppage-gsekininn, #toppage-gshidou, #toppage-sshidou) > a::after {
  content: "›";
  margin-left: 9px;
  font-size: 1.25em;
}

.legacy-modern :is(#toppage-gsekininn, #toppage-gshidou, #toppage-sshidou) > a:hover,
.legacy-modern :is(#toppage-gsekininn, #toppage-gshidou, #toppage-sshidou) > a:focus-visible {
  filter: brightness(.9);
  transform: translateY(-1px);
}

@media (max-width: 650px) {
  .legacy-modern :is(#toppage-gsekininn, #toppage-gshidou, #toppage-sshidou) {
    margin-inline: 0;
    border-radius: 16px;
  }

  .legacy-modern :is(#toppage-gsekininn, #toppage-gshidou, #toppage-sshidou) table {
    display: table;
  }
}

/* 技能実習養成講習トップ：最新のお知らせ */
.legacy-modern #toppage-information.ginou-news {
  margin: 28px 0 34px;
  padding: clamp(20px, 4vw, 38px);
  border: 1px solid #d7e6ea;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(19, 119, 129, .12), transparent 30%),
    linear-gradient(145deg, #f7fbfc 0%, #fff 58%);
  box-shadow: 0 18px 50px rgba(19, 65, 76, .09);
}

.ginou-news-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid #dbe8eb;
}

.legacy-modern .ginou-news-heading h3 {
  margin: .2rem 0 0;
  padding: 0;
  border: 0;
  color: #153f49;
  background: none;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.ginou-news-heading > p {
  margin: 0;
  color: #60777d;
  font-size: .88rem;
}

.legacy-modern .ginou-news-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legacy-modern .ginou-news-list li {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  margin: 0;
  padding: 18px 20px;
  border: 1px solid #e0eaed;
  border-radius: 14px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 6px 18px rgba(22, 68, 79, .04);
}

.ginou-news-list time {
  padding-top: 4px;
  color: #137781;
  font-size: .88rem;
  font-weight: 900;
  letter-spacing: .04em;
}

.ginou-news-list li > div {
  min-width: 0;
}

.ginou-news-tag {
  display: inline-block;
  margin-bottom: 7px;
  padding: .22rem .62rem;
  border-radius: 999px;
  color: #08616a;
  background: #dff2f4;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .04em;
}

.ginou-news-tag.is-notice {
  color: #7a4a05;
  background: #fff0cc;
}

.legacy-modern .ginou-news-list p {
  margin: 0;
  color: #385159;
  line-height: 1.75;
}

.legacy-modern .ginou-news-more {
  width: max-content;
  max-width: 100%;
  margin: 20px 0 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #0d6973, #137f89);
  box-shadow: 0 9px 22px rgba(19, 119, 129, .22);
  font-weight: 850;
  text-decoration: none;
}

.ginou-news-more::after {
  content: "›";
  margin-left: 9px;
  font-size: 1.25em;
}

.ginou-news-more:hover,
.ginou-news-more:focus-visible {
  filter: brightness(.9);
  transform: translateY(-1px);
}

.legacy-modern .news-archive-new {
  margin-bottom: 10px;
  padding: 16px 18px;
  border-left: 4px solid #137781;
  border-radius: 0 12px 12px 0;
  background: #f2f9fa;
}

.legacy-modern #toppage-information.ginou-news-archive {
  margin: 28px 0;
  padding: clamp(20px, 4vw, 38px);
  border: 1px solid #d7e6ea;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(19, 119, 129, .1), transparent 24%),
    linear-gradient(145deg, #f6fafb 0%, #fff 42%);
  box-shadow: 0 18px 50px rgba(19, 65, 76, .08);
}

.legacy-modern .ginou-news-archive > ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legacy-modern .ginou-news-archive > ul > li,
.legacy-modern .ginou-news-archive > ul > li.news-archive-new {
  display: block;
  margin: 0;
  padding: 0;
  border: 1px solid #e0eaed;
  border-left: 4px solid #b8d1d6;
  border-radius: 12px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 5px 16px rgba(22, 68, 79, .035);
}

.legacy-modern .ginou-news-archive > ul > li.news-archive-new {
  border-color: #9eced3;
  border-left-color: #137781;
  background: #f5fbfc;
}

.archive-news-details > summary {
  display: grid;
  grid-template-columns: 112px 106px minmax(0, 1fr) 34px;
  gap: 14px;
  align-items: center;
  padding: 15px 18px;
  color: #344f57;
  cursor: pointer;
  list-style: none;
}

.archive-news-details > summary::-webkit-details-marker {
  display: none;
}

.archive-news-details > summary:hover,
.archive-news-details > summary:focus-visible {
  background: #f2f9fa;
  outline: none;
}

.ginou-news-archive time {
  color: #137781;
  font-size: .87rem;
  font-weight: 900;
  letter-spacing: .035em;
}

.archive-news-details .ginou-news-tag {
  margin: 0;
  text-align: center;
}

.archive-news-title {
  min-width: 0;
  overflow: hidden;
  color: #344f57;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.archive-news-toggle {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #137781;
  font-size: 1.12rem;
  font-weight: 500;
  transition: transform .2s ease, background-color .2s ease;
}

.archive-news-details[open] .archive-news-toggle {
  background: #0a5860;
  transform: rotate(45deg);
}

.archive-news-body {
  min-width: 0;
  padding: 18px 24px 22px 250px;
  border-top: 1px solid #e3ecee;
  color: #3c555c;
  background: rgba(246, 251, 252, .75);
  line-height: 1.75;
}

.archive-news-body a {
  margin: 4px 2px;
  padding: .35rem .7rem;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #08616a;
  background: #e4f4f5;
  font-size: .82rem;
  font-weight: 800;
  text-decoration: none;
}

.archive-news-body a::after {
  content: "›";
  margin-left: 5px;
}

.archive-news-body a:hover,
.archive-news-body a:focus-visible {
  color: #fff;
  background: #137781;
}

@media (max-width: 650px) {
  .legacy-modern #toppage-information.ginou-news {
    padding: 20px;
    border-radius: 18px;
  }

  .ginou-news-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .legacy-modern .ginou-news-list li {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 16px;
  }

  .legacy-modern .ginou-news-more {
    width: 100%;
  }

  .legacy-modern #toppage-information.ginou-news-archive {
    padding: 20px;
    border-radius: 18px;
  }

  .legacy-modern .ginou-news-archive > ul > li,
  .legacy-modern .ginou-news-archive > ul > li.news-archive-new {
    padding: 0;
  }

  .archive-news-details > summary {
    grid-template-columns: minmax(0, 1fr) 34px;
    gap: 7px 12px;
    padding: 15px;
  }

  .archive-news-details > summary time,
  .archive-news-details > summary .ginou-news-tag,
  .archive-news-details > summary .archive-news-title {
    grid-column: 1;
  }

  .archive-news-details > summary .archive-news-toggle {
    grid-column: 2;
    grid-row: 1 / span 3;
  }

  .archive-news-details .ginou-news-tag {
    width: max-content;
  }

  .archive-news-body {
    padding: 16px;
  }
}

/* 共通ハブナビゲーション最終指定 */
.training-hub-nav {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
  border: 1px solid #dbe8ea;
  border-radius: 22px;
  background: linear-gradient(145deg, #f5fafb, #fff);
  box-shadow: 0 14px 38px rgba(18, 67, 78, .07);
}

.training-hub-nav a {
  --hub-accent: #137781;
  min-height: 108px;
  padding: 17px 48px 17px 18px;
  display: grid;
  place-items: initial;
  align-content: center;
  position: relative;
  border: 1px solid #dce8ea;
  border-left: 4px solid var(--hub-accent);
  border-radius: 14px;
  color: #294950;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 6px 18px rgba(18, 67, 78, .04);
  line-height: 1.4;
  text-align: left;
}

.training-hub-nav a[data-hub-kind="course"] { --hub-accent: #137781; }
.training-hub-nav a[data-hub-kind="portal"] { --hub-accent: #0b536f; }
.training-hub-nav a[data-hub-kind="guide"] { --hub-accent: #a36a12; }
.training-hub-nav a[data-hub-kind="reference"] { --hub-accent: #496a9b; }

.training-hub-nav a small {
  margin-bottom: 4px;
  color: var(--hub-accent);
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.training-hub-nav a strong {
  color: #173f4b;
  font-size: .98rem;
  font-weight: 900;
}

.training-hub-nav a span {
  margin-top: 4px;
  color: #6b7f84;
  font-size: .74rem;
}

.training-hub-nav a::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: 17px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--hub-accent);
  font-size: 1.15rem;
  transform: translateY(-50%);
}

.training-hub-nav a:hover,
.training-hub-nav a:focus-visible,
.training-hub-nav a[aria-current="page"] {
  border-color: color-mix(in srgb, var(--hub-accent) 48%, #dce8ea);
  background: color-mix(in srgb, var(--hub-accent) 7%, #fff);
  transform: translateY(-2px);
}

.training-hub-nav a[aria-current="page"] {
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--hub-accent) 30%, transparent), 0 8px 22px rgba(18, 67, 78, .07);
}

@media (max-width: 900px) {
  .training-hub-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .training-hub-nav {
    grid-template-columns: 1fr;
    padding: 12px;
    border-radius: 17px;
  }

  .training-hub-nav a { min-height: 94px; }
}

/* 直前の共通メニュー変更を取り消し、従来表示へ戻す */
.training-hub-nav {
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.training-hub-nav a {
  min-height: 58px;
  padding: 12px 10px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 7px 20px rgba(11, 43, 74, .05);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.training-hub-nav a::after { content: none; }

.training-hub-nav a:hover,
.training-hub-nav a:focus-visible {
  border-color: #65aeb5;
  background: #f0f9fa;
  transform: translateY(-2px);
}

@media (max-width: 1050px) {
  .training-hub-nav { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 650px) {
  .training-hub-nav { grid-template-columns: repeat(2, 1fr); }
  .training-hub-nav a { min-height: 54px; font-size: 12px; }
}

/* 技能実習責任者講習トップ：講習案内 */
.course-introduction {
  margin: 28px 0;
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid #d8e7e9;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(19, 119, 129, .12), transparent 28%),
    linear-gradient(145deg, #f7fbfc, #fff 58%);
  box-shadow: 0 18px 50px rgba(18, 67, 78, .08);
  text-align: left;
}

.course-introduction > header {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid #dce8ea;
}

.legacy-modern .course-introduction > header h2,
.legacy-modern .course-introduction > header h3 {
  margin: .2rem 0 .45rem;
  padding: 0;
  border: 0;
  color: #173f4b;
  background: none;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

/* SEO course hubs: concise facts, primary-source guidance and readable hierarchy */
.course-key-facts {
  --fact-accent: #1769aa;
  --fact-dark: #0b416f;
  --fact-rgb: 23, 105, 170;
  margin: 24px 0 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  text-align: left;
}

.training-gpi .course-key-facts { --fact-accent: #168267; --fact-dark: #095b47; --fact-rgb: 22, 130, 103; }
.training-gli .course-key-facts { --fact-accent: #a97824; --fact-dark: #75500f; --fact-rgb: 169, 120, 36; }
.course-key-facts--dispatch { --fact-accent: #087989; --fact-dark: #083c56; --fact-rgb: 8, 121, 137; }
.course-key-facts--placement { --fact-accent: #a94a67; --fact-dark: #653149; --fact-rgb: 169, 74, 103; }

.course-key-facts article {
  min-width: 0;
  padding: 21px 21px 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(var(--fact-rgb), .2);
  border-radius: 17px;
  background: linear-gradient(155deg, #fff 18%, rgba(var(--fact-rgb), .055));
  box-shadow: 0 11px 28px rgba(24, 57, 72, .07);
}

.course-key-facts article::before {
  content: "";
  width: 54px;
  height: 4px;
  position: absolute;
  top: 0;
  left: 21px;
  border-radius: 0 0 4px 4px;
  background: var(--fact-accent);
}

.course-key-facts small {
  display: block;
  margin-bottom: 7px;
  color: var(--fact-accent);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .15em;
}

.course-key-facts strong {
  display: block;
  color: var(--fact-dark);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.45;
}

.course-key-facts p {
  margin: 9px 0 0;
  color: #56707a;
  font-size: .82rem;
  line-height: 1.72;
}

.course-source-note {
  margin-top: 22px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border-left: 4px solid #1769aa;
  border-radius: 12px;
  background: #edf6ff;
  text-align: left;
}

.training-gpi .course-source-note { border-left-color: #168267; background: #edf9f4; }
.training-gli .course-source-note { border-left-color: #a97824; background: #fff8e9; }
.course-source-note small { display: block; color: #5d7580; font-size: .6rem; font-weight: 900; letter-spacing: .14em; }
.course-source-note strong { display: block; margin-top: 3px; color: #173f4b; font-size: .94rem; }
.course-source-note p { margin: 5px 0 0; color: #60767e; font-size: .76rem; line-height: 1.65; }
.legacy-content .course-source-note > a {
  padding: 11px 14px;
  border: 1px solid #bed5df;
  border-radius: 10px;
  color: #174f68;
  background: #fff;
  font-size: .76rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}
.legacy-content .course-source-note > a:hover,
.legacy-content .course-source-note > a:focus-visible { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(24, 66, 82, .12); }

.ikusei-verified {
  margin: 14px 0 20px;
  padding: 13px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 14px;
  border: 1px solid #c9ded7;
  border-radius: 11px;
  color: #526d66;
  background: #f2faf7;
  font-size: .78rem;
  line-height: 1.65;
}
.ikusei-verified strong { color: #12614f; }

.ikusei-official-links {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.legacy-content .ikusei-official-links a {
  min-width: 0;
  padding: 17px 42px 17px 18px;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid #c7dce2;
  border-radius: 13px;
  color: #173f4b;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(24, 62, 76, .07);
}
.legacy-content .ikusei-official-links a::after { content: "↗"; position: absolute; right: 17px; top: 50%; color: #147c78; font-size: 1.15rem; transform: translateY(-50%); }
.ikusei-official-links small { color: #147c78; font-size: .59rem; font-weight: 900; letter-spacing: .14em; }
.ikusei-official-links strong { margin-top: 3px; font-size: .94rem; }
.ikusei-official-links span { margin-top: 3px; color: #647a80; font-size: .72rem; }
.legacy-content .ikusei-official-links a:hover,
.legacy-content .ikusei-official-links a:focus-visible { border-color: #147c78; transform: translateY(-2px); }

@media (max-width: 800px) {
  .course-key-facts { grid-template-columns: 1fr; }
  .course-source-note { grid-template-columns: 1fr; }
  .legacy-content .course-source-note > a { white-space: normal; }
  .ikusei-official-links { grid-template-columns: 1fr; }
}

.course-introduction > header > p:last-child {
  margin: 0;
  color: #61777d;
}

.course-introduction-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.course-introduction-grid article {
  padding: 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid #dce8ea;
  border-radius: 15px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 7px 20px rgba(18, 67, 78, .045);
}

.course-introduction-grid article > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #168b94, #0b626c);
  font-size: .76rem;
  font-weight: 900;
}

.course-introduction-grid h4 {
  margin: 13px 0 7px;
  color: #173f4b;
  font-size: 1.05rem;
}

.course-introduction-grid p {
  margin: 0 0 18px;
  color: #526a71;
  font-size: .9rem;
  line-height: 1.75;
}

.legacy-modern .course-introduction-grid a {
  margin-top: auto;
  color: #0b6973;
  font-size: .86rem;
  font-weight: 850;
  text-decoration: none;
}

.course-introduction-grid a::after {
  content: " ›";
}

.course-entry-flow {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.legacy-modern .course-entry-flow a {
  min-height: 96px;
  padding: 15px 42px 15px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border: 1px solid #afd1d5;
  border-radius: 13px;
  color: #244951;
  background: #eef8f9;
  text-decoration: none;
}

.course-entry-flow a::after {
  content: "›";
  position: absolute;
  right: 15px;
  color: #137781;
  font-size: 1.5rem;
}

.course-entry-flow small {
  color: #137781;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.course-entry-flow strong {
  color: #173f4b;
  font-size: .94rem;
}

.course-entry-flow span {
  margin-top: 2px;
  color: #6c8186;
  font-size: .72rem;
}

.course-entry-flow a:hover,
.course-entry-flow a:focus-visible {
  border-color: #137781;
  background: #e4f4f5;
  transform: translateY(-1px);
}

@media (max-width: 800px) {
  .course-introduction-grid,
  .course-entry-flow {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .course-introduction {
    padding: 20px;
    border-radius: 18px;
  }
}

/* 派遣元責任者講習・開催スケジュール 2026 renewal */
.dispatch-schedule-modern {
  --ds-navy: #0b2f4b;
  --ds-blue: #087c91;
  --ds-sky: #eaf7f8;
  --ds-gold: #c99a43;
  --ds-orange: #e66b32;
  color: #203642;
}

.dispatch-schedule-modern > section,
.dispatch-schedule-modern > .schedule-repair {
  margin-top: 72px;
}

.dispatch-schedule-modern > section:first-child {
  margin-top: 0;
}

.dispatch-schedule-modern section > header {
  margin-bottom: 28px;
  text-align: center;
}

.dispatch-schedule-modern section > header .section-label {
  margin: 0 0 8px;
  color: var(--ds-blue);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .22em;
}

.dispatch-schedule-modern section > header h2 {
  margin: 0;
  color: var(--ds-navy);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.35;
}

.dispatch-schedule-modern section > header > p:last-child:not(.section-label) {
  margin: 9px 0 0;
  color: #647985;
}

.dispatch-price-card {
  padding: clamp(24px, 4vw, 44px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  position: relative;
  overflow: hidden;
  border: 1px solid #cfe2e6;
  border-radius: 26px;
  background: linear-gradient(135deg, #fff 0%, #f4fafb 65%, #e3f3f5 100%);
  box-shadow: 0 22px 52px rgba(10, 53, 75, .12);
}

.dispatch-price-card::before {
  content: "";
  width: 230px;
  height: 230px;
  position: absolute;
  right: -95px;
  top: -105px;
  border: 42px solid rgba(8, 124, 145, .07);
  border-radius: 50%;
}

.dispatch-price-main,
.dispatch-price-member {
  padding: 24px;
  position: relative;
  border-radius: 18px;
}

.dispatch-price-main {
  border: 1px solid #d6e4e7;
  background: rgba(255, 255, 255, .86);
}

.dispatch-price-member {
  border: 1px solid #8ac7cf;
  background: linear-gradient(135deg, #0d7182, #06485e);
  box-shadow: 0 12px 26px rgba(4, 72, 94, .18);
}

.dispatch-price-main small,
.dispatch-price-member small {
  display: block;
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .08em;
}

.dispatch-price-main small { color: #59717c; }
.dispatch-price-member small { color: #bcebf0; }

.dispatch-price-main strong,
.dispatch-price-member strong {
  display: block;
  margin-top: 7px;
  font-family: "Arial", sans-serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1;
  letter-spacing: -.04em;
}

.dispatch-price-main strong { color: var(--ds-navy); }
.dispatch-price-member strong { color: #fff; }

.dispatch-price-main em,
.dispatch-price-member em,
.discount-price em {
  margin-left: 5px;
  font-family: inherit;
  font-size: .34em;
  font-style: normal;
  letter-spacing: 0;
}

.dispatch-invoice {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-left: 4px solid var(--ds-gold);
  border-radius: 10px;
  background: #fffaf0;
}

.dispatch-invoice > span {
  color: #9c6c17;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.dispatch-invoice p {
  margin: 0;
  color: #5e513c;
  font-size: .84rem;
  line-height: 1.75;
}

.legacy-content a.dispatch-action-button,
.legacy-content a.online-schedule-button,
.legacy-content a.schedule-apply-button {
  text-decoration: none;
}

/* 既存の汎用button指定より、このページ専用の意匠を優先 */
.legacy-content .dispatch-schedule-modern a.dispatch-action-button {
  min-height: 96px;
  padding: 18px 58px 18px 25px;
  display: flex;
  border-radius: 16px;
  background: linear-gradient(135deg, #e8793f, #d84c25) !important;
}

.legacy-content .dispatch-schedule-modern a.online-schedule-button {
  width: 100%;
  min-height: 112px;
  padding: 24px 75px 24px 30px;
  display: flex;
  border-radius: 20px;
  background: linear-gradient(120deg, #086f84, #063e67 70%, #172957) !important;
}

.legacy-content .dispatch-schedule-modern a.schedule-apply-button {
  min-width: min(100%, 420px);
  min-height: auto;
  padding: 20px 64px 20px 30px;
  display: inline-block;
  border-radius: 14px;
  background: linear-gradient(135deg, #ec793a, #d84d25) !important;
}

.dispatch-action-button {
  min-height: 96px;
  padding: 18px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 16px;
  color: #fff !important;
  background: linear-gradient(135deg, #e8793f, #d84c25);
  box-shadow: 0 14px 28px rgba(216, 76, 37, .22);
  transition: transform .2s ease, box-shadow .2s ease;
}

.dispatch-action-button::after,
.online-schedule-button::after,
.schedule-apply-button::after {
  content: "→";
  position: absolute;
  right: 22px;
  font-size: 1.4rem;
}

.dispatch-action-button span { font-size: 1.06rem; font-weight: 900; }
.dispatch-action-button small { margin-top: 4px; color: #ffe6db; font-size: .74rem; }
.dispatch-action-button:hover,
.dispatch-action-button:focus-visible { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(216, 76, 37, .3); }

.early-discount {
  padding: clamp(28px, 5vw, 54px);
  border-radius: 28px;
  background: linear-gradient(145deg, #082f48, #0b5265);
  box-shadow: 0 24px 52px rgba(5, 45, 65, .2);
}

.dispatch-schedule-modern .early-discount > header .section-label { color: #75d9df; }
.dispatch-schedule-modern .early-discount > header h2 { color: #fff; }
.dispatch-schedule-modern .early-discount > header > p:last-child { color: #c6e0e4; }

.early-discount-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.discount-card {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 22px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 14px 34px rgba(1, 27, 40, .22);
}

.discount-card::before {
  content: "";
  height: 6px;
  position: absolute;
  inset: 0 0 auto;
  background: linear-gradient(90deg, #e1b75e, #e37037);
}

.discount-card.is-45::before { background: linear-gradient(90deg, #63c5cd, #167f94); }

.discount-badge {
  width: 104px;
  height: 104px;
  padding: 12px;
  float: right;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid #d5a345;
  border-radius: 50%;
  color: #744c0d;
  background: #fff8e9;
  line-height: 1;
}

.is-45 .discount-badge { border-color: #57aeb9; color: #075d6c; background: #ecfbfc; }
.discount-badge small { font-size: .64rem; font-weight: 800; }
.discount-badge strong { margin: 3px 0; font-size: 2.2rem; }
.discount-badge span { font-size: .68rem; font-weight: 800; }

.discount-card h3 {
  margin: 7px 0 18px;
  color: var(--ds-navy);
  font-size: 1.55rem;
}

.discount-card > p:not(.discount-alert):not(.discount-note) {
  min-height: 88px;
  margin: 0 122px 16px 0;
  color: #4f6773;
  font-size: .9rem;
  line-height: 1.75;
}

.discount-alert {
  clear: both;
  margin: 18px 0;
  padding: 13px 15px;
  border-radius: 10px;
  color: #7b3626;
  background: #fff0eb;
  font-size: .8rem;
  line-height: 1.65;
}

.discount-alert b {
  margin-right: 7px;
  padding: 3px 8px;
  border-radius: 999px;
  color: #fff;
  background: #c84e31;
  font-size: .68rem;
}

.discount-price { padding: 8px 0 3px; border-top: 1px solid #e4ecee; }
.discount-price small { display: block; color: #687d86; font-weight: 800; }
.discount-price strong { color: #d25227; font-size: clamp(2.1rem, 4vw, 2.75rem); line-height: 1.15; }
.is-45 .discount-price strong { color: #08798b; }
.discount-note { margin: 4px 0 18px; color: #71838b; font-size: .73rem; }

.legacy-content .discount-card > a {
  padding: 15px 50px 15px 18px;
  display: block;
  position: relative;
  border-radius: 12px;
  color: #fff;
  background: #bd6e19;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.legacy-content .is-45 > a { background: #08798b; }
.discount-card > a::after { content: "→"; position: absolute; right: 18px; }

.premium-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.premium-card {
  min-height: 230px;
  padding: clamp(24px, 4vw, 38px);
  display: grid;
  grid-template-columns: 165px 1fr;
  align-items: center;
  gap: 28px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  color: #fff;
  box-shadow: 0 18px 42px rgba(20, 25, 34, .19);
}

.premium-card::after {
  content: "";
  width: 210px;
  height: 210px;
  position: absolute;
  right: -110px;
  bottom: -125px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
}

.premium-card.executive { background: linear-gradient(135deg, #111d28, #304454); }
.premium-card.grande { background: linear-gradient(135deg, #3b1531, #8b3c55); }

.premium-emblem {
  aspect-ratio: 1;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #e6c883;
  outline: 1px solid rgba(230, 200, 131, .48);
  outline-offset: -7px;
  border-radius: 50%;
  color: #f4d995;
  text-align: center;
  background: rgba(0, 0, 0, .14);
  box-shadow: inset 0 0 30px rgba(232, 199, 123, .08);
}

.premium-emblem small { font-size: .52rem; letter-spacing: .2em; }
.premium-emblem strong { margin: 8px 0 5px; font-family: Georgia, serif; font-size: 1.08rem; letter-spacing: .1em; }
.premium-emblem span { font-size: .48rem; letter-spacing: .28em; }
.premium-card h3 { margin: 0 0 10px; color: #fff; font-size: 1.18rem; line-height: 1.5; }
.premium-card p { margin: 0; color: rgba(255, 255, 255, .79); font-size: .88rem; line-height: 1.75; }

.online-schedule-button {
  min-height: 112px;
  margin-top: 42px;
  padding: 24px 75px 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  color: #fff !important;
  background: linear-gradient(120deg, #086f84, #063e67 70%, #172957);
  box-shadow: 0 18px 40px rgba(5, 58, 84, .22);
  transition: transform .2s ease, box-shadow .2s ease;
}

.online-schedule-button::before {
  content: "";
  width: 150px;
  height: 150px;
  position: absolute;
  left: 42%;
  top: -100px;
  border: 24px solid rgba(255, 255, 255, .07);
  border-radius: 50%;
}

.online-schedule-button span,
.online-schedule-button b { position: relative; }
.online-schedule-button small { display: block; color: #83e3e8; font-size: .64rem; font-weight: 900; letter-spacing: .18em; }
.online-schedule-button strong { display: block; margin-top: 5px; font-size: clamp(1.05rem, 2.2vw, 1.4rem); }
.online-schedule-button b { padding: 9px 16px; border: 1px solid rgba(255, 255, 255, .32); border-radius: 999px; font-size: .82rem; white-space: nowrap; }
.online-schedule-button:hover,
.online-schedule-button:focus-visible { transform: translateY(-3px); box-shadow: 0 22px 46px rgba(5, 58, 84, .3); }

.schedule-repair {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid #d9e7e9;
  border-radius: 28px;
  background: #f5f9fa;
}

.schedule-heading { margin-bottom: 32px; text-align: center; }
.schedule-eyebrow { margin: 0 0 8px; color: var(--ds-blue); font-size: .74rem; font-weight: 900; letter-spacing: .14em; }
.schedule-heading h3 { margin: 0; color: var(--ds-navy); font-size: clamp(1.7rem, 3vw, 2.35rem); }
.schedule-lead { max-width: 680px; margin: 12px auto 0; color: #647985; line-height: 1.8; }

.schedule-month {
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid #ccdee2;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(11, 47, 75, .06);
}

.schedule-month h4 {
  margin: 0;
  padding: 15px 24px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: #fff;
  background: linear-gradient(100deg, var(--ds-navy), #0b6475);
}

.schedule-month h4 span { font-size: 1.35rem; }
.schedule-month h4 small { color: #94dde2; font-size: .66rem; letter-spacing: .18em; }
.schedule-table-wrap { overflow-x: auto; }

.legacy-content .schedule-table {
  width: 100% !important;
  min-width: 700px;
  margin: 0 !important;
  border: 0 !important;
  border-collapse: collapse;
}

.legacy-content .schedule-table th {
  padding: 13px 18px !important;
  border: 0 !important;
  border-bottom: 1px solid #cadde1 !important;
  color: #45616d !important;
  background: #e9f3f5 !important;
  font-size: .75rem;
  font-weight: 900;
  text-align: left;
}

.legacy-content .schedule-table td {
  padding: 18px !important;
  border: 0 !important;
  border-bottom: 1px solid #e2ecee !important;
  color: #2a4350 !important;
  background: #fff !important;
  vertical-align: middle;
}

.legacy-content .schedule-table tbody tr:last-child td { border-bottom: 0 !important; }
.legacy-content .schedule-table tbody tr:hover td { background: #f8fcfc !important; }
.legacy-content .schedule-table td:first-child { color: var(--ds-navy) !important; font-weight: 850; white-space: nowrap; }
.legacy-content .schedule-table td:nth-child(2) { font-variant-numeric: tabular-nums; white-space: nowrap; }
.legacy-content .schedule-table td small { color: #778990; }

.legacy-content .dispatch-schedule-modern .schedule-table {
  min-width: 850px;
}

.legacy-content .dispatch-schedule-modern .schedule-table th:last-child,
.legacy-content .dispatch-schedule-modern .schedule-table td:last-child {
  width: 170px;
  text-align: center;
}

.legacy-content .dispatch-schedule-modern .schedule-table td.schedule-status-cell {
  padding: 10px !important;
}

.legacy-content .dispatch-schedule-modern a.schedule-map-button {
  position: relative;
  display: flex;
  width: fit-content;
  margin: 10px 0 0;
  min-width: 82px;
  min-height: 46px;
  padding: 8px 12px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #174a57 !important;
  border: 1px solid #b9d9dd;
  border-radius: 14px;
  background: linear-gradient(145deg, #ffffff 0%, #edf8f8 100%);
  box-shadow: 0 8px 19px rgba(18, 91, 101, .13), inset 0 1px 0 #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
  text-decoration: none !important;
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease, border-color .2s ease, background .2s ease;
}

.legacy-content .dispatch-schedule-modern a.schedule-map-button::before {
  position: static;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  content: "";
  transform: none;
  border: 2px solid #168894;
  border-radius: 50%;
  background: radial-gradient(circle at center, #168894 0 2px, transparent 3px);
  box-shadow: 0 4px 9px rgba(8, 101, 116, .16);
}

.legacy-content .dispatch-schedule-modern a.schedule-map-button::after {
  display: none;
  content: none;
}

.legacy-content .dispatch-schedule-modern a.schedule-map-button:hover,
.legacy-content .dispatch-schedule-modern a.schedule-map-button:focus-visible {
  transform: translateY(-3px);
  color: #fff !important;
  border-color: #087080;
  background: linear-gradient(135deg, #168894, #075361);
  box-shadow: 0 13px 26px rgba(7, 83, 97, .25);
}

.legacy-content .dispatch-schedule-modern a.schedule-map-button:hover::before,
.legacy-content .dispatch-schedule-modern a.schedule-map-button:focus-visible::before {
  border-color: #fff;
  background: radial-gradient(circle at center, #fff 0 2px, transparent 3px);
}

.schedule-status-actions {
  display: grid;
  width: 100%;
  max-width: 150px;
  margin: 0 auto;
  gap: 6px;
  justify-items: stretch;
}

.legacy-content .dispatch-schedule-modern a.schedule-status-button {
  position: relative;
  display: inline-flex;
  width: 100%;
  min-width: 0;
  min-height: 42px;
  padding: 7px 9px 7px 11px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 7px;
  overflow: hidden;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 11px;
  background: linear-gradient(135deg, #d75a39 0%, #b83d32 100%);
  box-shadow: 0 7px 15px rgba(164, 49, 43, .22);
  text-decoration: none !important;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.legacy-content .dispatch-schedule-modern a.schedule-status-button::after {
  display: none;
  content: none;
}

.schedule-status-button span {
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .03em;
  line-height: 1.1;
  white-space: nowrap;
}

.schedule-status-button small {
  margin: 0;
  padding: 4px 6px;
  color: #9d3329 !important;
  border-radius: 999px;
  background: #fff;
  font-size: .53rem;
  font-weight: 900;
  letter-spacing: .03em;
  line-height: 1;
  white-space: nowrap;
}

.legacy-content .dispatch-schedule-modern a.schedule-status-button:hover,
.legacy-content .dispatch-schedule-modern a.schedule-status-button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 13px 27px rgba(164, 49, 43, .32);
}

.legacy-content .dispatch-schedule-modern a.schedule-early-button {
  display: inline-flex;
  width: 100%;
  min-width: 0;
  min-height: 42px;
  padding: 7px 9px 7px 11px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 7px;
  border: 1px solid transparent;
  border-radius: 11px;
  box-shadow: 0 7px 16px rgba(38, 70, 91, .14);
  text-decoration: none !important;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

.legacy-content .dispatch-schedule-modern a.schedule-early-button.is-60 {
  color: #fff !important;
  border-color: #bd8a2d;
  background: linear-gradient(135deg, #c18e2d, #966218);
}

.legacy-content .dispatch-schedule-modern a.schedule-early-button.is-45 {
  color: #fff !important;
  border-color: #477d89;
  background: linear-gradient(135deg, #398691, #245f70);
}

.schedule-early-button span {
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .01em;
  line-height: 1.1;
  white-space: nowrap;
}

.schedule-early-button small {
  margin: 0;
  padding: 4px 6px;
  color: #2a5963 !important;
  border-radius: 999px;
  background: #fff;
  font-size: .53rem;
  font-weight: 900;
  letter-spacing: .03em;
  line-height: 1;
  white-space: nowrap;
}

.schedule-early-button.is-60 small {
  color: #805414 !important;
}

[data-registration-opens-at-jst] .schedule-status-button,
[data-registration-opens-at-jst] .schedule-early-button,
[data-registration-opens-at-jst] .training-application-control,
.legacy-content .dispatch-schedule-modern a.schedule-status-button.is-registration-pending,
.legacy-content .dispatch-schedule-modern a.schedule-early-button.is-registration-pending,
.training-application-control.is-registration-pending {
  pointer-events: none;
  color: #665f58 !important;
  border-color: #d8cdbf;
  background: linear-gradient(145deg, #f2eee8, #e3dbd0);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .72);
  filter: none;
  transform: none;
}

.training-application-control.is-registration-pending .apply-mini,
[data-registration-opens-at-jst] .training-application-control .apply-mini {
  min-width: 0;
  padding: 9px 10px;
  color: #fff;
  background: linear-gradient(135deg, #74695e, #5f5750);
  box-shadow: 0 7px 16px rgba(72, 64, 57, .22);
  cursor: default;
}

.schedule-status-button.is-registration-pending small,
.schedule-early-button.is-registration-pending small {
  color: #fff !important;
  background: #74695e;
}

.legacy-content .dispatch-schedule-modern a.schedule-early-button:hover,
.legacy-content .dispatch-schedule-modern a.schedule-early-button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.07);
  box-shadow: 0 11px 22px rgba(38, 70, 91, .22);
}

.legacy-content .dispatch-schedule-modern a.schedule-status-button.is-closed,
.legacy-content .dispatch-schedule-modern a.schedule-early-button.is-closed {
  pointer-events: none;
  color: #8a7070 !important;
  border-color: #ddceca;
  background: linear-gradient(145deg, #f4efed, #e8dfdc);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .55);
  filter: none;
  transform: none;
}

.legacy-content .dispatch-schedule-modern a.schedule-status-button.is-closed::after {
  display: none;
}

.schedule-status-button.is-closed small,
.schedule-early-button.is-closed small {
  color: #fff !important;
  background: #9d5049;
  font-weight: 900;
}

.legacy-content .schedule-table td.schedule-status-cell.auto-schedule-closed {
  color: #8c4141 !important;
  background: #fff6f3 !important;
  box-shadow: inset 3px 0 0 #d76d5a;
  font-size: .83rem;
  font-weight: 900;
  letter-spacing: .08em;
  white-space: nowrap;
}

.area-tag {
  padding: 5px 10px;
  display: inline-block;
  border-radius: 999px;
  color: #086879;
  background: #e5f5f6;
  font-size: .75rem;
  font-weight: 900;
  white-space: nowrap;
}

.schedule-premium-mark {
  width: fit-content;
  min-width: 138px;
  margin-top: 10px;
  padding: 7px 14px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #cda46e;
  border-radius: 7px;
  color: #f1d7a4;
  background: linear-gradient(135deg, #38172f, #784052);
  box-shadow: 0 5px 12px rgba(71, 27, 52, .16);
  line-height: 1;
}

.legacy-content .schedule-premium-mark small { color: #e8c987; font-size: .46rem; letter-spacing: .18em; }
.schedule-premium-mark b { margin-top: 4px; font-family: Georgia, serif; font-size: .78rem; letter-spacing: .14em; }

.schedule-note {
  margin: 22px 0 0;
  padding: 14px 17px;
  border-radius: 10px;
  color: #687b84;
  background: #e9f1f3;
  font-size: .8rem;
}

.schedule-apply { margin-top: 30px; text-align: center; }
.schedule-apply-button {
  min-width: min(100%, 420px);
  padding: 20px 64px 20px 30px;
  display: inline-block;
  position: relative;
  border-radius: 14px;
  color: #fff !important;
  background: linear-gradient(135deg, #ec793a, #d84d25);
  box-shadow: 0 14px 30px rgba(216, 77, 37, .24);
  font-size: 1.08rem;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease;
}

.schedule-apply-button:hover,
.schedule-apply-button:focus-visible { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(216, 77, 37, .32); }
.schedule-apply > p { margin: 10px 0 0; color: #71838b; font-size: .76rem; }

.dispatch-schedule-modern + .course-directory {
  margin-top: 72px;
  padding: clamp(28px, 5vw, 50px);
  overflow: hidden;
  position: relative;
  border: 0;
  border-radius: 26px;
  background: linear-gradient(145deg, #092e48, #0b5364);
  box-shadow: 0 22px 48px rgba(5, 48, 70, .18);
}

.dispatch-schedule-modern + .course-directory::after {
  content: "";
  width: 250px;
  height: 250px;
  position: absolute;
  right: -120px;
  top: -140px;
  border: 45px solid rgba(255, 255, 255, .05);
  border-radius: 50%;
}

.dispatch-schedule-modern + .course-directory > .section-label { color: #75dce2; position: relative; z-index: 1; }
.dispatch-schedule-modern + .course-directory h2 { color: #fff; position: relative; z-index: 1; }
.dispatch-schedule-modern + .course-directory > div { grid-template-columns: repeat(4, minmax(0, 1fr)); position: relative; z-index: 1; }

.legacy-content .dispatch-schedule-modern + .course-directory a {
  min-height: 120px;
  padding: 20px 18px 20px 22px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, .16);
  border-top: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  background: rgba(255, 255, 255, .09);
  box-shadow: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.legacy-content .dispatch-schedule-modern + .course-directory a::after {
  content: "↗";
  position: absolute;
  right: 15px;
  top: 14px;
  color: #7ed9df;
}

.legacy-content .dispatch-schedule-modern + .course-directory a[aria-current="page"] {
  border-color: #d6ad5c;
  background: linear-gradient(135deg, rgba(218, 171, 82, .23), rgba(255, 255, 255, .11));
}

.legacy-content .dispatch-schedule-modern + .course-directory a:hover,
.legacy-content .dispatch-schedule-modern + .course-directory a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, .38);
  background: rgba(255, 255, 255, .15);
}

.legacy-content .dispatch-schedule-modern + .course-directory b { color: #fff; }
.legacy-content .dispatch-schedule-modern + .course-directory span { color: #bad7dc; }

@media (max-width: 1040px) {
  .premium-card { grid-template-columns: 130px 1fr; gap: 20px; }
  .dispatch-schedule-modern + .course-directory > div { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 800px) {
  .dispatch-schedule-modern > section,
  .dispatch-schedule-modern > .schedule-repair { margin-top: 52px; }
  .dispatch-price-card,
  .early-discount-grid,
  .premium-showcase-grid { grid-template-columns: 1fr; }
  .dispatch-invoice { align-items: flex-start; }
  .early-discount { padding: 28px 20px; }
  .premium-card { min-height: 0; grid-template-columns: 125px 1fr; }
  .online-schedule-button { align-items: flex-start; flex-direction: column; }
  .online-schedule-button b { border: 0; padding: 0; color: #bcecf0; }
}

@media (max-width: 560px) {
  .dispatch-price-card,
  .discount-card,
  .schedule-repair { padding: 20px; border-radius: 18px; }
  .dispatch-price-main,
  .dispatch-price-member { padding: 19px; }
  .dispatch-invoice { display: block; }
  .dispatch-invoice > span { display: block; margin-bottom: 8px; }
  .discount-badge { width: 82px; height: 82px; padding: 9px; }
  .discount-badge strong { font-size: 1.7rem; }
  .discount-card > p:not(.discount-alert):not(.discount-note) { min-height: 0; margin-right: 94px; }
  .premium-card { padding: 24px 20px; display: block; text-align: center; }
  .premium-emblem { width: 126px; margin: 0 auto 20px; }
  .online-schedule-button { min-height: 0; padding: 23px 55px 23px 22px; border-radius: 16px; }
  .legacy-content .dispatch-schedule-modern a.online-schedule-button {
    min-height: 0;
    padding: 23px 55px 23px 22px;
    border-radius: 16px;
  }
  .schedule-month h4 { padding: 13px 17px; }
  .dispatch-schedule-modern + .course-directory { padding: 26px 20px; }
  .dispatch-schedule-modern + .course-directory > div { grid-template-columns: 1fr; }
}

/* 職業紹介責任者講習・開催スケジュール */
.early-details-link {
  width: fit-content;
  margin: 24px auto 0;
  padding: 13px 48px 13px 22px;
  display: block;
  position: relative;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  color: #fff !important;
  background: rgba(255, 255, 255, .1);
  font-size: .84rem;
  font-weight: 850;
  text-decoration: none !important;
  transition: background .2s ease, transform .2s ease;
}

.early-details-link::after {
  content: "→";
  position: absolute;
  right: 19px;
}

.early-details-link:hover,
.early-details-link:focus-visible {
  color: #fff !important;
  background: rgba(255, 255, 255, .18);
  transform: translateY(-2px);
}

.placement-important {
  padding: clamp(26px, 5vw, 48px);
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 26px;
  position: relative;
  overflow: hidden;
  border: 1px solid #e9d49b;
  border-radius: 24px;
  background: linear-gradient(135deg, #fffdf7, #fff7e3);
  box-shadow: 0 18px 42px rgba(102, 73, 18, .1);
}

.placement-important::after {
  content: "";
  width: 170px;
  height: 170px;
  position: absolute;
  right: -85px;
  top: -90px;
  border: 30px solid rgba(201, 154, 67, .08);
  border-radius: 50%;
}

.placement-important-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  border: 1px solid #d4a753;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #dcae55, #af741d);
  box-shadow: 0 10px 20px rgba(169, 111, 23, .2);
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 900;
}

.placement-important > div:last-child {
  position: relative;
  z-index: 1;
}

.placement-important .section-label {
  margin: 0 0 5px;
  color: #a46b19;
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .17em;
}

.placement-important h2 {
  margin: 0 0 18px;
  color: #573b18;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
}

.placement-important p:not(.section-label) {
  margin: 10px 0 0;
  color: #645741;
  line-height: 1.85;
}

.placement-important-emphasis {
  padding: 12px 16px;
  border-left: 4px solid #c98c2f;
  border-radius: 7px;
  color: #743f18 !important;
  background: rgba(255, 255, 255, .72);
  font-weight: 900;
}

.placement-test-note {
  color: #9a3d2b !important;
  font-weight: 850;
}

.venue-address {
  margin-top: 5px;
  display: block;
  color: #778990;
  font-size: .74rem;
  font-weight: 500;
}

.placement-schedule-modern .schedule-table td:nth-child(3) {
  min-width: 150px;
}

@media (max-width: 560px) {
  .placement-important {
    padding: 23px 20px;
    display: block;
  }

  .placement-important-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 17px;
    font-size: 1.5rem;
  }

  .early-details-link {
    width: 100%;
    border-radius: 12px;
    text-align: center;
  }
}

/* オンライン派遣元責任者講習・開催スケジュール */
.online-price-card {
  padding: clamp(22px, 4vw, 42px);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  overflow: hidden;
  position: relative;
  border: 1px solid #cce3e8;
  border-radius: 28px;
  background: linear-gradient(135deg, #f5fbfc, #e4f4f6);
  box-shadow: 0 22px 52px rgba(7, 70, 91, .13);
}

.online-price-card::before {
  content: "";
  width: 260px;
  height: 260px;
  position: absolute;
  left: -130px;
  bottom: -165px;
  border: 42px solid rgba(6, 112, 133, .07);
  border-radius: 50%;
}

.online-price-visual {
  min-height: 290px;
  padding: clamp(25px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(145deg, #063852, #087b8d);
  box-shadow: 0 16px 34px rgba(4, 61, 78, .22);
}

.online-price-visual::after {
  content: "";
  width: 165px;
  height: 165px;
  position: absolute;
  right: -70px;
  top: -85px;
  border: 24px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.online-price-visual > small {
  color: #9de6e9;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.online-price-visual > span {
  margin-top: 12px;
  color: rgba(255, 255, 255, .38);
  font-family: Arial, sans-serif;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .38em;
}

.online-price-visual strong {
  margin-top: 8px;
  font-family: Arial, sans-serif;
  font-size: clamp(2.65rem, 6vw, 4.25rem);
  line-height: 1;
  letter-spacing: -.04em;
}

.online-price-visual em {
  margin-left: 6px;
  font-family: inherit;
  font-size: .25em;
  font-style: normal;
  letter-spacing: 0;
}

.online-price-visual p {
  margin: 12px 0 0;
  color: #c5e8eb;
  font-size: .83rem;
}

.online-price-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  position: relative;
}

.online-price-details .dispatch-invoice {
  border: 1px solid #e5d29b;
  border-left: 4px solid var(--ds-gold);
  background: rgba(255, 253, 247, .94);
}

.legacy-content .online-dispatch-modern a.online-primary-button {
  min-height: 105px;
  padding: 21px 66px 21px 26px;
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(135deg, #eb783a, #d84d25) !important;
  box-shadow: 0 14px 30px rgba(216, 77, 37, .24);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.online-primary-button::after {
  content: "→";
  position: absolute;
  right: 25px;
  font-size: 1.45rem;
}

.online-primary-button small {
  display: block;
  color: #ffe0d1;
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .17em;
}

.online-primary-button strong {
  display: block;
  margin-top: 5px;
  font-size: 1.06rem;
}

.online-primary-button:hover,
.online-primary-button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 19px 36px rgba(216, 77, 37, .32);
}

.online-feature-strip {
  margin-top: 17px;
  padding: 17px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid #d5e6e9;
  border-radius: 16px;
  background: #d5e6e9;
  overflow: hidden;
}

.online-feature-strip span {
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #647a84;
  background: #fff;
  font-size: .78rem;
}

.online-feature-strip b {
  color: #076b7c;
  font-size: 1.05rem;
}

.legacy-content .online-dispatch-modern a.inperson-schedule-button {
  width: 100%;
  min-height: 112px;
  margin-top: 44px;
  padding: 24px 75px 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  position: relative;
  overflow: hidden;
  border: 1px solid #c6d8df;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(120deg, #163b59, #0a6074) !important;
  box-shadow: 0 18px 40px rgba(8, 57, 79, .2);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.inperson-schedule-button::before {
  content: "";
  width: 170px;
  height: 170px;
  position: absolute;
  left: 45%;
  top: -120px;
  border: 28px solid rgba(255, 255, 255, .06);
  border-radius: 50%;
}

.inperson-schedule-button::after {
  content: "→";
  position: absolute;
  right: 23px;
  font-size: 1.4rem;
}

.inperson-schedule-button span,
.inperson-schedule-button b { position: relative; }
.inperson-schedule-button small { display: block; color: #87dbe1; font-size: .63rem; font-weight: 900; letter-spacing: .18em; }
.inperson-schedule-button strong { display: block; margin-top: 5px; font-size: clamp(1.05rem, 2.2vw, 1.35rem); }
.inperson-schedule-button b { padding: 8px 15px; border: 1px solid rgba(255, 255, 255, .3); border-radius: 999px; font-size: .8rem; white-space: nowrap; }
.inperson-schedule-button:hover,
.inperson-schedule-button:focus-visible { transform: translateY(-3px); box-shadow: 0 22px 46px rgba(8, 57, 79, .28); }

.online-schedule-intro {
  margin-top: 72px;
  text-align: center;
}

.online-schedule-intro .schedule-eyebrow { margin-bottom: 8px; }
.online-schedule-intro h2 { margin: 0; color: var(--ds-navy); font-size: clamp(1.75rem, 3vw, 2.35rem); }
.online-schedule-intro > p:last-child { max-width: 710px; margin: 12px auto 0; color: #647985; line-height: 1.8; }

.online-month-list {
  margin-top: 32px;
  display: grid;
  gap: 24px;
}

.online-month {
  overflow: hidden;
  border: 1px solid #cbdfe3;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(7, 52, 74, .08);
}

.online-month > header {
  margin: 0 !important;
  padding: 17px 23px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  background: linear-gradient(100deg, #082f4a, #08788a);
  text-align: left !important;
}

.online-month > header > span {
  color: rgba(255, 255, 255, .23);
  font-family: Arial, sans-serif;
  font-size: 2.65rem;
  font-weight: 900;
  line-height: 1;
}

.online-month h3 { margin: 0; color: #fff; font-size: 1.25rem; }
.online-month header small { color: #8edbe1; font-size: .58rem; font-weight: 900; letter-spacing: .16em; }
.online-table-wrap { overflow-x: auto; }

.legacy-content .online-schedule-table {
  width: 100% !important;
  min-width: 790px;
  margin: 0 !important;
  border: 0 !important;
  border-collapse: collapse;
}

.legacy-content .online-schedule-table th {
  padding: 13px 17px !important;
  border: 0 !important;
  border-bottom: 1px solid #cbdde1 !important;
  color: #48616c !important;
  background: #eaf4f5 !important;
  font-size: .73rem;
  font-weight: 900;
  text-align: left;
}

.legacy-content .online-schedule-table td {
  padding: 17px !important;
  border: 0 !important;
  border-bottom: 1px solid #e1ecee !important;
  color: #2d4652 !important;
  background: #fff !important;
  vertical-align: middle;
}

.legacy-content .online-schedule-table tbody tr:last-child td { border-bottom: 0 !important; }
.legacy-content .online-schedule-table tbody tr:hover td { background: #f7fbfc !important; }
.online-schedule-table td:first-child { white-space: nowrap; }
.online-schedule-table td:last-child b,
.online-schedule-table td:last-child small { display: block; }
.online-schedule-table td:last-child b { color: #7b4524; }
.online-schedule-table td:last-child small { margin-top: 3px; color: #a55a32; font-weight: 850; }

.online-area,
.capacity-tag {
  padding: 6px 11px;
  display: inline-block;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 900;
  white-space: nowrap;
}

.online-area { color: #076a7b; background: #e4f5f6; }
.capacity-tag { color: #624710; background: #fff4d8; }

.legacy-content .online-schedule-table a.online-guide-link {
  padding: 9px 29px 9px 12px;
  display: inline-block;
  position: relative;
  border: 1px solid #9bcbd1;
  border-radius: 9px;
  color: #076879;
  background: #f0fafb;
  font-size: .75rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.online-guide-link::after {
  content: "↗";
  position: absolute;
  right: 10px;
}

.online-guide-link:hover,
.online-guide-link:focus-visible { border-color: #087589; background: #e2f4f6; }

.online-application-panel {
  margin-top: 42px;
  padding: clamp(28px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(125deg, #082f4a, #075f73);
  box-shadow: 0 20px 44px rgba(6, 55, 76, .22);
}

.online-application-panel::after {
  content: "";
  width: 220px;
  height: 220px;
  position: absolute;
  right: -110px;
  top: -130px;
  border: 35px solid rgba(255, 255, 255, .06);
  border-radius: 50%;
}

.online-application-panel > div,
.online-application-panel > a { position: relative; z-index: 1; }
.online-application-panel small { color: #81dce1; font-size: .65rem; font-weight: 900; letter-spacing: .18em; }
.online-application-panel h2 { margin: 6px 0 0; color: #fff; font-size: clamp(1.35rem, 2.6vw, 1.9rem); }
.online-application-panel p { margin: 8px 0 0; color: #bedce0; font-size: .83rem; }

.legacy-content .online-application-panel > a {
  min-width: 285px;
  padding: 18px 48px 18px 22px;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, #ec793a, #d84d25);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .18);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.online-application-panel > a::after { content: "→"; position: absolute; right: 19px; }

@media (max-width: 800px) {
  .online-price-card { grid-template-columns: 1fr; }
  .online-price-visual { min-height: 235px; }
  .online-feature-strip { grid-template-columns: 1fr; }
  .legacy-content .online-dispatch-modern a.inperson-schedule-button { align-items: flex-start; flex-direction: column; }
  .inperson-schedule-button b { padding: 0; border: 0; color: #b9e5e8; }
  .online-application-panel { align-items: stretch; flex-direction: column; }
  .legacy-content .online-application-panel > a { min-width: 0; }
}

@media (max-width: 560px) {
  .online-price-card { padding: 20px; border-radius: 18px; }
  .online-price-visual { min-height: 210px; padding: 25px 21px; border-radius: 16px; }
  .online-price-details .dispatch-invoice { display: block; }
  .legacy-content .online-dispatch-modern a.inperson-schedule-button {
    min-height: 0;
    padding: 23px 55px 23px 22px;
    border-radius: 16px;
  }
  .online-schedule-intro { margin-top: 52px; }
  .online-month > header { padding: 14px 17px; }
  .online-month > header > span { font-size: 2.15rem; }
  .online-application-panel { padding: 25px 20px; border-radius: 18px; }
}

/* 集合型派遣元責任者講習：通常申込ボタン new luxe design */
.legacy-content .dispatch-schedule-modern a.schedule-apply-button.schedule-apply-luxe {
  width: min(100%, 660px);
  min-width: 0;
  min-height: 126px;
  padding: 21px 76px 21px 24px;
  display: grid;
  grid-template-columns: 68px 1fr;
  align-items: center;
  gap: 21px;
  position: relative;
  overflow: hidden;
  border: 1px solid #caa65b;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(125deg, #071f34 0%, #0b3851 55%, #102b43 100%) !important;
  box-shadow: 0 20px 40px rgba(5, 34, 52, .24), inset 0 1px rgba(255, 255, 255, .08);
  text-align: left;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.legacy-content .dispatch-schedule-modern a.schedule-apply-button.schedule-apply-luxe::before {
  content: "";
  width: 220px;
  height: 220px;
  position: absolute;
  right: -125px;
  top: -135px;
  border: 32px solid rgba(218, 185, 111, .08);
  border-radius: 50%;
}

.legacy-content .dispatch-schedule-modern a.schedule-apply-button.schedule-apply-luxe::after {
  content: none;
}

.schedule-apply-luxe-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(232, 202, 139, .7);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(225, 190, 119, .18), rgba(225, 190, 119, .05));
  box-shadow: inset 0 0 20px rgba(232, 202, 139, .08);
}

.schedule-apply-luxe-icon i {
  width: 27px;
  height: 25px;
  display: block;
  position: relative;
  border: 2px solid #e3c47f;
  border-radius: 4px;
}

.schedule-apply-luxe-icon i::before {
  content: "";
  height: 6px;
  position: absolute;
  inset: 4px 3px auto;
  border-top: 2px solid #e3c47f;
  border-bottom: 2px solid rgba(227, 196, 127, .65);
}

.schedule-apply-luxe-icon i::after {
  content: "";
  width: 9px;
  height: 2px;
  position: absolute;
  right: 4px;
  bottom: 4px;
  border-radius: 2px;
  background: #e3c47f;
}

.schedule-apply-luxe-copy {
  display: block;
  position: relative;
  z-index: 1;
}

.schedule-apply-luxe-copy small,
.schedule-apply-luxe-copy strong,
.schedule-apply-luxe-copy em {
  display: block;
}

.schedule-apply-luxe-copy small {
  color: #d7b66e;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .22em;
}

.schedule-apply-luxe-copy strong {
  margin-top: 5px;
  color: #fff;
  font-size: clamp(1.12rem, 2.2vw, 1.42rem);
  line-height: 1.35;
}

.schedule-apply-luxe-copy em {
  margin-top: 5px;
  color: #aac5cf;
  font-size: .73rem;
  font-style: normal;
  font-weight: 600;
}

.schedule-apply-luxe-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  position: absolute;
  z-index: 1;
  right: 23px;
  top: 50%;
  border: 1px solid rgba(232, 202, 139, .58);
  border-radius: 50%;
  color: #eccf91;
  background: rgba(232, 202, 139, .08);
  font-size: 1.15rem;
  transform: translateY(-50%);
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.legacy-content .dispatch-schedule-modern a.schedule-apply-button.schedule-apply-luxe:hover,
.legacy-content .dispatch-schedule-modern a.schedule-apply-button.schedule-apply-luxe:focus-visible {
  border-color: #e3c47f;
  background: linear-gradient(125deg, #092b46 0%, #0d4a63 55%, #15374f 100%) !important;
  box-shadow: 0 25px 48px rgba(5, 34, 52, .32), 0 0 0 4px rgba(202, 166, 91, .1);
  transform: translateY(-4px);
}

.schedule-apply-luxe:hover .schedule-apply-luxe-arrow,
.schedule-apply-luxe:focus-visible .schedule-apply-luxe-arrow {
  color: #092c43;
  background: #e3c47f;
  transform: translate(3px, -50%);
}

@media (max-width: 560px) {
  .legacy-content .dispatch-schedule-modern a.schedule-apply-button.schedule-apply-luxe {
    min-height: 112px;
    padding: 18px 58px 18px 17px;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    border-radius: 17px;
  }

  .schedule-apply-luxe-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
  }

  .schedule-apply-luxe-arrow {
    width: 34px;
    height: 34px;
    right: 14px;
  }

  .schedule-apply-luxe-copy em { display: none; }
}

/* 集合型職業紹介責任者講習：通常申込みボタン rose luxe design */
.legacy-content .dispatch-schedule-modern a.schedule-apply-button.placement-apply-luxe {
  width: min(100%, 660px);
  min-width: 0;
  min-height: 126px;
  padding: 21px 76px 21px 24px;
  display: grid;
  grid-template-columns: 68px 1fr;
  align-items: center;
  gap: 21px;
  position: relative;
  overflow: hidden;
  border: 1px solid #d1a0a9;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(125deg, #30162b 0%, #612a45 55%, #402039 100%) !important;
  box-shadow: 0 20px 40px rgba(62, 24, 48, .25), inset 0 1px rgba(255, 255, 255, .09);
  text-align: left;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.legacy-content .dispatch-schedule-modern a.schedule-apply-button.placement-apply-luxe::before {
  content: "";
  width: 220px;
  height: 220px;
  position: absolute;
  right: -125px;
  top: -135px;
  border: 32px solid rgba(232, 181, 187, .08);
  border-radius: 50%;
}

.legacy-content .dispatch-schedule-modern a.schedule-apply-button.placement-apply-luxe::after {
  content: none;
}

.placement-apply-luxe-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(238, 191, 198, .7);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(232, 181, 187, .18), rgba(232, 181, 187, .05));
  box-shadow: inset 0 0 20px rgba(238, 191, 198, .08);
}

.placement-apply-luxe-icon i {
  width: 25px;
  height: 30px;
  display: block;
  position: relative;
  border: 2px solid #ebbdc5;
  border-radius: 3px;
}

.placement-apply-luxe-icon i::before {
  content: "";
  width: 12px;
  height: 6px;
  position: absolute;
  left: 5px;
  top: 7px;
  border-bottom: 2px solid #ebbdc5;
  border-left: 2px solid #ebbdc5;
  transform: rotate(-45deg);
}

.placement-apply-luxe-icon i::after {
  content: "";
  height: 5px;
  position: absolute;
  inset: auto 4px 5px;
  border-top: 1px solid rgba(235, 189, 197, .75);
  border-bottom: 1px solid rgba(235, 189, 197, .45);
}

.placement-apply-luxe-copy {
  display: block;
  position: relative;
  z-index: 1;
}

.placement-apply-luxe-copy small,
.placement-apply-luxe-copy strong,
.placement-apply-luxe-copy em { display: block; }

.placement-apply-luxe-copy small {
  color: #e4adb8;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .22em;
}

.placement-apply-luxe-copy strong {
  margin-top: 5px;
  color: #fff;
  font-size: clamp(1.12rem, 2.2vw, 1.42rem);
  line-height: 1.35;
}

.placement-apply-luxe-copy em {
  margin-top: 5px;
  color: #dabac5;
  font-size: .73rem;
  font-style: normal;
  font-weight: 600;
}

.placement-apply-luxe-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  position: absolute;
  z-index: 1;
  right: 23px;
  top: 50%;
  border: 1px solid rgba(238, 191, 198, .58);
  border-radius: 50%;
  color: #efc4cb;
  background: rgba(232, 181, 187, .08);
  font-size: 1.15rem;
  transform: translateY(-50%);
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.legacy-content .dispatch-schedule-modern a.schedule-apply-button.placement-apply-luxe:hover,
.legacy-content .dispatch-schedule-modern a.schedule-apply-button.placement-apply-luxe:focus-visible {
  border-color: #efc0c8;
  background: linear-gradient(125deg, #44203d 0%, #7a3453 55%, #552645 100%) !important;
  box-shadow: 0 25px 48px rgba(62, 24, 48, .34), 0 0 0 4px rgba(209, 160, 169, .1);
  transform: translateY(-4px);
}

.placement-apply-luxe:hover .placement-apply-luxe-arrow,
.placement-apply-luxe:focus-visible .placement-apply-luxe-arrow {
  color: #3b1933;
  background: #efc0c8;
  transform: translate(3px, -50%);
}

@media (max-width: 560px) {
  .legacy-content .dispatch-schedule-modern a.schedule-apply-button.placement-apply-luxe {
    min-height: 112px;
    padding: 18px 58px 18px 17px;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    border-radius: 17px;
  }

  .placement-apply-luxe-icon {
    width: 54px;
    height: 54px;
  }

  .placement-apply-luxe-arrow {
    width: 34px;
    height: 34px;
    right: 14px;
  }

  .placement-apply-luxe-copy em { display: none; }
}

/* 集合型職業紹介責任者講習：講習時間・講習内容 */
.course-detail-modern {
  --cd-navy: #0a3450;
  --cd-teal: #087a88;
  --cd-gold: #c7923c;
  color: #2d4652;
}

.course-detail-modern > section + section { margin-top: 78px; }

.course-detail-modern section > header {
  margin-bottom: 28px;
  text-align: center;
}

.course-detail-modern section > header .section-label {
  margin: 0 0 8px;
  color: var(--cd-teal);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .2em;
}

.course-detail-modern section > header h2 {
  margin: 0;
  color: var(--cd-navy);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.course-detail-modern section > header p:last-child:not(.section-label) {
  margin: 10px auto 0;
  color: #647985;
  line-height: 1.8;
}

.course-time-notice {
  max-width: 800px;
  margin: 0 auto 24px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid #c7e0e4;
  border-radius: 13px;
  background: #edf8f9;
}

.course-time-notice > span {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--cd-teal);
  font-family: Georgia, serif;
  font-weight: 900;
}

.course-time-notice p {
  margin: 0;
  color: #41616b;
  font-size: .83rem;
  line-height: 1.65;
}

.course-time-notice b { margin-right: 10px; color: #075f6d; }

.course-time-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.course-time-card {
  min-height: 154px;
  padding: 22px;
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 18px;
  position: relative;
  overflow: hidden;
  border: 1px solid #d0e1e4;
  border-radius: 18px;
  background: linear-gradient(145deg, #fff, #f3fafb);
  box-shadow: 0 10px 26px rgba(8, 55, 74, .07);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.course-time-card::after {
  content: "";
  width: 90px;
  height: 90px;
  position: absolute;
  right: -56px;
  bottom: -58px;
  border: 15px solid rgba(8, 122, 136, .06);
  border-radius: 50%;
}

.course-time-card:hover {
  border-color: #8fc6cd;
  box-shadow: 0 15px 32px rgba(8, 55, 74, .12);
  transform: translateY(-3px);
}

.course-time-start {
  width: 88px;
  height: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #0a3d58, #087b89);
  box-shadow: 0 10px 20px rgba(5, 78, 94, .18);
}

.course-time-start small {
  color: #9ce5e9;
  font-size: .52rem;
  font-weight: 900;
  letter-spacing: .15em;
}

.course-time-start strong {
  margin-top: 3px;
  font-family: Arial, sans-serif;
  font-size: 1.25rem;
}

.course-time-duration span,
.course-time-duration b,
.course-time-duration small { display: block; }
.course-time-duration span { color: #758991; font-size: .68rem; font-weight: 850; }
.course-time-duration b { margin-top: 6px; color: var(--cd-navy); font-size: .92rem; white-space: nowrap; }
.course-time-duration small { margin-top: 5px; color: #a25b30; font-size: .66rem; font-weight: 800; }

.legacy-content .course-time-schedule-link {
  width: min(100%, 600px);
  min-height: 92px;
  margin: 25px auto 0;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(120deg, #0a3551, #087485);
  box-shadow: 0 15px 32px rgba(6, 67, 85, .2);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.course-time-schedule-link small,
.course-time-schedule-link strong { display: block; }
.course-time-schedule-link small { color: #8ce0e5; font-size: .58rem; font-weight: 900; letter-spacing: .17em; }
.course-time-schedule-link strong { margin-top: 4px; color: #fff; font-size: 1rem; }
.course-time-schedule-link > b { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; }
.course-time-schedule-link:hover,
.course-time-schedule-link:focus-visible { color: #fff; box-shadow: 0 20px 38px rgba(6, 67, 85, .28); transform: translateY(-3px); }

.course-curriculum-section {
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid #d7e5e8;
  border-radius: 28px;
  background: linear-gradient(145deg, #f6fafb, #fff);
}

.course-curriculum-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
  counter-reset: none;
}

.course-curriculum-list li {
  min-height: 126px;
  padding: 22px;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 17px;
  position: relative;
  border: 1px solid #d8e5e7;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(8, 55, 74, .05);
}

.course-curriculum-list li > span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(145deg, #0b405b, #087b88);
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
}

.course-curriculum-list li small,
.course-curriculum-list li strong,
.course-curriculum-list li em { display: block; }
.course-curriculum-list li small { color: #16808c; font-size: .56rem; font-weight: 900; letter-spacing: .13em; }
.course-curriculum-list li strong { margin-top: 6px; color: #294650; font-size: .9rem; line-height: 1.65; }

.course-curriculum-list li.is-test {
  border-color: #e1c485;
  background: linear-gradient(145deg, #fffdf7, #fff7e7);
}

.course-curriculum-list li.is-test > span { background: linear-gradient(145deg, #b37922, #d3a34b); }
.course-curriculum-list li.is-test small { color: #9b6819; }
.course-curriculum-list li.is-test em { margin-top: 7px; color: #a3472e; font-size: .7rem; font-style: normal; font-weight: 850; }

@media (max-width: 950px) {
  .course-time-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .course-curriculum-list { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .course-detail-modern > section + section { margin-top: 54px; }
  .course-time-notice { align-items: flex-start; }
  .course-time-notice b { display: block; margin: 0 0 3px; }
  .course-time-grid { grid-template-columns: 1fr; }
  .course-time-card { min-height: 128px; padding: 18px; grid-template-columns: 76px 1fr; }
  .course-time-start { width: 74px; height: 74px; }
  .course-curriculum-section { padding: 24px 18px; border-radius: 20px; }
  .course-curriculum-list li { padding: 18px 15px; grid-template-columns: 44px 1fr; }
  .course-curriculum-list li > span { width: 42px; height: 42px; border-radius: 11px; }
}

/* 集合型派遣元責任者講習：講習時間・講習内容 */
.dispatch-course-detail .course-time-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.dispatch-course-detail .course-time-card {
  grid-column: span 2;
}

.dispatch-course-detail .course-time-card:nth-child(4),
.dispatch-course-detail .course-time-card:nth-child(5) {
  grid-column: span 3;
}

.dispatch-course-notes {
  margin-top: 30px;
  padding: clamp(25px, 4vw, 40px);
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 22px;
  position: relative;
  overflow: hidden;
  border: 1px solid #e3c984;
  border-radius: 22px;
  background: linear-gradient(135deg, #fffdf7, #fff7e5);
  box-shadow: 0 14px 34px rgba(99, 68, 15, .09);
}

.dispatch-course-notes::after {
  content: "";
  width: 150px;
  height: 150px;
  position: absolute;
  right: -85px;
  top: -95px;
  border: 25px solid rgba(199, 146, 60, .08);
  border-radius: 50%;
}

.dispatch-course-notes-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #b87b22, #d8aa50);
  box-shadow: 0 10px 20px rgba(173, 113, 24, .2);
  font-family: Georgia, serif;
  font-size: 1.65rem;
  font-weight: 900;
}

.dispatch-course-notes > div:last-child { position: relative; z-index: 1; }
.dispatch-course-notes .section-label { margin: 0 0 4px; color: #9b6719; font-size: .62rem; font-weight: 900; letter-spacing: .17em; }
.dispatch-course-notes h2 { margin: 0; color: #593c17; font-size: clamp(1.2rem, 2.4vw, 1.65rem); }
.legacy-content .dispatch-course-notes ul { margin: 13px 0 0; padding-left: 1.2em; }
.legacy-content .dispatch-course-notes li { margin-top: 5px; color: #68583e; line-height: 1.75; }

@media (max-width: 1000px) {
  .dispatch-course-detail .course-time-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dispatch-course-detail .course-time-card,
  .dispatch-course-detail .course-time-card:nth-child(4),
  .dispatch-course-detail .course-time-card:nth-child(5) { grid-column: auto; }
  .dispatch-course-detail .course-time-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .dispatch-course-detail .course-time-grid { grid-template-columns: 1fr; }
  .dispatch-course-detail .course-time-card:last-child { grid-column: auto; }
  .dispatch-course-notes { padding: 23px 20px; display: block; }
  .dispatch-course-notes-icon { width: 52px; height: 52px; margin-bottom: 16px; font-size: 1.35rem; }
}

/* 派遣元責任者講習・講習内容ページ：全体仕上げ */
.dispatch-detail-intro {
  min-height: 330px;
  padding: clamp(30px, 6vw, 62px);
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  align-items: center;
  gap: 44px;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(125deg, #071f35 0%, #0a5268 68%, #087b84 100%);
  box-shadow: 0 26px 58px rgba(5, 46, 66, .23);
}

.dispatch-detail-intro::before,
.dispatch-detail-intro::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
}

.dispatch-detail-intro::before { width: 300px; height: 300px; right: -120px; top: -170px; }
.dispatch-detail-intro::after { width: 190px; height: 190px; left: 46%; bottom: -145px; }
.dispatch-detail-intro-copy,
.dispatch-detail-intro-data { position: relative; z-index: 1; }

.dispatch-detail-intro-copy .section-label {
  margin: 0 0 10px;
  color: #83dfe3;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .2em;
}

.dispatch-detail-intro-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.35;
}

.dispatch-detail-intro-copy > p:last-of-type {
  max-width: 570px;
  margin: 16px 0 0;
  color: #c8e0e4;
  line-height: 1.85;
}

.legacy-content .dispatch-detail-intro-copy > a {
  width: fit-content;
  margin-top: 23px;
  padding: 13px 19px;
  display: flex;
  align-items: center;
  gap: 22px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  font-size: .82rem;
  font-weight: 900;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

.legacy-content .dispatch-detail-intro-copy > a:hover,
.legacy-content .dispatch-detail-intro-copy > a:focus-visible { color: #fff; background: rgba(255, 255, 255, .15); transform: translateY(-2px); }

.dispatch-detail-intro-data {
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 22px;
  background: rgba(3, 31, 47, .28);
  backdrop-filter: blur(5px);
}

.dispatch-detail-intro-data > div {
  padding: 19px 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  text-align: center;
  background: rgba(255, 255, 255, .06);
}

.dispatch-detail-intro-data strong { display: block; color: #e5c77f; font-family: Arial, sans-serif; font-size: 2.15rem; line-height: 1; }
.dispatch-detail-intro-data span { display: block; margin-top: 7px; color: #d2e4e6; font-size: .69rem; font-weight: 800; }
.dispatch-detail-intro-data > p { grid-column: 1 / -1; margin: 5px 0 0; color: rgba(255,255,255,.33); font-family: Arial, sans-serif; font-size: .6rem; font-weight: 900; letter-spacing: .19em; line-height: 1.7; text-align: center; }

.course-detail-modern + .course-detail-directory {
  margin-top: 76px;
  padding: clamp(28px, 5vw, 50px);
  overflow: hidden;
  position: relative;
  border: 0;
  border-radius: 27px;
  background: linear-gradient(145deg, #082d47, #0a5968);
  box-shadow: 0 22px 48px rgba(5, 48, 70, .18);
}

.course-detail-modern + .course-detail-directory::after {
  content: "";
  width: 250px;
  height: 250px;
  position: absolute;
  right: -125px;
  top: -145px;
  border: 45px solid rgba(255, 255, 255, .05);
  border-radius: 50%;
}

.course-detail-modern + .course-detail-directory > .section-label { color: #78dce1; position: relative; z-index: 1; }
.course-detail-modern + .course-detail-directory h2 { color: #fff; position: relative; z-index: 1; }
.course-detail-modern + .course-detail-directory > div { grid-template-columns: repeat(4, minmax(0, 1fr)); position: relative; z-index: 1; }

.legacy-content .course-detail-modern + .course-detail-directory a {
  min-height: 116px;
  padding: 20px 38px 20px 20px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, .16);
  border-top: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  box-shadow: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.legacy-content .course-detail-modern + .course-detail-directory a::after { content: "↗"; position: absolute; right: 14px; top: 14px; color: #82dce1; }
.legacy-content .course-detail-modern + .course-detail-directory a[aria-current="page"] { border-color: #d7b466; background: linear-gradient(135deg, rgba(216, 179, 98, .22), rgba(255, 255, 255, .1)); }
.legacy-content .course-detail-modern + .course-detail-directory a:hover,
.legacy-content .course-detail-modern + .course-detail-directory a:focus-visible { transform: translateY(-3px); border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.14); }
.legacy-content .course-detail-modern + .course-detail-directory b { color: #fff; }
.legacy-content .course-detail-modern + .course-detail-directory span { color: #b9d7dc; }

@media (max-width: 1000px) {
  .dispatch-detail-intro { grid-template-columns: 1fr; }
  .dispatch-detail-intro-data { max-width: 440px; }
  .course-detail-modern + .course-detail-directory > div { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .dispatch-detail-intro { min-height: 0; padding: 28px 21px; border-radius: 21px; }
  .dispatch-detail-intro-data { padding: 15px; }
  .course-detail-modern + .course-detail-directory { padding: 26px 20px; }
  .course-detail-modern + .course-detail-directory > div { grid-template-columns: 1fr; }
}

/* 集合型派遣元責任者講習：ご利用方法 */
.usage-modern {
  --ug-navy: #082f49;
  --ug-teal: #087a88;
  --ug-orange: #df6831;
  color: #2d4652;
}

.usage-modern > section + section { margin-top: 76px; }

.usage-modern section > header {
  margin-bottom: 28px;
  text-align: center;
}

.usage-modern section > header .section-label,
.usage-intro .section-label {
  margin: 0 0 8px;
  color: var(--ug-teal);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .2em;
}

.usage-modern section > header h2,
.usage-intro h2 {
  margin: 0;
  color: var(--ug-navy);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.usage-modern section > header > p:last-child:not(.section-label) {
  margin: 10px 0 0;
  color: #657a84;
}

.usage-intro {
  min-height: 285px;
  padding: clamp(30px, 6vw, 60px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 45px;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, #f2fafb, #fff);
  border: 1px solid #cde2e5;
  box-shadow: 0 22px 50px rgba(7, 56, 76, .12);
}

.usage-intro::after {
  content: "";
  width: 250px;
  height: 250px;
  position: absolute;
  right: -135px;
  top: -145px;
  border: 40px solid rgba(8, 122, 136, .07);
  border-radius: 50%;
}

.usage-intro > div,
.usage-primary-cta { position: relative; z-index: 1; }
.usage-intro > div > p:not(.section-label) { max-width: 650px; margin: 14px 0 0; color: #4f6772; line-height: 1.85; }
.usage-intro-note { padding: 12px 15px; border-left: 4px solid #d5a348; border-radius: 8px; background: #fff9eb; font-size: .8rem; }
.legacy-content .usage-intro-note a { color: #925b0c; font-weight: 900; }

.legacy-content a.usage-primary-cta {
  min-width: 270px;
  min-height: 118px;
  padding: 24px 65px 24px 27px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #e8793f, #d84d25);
  box-shadow: 0 16px 34px rgba(216, 77, 37, .26);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.usage-primary-cta small { color: #ffe0d2; font-size: .62rem; font-weight: 900; letter-spacing: .17em; }
.usage-primary-cta strong { margin-top: 6px; font-size: 1.14rem; }
.usage-primary-cta span { width: 38px; height: 38px; display: grid; place-items: center; position: absolute; right: 19px; top: 50%; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; transform: translateY(-50%); }
.usage-primary-cta:hover,
.usage-primary-cta:focus-visible { color: #fff; box-shadow: 0 21px 40px rgba(216, 77, 37, .34); transform: translateY(-3px); }

.usage-flow-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
}

.usage-flow-list li {
  min-height: 245px;
  padding: 25px 22px;
  position: relative;
  overflow: hidden;
  border: 1px solid #d6e4e7;
  border-radius: 19px;
  background: linear-gradient(145deg, #fff, #f5fafb);
  box-shadow: 0 10px 26px rgba(7, 55, 75, .06);
}

.usage-flow-list li > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(145deg, #0a405b, #087d89);
  font-family: Arial, sans-serif;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(7, 100, 114, .17);
}

.usage-flow-list li > div { margin-top: 20px; }
.usage-flow-list small { color: #16808b; font-size: .55rem; font-weight: 900; letter-spacing: .13em; }
.usage-flow-list h3 { margin: 6px 0 0; color: var(--ug-navy); font-size: 1rem; }
.usage-flow-list p { margin: 10px 0 0; color: #61757e; font-size: .82rem; line-height: 1.75; }
.usage-flow-list em { display: block; margin-top: 9px; color: #9a5d27; font-size: .69rem; font-style: normal; font-weight: 800; }

.usage-mail-alert { margin-top: 18px; padding: 18px 22px; display: flex; align-items: center; gap: 18px; border: 1px solid #d7b873; border-radius: 15px; background: linear-gradient(135deg, #fffdf7, #fff6df); }
.usage-mail-alert strong { flex: 0 0 auto; color: #80531d; font-size: .86rem; }
.usage-mail-alert p { margin: 0; color: #705f47; font-size: .82rem; line-height: 1.7; }

.usage-belongings {
  padding: clamp(28px, 5vw, 52px);
  border-radius: 28px;
  background: linear-gradient(145deg, #082f49, #075d6e);
  box-shadow: 0 24px 52px rgba(5, 48, 68, .2);
}

.usage-modern .usage-belongings > header .section-label { color: #7edce1; }
.usage-modern .usage-belongings > header h2 { color: #fff; }
.usage-modern .usage-belongings > header > p:last-child { color: #c4dfe2; }

.usage-belongings-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 17px; }
.identity-card,
.ticket-card { padding: 27px; display: grid; grid-template-columns: 62px 1fr; align-items: start; gap: 20px; border: 1px solid rgba(255,255,255,.2); border-radius: 19px; background: rgba(255,255,255,.96); }
.usage-card-icon { width: 60px; height: 60px; display: grid; place-items: center; border-radius: 16px; color: #fff; background: linear-gradient(145deg, #0b405b, #087e89); font-family: Arial, sans-serif; font-weight: 900; }
.identity-card small,
.ticket-card small { color: #12808b; font-size: .56rem; font-weight: 900; letter-spacing: .14em; }
.identity-card h3,
.ticket-card h3 { margin: 5px 0 0; color: var(--ug-navy); font-size: 1.12rem; }
.identity-card p,
.ticket-card p { margin: 10px 0 0; color: #60757e; font-size: .82rem; line-height: 1.75; }
.identity-card .identity-main { color: #8b3c2a; font-weight: 900; }
.writing-card strong { color: #a53e29; }
.placement-usage-modern .usage-belongings-grid { grid-template-columns: 1.2fr .8fr .9fr; }

.identity-cautions { margin-top: 17px; padding: 25px 28px; border: 1px solid rgba(255,255,255,.2); border-radius: 19px; background: rgba(255,255,255,.09); }
.identity-cautions h3 { margin: 0; color: #fff; font-size: 1.05rem; }
.legacy-content .identity-cautions ul { margin: 14px 0 0; padding-left: 1.25em; }
.legacy-content .identity-cautions li { margin-top: 8px; color: #d2e4e6; font-size: .81rem; line-height: 1.75; }
.identity-cautions strong { color: #ffd1bd; }
.legacy-content .identity-cautions img { max-width: 100%; height: auto; margin: 18px 0 0; padding: 8px; border-radius: 8px; background: #fff; }

.early-discount-warning {
  padding: clamp(24px, 4vw, 38px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid #e2c47e;
  border-radius: 21px;
  background: linear-gradient(135deg, #fffdf8, #fff5df);
  box-shadow: 0 14px 32px rgba(106, 71, 12, .09);
}

.early-discount-warning small { color: #a46e1c; font-size: .6rem; font-weight: 900; letter-spacing: .16em; }
.early-discount-warning h3 { margin: 7px 0 0; color: #6e3b1d; font-size: clamp(1.12rem, 2.3vw, 1.5rem); }
.early-discount-warning p { margin: 9px 0 0; color: #715d43; font-size: .82rem; line-height: 1.7; }
.legacy-content .early-discount-warning a { min-width: 260px; padding: 17px 48px 17px 20px; position: relative; border-radius: 12px; color: #fff; background: linear-gradient(135deg, #b77820, #d5a149); box-shadow: 0 10px 22px rgba(165, 105, 19, .2); font-weight: 900; text-align: center; text-decoration: none; }
.early-discount-warning a span { position: absolute; right: 18px; }

.usage-accordion-list { margin-top: 22px; display: grid; gap: 12px; }
.usage-accordion { overflow: hidden; border: 1px solid #d4e2e5; border-radius: 16px; background: #fff; box-shadow: 0 7px 18px rgba(7, 55, 75, .04); }
.usage-accordion summary { min-height: 88px; padding: 17px 56px 17px 18px; display: grid; grid-template-columns: 48px 1fr; align-items: center; gap: 16px; position: relative; cursor: pointer; list-style: none; }
.usage-accordion summary::-webkit-details-marker { display: none; }
.usage-accordion summary::after { content: "+"; width: 30px; height: 30px; display: grid; place-items: center; position: absolute; right: 18px; top: 50%; border-radius: 50%; color: #08707e; background: #e8f5f6; font-size: 1.25rem; font-weight: 700; transform: translateY(-50%); }
.usage-accordion[open] summary::after { content: "−"; }
.usage-accordion summary > span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; color: #fff; background: linear-gradient(145deg, #0a405b, #087d89); font-family: Arial, sans-serif; font-size: .85rem; font-weight: 900; }
.usage-accordion summary small { display: block; color: #14808b; font-size: .54rem; font-weight: 900; letter-spacing: .13em; }
.usage-accordion summary strong { display: block; margin-top: 4px; color: #294650; font-size: .94rem; }
.usage-accordion.is-critical { border-color: #e2b9ad; }
.usage-accordion.is-critical summary > span { background: linear-gradient(145deg, #9c442e, #d06542); }
.usage-accordion.is-critical summary small { color: #b04b31; }

.usage-accordion-body { padding: 5px 28px 26px 82px; border-top: 1px solid #e3ecee; background: #f9fcfc; }
.legacy-content .usage-accordion-body ul,
.legacy-content .usage-accordion-body ol { margin: 17px 0 0; padding-left: 1.35em; }
.legacy-content .usage-accordion-body li { margin-top: 9px; color: #536a74; line-height: 1.75; }
.usage-accordion-body strong { color: #a53e29; }
.usage-accordion-body figure { margin: 24px 0 0; padding: 14px; border: 1px solid #dbe6e8; border-radius: 13px; background: #fff; text-align: center; }
.legacy-content .usage-accordion-body figure img { max-width: 100%; height: auto; margin: 0; }
.usage-accordion-body figcaption { margin-top: 8px; color: #74878e; font-size: .7rem; }

.usage-modern + .usage-directory {
  margin-top: 76px;
  padding: clamp(28px, 5vw, 50px);
  overflow: hidden;
  position: relative;
  border: 0;
  border-radius: 27px;
  background: linear-gradient(145deg, #082d47, #0a5968);
  box-shadow: 0 22px 48px rgba(5, 48, 70, .18);
}

.usage-modern + .usage-directory::after { content: ""; width: 250px; height: 250px; position: absolute; right: -125px; top: -145px; border: 45px solid rgba(255,255,255,.05); border-radius: 50%; }
.usage-modern + .usage-directory > .section-label { color: #78dce1; position: relative; z-index: 1; }
.usage-modern + .usage-directory h2 { color: #fff; position: relative; z-index: 1; }
.usage-modern + .usage-directory > div { grid-template-columns: repeat(4, minmax(0, 1fr)); position: relative; z-index: 1; }
.legacy-content .usage-modern + .usage-directory a { min-height: 116px; padding: 20px 38px 20px 20px; position: relative; border: 1px solid rgba(255,255,255,.16); border-top: 1px solid rgba(255,255,255,.16); border-radius: 14px; background: rgba(255,255,255,.08); box-shadow: none; transition: transform .2s ease, background .2s ease; }
.legacy-content .usage-modern + .usage-directory a::after { content: "↗"; position: absolute; right: 14px; top: 14px; color: #82dce1; }
.legacy-content .usage-modern + .usage-directory a[aria-current="page"] { border-color: #d7b466; background: linear-gradient(135deg, rgba(216,179,98,.22), rgba(255,255,255,.1)); }
.legacy-content .usage-modern + .usage-directory a:hover,
.legacy-content .usage-modern + .usage-directory a:focus-visible { transform: translateY(-3px); background: rgba(255,255,255,.14); }
.legacy-content .usage-modern + .usage-directory b { color: #fff; }
.legacy-content .usage-modern + .usage-directory span { color: #b9d7dc; }

@media (max-width: 1000px) {
  .usage-intro { grid-template-columns: 1fr; }
  .usage-primary-cta { width: min(100%, 420px); }
  .usage-flow-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .usage-belongings-grid { grid-template-columns: 1fr; }
  .placement-usage-modern .usage-belongings-grid { grid-template-columns: 1fr; }
  .usage-modern + .usage-directory > div { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 650px) {
  .usage-flow-list { grid-template-columns: 1fr; }
  .usage-flow-list li { min-height: 0; }
  .early-discount-warning { align-items: stretch; flex-direction: column; }
  .legacy-content .early-discount-warning a { min-width: 0; }
  .usage-mail-alert { align-items: flex-start; flex-direction: column; gap: 5px; }
}

@media (max-width: 560px) {
  .usage-modern > section + section { margin-top: 54px; }
  .usage-intro { min-height: 0; padding: 27px 21px; border-radius: 20px; }
  .legacy-content a.usage-primary-cta { min-width: 0; min-height: 100px; }
  .usage-belongings { padding: 26px 20px; border-radius: 20px; }
  .identity-card,
  .ticket-card { padding: 21px 18px; grid-template-columns: 52px 1fr; }
  .usage-card-icon { width: 50px; height: 50px; border-radius: 13px; }
  .identity-cautions { padding: 22px 18px; }
  .usage-accordion summary { grid-template-columns: 40px 1fr; gap: 12px; padding: 15px 48px 15px 14px; }
  .usage-accordion summary > span { width: 40px; height: 40px; border-radius: 11px; }
  .usage-accordion-body { padding: 3px 18px 22px; }
  .usage-modern + .usage-directory { padding: 26px 20px; }
  .usage-modern + .usage-directory > div { grid-template-columns: 1fr; }
}

/* Placement course application hub */
.application-hub-modern {
  --app-navy: #082f49;
  --app-teal: #087b86;
  --app-gold: #c59139;
  --app-wine: #7b263c;
  color: #294651;
}

.application-hub-modern > section + section { margin-top: 76px; }

.application-standard {
  min-height: 355px;
  padding: clamp(32px, 6vw, 62px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .82fr);
  align-items: center;
  gap: clamp(30px, 6vw, 72px);
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, #eef8f8 0%, #fff 58%, #fff3ed 100%);
  box-shadow: 0 24px 55px rgba(8, 58, 76, .13);
}

.application-standard::after { content: ""; width: 320px; height: 320px; position: absolute; right: -130px; top: -170px; border: 55px solid rgba(8, 123, 134, .07); border-radius: 50%; pointer-events: none; }
.application-standard-copy { position: relative; z-index: 1; }
.application-standard .section-label,
.application-discounts .section-label { color: #0a7d87; }
.application-standard h2 { margin: 8px 0 0; color: var(--app-navy); font-size: clamp(1.75rem, 3.8vw, 2.65rem); }
.application-standard-copy > p:not(.section-label) { max-width: 620px; margin: 15px 0 0; color: #5b727b; line-height: 1.9; }
.application-feature-list { margin: 22px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; list-style: none; }
.application-feature-list li { padding: 9px 14px; display: flex; align-items: center; gap: 7px; border: 1px solid #d4e5e7; border-radius: 999px; color: #3f626c; background: rgba(255,255,255,.78); font-size: .76rem; font-weight: 800; }
.application-feature-list span { color: #087e89; }

.legacy-content a.application-form-luxe {
  min-height: 176px;
  padding: 31px 70px 31px 28px;
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, #8d2b42, #c05045 58%, #e57448);
  box-shadow: 0 20px 42px rgba(126, 39, 59, .3);
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease;
}
.legacy-content a.application-form-luxe::before { content: ""; width: 180px; height: 180px; position: absolute; right: -90px; bottom: -105px; border: 28px solid rgba(255,255,255,.08); border-radius: 50%; }
.application-form-icon { width: 62px; height: 62px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.36); border-radius: 18px; background: rgba(255,255,255,.12); }
.application-form-icon i { width: 25px; height: 30px; position: relative; border: 2px solid #fff; border-radius: 4px; }
.application-form-icon i::before { content: ""; width: 11px; height: 6px; position: absolute; left: 5px; top: -5px; border: 2px solid #fff; border-radius: 3px; background: #a53b44; }
.application-form-icon i::after { content: "✓"; position: absolute; left: 5px; top: 4px; color: #fff; font-size: .9rem; font-style: normal; font-weight: 900; }
.application-form-copy small,
.application-form-copy strong,
.application-form-copy em { display: block; }
.application-form-copy small { color: #ffd9d1; font-size: .58rem; font-weight: 900; letter-spacing: .16em; }
.application-form-copy strong { margin-top: 6px; color: #fff; font-size: clamp(1.1rem, 2.2vw, 1.38rem); }
.application-form-copy em { margin-top: 8px; color: #ffe9e4; font-size: .68rem; font-style: normal; }
.application-form-arrow { width: 38px; height: 38px; display: grid; place-items: center; position: absolute; right: 22px; top: 50%; border: 1px solid rgba(255,255,255,.38); border-radius: 50%; transform: translateY(-50%); transition: transform .2s ease; }
.legacy-content a.application-form-luxe:hover,
.legacy-content a.application-form-luxe:focus-visible { color: #fff; box-shadow: 0 25px 48px rgba(126, 39, 59, .38); transform: translateY(-4px); }
.application-form-luxe:hover .application-form-arrow,
.application-form-luxe:focus-visible .application-form-arrow { transform: translate(4px, -50%); }

.application-discounts > header { max-width: 780px; margin: 0 auto 28px; text-align: center; }
.application-discounts h2 { margin: 8px 0 0; color: var(--app-navy); font-size: clamp(1.65rem, 3.4vw, 2.35rem); }
.application-discounts header > p:last-child { margin: 13px 0 0; color: #647982; line-height: 1.8; }
.discount-form-notice { margin: 0 0 22px; padding: 17px 22px; display: flex; align-items: center; justify-content: center; gap: 16px; border: 1px solid #dfc17c; border-radius: 15px; background: linear-gradient(135deg, #fffdf7, #fff6e2); }
.discount-form-notice strong { color: #80531d; font-size: .83rem; }
.discount-form-notice p { margin: 0; color: #715e43; font-size: .8rem; }
.discount-application-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.discount-application-card { min-height: 500px; display: grid; grid-template-columns: 122px 1fr; overflow: hidden; border: 1px solid #ded8c9; border-radius: 24px; background: #fff; box-shadow: 0 18px 38px rgba(48, 59, 64, .1); }
.discount-days { padding: 27px 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; background: linear-gradient(160deg, #75521a, #c69338 55%, #e5bd63); text-align: center; }
.is-45 .discount-days { background: linear-gradient(160deg, #075368, #078a91 55%, #45bbc0); }
.discount-days small { font-size: .52rem; font-weight: 900; letter-spacing: .14em; writing-mode: vertical-rl; }
.discount-days strong { margin-top: 20px; font-family: Arial, sans-serif; font-size: 3.55rem; line-height: 1; }
.discount-days span { margin-top: 5px; font-size: .62rem; font-weight: 900; letter-spacing: .16em; }
.discount-application-content { padding: 30px 27px; display: flex; flex-direction: column; }
.discount-plan-label { margin: 0; color: #9a6d25; font-size: .65rem; font-weight: 900; letter-spacing: .09em; }
.is-45 .discount-plan-label { color: #087d87; }
.discount-application-content h3 { margin: 6px 0 0; color: var(--app-navy); font-size: 1.45rem; }
.discount-application-content > p:not(.discount-plan-label):not(.discount-critical) { margin: 15px 0 0; color: #5f737c; font-size: .82rem; line-height: 1.8; }
.discount-application-content > p strong { color: #6f4c1d; }
.is-45 .discount-application-content > p strong { color: #086d78; }
.discount-condition { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 7px; }
.discount-condition span { width: 100%; color: #7a8b91; font-size: .62rem; font-weight: 900; letter-spacing: .08em; }
.discount-condition b { padding: 7px 9px; border-radius: 7px; color: #73501d; background: #fff4dc; font-size: .67rem; }
.is-45 .discount-condition b { color: #086472; background: #e6f6f6; }
.discount-critical { margin: 18px 0 0; padding: 12px 13px; border-left: 4px solid #bd4932; border-radius: 7px; color: #7b3f32; background: #fff1ed; font-size: .76rem; line-height: 1.65; }
.discount-critical strong { margin-right: 5px; color: #a33725; }
.legacy-content .discount-application-content > a { min-height: 74px; margin-top: auto; padding: 14px 50px 14px 17px; display: flex; align-items: center; position: relative; border-radius: 13px; color: #fff; background: linear-gradient(135deg, #9b6a20, #d1a046); box-shadow: 0 11px 24px rgba(145, 94, 22, .22); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.legacy-content .is-45 .discount-application-content > a { background: linear-gradient(135deg, #07586c, #078d94); box-shadow: 0 11px 24px rgba(7, 111, 123, .22); }
.discount-application-content a small,
.discount-application-content a strong { display: block; color: #fff; }
.discount-application-content a small { font-size: .53rem; letter-spacing: .12em; }
.discount-application-content a strong { margin-top: 3px; font-size: .9rem; }
.discount-application-content a i { position: absolute; right: 18px; top: 50%; font-style: normal; transform: translateY(-50%); }
.legacy-content .discount-application-content > a:hover,
.legacy-content .discount-application-content > a:focus-visible { color: #fff; transform: translateY(-3px); }
.application-help-link { margin: 24px 0 0; color: #627780; font-size: .8rem; text-align: center; }
.legacy-content .application-help-link a { color: #087986; font-weight: 900; }
.application-directory { margin-top: 76px; }

.dispatch-application-hub .application-standard { background: linear-gradient(135deg, #edf8f9 0%, #fff 58%, #eef5fb 100%); }
.legacy-content .dispatch-application-hub a.application-form-luxe { background: linear-gradient(135deg, #07344e, #087985 58%, #18a0a5); box-shadow: 0 20px 42px rgba(5, 82, 99, .3); }
.dispatch-application-hub .application-form-icon i::before { background: #087580; }
.legacy-content .dispatch-application-hub a.application-form-luxe:hover,
.legacy-content .dispatch-application-hub a.application-form-luxe:focus-visible { box-shadow: 0 25px 48px rgba(5, 82, 99, .38); }

@media (max-width: 980px) {
  .application-standard { grid-template-columns: 1fr; }
  .legacy-content a.application-form-luxe { max-width: 620px; }
  .discount-application-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .application-hub-modern > section + section { margin-top: 56px; }
  .application-standard { padding: 28px 20px; border-radius: 21px; }
  .legacy-content a.application-form-luxe { min-height: 142px; padding: 24px 54px 24px 19px; grid-template-columns: 50px 1fr; gap: 13px; border-radius: 17px; }
  .application-form-icon { width: 50px; height: 50px; border-radius: 14px; }
  .application-form-copy em { display: none; }
  .application-form-arrow { right: 13px; }
  .discount-form-notice { align-items: flex-start; flex-direction: column; gap: 5px; }
  .discount-application-card { min-height: 0; grid-template-columns: 82px 1fr; border-radius: 19px; }
  .discount-days { padding: 22px 8px; }
  .discount-days small { display: none; }
  .discount-days strong { margin-top: 0; font-size: 2.65rem; }
  .discount-application-content { padding: 24px 17px; }
  .legacy-content .discount-application-content > a { margin-top: 22px; }
}

/* Dispatch course early-discount guide */
.early-guide-modern { --eg-navy:#082f49; --eg-teal:#087b86; --eg-gold:#c39137; color:#294651; }
.early-guide-modern > section + section { margin-top: 76px; }
.early-guide-modern section > header { max-width: 760px; margin: 0 auto 28px; text-align: center; }
.early-guide-modern section > header .section-label,
.early-guide-intro .section-label,
.early-payment .section-label { color:#0a7e88; }
.early-guide-modern section > header h2,
.early-guide-intro h2,
.early-payment h2,
.early-caution h2 { margin:7px 0 0; color:var(--eg-navy); font-size:clamp(1.6rem,3.4vw,2.35rem); }
.early-guide-modern section > header > p:last-child { margin:12px 0 0; color:#647982; line-height:1.8; }

.early-guide-intro { padding:clamp(34px,6vw,64px); overflow:hidden; position:relative; border:1px solid #d7e7e9; border-radius:28px; background:linear-gradient(135deg,#eef9f9,#fff 58%,#fff8e8); box-shadow:0 22px 50px rgba(7,58,77,.12); }
.early-guide-intro::after { content:""; width:300px; height:300px; position:absolute; right:-130px; top:-175px; border:52px solid rgba(8,125,137,.07); border-radius:50%; }
.early-guide-intro > p:not(.section-label) { max-width:790px; margin:16px 0 0; color:#5c737c; font-size:.94rem; line-height:1.9; }
.early-guide-highlights { margin-top:25px; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; position:relative; z-index:1; }
.early-guide-highlights span { padding:16px 15px; border:1px solid #d5e5e7; border-radius:13px; background:rgba(255,255,255,.8); color:#61757e; font-size:.75rem; line-height:1.55; }
.early-guide-highlights b { display:block; margin-bottom:4px; color:#087985; font-size:.82rem; }

.early-plan-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px; }
.early-plan-card { padding:0 30px 30px; overflow:hidden; border:1px solid #ded7c7; border-radius:24px; background:#fff; box-shadow:0 18px 40px rgba(42,57,63,.1); }
.early-plan-heading { min-height:155px; margin:0 -30px; padding:25px 30px; display:grid; grid-template-columns:112px 1fr; align-items:center; gap:23px; color:#fff; background:linear-gradient(135deg,#72501b,#c39137 58%,#dfb657); }
.early-plan-card.is-45 .early-plan-heading { background:linear-gradient(135deg,#07465b,#087f89 58%,#31aeb3); }
.early-plan-heading > div { text-align:center; }
.early-plan-heading small,.early-plan-heading strong,.early-plan-heading span { display:block; }
.early-plan-heading small { font-size:.48rem; font-weight:900; letter-spacing:.12em; }
.early-plan-heading strong { margin-top:5px; font-family:Arial,sans-serif; font-size:3.25rem; line-height:1; }
.early-plan-heading span { margin-top:4px; font-size:.58rem; font-weight:900; letter-spacing:.15em; }
.early-plan-heading p { margin:0; color:#fff; font-size:.86rem; line-height:1.7; }
.early-plan-heading p strong { display:inline; font-family:inherit; font-size:1rem; }
.early-price { margin:24px 0 0; padding:21px; position:relative; border-radius:16px; background:#fff7e6; text-align:center; }
.is-45 .early-price { background:#eaf8f8; }
.early-price span { display:block; color:#776c5d; font-size:.72rem; }
.early-price b { display:block; margin-top:4px; color:#77521c; font-family:Arial,sans-serif; font-size:2.75rem; line-height:1.05; }
.is-45 .early-price b { color:#076b76; }
.early-price b small { font-family:inherit; font-size:.9rem; }
.early-price em { display:inline-block; margin-top:8px; padding:5px 10px; border-radius:999px; color:#fff; background:#b17a24; font-size:.68rem; font-style:normal; font-weight:900; }
.is-45 .early-price em { background:#087f89; }
.legacy-content .early-plan-features { margin:23px 0 0; padding:0; list-style:none; }
.legacy-content .early-plan-features li { padding:10px 0 10px 25px; position:relative; border-bottom:1px solid #edf0f0; color:#5e737c; font-size:.77rem; line-height:1.65; }
.early-plan-features li::before { content:"✓"; position:absolute; left:3px; color:#a67526; font-weight:900; }
.is-45 .early-plan-features li::before { color:#087e89; }
.early-plan-critical { margin:20px 0 0; padding:14px; border-left:4px solid #bd4932; border-radius:8px; color:#7b4033; background:#fff0ec; font-size:.76rem; line-height:1.65; }
.early-plan-critical strong { margin-right:8px; color:#a83724; }
.early-browser-note { margin-top:14px; padding:13px 14px; border:1px solid #dde6e7; border-radius:9px; background:#f7fafb; }
.early-browser-note b,.early-browser-note span { display:block; }
.early-browser-note b { color:#3f606a; font-size:.68rem; }
.early-browser-note span { margin-top:4px; color:#73868d; font-size:.66rem; line-height:1.55; }
.legacy-content a.early-plan-cta { min-height:78px; margin-top:20px; padding:15px 54px 15px 19px; display:flex; align-items:center; position:relative; border-radius:14px; color:#fff; background:linear-gradient(135deg,#8b5e1d,#cc9840); box-shadow:0 12px 26px rgba(140,91,20,.23); text-decoration:none; transition:transform .2s ease,box-shadow .2s ease; }
.legacy-content .is-45 a.early-plan-cta { background:linear-gradient(135deg,#07566b,#088a91); box-shadow:0 12px 26px rgba(7,106,119,.23); }
.early-plan-cta small,.early-plan-cta strong { display:block; color:#fff; }
.early-plan-cta small { font-size:.52rem; letter-spacing:.13em; }
.early-plan-cta strong { margin-top:4px; font-size:.94rem; }
.early-plan-cta i { position:absolute; right:19px; top:50%; font-style:normal; transform:translateY(-50%); }
.legacy-content a.early-plan-cta:hover,.legacy-content a.early-plan-cta:focus-visible { color:#fff; transform:translateY(-3px); }

.early-payment { padding:clamp(30px,5vw,52px); display:grid; grid-template-columns:1.25fr .75fr; align-items:center; gap:45px; border-radius:26px; color:#fff; background:linear-gradient(135deg,#082f49,#075d6e); box-shadow:0 22px 48px rgba(5,48,68,.2); }
.early-payment h2 { color:#fff; }
.early-payment-copy > p:not(.section-label) { margin:14px 0 0; color:#c5dfe2; font-size:.84rem; line-height:1.85; }
.early-payment-copy strong { color:#ffd0bd; }
.paypal-panel { padding:24px; border:1px solid rgba(255,255,255,.2); border-radius:18px; background:rgba(255,255,255,.96); text-align:center; }
.paypal-panel > p { margin:0 0 13px; color:#087985; font-size:.58rem; font-weight:900; letter-spacing:.16em; }
.legacy-content .paypal-panel img { max-width:100%; height:auto; margin:0; }
.legacy-content .paypal-panel .paypal-detail-link { margin-top:13px; padding:11px 14px; display:flex; justify-content:center; gap:11px; border-radius:9px; color:#fff; background:#087985; font-size:.73rem; font-weight:900; text-decoration:none; }

.early-flow-list { margin:0; padding:0; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:15px; list-style:none; }
.early-flow-list li { min-height:230px; padding:23px 21px; border:1px solid #d6e4e7; border-radius:18px; background:linear-gradient(145deg,#fff,#f5fafb); box-shadow:0 9px 24px rgba(7,55,75,.06); }
.early-flow-list li > span { width:46px; height:46px; display:grid; place-items:center; border-radius:13px; color:#fff; background:linear-gradient(145deg,#0a405b,#087d89); font-family:Arial,sans-serif; font-weight:900; }
.early-flow-list li > div { margin-top:18px; }
.early-flow-list small { color:#16808b; font-size:.53rem; font-weight:900; letter-spacing:.12em; }
.early-flow-list h3 { margin:6px 0 0; color:var(--eg-navy); font-size:.97rem; }
.early-flow-list p { margin:9px 0 0; color:#61757e; font-size:.79rem; line-height:1.7; }
.early-flow-list em { display:block; margin-top:8px; color:#9a5d27; font-size:.68rem; font-style:normal; font-weight:800; }
.early-mail-alert { margin-top:17px; padding:18px 22px; display:flex; align-items:center; gap:18px; border:1px solid #d7b873; border-radius:15px; background:linear-gradient(135deg,#fffdf7,#fff6df); }
.early-mail-alert strong { flex:0 0 auto; color:#80531d; font-size:.84rem; }
.early-mail-alert p { margin:0; color:#705f47; font-size:.8rem; line-height:1.7; }

.early-belongings { padding:clamp(30px,5vw,52px); border-radius:27px; background:linear-gradient(145deg,#082f49,#075d6e); box-shadow:0 23px 50px rgba(5,48,68,.2); }
.early-guide-modern .early-belongings > header .section-label { color:#79dce1; }
.early-guide-modern .early-belongings > header h2 { color:#fff; }
.early-guide-modern .early-belongings > header > p:last-child { color:#c4dfe2; }
.early-belongings-grid { display:grid; grid-template-columns:1.2fr .8fr; gap:16px; }
.early-belongings-grid article { padding:26px; display:grid; grid-template-columns:60px 1fr; gap:19px; border:1px solid rgba(255,255,255,.2); border-radius:18px; background:rgba(255,255,255,.96); }
.early-belongings-grid article > span { width:58px; height:58px; display:grid; place-items:center; border-radius:15px; color:#fff; background:linear-gradient(145deg,#0b405b,#087e89); font-weight:900; }
.early-belongings-grid small { color:#12808b; font-size:.55rem; font-weight:900; letter-spacing:.13em; }
.early-belongings-grid h3 { margin:5px 0 0; color:var(--eg-navy); font-size:1.08rem; }
.early-belongings-grid p { margin:9px 0 0; color:#60757e; font-size:.8rem; line-height:1.72; }
.early-belongings-grid .early-identity-main { margin-top:12px; padding:9px 12px; border-left:4px solid #c4412c; border-radius:6px; color:#a72f20; background:#fff0ec; font-size:.86rem; line-height:1.6; }
.early-belongings-grid .early-identity-main strong { color:inherit; font-weight:900; }
.early-identity-notes { margin-top:16px; padding:24px 27px; border:1px solid rgba(255,255,255,.2); border-radius:18px; background:rgba(255,255,255,.09); }
.early-identity-notes h3 { margin:0; color:#fff; font-size:1.02rem; }
.legacy-content .early-identity-notes ul { margin:13px 0 0; padding-left:1.25em; }
.legacy-content .early-identity-notes li { margin-top:8px; color:#d2e4e6; font-size:.79rem; line-height:1.72; }
.early-identity-notes strong { color:#ffd1bd; }
.legacy-content .early-identity-notes img { max-width:100%; height:auto; margin:17px 0 0; padding:8px; border-radius:8px; background:#fff; }
.early-caution { padding:clamp(28px,5vw,48px); display:grid; grid-template-columns:.72fr 1.28fr; align-items:center; gap:40px; border:1px solid #e1b9ae; border-radius:24px; background:linear-gradient(135deg,#fff8f5,#fff); box-shadow:0 17px 38px rgba(125,49,31,.08); }
.early-caution .section-label { color:#b34b32; }
.legacy-content .early-caution ul { margin:0; padding:0; list-style:none; }
.legacy-content .early-caution li { padding:13px 0 13px 29px; position:relative; border-bottom:1px solid #f0ddd7; color:#6d5b55; font-size:.82rem; line-height:1.7; }
.early-caution li::before { content:"!"; width:20px; height:20px; display:grid; place-items:center; position:absolute; left:0; top:15px; border-radius:50%; color:#fff; background:#bb4a32; font-size:.7rem; font-weight:900; }
.early-caution strong { color:#9f3926; }
.early-directory { margin-top:76px; }
.placement-early-guide .early-guide-intro { background:linear-gradient(135deg,#eef9f9,#fff 58%,#fff1ed); }
.placement-early-guide .early-belongings-grid { grid-template-columns:1.15fr .8fr .9fr; }

@media (max-width:980px) {
  .early-guide-highlights,.early-plan-grid { grid-template-columns:1fr; }
  .early-payment,.early-caution { grid-template-columns:1fr; }
  .early-flow-list { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .early-belongings-grid { grid-template-columns:1fr; }
  .placement-early-guide .early-belongings-grid { grid-template-columns:1fr; }
}
@media (max-width:620px) {
  .early-guide-modern > section + section { margin-top:56px; }
  .early-guide-intro { padding:28px 20px; border-radius:20px; }
  .early-plan-card { padding:0 18px 22px; border-radius:19px; }
  .early-plan-heading { margin:0 -18px; padding:22px 18px; grid-template-columns:82px 1fr; gap:15px; }
  .early-plan-heading strong { font-size:2.55rem; }
  .early-flow-list { grid-template-columns:1fr; }
  .early-flow-list li { min-height:0; }
  .early-mail-alert { align-items:flex-start; flex-direction:column; gap:5px; }
  .early-payment,.early-belongings,.early-caution { padding:27px 20px; border-radius:20px; }
  .early-belongings-grid article { padding:21px 17px; grid-template-columns:50px 1fr; }
  .early-belongings-grid article > span { width:48px; height:48px; }
  .early-identity-notes { padding:21px 17px; }
}

/* =========================================================
   Mail membership registration
   ========================================================= */
.member-registration {
  --member-navy:#092f4d;
  --member-blue:#0a6ca8;
  --member-cyan:#21a9be;
  --member-ink:#142b3b;
  --member-muted:#607280;
  margin:0 0 78px;
}
.member-registration-intro {
  position:relative;
  overflow:hidden;
  padding:52px clamp(24px,5vw,64px) 46px;
  border-radius:30px 30px 0 0;
  color:#fff;
  background:
    radial-gradient(circle at 92% 3%,rgba(106,225,224,.31),transparent 31%),
    linear-gradient(125deg,#072c49 0%,#075987 55%,#078c9c 100%);
  box-shadow:0 26px 70px rgba(8,48,75,.18);
}
.member-registration-intro::after {
  content:"";
  position:absolute;
  right:-80px;
  bottom:-155px;
  width:340px;
  height:340px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:50%;
  box-shadow:0 0 0 38px rgba(255,255,255,.04),0 0 0 77px rgba(255,255,255,.035);
}
.member-registration-copy { position:relative; z-index:1; max-width:740px; }
.member-registration-kicker,
.member-form-step {
  margin:0 0 12px;
  color:#80e6e4;
  font-size:.74rem;
  font-weight:800;
  letter-spacing:.2em;
}
.member-registration-copy h2 {
  margin:0;
  color:#fff;
  font-size:clamp(2rem,5vw,3.25rem);
  line-height:1.2;
  letter-spacing:.04em;
}
.member-registration-copy > p:last-child {
  margin:18px 0 0;
  max-width:670px;
  color:rgba(255,255,255,.88);
  font-size:1rem;
  line-height:1.9;
}
.member-benefit-grid {
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-top:34px;
}
.member-benefit-grid > div {
  display:grid;
  grid-template-columns:52px 1fr;
  align-items:center;
  gap:2px 13px;
  min-height:84px;
  padding:14px 16px;
  border:1px solid rgba(255,255,255,.17);
  border-radius:18px;
  background:rgba(255,255,255,.1);
  backdrop-filter:blur(8px);
}
.member-benefit-grid span {
  grid-row:1/3;
  display:grid;
  place-items:center;
  width:50px;
  height:50px;
  border-radius:15px;
  color:#083957;
  background:#d8fbf7;
  font-size:.7rem;
  font-weight:900;
  letter-spacing:.02em;
}
.member-benefit-grid b { color:#fff; font-size:.98rem; }
.member-benefit-grid small { color:rgba(255,255,255,.72); font-size:.72rem; }
.member-registration-form {
  padding:clamp(30px,6vw,62px);
  border:1px solid #dfe9ee;
  border-top:0;
  border-radius:0 0 30px 30px;
  background:linear-gradient(180deg,#fff 0%,#f8fbfc 100%);
  box-shadow:0 28px 70px rgba(17,55,76,.12);
}
.member-form-heading { max-width:700px; margin-bottom:30px; }
.member-form-step { color:var(--member-blue); }
.member-form-heading h3 {
  margin:0 0 10px;
  color:var(--member-ink);
  font-size:clamp(1.4rem,3vw,2rem);
}
.member-form-heading > p:last-child { margin:0; color:var(--member-muted); }
.member-required-mark,.member-optional-mark {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:44px;
  min-height:24px;
  padding:3px 8px;
  border-radius:999px;
  font-size:.68rem;
  font-weight:800;
  line-height:1;
}
.member-required-mark { color:#a62d39; background:#ffedf0; }
.member-optional-mark { color:#5c6c75; background:#edf2f4; }
.member-form-fields { display:grid; gap:15px; }
.member-field {
  display:grid;
  grid-template-columns:56px minmax(170px,1fr) auto minmax(260px,1.4fr);
  align-items:center;
  gap:13px 16px;
  margin:0;
  padding:18px 19px;
  border:1px solid #dbe6eb;
  border-radius:19px;
  background:#fff;
  box-shadow:0 7px 20px rgba(18,57,78,.045);
  transition:border-color .2s ease,box-shadow .2s ease,transform .2s ease;
}
.member-field:focus-within {
  border-color:#49a9c3;
  box-shadow:0 10px 28px rgba(10,108,168,.13),0 0 0 3px rgba(33,169,190,.1);
  transform:translateY(-1px);
}
.member-field-icon {
  display:grid;
  place-items:center;
  width:52px;
  height:52px;
  border-radius:16px;
  color:#08718f;
  background:linear-gradient(145deg,#dff9f7,#dceff7);
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.08em;
}
.member-field-icon-symbol { font-size:1.15rem; letter-spacing:0; }
.member-field-copy { display:grid; gap:3px; }
.member-field-copy b { color:var(--member-ink); font-size:.98rem; }
.member-field-copy small { color:#778893; font-size:.72rem; font-weight:500; line-height:1.45; }
.course-content .member-registration-form input[type="text"],
.course-content .member-registration-form input[type="email"] {
  box-sizing:border-box;
  width:100%;
  min-width:0;
  height:52px;
  margin:0;
  padding:0 16px;
  border:1px solid #cbd9df;
  border-radius:12px;
  color:#173344;
  background:#f9fbfc;
  font:inherit;
  font-size:.92rem;
  outline:none;
  transition:border-color .2s ease,background .2s ease,box-shadow .2s ease;
}
.course-content .member-registration-form input[type="text"]:focus,
.course-content .member-registration-form input[type="email"]:focus {
  border-color:#0788ad;
  background:#fff;
  box-shadow:0 0 0 4px rgba(7,136,173,.1);
}
.course-content .member-registration-form input::placeholder { color:#9aa8af; }
.member-form-assurance {
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin:24px 0;
  padding:17px 19px;
  border-radius:16px;
  color:#284b5c;
  background:#edf8f8;
}
.member-form-assurance > span {
  display:grid;
  flex:0 0 auto;
  place-items:center;
  width:30px;
  height:30px;
  border-radius:50%;
  color:#fff;
  background:#149b9d;
  font-weight:900;
}
.member-form-assurance p { display:grid; gap:3px; margin:0; }
.member-form-assurance small { color:#67808b; line-height:1.55; }
.course-content .member-registration-form .member-submit {
  position:relative;
  isolation:isolate;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:34px;
  overflow:hidden;
  width:min(100%,560px);
  min-height:82px;
  margin:30px auto 0;
  padding:15px 22px 15px 36px;
  border:0;
  border-radius:22px;
  color:#fff;
  background:linear-gradient(115deg,#073859 0%,#086c97 55%,#139ca5 100%);
  box-shadow:0 16px 34px rgba(6,90,125,.28);
  cursor:pointer;
  transition:transform .2s ease,box-shadow .2s ease,filter .2s ease;
}
.course-content .member-registration-form .member-submit::before {
  content:"";
  position:absolute;
  z-index:-1;
  inset:0;
  background:linear-gradient(115deg,#0a527c,#079ca6);
  opacity:0;
  transition:opacity .2s ease;
}
.course-content .member-registration-form .member-submit:hover {
  transform:translateY(-3px);
  box-shadow:0 21px 42px rgba(6,90,125,.34);
}
.course-content .member-registration-form .member-submit:hover::before { opacity:1; }
.member-submit > span { display:grid; gap:2px; text-align:left; }
.member-submit small { color:#bfeff0; font-size:.72rem; font-weight:700; letter-spacing:.08em; }
.member-submit b { color:#fff; font-size:1.05rem; letter-spacing:.04em; }
.member-submit i {
  display:grid;
  place-items:center;
  width:44px;
  height:44px;
  border-radius:50%;
  color:#075473;
  background:#fff;
  font-size:1.2rem;
  font-style:normal;
  transition:transform .2s ease;
}
.member-submit:hover i { transform:translateX(3px); }
.member-form-status {
  min-height:1.5em;
  margin:13px 0 0;
  color:#34707e;
  text-align:center;
  font-size:.84rem;
  font-weight:700;
}
.member-form-status.is-error { color:#b22d3b; }

@media (max-width:900px) {
  .member-field { grid-template-columns:52px 1fr auto; }
  .member-field input { grid-column:1/-1; }
}
@media (max-width:680px) {
  .member-registration { margin-bottom:58px; }
  .member-registration-intro { padding:38px 20px 32px; border-radius:22px 22px 0 0; }
  .member-benefit-grid { grid-template-columns:1fr; gap:9px; margin-top:26px; }
  .member-benefit-grid > div { min-height:72px; }
  .member-registration-form { padding:30px 17px; border-radius:0 0 22px 22px; }
  .member-field { grid-template-columns:46px 1fr auto; gap:10px; padding:15px 13px; border-radius:15px; }
  .member-field-icon { width:44px; height:44px; border-radius:13px; }
  .member-field-copy small { display:none; }
  .course-content .member-registration-form .member-submit { gap:18px; min-height:76px; padding:13px 16px 13px 23px; border-radius:18px; }
  .member-submit b { font-size:.96rem; }
  .member-submit i { width:40px; height:40px; }
}

/* =========================================================
   Inquiry form
   ========================================================= */
.inquiry-modern {
  --inquiry-navy:#092f4d;
  --inquiry-blue:#076b9a;
  --inquiry-teal:#149b9d;
  --inquiry-ink:#152f40;
  --inquiry-muted:#687b87;
  margin:0 0 80px;
}
.inquiry-intro {
  position:relative;
  overflow:hidden;
  padding:50px clamp(24px,5vw,64px) 42px;
  border-radius:30px 30px 0 0;
  color:#fff;
  background:
    linear-gradient(115deg,rgba(5,40,67,.97),rgba(4,96,132,.95) 59%,rgba(13,143,145,.93)),
    radial-gradient(circle at 85% 0%,#70e0dc,transparent 35%);
  box-shadow:0 26px 70px rgba(8,48,75,.17);
}
.inquiry-intro::before,
.inquiry-intro::after {
  content:"";
  position:absolute;
  border:1px solid rgba(255,255,255,.14);
  border-radius:50%;
}
.inquiry-intro::before { top:-145px; right:-80px; width:360px; height:360px; }
.inquiry-intro::after { top:-92px; right:-27px; width:250px; height:250px; }
.inquiry-intro-copy { position:relative; z-index:1; max-width:720px; }
.inquiry-kicker {
  margin:0 0 11px;
  color:#79e1de;
  font-size:.72rem;
  font-weight:850;
  letter-spacing:.2em;
}
.inquiry-intro h2 {
  margin:0;
  color:#fff;
  font-size:clamp(2rem,5vw,3.2rem);
  line-height:1.2;
  letter-spacing:.05em;
}
.inquiry-intro-copy > p:last-child {
  max-width:680px;
  margin:18px 0 0;
  color:rgba(255,255,255,.86);
  line-height:1.9;
}
.inquiry-topic-grid {
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:11px;
  margin-top:32px;
}
.inquiry-topic-grid > div {
  display:flex;
  align-items:center;
  gap:13px;
  min-height:64px;
  padding:11px 15px;
  border:1px solid rgba(255,255,255,.17);
  border-radius:17px;
  background:rgba(255,255,255,.09);
  backdrop-filter:blur(7px);
}
.inquiry-topic-grid span {
  display:grid;
  place-items:center;
  width:40px;
  height:40px;
  border-radius:12px;
  color:#07526e;
  background:#d9f8f5;
  font-size:.68rem;
  font-weight:900;
}
.inquiry-topic-grid b { color:#fff; font-size:.88rem; }
.inquiry-form {
  padding:clamp(30px,6vw,62px);
  border:1px solid #dfe9ee;
  border-top:0;
  border-radius:0 0 30px 30px;
  background:linear-gradient(180deg,#fff,#f7fafb);
  box-shadow:0 28px 70px rgba(17,55,76,.12);
}
.inquiry-form-heading {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:30px;
}
.inquiry-form-heading .inquiry-kicker { color:var(--inquiry-blue); }
.inquiry-form-heading h3 { margin:0; color:var(--inquiry-ink); font-size:clamp(1.4rem,3vw,2rem); }
.inquiry-form-heading > p { margin:0; color:var(--inquiry-muted); font-size:.82rem; }
.inquiry-required,.inquiry-optional {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:42px;
  min-height:23px;
  padding:3px 8px;
  border-radius:999px;
  font-size:.65rem;
  font-style:normal;
  font-weight:850;
  line-height:1;
}
.inquiry-required { color:#ac3140; background:#ffebee; }
.inquiry-optional { color:#64737b; background:#edf2f4; }
.inquiry-section {
  min-width:0;
  margin:0;
  padding:28px;
  border:1px solid #dce7eb;
  border-radius:22px;
  background:#fff;
  box-shadow:0 8px 25px rgba(20,57,77,.045);
}
.inquiry-section + .inquiry-section { margin-top:18px; }
.inquiry-section > legend {
  display:flex;
  align-items:center;
  gap:10px;
  padding:0 10px 0 0;
  color:var(--inquiry-ink);
  font-size:1.04rem;
  font-weight:850;
}
.inquiry-section > legend > span {
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  border-radius:11px;
  color:#08718f;
  background:#e0f5f5;
  font-size:.67rem;
  font-weight:900;
}
.inquiry-grid { display:grid; gap:18px; }
.inquiry-grid + .inquiry-grid { margin-top:19px; }
.inquiry-grid-two { grid-template-columns:repeat(2,minmax(0,1fr)); }
.inquiry-grid-three { grid-template-columns:repeat(3,minmax(0,1fr)); }
.inquiry-field { display:grid; gap:9px; min-width:0; margin:0; }
.inquiry-field-label {
  display:flex;
  align-items:center;
  gap:8px;
  color:#294759;
  font-size:.84rem;
  font-weight:800;
}
.inquiry-control {
  display:flex;
  align-items:center;
  overflow:hidden;
  min-height:54px;
  border:1px solid #cddce2;
  border-radius:13px;
  background:#f9fbfc;
  transition:border-color .2s ease,background .2s ease,box-shadow .2s ease;
}
.inquiry-control:focus-within {
  border-color:#0788ad;
  background:#fff;
  box-shadow:0 0 0 4px rgba(7,136,173,.1);
}
.inquiry-control > b {
  flex:0 0 auto;
  min-width:54px;
  color:#13839a;
  font-size:.56rem;
  letter-spacing:.06em;
  text-align:center;
}
.inquiry-control > b.inquiry-symbol { font-size:1rem; }
.course-content .inquiry-form input[type="text"],
.course-content .inquiry-form input[type="email"],
.course-content .inquiry-form input[type="tel"] {
  box-sizing:border-box;
  width:100%;
  min-width:0;
  height:52px;
  margin:0;
  padding:0 14px 0 0;
  border:0;
  border-radius:0;
  color:#163447;
  background:transparent;
  box-shadow:none;
  font:inherit;
  font-size:.9rem;
  outline:none;
}
.course-content .inquiry-form input::placeholder,
.course-content .inquiry-form textarea::placeholder { color:#9aa9b1; }
.inquiry-contact-choice {
  min-width:0;
  margin:20px 0;
  padding:0;
  border:0;
}
.inquiry-contact-choice > legend {
  margin-bottom:10px;
  color:#294759;
  font-size:.84rem;
  font-weight:800;
}
.inquiry-contact-choice > div { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:11px; }
.inquiry-contact-choice label { position:relative; margin:0; cursor:pointer; }
.inquiry-contact-choice input {
  position:absolute;
  width:1px;
  height:1px;
  opacity:0;
}
.inquiry-contact-choice label > span {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:54px;
  border:1px solid #cfdee3;
  border-radius:14px;
  color:#3f5968;
  background:#f9fbfc;
  font-size:.88rem;
  font-weight:800;
  transition:border-color .2s ease,color .2s ease,background .2s ease,box-shadow .2s ease;
}
.inquiry-contact-choice label > span > b { color:#168098; font-size:.54rem; letter-spacing:.04em; }
.inquiry-contact-choice input:checked + span {
  border-color:#0c879f;
  color:#075b76;
  background:#e9f8f7;
  box-shadow:0 0 0 3px rgba(12,135,159,.09);
}
.inquiry-contact-choice input:focus-visible + span { outline:3px solid rgba(7,136,173,.22); outline-offset:2px; }
.course-content .inquiry-form textarea {
  box-sizing:border-box;
  width:100%;
  min-height:190px;
  margin:0;
  padding:17px 18px;
  resize:vertical;
  border:1px solid #cddce2;
  border-radius:15px;
  color:#163447;
  background:#f9fbfc;
  font:inherit;
  font-size:.92rem;
  line-height:1.75;
  outline:none;
  transition:border-color .2s ease,background .2s ease,box-shadow .2s ease;
}
.course-content .inquiry-form textarea:focus {
  border-color:#0788ad;
  background:#fff;
  box-shadow:0 0 0 4px rgba(7,136,173,.1);
}
.inquiry-assurance {
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin:24px 0;
  padding:17px 19px;
  border-radius:16px;
  color:#284b5c;
  background:#edf8f8;
}
.inquiry-assurance > span {
  display:grid;
  flex:0 0 auto;
  place-items:center;
  width:30px;
  height:30px;
  border-radius:50%;
  color:#fff;
  background:var(--inquiry-teal);
  font-weight:900;
}
.inquiry-assurance p { display:grid; gap:3px; margin:0; }
.inquiry-assurance small { color:#67808b; line-height:1.55; }
.course-content .inquiry-form .inquiry-submit {
  position:relative;
  isolation:isolate;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:34px;
  overflow:hidden;
  width:min(100%,560px);
  min-height:82px;
  margin:30px auto 0;
  padding:15px 22px 15px 36px;
  border:0;
  border-radius:22px;
  color:#fff;
  background:linear-gradient(115deg,#073859,#086c97 56%,#139ca5);
  box-shadow:0 16px 34px rgba(6,90,125,.28);
  cursor:pointer;
  transition:transform .2s ease,box-shadow .2s ease;
}
.course-content .inquiry-form .inquiry-submit:hover { transform:translateY(-3px); box-shadow:0 21px 42px rgba(6,90,125,.34); }
.inquiry-submit > span { display:grid; gap:2px; text-align:left; }
.inquiry-submit small { color:#bfeff0; font-size:.72rem; font-weight:700; letter-spacing:.08em; }
.inquiry-submit b { color:#fff; font-size:1.05rem; letter-spacing:.04em; }
.inquiry-submit i {
  display:grid;
  place-items:center;
  width:44px;
  height:44px;
  border-radius:50%;
  color:#075473;
  background:#fff;
  font-size:1.2rem;
  font-style:normal;
  transition:transform .2s ease;
}
.inquiry-submit:hover i { transform:translateX(3px); }
.inquiry-form-status {
  min-height:1.5em;
  margin:13px 0 0;
  color:#34707e;
  text-align:center;
  font-size:.84rem;
  font-weight:750;
}
.inquiry-form-status.is-error { color:#b22d3b; }

@media (max-width:900px) {
  .inquiry-grid-three { grid-template-columns:1fr 1fr; }
  .inquiry-grid-three > :last-child { grid-column:1/-1; }
}
@media (max-width:680px) {
  .inquiry-modern { margin-bottom:58px; }
  .inquiry-intro { padding:38px 20px 31px; border-radius:22px 22px 0 0; }
  .inquiry-topic-grid { grid-template-columns:1fr; gap:8px; margin-top:26px; }
  .inquiry-topic-grid > div { min-height:55px; }
  .inquiry-form { padding:30px 16px; border-radius:0 0 22px 22px; }
  .inquiry-form-heading { display:grid; align-items:start; }
  .inquiry-section { padding:22px 15px; border-radius:17px; }
  .inquiry-grid-two,.inquiry-grid-three { grid-template-columns:1fr; }
  .inquiry-grid-three > :last-child { grid-column:auto; }
  .inquiry-contact-choice > div { grid-template-columns:1fr; }
  .course-content .inquiry-form .inquiry-submit { gap:18px; min-height:76px; padding:13px 16px 13px 23px; border-radius:18px; }
  .inquiry-submit b { font-size:.96rem; }
  .inquiry-submit i { width:40px; height:40px; }
}

/* Mail membership: post-registration guide */
.member-after-guide {
  margin:0 0 78px;
  padding:clamp(28px,5vw,52px);
  border:1px solid #dbe7eb;
  border-radius:28px;
  background:linear-gradient(145deg,#f7fbfc,#fff);
  box-shadow:0 20px 55px rgba(17,55,76,.09);
}
.member-after-guide > header { max-width:760px; margin-bottom:28px; }
.member-after-guide > header .section-label { margin-bottom:9px; color:#0a7995; }
.member-after-guide > header h2 { margin:0 0 10px; color:#153447; font-size:clamp(1.45rem,3vw,2rem); }
.member-after-guide > header > p:last-child { margin:0; color:#687d89; }
.member-guide-timeline {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin:0;
  padding:0;
  list-style:none;
}
.member-guide-timeline li {
  position:relative;
  min-height:175px;
  padding:22px 20px;
  border:1px solid #dce8ec;
  border-radius:19px;
  background:#fff;
}
.member-guide-timeline li > span {
  display:grid;
  place-items:center;
  width:42px;
  height:42px;
  margin-bottom:17px;
  border-radius:13px;
  color:#08768e;
  background:#e1f6f5;
  font-size:.68rem;
  font-weight:900;
  letter-spacing:.06em;
}
.member-guide-timeline b { color:#1e4052; font-size:.94rem; }
.member-guide-timeline p { margin:8px 0 0; color:#657986; font-size:.82rem; line-height:1.75; }
.member-guide-alert {
  display:flex;
  align-items:flex-start;
  gap:15px;
  margin-top:18px;
  padding:19px 21px;
  border:1px solid #f0d6a3;
  border-radius:17px;
  color:#684d1b;
  background:#fff9ec;
}
.member-guide-alert > span {
  display:grid;
  flex:0 0 auto;
  place-items:center;
  width:32px;
  height:32px;
  border-radius:50%;
  color:#fff;
  background:#d99b27;
  font-weight:900;
}
.member-guide-alert div { display:grid; gap:4px; }
.member-guide-alert p { margin:0; color:#7e6840; font-size:.84rem; line-height:1.7; }
.member-guide-contact {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  margin-top:18px;
  padding:22px 24px;
  border-radius:19px;
  color:#fff;
  background:linear-gradient(115deg,#092f4d,#076c91 65%,#149b9d);
}
.member-guide-contact > div:first-child { display:grid; gap:3px; }
.member-guide-contact small { color:#bfe9eb; font-size:.72rem; font-weight:700; letter-spacing:.08em; }
.member-guide-contact b { color:#fff; font-size:clamp(1rem,2vw,1.25rem); letter-spacing:.04em; }
.member-guide-actions { display:flex; flex-wrap:wrap; gap:9px; }
.member-guide-actions a {
  display:flex;
  align-items:center;
  gap:12px;
  min-height:48px;
  padding:8px 9px 8px 17px;
  border:1px solid rgba(255,255,255,.25);
  border-radius:14px;
  color:#fff;
  background:rgba(255,255,255,.1);
  font-size:.82rem;
  font-weight:800;
  text-decoration:none;
  transition:background .2s ease,transform .2s ease;
}
.member-guide-actions a:hover { color:#075473; background:#fff; transform:translateY(-2px); }
.member-guide-actions i {
  display:grid;
  place-items:center;
  min-width:32px;
  height:32px;
  padding:0 6px;
  border-radius:10px;
  color:#075473;
  background:#fff;
  font-size:.58rem;
  font-style:normal;
  font-weight:900;
}
.member-guide-actions a:hover i { color:#fff; background:#0b8091; }
.member-name-note {
  display:grid;
  gap:5px;
  margin:18px 0 0;
  padding:17px 19px;
  border-left:4px solid #4a9eb3;
  border-radius:0 13px 13px 0;
  color:#647884;
  background:#f1f7f8;
  font-size:.82rem;
  line-height:1.7;
}
.member-name-note b { color:#294b5c; }

@media (max-width:800px) {
  .member-guide-timeline { grid-template-columns:1fr; }
  .member-guide-timeline li { min-height:0; display:grid; grid-template-columns:44px 1fr; gap:14px; }
  .member-guide-timeline li > span { margin:0; }
  .member-guide-contact { align-items:flex-start; flex-direction:column; }
}
@media (max-width:520px) {
  .member-after-guide { padding:26px 17px; border-radius:21px; }
  .member-guide-timeline li { padding:18px 15px; }
  .member-guide-alert { padding:17px 15px; }
  .member-guide-contact { padding:20px 17px; }
  .member-guide-actions { width:100%; }
  .member-guide-actions a { flex:1 1 100%; justify-content:space-between; }
}

/* オンライン派遣元責任者講習：ご利用方法・注意事項 */
.online-terms-legacy {
  --terms-ink: #173846;
  --terms-blue: #0b6e79;
  --terms-mint: #eaf6f6;
  --terms-line: #d7e7e9;
  counter-reset: terms-section;
  color: #38545e;
}
.online-terms-legacy > hr { display: none; }
.online-terms-intro {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  padding: clamp(28px,5vw,52px);
  border: 1px solid #cfe2e6;
  border-radius: 26px;
  background: radial-gradient(circle at 100% 0,rgba(34,158,169,.18),transparent 35%), linear-gradient(145deg,#f3fafb,#fff 62%);
  box-shadow: 0 20px 55px rgba(17,66,78,.09);
}
.online-terms-legacy .online-terms-intro h2 {
  margin: .25rem 0 12px;
  padding: 0;
  border: 0;
  color: var(--terms-ink);
  background: none;
  font-size: clamp(1.65rem,3.6vw,2.55rem);
}
.online-terms-intro > p:not(.application-kicker) { max-width: 760px; margin: 0; color: #526d76; line-height: 1.85; }
.online-terms-alert { display: flex; align-items: center; gap: 15px 22px; margin-top: 24px; padding: 17px 20px; border: 1px solid #efc8ad; border-radius: 15px; color: #75401f; background: #fff8f1; }
.online-terms-alert b { flex: 0 0 auto; color: #bd4f18; font-size: 1rem; }
.online-terms-alert span { line-height: 1.65; }
.online-terms-summary { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 11px; margin: 0 0 34px; }
.online-terms-summary a { position: relative; display: grid; gap: 4px; min-height: 128px; padding: 19px; border: 1px solid #d9e8eb; border-radius: 17px; color: var(--terms-ink); background: #fff; box-shadow: 0 8px 24px rgba(16,70,83,.055); text-decoration: none; transition: transform .2s,box-shadow .2s,border-color .2s; }
.online-terms-summary a::after { content: "↓"; position: absolute; right: 16px; bottom: 14px; color: #dc662d; font-weight: 900; }
.online-terms-summary a:hover,
.online-terms-summary a:focus-visible { transform: translateY(-3px); border-color: #8fc8ce; box-shadow: 0 14px 30px rgba(16,70,83,.11); }
.online-terms-summary small { color: #17808a; font-size: .66rem; font-weight: 900; letter-spacing: .1em; }
.online-terms-summary b { align-self: end; font-size: 1rem; }
.online-terms-summary span { color: #70858d; font-size: .76rem; }
.online-terms-legacy > h4 {
  counter-increment: terms-section;
  scroll-margin-top: 92px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 30px 0 0;
  padding: 20px 24px;
  border: 1px solid var(--terms-line);
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
  color: #fff;
  background: linear-gradient(135deg,#0a5365,#0d7d82);
  box-shadow: 0 16px 36px rgba(12,76,87,.1);
  font-size: clamp(1.1rem,2.3vw,1.42rem);
}
.online-terms-legacy > h4::before { content: counter(terms-section,decimal-leading-zero); display: grid; flex: 0 0 42px; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: #b9f0ef; font-size: .73rem; font-weight: 900; }
.online-terms-legacy > h4 + ol,
.online-terms-legacy > h4 + ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 22px;
  border: 1px solid var(--terms-line);
  border-top: 0;
  border-radius: 0 0 20px 20px;
  background: linear-gradient(180deg,#f7fbfc,#fff);
  box-shadow: 0 16px 36px rgba(12,76,87,.07);
  list-style: none;
}
.online-terms-legacy > h4 + ol { counter-reset: terms-item; }
.online-terms-legacy > h4 + ol > li,
.online-terms-legacy > h4 + ul > li {
  position: relative;
  margin: 0;
  padding: 17px 18px 17px 58px;
  border: 1px solid #e2ecee;
  border-radius: 14px;
  color: #405c66;
  background: #fff;
  line-height: 1.78;
}
.online-terms-legacy > h4 + ol > li { counter-increment: terms-item; }
.online-terms-legacy > h4 + ol > li::before,
.online-terms-legacy > h4 + ul > li::before { position: absolute; left: 17px; top: 16px; display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; color: #08727b; background: #e3f3f4; font-size: .72rem; font-weight: 900; }
.online-terms-legacy > h4 + ol > li::before { content: counter(terms-item); }
.online-terms-legacy > h4 + ul > li::before { content: "•"; font-size: 1.1rem; }
.online-terms-legacy > h4 + ol a { display: inline-flex; align-items: center; margin: 8px 7px 2px 0; padding: 9px 13px; border-radius: 999px; color: #086a73; background: #e7f4f5; font-size: .82rem; font-weight: 850; text-decoration: none; }
.online-terms-legacy > h4 + ol a::after { content: " ↗"; margin-left: 5px; }
.online-terms-legacy > p:not(.online-consent-status) { padding: 18px 22px; border: 1px solid #dce8ea; border-radius: 14px; color: #435e67; background: #f8fbfc; line-height: 1.8; }
.online-terms-legacy > p span[style*="color : #ff0000"] { color: #b94b1a !important; }
.online-document-panel { margin: 42px 0 24px; padding: clamp(24px,4vw,38px); border: 1px solid #d4e4e8; border-radius: 23px; background: linear-gradient(145deg,#f3f9fa,#fff); box-shadow: 0 16px 45px rgba(17,66,78,.08); }
.online-document-panel > div:first-child small { color: #14808a; font-size: .7rem; font-weight: 900; letter-spacing: .11em; }
.online-terms-legacy .online-document-panel h3 { margin: 5px 0 10px; padding: 0; border: 0; color: var(--terms-ink); background: none; font-size: clamp(1.35rem,2.8vw,1.85rem); }
.online-document-panel > div:first-child p { margin: 0 0 20px; color: #5d747c; line-height: 1.75; }
.online-document-links { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 11px; }
.online-document-links a { display: grid; grid-template-columns: 42px minmax(0,1fr); gap: 3px 12px; align-items: center; min-height: 100px; padding: 17px; border: 1px solid #d5e6e8; border-radius: 15px; color: var(--terms-ink); background: #fff; text-decoration: none; transition: transform .2s,box-shadow .2s; }
.online-document-links a:hover,
.online-document-links a:focus-visible { transform: translateY(-2px); box-shadow: 0 12px 25px rgba(18,79,91,.12); }
.online-document-links a > span { grid-row: 1 / span 2; display: grid; width: 40px; height: 40px; place-items: center; border-radius: 11px; color: #fff; background: #d95d35; font-size: .65rem; font-weight: 900; }
.online-document-links b { font-size: .9rem; }
.online-document-links small { color: #768a91; font-size: .7rem; }
.online-consent-panel { position: relative; overflow: hidden; margin: 28px 0 10px; padding: clamp(28px,5vw,48px); border-radius: 25px; color: #fff; background: radial-gradient(circle at 100% 0,rgba(87,210,216,.22),transparent 32%), linear-gradient(135deg,#08283f,#0a4f61); box-shadow: 0 22px 55px rgba(7,43,59,.2); text-align: center; }
.online-consent-panel .application-kicker { margin: 0; color: #77dbe0; }
.online-terms-legacy .online-consent-panel h3 { margin: 6px 0 10px; padding: 0; border: 0; color: #fff; background: none; font-size: clamp(1.5rem,3.3vw,2.2rem); }
.online-consent-panel > p:not(.application-kicker):not(.online-consent-status) { max-width: 720px; margin: 0 auto 21px; color: #d9ebef; line-height: 1.75; }
.online-consent-check { display: flex; width: min(630px,100%); align-items: center; gap: 12px; margin: 0 auto 18px; padding: 15px 18px; border: 1px solid rgba(255,255,255,.22); border-radius: 14px; background: rgba(255,255,255,.08); cursor: pointer; text-align: left; }
.online-consent-check input { flex: 0 0 auto; width: 22px; height: 22px; accent-color: #ef7a35; }
.online-consent-check span { font-weight: 800; }
.online-application-button { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 4px 18px; align-items: center; width: min(630px,100%); margin: 0 auto; padding: 18px 22px; border: 0; border-radius: 16px; color: #fff; background: linear-gradient(135deg,#ed6a24,#d84d1b); box-shadow: 0 16px 32px rgba(219,82,25,.3); cursor: pointer; font-family: inherit; text-align: left; transition: transform .2s,filter .2s,opacity .2s; }
.online-application-button small { grid-column: 1; color: #ffe6d9; font-size: .72rem; font-weight: 800; }
.online-application-button strong { grid-column: 1; font-size: clamp(1.1rem,2.4vw,1.45rem); }
.online-application-button > span { grid-column: 2; grid-row: 1 / span 2; font-size: 1.8rem; }
.online-application-button:not(:disabled):hover,
.online-application-button:not(:disabled):focus-visible { transform: translateY(-3px); filter: brightness(1.06); }
.online-application-button:disabled { opacity: .42; box-shadow: none; cursor: not-allowed; filter: grayscale(.35); }
.online-consent-status { margin: 12px 0 0; color: #b9d9df; font-size: .78rem; }

@media (max-width: 820px) {
  .online-terms-summary { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .online-document-links { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .online-terms-intro { padding: 25px 19px; border-radius: 20px; }
  .online-terms-alert { align-items: flex-start; flex-direction: column; gap: 4px; }
  .online-terms-summary { grid-template-columns: 1fr; }
  .online-terms-summary a { min-height: 105px; }
  .online-terms-legacy > h4 { padding: 17px; border-radius: 16px 16px 0 0; }
  .online-terms-legacy > h4 + ol,
  .online-terms-legacy > h4 + ul { padding: 14px; border-radius: 0 0 16px 16px; }
  .online-terms-legacy > h4 + ol > li,
  .online-terms-legacy > h4 + ul > li { padding: 54px 15px 16px; }
  .online-terms-legacy > h4 + ol > li::before,
  .online-terms-legacy > h4 + ul > li::before { top: 14px; left: 15px; }
  .online-document-panel,
  .online-consent-panel { padding: 25px 18px; border-radius: 20px; }
  .online-application-button { padding: 17px; }
}

/* オンライン職業紹介責任者講習：ご利用方法・注意事項 */
.course-content > .online-terms-intro { margin-bottom: 20px; }
.course-content > .online-terms-intro h2 {
  margin: .25rem 0 12px;
  padding: 0;
  border: 0;
  color: #173846;
  background: none;
  font-size: clamp(1.65rem,3.6vw,2.55rem);
}
.online-placement-terms {
  counter-reset: placement-section;
  color: #38545e;
}
.course-content .online-placement-terms {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.course-content .online-placement-terms > ul { margin-block: 0 25px; }
.online-placement-terms > ul {
  counter-increment: placement-section;
  display: grid;
  gap: 10px;
  margin: 0 0 25px;
  padding: 0 22px 22px;
  border: 1px solid #d7e7e9;
  border-radius: 20px;
  background: linear-gradient(180deg,#f7fbfc,#fff);
  box-shadow: 0 16px 38px rgba(12,76,87,.075);
  list-style: none;
  overflow: hidden;
}
.online-placement-terms > ul > .online-section-heading {
  scroll-margin-top: 92px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 -22px 2px;
  padding: 20px 24px;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: linear-gradient(135deg,#0a5365,#0d7d82);
  font-size: clamp(1.08rem,2.3vw,1.4rem);
  font-weight: 900;
  line-height: 1.45;
}
.online-placement-terms > ul > .online-section-heading::before {
  content: counter(placement-section,decimal-leading-zero);
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  color: #b9f0ef;
  font-size: .73rem;
  font-weight: 900;
}
.online-placement-terms > ul > .online-section-heading small { display: block; color: #d4eff0; font-size: .72rem; font-weight: 700; }
.online-placement-terms > ul > .online-section-heading.is-warning { background: linear-gradient(135deg,#8e3c1e,#c65b27); }
.online-placement-terms > ul > .online-section-heading.is-warning::before { content: "!"; color: #fff0c6; }
.online-placement-terms > ul > li:not(.online-section-heading) {
  position: relative;
  margin: 0;
  padding: 17px 18px 17px 52px;
  border: 1px solid #e2ecee;
  border-radius: 14px;
  color: #405c66;
  background: #fff;
  line-height: 1.78;
}
.online-placement-terms > ul > li:not(.online-section-heading)::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 16px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: #08727b;
  background: #e3f3f4;
  font-size: .68rem;
  font-weight: 900;
}
.online-placement-terms > ul > li p { margin: 8px 0 0; color: #526b74; line-height: 1.78; }
.online-placement-terms .online-document-panel h3,
.online-placement-terms .online-consent-panel h3 {
  margin: 5px 0 10px;
  padding: 0;
  border: 0;
  background: none;
  font-size: clamp(1.35rem,2.8vw,1.9rem);
}
.online-placement-terms .online-document-panel h3 { color: #173846; }
.online-placement-terms .online-consent-panel h3 { color: #fff; }
.online-document-panel h3::after,
.online-consent-panel h3::after { display: none; }
.online-placement-terms .online-consent-panel > p:not(.application-kicker):not(.online-consent-status) { max-width: 720px; margin: 0 auto 21px; color: #d9ebef; line-height: 1.75; }
.course-content .online-application-button {
  padding: 18px 22px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg,#ed6a24,#d84d1b);
  box-shadow: 0 16px 32px rgba(219,82,25,.3);
}
.course-content .online-application-button:disabled {
  opacity: .42;
  background: linear-gradient(135deg,#ed6a24,#d84d1b);
  box-shadow: none;
  cursor: not-allowed;
}

@media (max-width: 560px) {
  .course-content > .online-terms-intro { padding: 25px 19px; }
  .online-placement-terms > ul { padding: 0 14px 14px; border-radius: 16px; }
  .online-placement-terms > ul > .online-section-heading { align-items: flex-start; margin-inline: -14px; padding: 17px; }
  .online-placement-terms > ul > li:not(.online-section-heading) { padding: 52px 15px 16px; }
  .online-placement-terms > ul > li:not(.online-section-heading)::before { top: 14px; left: 15px; }
}

/* 会社案内：会社概要 */
.company-profile-modern { color: #36515c; }
.company-profile-heading {
  position: relative;
  overflow: hidden;
  margin-bottom: 22px;
  padding: clamp(28px,5vw,50px);
  border: 1px solid #d4e5e9;
  border-radius: 26px;
  background: radial-gradient(circle at 100% 0,rgba(35,153,166,.16),transparent 34%), linear-gradient(145deg,#f4fafb,#fff 62%);
  box-shadow: 0 20px 52px rgba(16,67,79,.085);
}
.legacy-content .company-profile-heading h2 {
  margin: .25rem 0 10px;
  padding: 0;
  border: 0;
  color: #153846;
  background: none;
  font-size: clamp(1.7rem,3.6vw,2.5rem);
}
.company-profile-heading > p:last-child { max-width: 700px; margin: 0; color: #59727b; line-height: 1.8; }
.company-facts { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; margin: 0 0 42px; }
.company-fact { min-height: 140px; margin: 0; padding: 22px; border: 1px solid #dbe8eb; border-radius: 18px; background: #fff; box-shadow: 0 10px 28px rgba(16,67,79,.055); }
.company-fact.is-name { grid-column: span 1; background: linear-gradient(145deg,#0b3c54,#0d6873); }
.company-fact.is-address { grid-column: span 2; }
.company-fact dt { margin: 0 0 18px; color: #16808a; font-size: .72rem; font-weight: 900; letter-spacing: .1em; }
.company-fact dt::before { content: "●"; margin-right: 7px; font-size: .58rem; }
.company-fact dd { display: grid; gap: 6px; margin: 0; color: #244651; font-size: 1.02rem; line-height: 1.65; }
.company-fact dd strong { font-size: 1.12rem; }
.company-fact.is-name dt { color: #8edfe3; }
.company-fact.is-name dd { color: #fff; font-size: 1.28rem; font-weight: 900; }
.company-contact-links { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 4px; }
.company-contact-links a,
.company-contact-links > span { padding: 6px 10px; border-radius: 8px; color: #0b6872; background: #e8f4f5; font-size: .82rem; font-weight: 850; text-decoration: none; }
.company-contact-links a:hover,
.company-contact-links a:focus-visible { color: #fff; background: #0b6872; }
.company-business,
.company-regions { margin-top: 48px; }
.company-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid #d9e6e9; }
.company-section-heading > span { color: #15808a; font-size: .7rem; font-weight: 900; letter-spacing: .12em; }
.legacy-content .company-section-heading h3 { margin: 0; padding: 0; border: 0; color: #173b49; background: none; font-size: clamp(1.35rem,2.8vw,1.9rem); }
.company-business-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 13px; }
.company-business-grid a { position: relative; display: flex; min-height: 245px; flex-direction: column; padding: 25px; border: 1px solid #d8e7ea; border-top: 4px solid #16808a; border-radius: 18px; color: #183e4b; background: #fff; box-shadow: 0 12px 32px rgba(17,70,82,.07); text-decoration: none; transition: transform .2s,box-shadow .2s; }
.company-business-grid a:nth-child(3) { border-top-color: #2f8b64; }
.company-business-grid a:hover,
.company-business-grid a:focus-visible { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(17,70,82,.13); }
.company-business-grid small { color: #167781; font-size: .68rem; font-weight: 900; letter-spacing: .07em; }
.company-business-grid h4 { margin: 22px 0 18px; color: #173d4a; font-size: clamp(1.05rem,2vw,1.28rem); line-height: 1.55; }
.company-business-grid span { color: #698087; font-size: .84rem; }
.company-business-grid span b { color: #0d6f78; font-size: 1.35rem; letter-spacing: .05em; }
.company-business-grid em { margin-top: auto; padding-top: 25px; color: #db642c; font-size: .82rem; font-style: normal; font-weight: 900; }
.company-region-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 14px; }
.company-region-card { padding: clamp(24px,4vw,35px); border: 1px solid #d6e6e9; border-radius: 22px; background: radial-gradient(circle at 100% 0,rgba(30,144,157,.1),transparent 32%), #f8fbfc; box-shadow: 0 14px 38px rgba(18,72,84,.07); }
.company-region-card.is-training { color: #fff; border-color: transparent; background: radial-gradient(circle at 100% 0,rgba(101,215,210,.18),transparent 35%), linear-gradient(145deg,#0a3a50,#0b6870); }
.company-region-card header small { color: #137983; font-size: .7rem; font-weight: 900; letter-spacing: .06em; }
.company-region-card header h4 { margin: 7px 0 18px; color: #173d4a; font-size: clamp(1.15rem,2.2vw,1.45rem); }
.company-region-card > p { margin: 0; color: #4f6972; line-height: 2; }
.company-region-card.is-training header small { color: #8adce0; }
.company-region-card.is-training header h4 { color: #fff; }
.company-area-method { display: grid; gap: 10px; }
.company-area-method > span { display: grid; gap: 4px; padding: 14px 16px; border: 1px solid rgba(255,255,255,.16); border-radius: 13px; color: #fff; background: rgba(255,255,255,.08); }
.company-area-method b { color: #8ce1e3; font-size: .72rem; }
.company-area-method small { color: #cce2e5; line-height: 1.6; }

@media (max-width: 850px) {
  .company-facts { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .company-fact.is-name { grid-column: span 1; }
  .company-fact.is-address { grid-column: span 1; }
  .company-business-grid { grid-template-columns: 1fr; }
  .company-business-grid a { min-height: 200px; }
  .company-region-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .company-profile-heading { padding: 25px 19px; border-radius: 20px; }
  .company-facts { grid-template-columns: 1fr; }
  .company-fact.is-name,
  .company-fact.is-address { grid-column: auto; }
  .company-fact { min-height: 0; padding: 19px; }
  .company-section-heading { align-items: flex-start; flex-direction: column; gap: 5px; }
  .company-business-grid a,
  .company-region-card { padding: 21px 18px; border-radius: 17px; }
}

/* Employment placement document library */
.document-library-modern { --dl-navy:#082f49; --dl-teal:#087b86; color:#294651; }
.document-library-modern > section + section { margin-top:74px; }
.document-library-modern .document-section > header { max-width:760px; margin:0 auto 27px; text-align:center; }
.document-library-modern .section-label { color:#087c87; }
.document-library-modern h2 { margin:7px 0 0; color:var(--dl-navy); font-size:clamp(1.6rem,3.4vw,2.35rem); }
.document-section > header > p:last-child { margin:12px 0 0; color:#657a83; line-height:1.8; }
.document-library-intro { padding:clamp(32px,6vw,62px); display:grid; grid-template-columns:1fr minmax(290px,.58fr); align-items:center; gap:42px; overflow:hidden; position:relative; border:1px solid #d6e7e9; border-radius:28px; background:linear-gradient(135deg,#eef9f9,#fff 58%,#fff3ed); box-shadow:0 22px 50px rgba(7,58,77,.12); }
.document-library-intro::after { content:""; width:310px; height:310px; position:absolute; right:-135px; top:-175px; border:52px solid rgba(8,125,137,.07); border-radius:50%; }
.document-library-intro > div { position:relative; z-index:1; }
.document-library-intro > div > p:not(.section-label) { margin:15px 0 0; color:#5c737c; line-height:1.9; }
.legacy-content a.document-source-link { min-height:118px; padding:23px 58px 23px 24px; display:flex; flex-direction:column; justify-content:center; position:relative; z-index:1; border-radius:18px; color:#fff; background:linear-gradient(135deg,#7b263c,#c45145); box-shadow:0 15px 32px rgba(123,38,60,.25); text-decoration:none; }
.document-source-link small { color:#ffd9d3; font-size:.56rem; font-weight:900; letter-spacing:.14em; }
.document-source-link strong { margin-top:6px; color:#fff; font-size:.96rem; }
.document-source-link > span { position:absolute; right:22px; top:50%; transform:translateY(-50%); }
.document-quick-nav { grid-column:1/-1; display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:10px; position:relative; z-index:1; }
.document-quick-nav.is-five-items { grid-template-columns:repeat(5,minmax(0,1fr)); }
.legacy-content .document-quick-nav a { padding:12px 10px; border:1px solid #d4e5e7; border-radius:10px; color:#315a65; background:rgba(255,255,255,.82); font-size:.72rem; font-weight:900; text-align:center; text-decoration:none; }
.document-row-list { display:grid; gap:11px; }
.document-row { min-height:105px; padding:20px 22px; display:grid; grid-template-columns:1fr auto; align-items:center; gap:24px; border:1px solid #d8e5e7; border-radius:16px; background:#fff; box-shadow:0 8px 20px rgba(7,55,75,.05); }
.document-row > div:first-child > span { color:#087b86; font-size:.63rem; font-weight:900; letter-spacing:.08em; }
.document-row h3 { margin:5px 0 0; color:#294b55; font-size:.91rem; }
.document-row p { margin:5px 0 0; color:#7b8b91; font-size:.69rem; }
.file-actions { display:flex; gap:8px; }
.legacy-content .file-actions a { min-width:88px; min-height:54px; padding:10px 12px; display:flex; flex-direction:column; align-items:center; justify-content:center; border-radius:10px; color:#fff; font-size:.76rem; font-weight:900; text-decoration:none; transition:transform .2s ease; }
.file-actions a span { margin-top:2px; color:rgba(255,255,255,.75); font-size:.49rem; letter-spacing:.1em; }
.file-actions .is-word { background:linear-gradient(135deg,#1c5c9d,#2d7cc7); }
.file-actions .is-excel { background:linear-gradient(135deg,#17704a,#279565); }
.file-actions .is-pdf { background:linear-gradient(135deg,#a33434,#d05049); }
.legacy-content .file-actions a:hover,.legacy-content .file-actions a:focus-visible { color:#fff; transform:translateY(-2px); }
.featured-document-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:17px; }
.featured-document-grid.is-single { grid-template-columns:1fr; }
.legacy-content a.featured-document { min-height:180px; padding:28px; display:grid; grid-template-columns:72px 1fr; align-items:center; gap:22px; border-radius:20px; color:#fff; background:linear-gradient(135deg,#082f49,#087a85); box-shadow:0 17px 36px rgba(6,65,82,.2); text-decoration:none; }
.legacy-content a.featured-document.is-manual { background:linear-gradient(135deg,#784d18,#c18b34); }
.featured-document > span { width:68px; height:68px; display:grid; place-items:center; border:1px solid rgba(255,255,255,.35); border-radius:17px; background:rgba(255,255,255,.1); font-size:.74rem; font-weight:900; }
.featured-document small,.featured-document strong,.featured-document em { display:block; color:#fff; }
.featured-document small { color:#aee5e8; font-size:.54rem; font-weight:900; letter-spacing:.14em; }
.is-manual.featured-document small { color:#ffe1a4; }
.featured-document strong { margin-top:6px; font-size:1.02rem; line-height:1.55; }
.featured-document em { margin-top:10px; color:#d6eff0; font-size:.68rem; font-style:normal; }
.document-accordion { margin-top:18px; overflow:hidden; border:1px solid #d6e3e5; border-radius:17px; background:#fff; box-shadow:0 8px 22px rgba(7,55,75,.05); }
.document-accordion summary { min-height:88px; padding:17px 58px 17px 19px; display:grid; grid-template-columns:58px 1fr; align-items:center; gap:17px; position:relative; cursor:pointer; list-style:none; }
.document-accordion summary::-webkit-details-marker { display:none; }
.document-accordion summary::after { content:"+"; width:32px; height:32px; display:grid; place-items:center; position:absolute; right:19px; top:50%; border-radius:50%; color:#08747f; background:#e8f5f6; font-size:1.2rem; transform:translateY(-50%); }
.document-accordion[open] summary::after { content:"−"; }
.document-accordion summary > span { min-height:50px; display:grid; place-items:center; border-radius:12px; color:#fff; background:linear-gradient(145deg,#0a405b,#087d89); font-size:.71rem; font-weight:900; text-align:center; }
.document-accordion summary small { display:block; color:#14808b; font-size:.52rem; font-weight:900; letter-spacing:.13em; }
.document-accordion summary strong { display:block; margin-top:4px; color:#294650; font-size:.92rem; }
.document-accordion-body { padding:24px; border-top:1px solid #e2ebed; background:#f9fcfc; }
.chapter-link-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:9px; }
.legacy-content .chapter-link-grid a { min-height:66px; padding:13px 16px; display:grid; grid-template-columns:34px 1fr; align-items:center; gap:11px; border:1px solid #d9e5e7; border-radius:10px; color:#435f68; background:#fff; font-size:.73rem; text-decoration:none; }
.chapter-link-grid b { color:#087985; font-family:Arial,sans-serif; }
.reader-notice { margin-top:18px; padding:18px 20px; display:flex; align-items:center; gap:17px; border:1px solid #e0d2ae; border-radius:13px; background:#fffaf0; }
.legacy-content .reader-notice img { width:112px; height:33px; margin:0; }
.reader-notice p { flex:1; margin:0; color:#6d624f; font-size:.74rem; }
.legacy-content .reader-notice a { padding:10px 14px; border-radius:8px; color:#fff; background:#6e5a34; font-size:.68rem; font-weight:900; text-decoration:none; }
.legal-library { padding:clamp(28px,5vw,48px); border-radius:27px; background:linear-gradient(145deg,#eef7f8,#fff); box-shadow:0 20px 44px rgba(7,55,75,.09); }
.legal-accordion { background:rgba(255,255,255,.94); }
.legal-group { padding:20px; border:1px solid #dce6e8; border-radius:13px; background:#fff; }
.legal-group + .legal-group { margin-top:13px; }
.legal-group h3 { margin:0; color:#0a5665; font-size:.93rem; }
.legal-group > p { margin:7px 0 0; color:#70838a; font-size:.71rem; line-height:1.65; }
.legal-group-grid { margin-top:13px; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:13px; }
.legal-group-grid .legal-group { margin:0; }
.legal-link-list { margin-top:12px; display:flex; flex-wrap:wrap; gap:7px; }
.legacy-content .legal-link-list a { padding:8px 25px 8px 10px; position:relative; border:1px solid #d4e2e5; border-radius:8px; color:#315c67; background:#f8fbfc; font-size:.69rem; font-weight:800; text-decoration:none; }
.legal-link-list a::after { content:"↗"; position:absolute; right:9px; color:#0b7b86; }
.egov-panel { margin-top:18px; padding:clamp(24px,4vw,38px); border-radius:20px; color:#fff; background:linear-gradient(135deg,#082f49,#075d6e); }
.egov-panel h2 { color:#fff; }
.egov-panel > div:first-child > p:last-child { margin:10px 0 0; color:#c5dfe2; font-size:.78rem; }
.egov-links { margin-top:21px; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:10px; }
.legacy-content .egov-links a { min-height:94px; padding:17px 38px 17px 16px; display:flex; flex-direction:column; justify-content:center; position:relative; border:1px solid rgba(255,255,255,.18); border-radius:12px; color:#fff; background:rgba(255,255,255,.08); text-decoration:none; }
.egov-links small { color:#80dce1; font-size:.5rem; font-weight:900; letter-spacing:.12em; }
.egov-links strong { margin-top:5px; color:#fff; font-size:.76rem; line-height:1.5; }
.egov-links a > span { position:absolute; right:14px; top:14px; }
.document-source-footer { margin-top:22px; padding:17px 20px; display:flex; align-items:center; justify-content:center; gap:16px; border-top:1px solid #d5e2e4; color:#6c7f86; font-size:.72rem; }
.legacy-content .document-source-footer a { color:#087681; font-weight:900; }
.document-official-index { margin-top:34px; padding:clamp(25px,4vw,40px); border:1px solid #d6e5e7; border-radius:24px; background:linear-gradient(145deg,#f0f8f8,#fff); box-shadow:0 15px 36px rgba(7,55,75,.08); }
.document-official-index > header { max-width:760px; margin:0 auto 24px; text-align:center; }
.document-official-index > header h3 { margin:7px 0 0; color:#082f49; font-size:clamp(1.35rem,2.8vw,1.9rem); }
.document-official-index > header > p:last-child { margin:11px 0 0; color:#637981; font-size:.78rem; line-height:1.85; }
.document-official-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:13px; }
.legacy-content .document-official-grid a { min-height:168px; padding:23px 21px; display:flex; flex-direction:column; border:1px solid #d3e3e5; border-radius:16px; color:#315761; background:#fff; box-shadow:0 9px 22px rgba(7,55,75,.06); text-decoration:none; transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease; }
.legacy-content .document-official-grid a:hover,.legacy-content .document-official-grid a:focus-visible { border-color:#72b8be; box-shadow:0 13px 28px rgba(7,55,75,.12); transform:translateY(-3px); }
.document-official-grid small { color:#087b86; font-size:.53rem; font-weight:900; letter-spacing:.13em; }
.document-official-grid strong { margin-top:9px; color:#173f4c; font-size:.88rem; line-height:1.55; }
.document-official-grid span { margin-top:auto; padding-top:18px; color:#087681; font-size:.68rem; font-weight:800; }
.document-official-grid b { font-size:.8rem; }
.document-verified-note { margin:21px 0 0; padding:15px 18px; display:flex; align-items:flex-start; gap:13px; border-left:4px solid #0c828b; border-radius:0 10px 10px 0; color:#5b7178; background:#eaf6f6; font-size:.7rem; line-height:1.7; }
.document-verified-note strong { flex:0 0 auto; color:#0a5965; }
.document-archive-guide { margin-top:22px; padding:23px; display:grid; grid-template-columns:1fr auto; align-items:center; gap:24px; border:1px solid #d7e3e5; border-radius:16px; background:linear-gradient(135deg,#fff,#f4f9f9); }
.document-archive-guide small { color:#087b86; font-size:.52rem; font-weight:900; letter-spacing:.13em; }
.document-archive-guide strong { display:block; margin-top:5px; color:#294b55; font-size:.88rem; }
.document-archive-guide p { margin:7px 0 0; color:#718188; font-size:.7rem; line-height:1.7; }
.legacy-content .document-archive-guide > a { padding:12px 16px; border-radius:10px; color:#fff; background:linear-gradient(135deg,#087581,#0d9294); font-size:.72rem; font-weight:900; text-decoration:none; white-space:nowrap; }
.document-directory { margin-top:76px; padding:clamp(28px,5vw,48px); overflow:hidden; position:relative; border:0; border-radius:26px; background:linear-gradient(145deg,#082d47,#0a5968); box-shadow:0 22px 48px rgba(5,48,70,.18); }
.document-directory::after { content:""; width:250px; height:250px; position:absolute; right:-125px; top:-145px; border:45px solid rgba(255,255,255,.05); border-radius:50%; }
.document-directory > .section-label { color:#78dce1; position:relative; z-index:1; }
.document-directory h2 { color:#fff; position:relative; z-index:1; }
.document-directory > div { grid-template-columns:repeat(4,minmax(0,1fr)); position:relative; z-index:1; }
.legacy-content .document-directory a { min-height:112px; padding:20px 38px 20px 20px; position:relative; border:1px solid rgba(255,255,255,.16); border-top:1px solid rgba(255,255,255,.16); border-radius:14px; background:rgba(255,255,255,.08); box-shadow:none; transition:transform .2s ease,background .2s ease; }
.legacy-content .document-directory a::after { content:"↗"; position:absolute; right:14px; top:14px; color:#82dce1; }
.legacy-content .document-directory a[aria-current="page"] { border-color:#d7b466; background:linear-gradient(135deg,rgba(216,179,98,.22),rgba(255,255,255,.1)); }
.legacy-content .document-directory a:hover,.legacy-content .document-directory a:focus-visible { transform:translateY(-3px); background:rgba(255,255,255,.14); }
.legacy-content .document-directory b { color:#fff; }
.legacy-content .document-directory span { color:#b9d7dc; }
@media (max-width:900px) {
  .document-library-intro { grid-template-columns:1fr; }
  .document-quick-nav { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .document-quick-nav.is-five-items { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .featured-document-grid,.legal-group-grid { grid-template-columns:1fr; }
  .egov-links { grid-template-columns:1fr; }
  .document-directory > div { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:620px) {
  .document-library-modern > section + section { margin-top:55px; }
  .document-library-intro { padding:28px 20px; border-radius:20px; }
  .document-quick-nav { grid-template-columns:1fr; }
  .document-quick-nav.is-five-items { grid-template-columns:1fr; }
  .document-row { padding:18px 16px; grid-template-columns:1fr; gap:14px; }
  .file-actions { width:100%; }
  .legacy-content .file-actions a { flex:1; }
  .legacy-content a.featured-document { padding:22px 18px; grid-template-columns:56px 1fr; }
  .featured-document > span { width:54px; height:54px; border-radius:14px; }
  .document-accordion summary { grid-template-columns:48px 1fr; gap:12px; padding:15px 48px 15px 14px; }
  .document-accordion-body { padding:17px 13px; }
  .chapter-link-grid { grid-template-columns:1fr; }
  .reader-notice { align-items:flex-start; flex-direction:column; }
  .legal-library { padding:27px 15px; border-radius:20px; }
  .legal-link-list { flex-direction:column; }
  .legacy-content .legal-link-list a { width:100%; }
  .document-source-footer { align-items:flex-start; flex-direction:column; gap:5px; }
  .document-official-grid { grid-template-columns:1fr; }
  .document-verified-note { flex-direction:column; gap:3px; }
  .document-archive-guide { grid-template-columns:1fr; }
  .legacy-content .document-archive-guide > a { text-align:center; white-space:normal; }
  .document-directory { padding:26px 20px; }
  .document-directory > div { grid-template-columns:1fr; }
}

/* Dispatch business document library */
.dispatch-document-intro { padding:clamp(32px,6vw,62px); display:grid; grid-template-columns:1fr minmax(290px,.58fr); align-items:center; gap:40px; overflow:hidden; position:relative; border:1px solid #d5e7e9; border-radius:28px; background:linear-gradient(135deg,#edf9f9,#fff 58%,#eef5fb); box-shadow:0 22px 50px rgba(7,58,77,.12); }
.dispatch-document-intro::after { content:""; width:310px; height:310px; position:absolute; right:-135px; top:-175px; border:52px solid rgba(8,125,137,.07); border-radius:50%; }
.dispatch-document-intro > div { position:relative; z-index:1; }
.dispatch-document-intro .section-label { color:#087c87; }
.dispatch-document-intro h2 { margin:7px 0 0; color:#082f49; font-size:clamp(1.65rem,3.5vw,2.45rem); }
.dispatch-document-intro > div > p:not(.section-label) { margin:15px 0 0; color:#5d747d; line-height:1.9; }
.legacy-content .dispatch-document-intro > a { min-height:118px; padding:23px 58px 23px 24px; display:flex; flex-direction:column; justify-content:center; position:relative; z-index:1; border-radius:18px; color:#fff; background:linear-gradient(135deg,#07344e,#087985); box-shadow:0 15px 32px rgba(5,82,99,.25); text-decoration:none; }
.dispatch-document-intro > a small { color:#9ee0e4; font-size:.56rem; font-weight:900; letter-spacing:.14em; }
.dispatch-document-intro > a strong { margin-top:6px; color:#fff; font-size:.96rem; }
.dispatch-document-intro > a > span { position:absolute; right:22px; top:50%; transform:translateY(-50%); }
.dispatch-document-intro nav { grid-column:1/-1; display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); gap:9px; position:relative; z-index:1; }
.legacy-content .dispatch-document-intro nav a { padding:12px 8px; border:1px solid #d3e4e6; border-radius:10px; color:#315a65; background:rgba(255,255,255,.84); font-size:.7rem; font-weight:900; text-align:center; text-decoration:none; }
.dispatch-document-notice { margin-top:22px; padding:20px 22px; display:grid; grid-template-columns:42px 1fr; align-items:start; gap:15px; border:1px solid #e8c985; border-radius:16px; color:#62470d; background:linear-gradient(135deg,#fffaf0,#fffdf8); box-shadow:0 9px 24px rgba(120,83,12,.07); }
.dispatch-document-notice > div { width:42px; height:42px; display:grid; place-items:center; border-radius:12px; color:#fff; background:linear-gradient(145deg,#a96b07,#d99a25); font-family:Georgia,serif; font-size:1.25rem; font-weight:900; }
.dispatch-document-notice p { margin:0; line-height:1.8; }
.dispatch-document-notice strong { display:block; color:#684705; font-size:.95rem; }
.dispatch-document-notice span { display:block; margin-top:5px; color:#745c28; font-size:.78rem; }
.dispatch-document-notice .document-notice-highlight { display:inline-block; margin:3px 2px; padding:2px 8px; border-radius:6px; color:#8f2718; background:#ffe1d8; box-shadow:inset 0 -2px 0 #e99580; font-weight:900; }
.training-document-library { --dl-navy:#073b50; --dl-teal:#087f80; }
.training-document-library .document-library-intro { background:linear-gradient(135deg,#eaf9f5,#fff 57%,#eef4ff); }
.legacy-content .training-document-library a.document-source-link { background:linear-gradient(135deg,#07596a,#079587); box-shadow:0 15px 32px rgba(5,100,103,.23); }
.training-document-library .document-source-link small { color:#c8fff5; }
.training-document-library .dispatch-document-notice + .document-section { margin-top:74px; }
.training-document-library .document-row.is-latest { border-color:#e1ba65; background:linear-gradient(135deg,#fffaf0,#fff); box-shadow:0 10px 25px rgba(151,105,18,.1); }
.training-document-library .document-row.is-latest > div:first-child > span { color:#a56600; }
.training-document-library .training-amendment-row { margin-top:17px; }
.training-document-library .document-source-footer { flex-wrap:wrap; }
.legacy-content .training-document-library .document-source-footer a { padding:5px 10px; border-radius:7px; background:#eef8f7; text-decoration:none; }
.dispatch-document-list { margin-top:72px; }
.dispatch-document-list > h3 { margin:58px 0 16px; padding:0 0 14px 52px; position:relative; border-bottom:2px solid #dbe8ea; color:#082f49; font-size:clamp(1.15rem,2.4vw,1.48rem); line-height:1.5; }
.dispatch-document-list > h3:first-child { margin-top:0; }
.dispatch-document-list > h3::before { content:"PDF"; width:39px; height:39px; display:grid; place-items:center; position:absolute; left:0; top:-5px; border-radius:11px; color:#fff; background:linear-gradient(145deg,#0a405b,#087d89); font-family:Arial,sans-serif; font-size:.58rem; font-weight:900; box-shadow:0 7px 16px rgba(7,100,114,.17); }
.legacy-content .dispatch-document-list > ul { margin:0; padding:0; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; list-style:none; }
.legacy-content .dispatch-document-list > ul > li { margin:0; min-width:0; }
.legacy-content .dispatch-document-list > ul > li:empty { display:none; }
.legacy-content .dispatch-document-list > ul > li > a { min-height:76px; height:100%; padding:15px 42px 15px 55px; display:flex; align-items:center; position:relative; border:1px solid #d8e5e7; border-radius:13px; color:#3c5d67; background:linear-gradient(145deg,#fff,#f7fbfb); box-shadow:0 7px 18px rgba(7,55,75,.045); font-size:.74rem; font-weight:800; line-height:1.55; text-decoration:none; transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease; overflow-wrap:anywhere; }
.dispatch-document-list > ul > li > a::before { content:"PDF"; width:32px; height:38px; display:grid; place-items:center; position:absolute; left:14px; top:50%; border-radius:6px; color:#fff; background:linear-gradient(145deg,#a33434,#d05049); font-family:Arial,sans-serif; font-size:.51rem; transform:translateY(-50%); }
.dispatch-document-list > ul > li > a[href*="mhlw.go.jp/stf/"]::before,
.dispatch-document-list > ul > li > a[href*="jil.go.jp/"]::before { content:"WEB"; background:linear-gradient(145deg,#07566b,#088a91); }
.dispatch-document-list > ul > li > a::after { content:"↗"; position:absolute; right:16px; top:16px; color:#0a7b85; }
.legacy-content .dispatch-document-list > ul > li > a:hover,
.legacy-content .dispatch-document-list > ul > li > a:focus-visible { color:#244d58; border-color:#75bfc5; box-shadow:0 12px 24px rgba(7,95,107,.1); transform:translateY(-2px); }
.dispatch-document-list > hr { height:0; margin:0; border:0; }
.dispatch-document-list > h3 + p,
.dispatch-document-list > h3 + div { color:#687d85; }
.dispatch-document-list > p { margin:12px 0 0; color:#687d85; font-size:.78rem; line-height:1.75; }
.dispatch-document-list > p:last-child,
.dispatch-document-list > a:last-child { margin-top:28px; padding:18px 20px; display:flex; justify-content:center; border-radius:12px; color:#fff; background:linear-gradient(135deg,#082f49,#075d6e); font-weight:900; text-align:center; text-decoration:none; }
.dispatch-document-archive { margin-top:18px; overflow:hidden; border:1px solid #d5e3e5; border-radius:17px; background:#fff; box-shadow:0 8px 22px rgba(7,55,75,.05); }
.dispatch-document-archive summary { min-height:88px; padding:17px 58px 17px 18px; display:grid; grid-template-columns:56px 1fr; align-items:center; gap:16px; position:relative; cursor:pointer; list-style:none; }
.dispatch-document-archive summary::-webkit-details-marker { display:none; }
.dispatch-document-archive summary::after { content:"+"; width:32px; height:32px; display:grid; place-items:center; position:absolute; right:18px; top:50%; border-radius:50%; color:#08747f; background:#e8f5f6; font-size:1.2rem; transform:translateY(-50%); }
.dispatch-document-archive[open] summary::after { content:"−"; }
.dispatch-document-archive summary span { min-height:50px; display:grid; place-items:center; border-radius:12px; color:#fff; background:linear-gradient(145deg,#0a405b,#087d89); font-family:Arial,sans-serif; font-size:.72rem; font-weight:900; }
.dispatch-document-archive summary strong { color:#294650; font-size:.94rem; }
.legacy-content .dispatch-document-archive > ul { margin:0; padding:22px; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:9px; border-top:1px solid #e1ebed; background:#f8fbfc; list-style:none; }
.legacy-content .dispatch-document-archive li { margin:0; }
.legacy-content .dispatch-document-archive li > a { min-height:72px; height:100%; padding:14px 40px 14px 50px; display:flex; align-items:center; position:relative; border:1px solid #d8e5e7; border-radius:11px; color:#3d5f68; background:#fff; font-size:.72rem; font-weight:800; line-height:1.55; text-decoration:none; overflow-wrap:anywhere; }
.dispatch-document-archive li > a::before { content:"PDF"; width:29px; height:35px; display:grid; place-items:center; position:absolute; left:12px; top:50%; border-radius:6px; color:#fff; background:#b3443e; font-family:Arial,sans-serif; font-size:.48rem; transform:translateY(-50%); }
.dispatch-document-archive li > a::after { content:"↗"; position:absolute; right:13px; top:13px; color:#087b86; }
@media (max-width:900px) {
  .dispatch-document-intro { grid-template-columns:1fr; }
  .dispatch-document-intro nav { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:620px) {
  .dispatch-document-intro { padding:28px 20px; border-radius:20px; }
  .dispatch-document-intro nav { grid-template-columns:1fr; }
  .dispatch-document-notice { padding:17px 16px; grid-template-columns:36px 1fr; gap:12px; }
  .dispatch-document-notice > div { width:36px; height:36px; }
  .training-document-library .dispatch-document-notice + .document-section { margin-top:55px; }
  .dispatch-document-list { margin-top:55px; }
  .dispatch-document-list > h3 { margin-top:45px; padding-left:45px; font-size:1.05rem; }
  .dispatch-document-list > h3::before { width:34px; height:34px; }
  .legacy-content .dispatch-document-list > ul,
  .legacy-content .dispatch-document-archive > ul { grid-template-columns:1fr; }
  .legacy-content .dispatch-document-list > ul > li > a { min-height:70px; padding:13px 36px 13px 49px; }
  .dispatch-document-archive summary { grid-template-columns:48px 1fr; gap:12px; padding:14px 48px 14px 13px; }
  .legacy-content .dispatch-document-archive > ul { padding:14px; }
}

/* Online dispatch manager course content */
.online-course-modern { --oc-navy:#082f49; --oc-teal:#087b86; color:#294651; }
.online-course-modern > section + section { margin-top:76px; }
.online-course-modern section > header { max-width:760px; margin:0 auto 28px; text-align:center; }
.online-course-modern .section-label { color:#087c87; }
.online-course-modern h2 { margin:7px 0 0; color:var(--oc-navy); font-size:clamp(1.6rem,3.4vw,2.35rem); }
.online-course-modern section > header > p:last-child { margin:12px 0 0; color:#647982; line-height:1.8; }
.online-course-overview { padding:clamp(32px,6vw,62px); display:grid; grid-template-columns:1fr 230px 230px; align-items:center; gap:20px; overflow:hidden; position:relative; border:1px solid #d5e7e9; border-radius:28px; background:linear-gradient(135deg,#eef9f9,#fff 58%,#eef5fb); box-shadow:0 22px 50px rgba(7,58,77,.12); }
.online-course-overview::after { content:""; width:300px; height:300px; position:absolute; right:-140px; top:-175px; border:52px solid rgba(8,125,137,.07); border-radius:50%; }
.online-course-overview-copy { position:relative; z-index:1; }
.online-course-overview-copy > p:not(.section-label) { margin:15px 0 0; color:#5c737c; line-height:1.9; }
.online-course-hours,.online-course-duration { min-height:175px; padding:24px 17px; display:flex; flex-direction:column; align-items:center; align-self:stretch; justify-content:center; position:relative; z-index:1; border-radius:20px; color:#fff; background:linear-gradient(145deg,#082f49,#087985); box-shadow:0 16px 34px rgba(5,82,99,.2); text-align:center; }
.online-course-duration { background:linear-gradient(145deg,#7b263c,#c45145); box-shadow:0 16px 34px rgba(123,38,60,.2); }
.online-course-hours small,.online-course-duration small { color:#91dfe3; font-size:.52rem; font-weight:900; letter-spacing:.14em; }
.online-course-duration small { color:#ffd4ce; }
.online-course-hours strong { margin-top:10px; font-family:Arial,sans-serif; font-size:2.35rem; letter-spacing:-.04em; }
.online-course-hours strong span { margin:0 5px; color:#7edbe0; }
.online-course-duration strong { margin-top:10px; font-family:Arial,sans-serif; font-size:2.25rem; }
.online-course-duration strong em { margin:0 2px; font-family:inherit; font-size:.72rem; font-style:normal; }
.online-course-hours p,.online-course-duration p { margin:9px 0 0; color:#c9e5e7; font-size:.68rem; }
.online-course-duration p { color:#ffe7e3; }
.online-course-hour-rules { width:100%; margin-top:12px; display:grid; gap:5px; }
.online-course-hours .online-course-hour-rules p { margin:0; padding:5px 8px; display:flex; align-items:center; justify-content:space-between; gap:8px; border-radius:7px; background:rgba(255,255,255,.12); color:#fff; font-size:.65rem; line-height:1.25; }
.online-course-hour-rules span { color:#b9e8eb; font-weight:700; }
.online-course-hour-rules b { color:#fff; font-family:Arial,"Noto Sans JP",sans-serif; font-size:.72rem; white-space:nowrap; }
.online-course-hours .online-course-hour-rules p:first-child { background:#fff0b8; box-shadow:0 3px 10px rgba(255,193,7,.2); }
.online-course-hours .online-course-hour-rules p:first-child span { color:#74410b; }
.online-course-hours .online-course-hour-rules p:first-child b { color:#a42f19; }
.online-course-hours .online-course-hour-rules p:last-child { background:#d7f7ee; box-shadow:0 3px 10px rgba(52,211,153,.18); }
.online-course-hours .online-course-hour-rules p:last-child span { color:#075a4e; }
.online-course-hours .online-course-hour-rules p:last-child b { color:#06445d; }
.online-course-overview-copy > p.online-course-lead { margin-top:18px; padding:15px 17px; border:1px solid #f1c8aa; border-left:5px solid #d45a22; border-radius:11px; background:linear-gradient(135deg,#fff8ef,#fff 72%); box-shadow:0 8px 20px rgba(152,72,30,.08); color:#385661; line-height:2; }
.online-course-lead strong { padding:2px 5px; border-radius:4px; font-weight:900; white-space:nowrap; }
.online-course-lead strong.is-start { color:#a42f19; background:#fff0b8; }
.online-course-lead strong.is-finish { color:#075a4e; background:#d7f7ee; }
.online-deadline-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:17px; }
.online-deadline-grid article { padding:27px; display:grid; grid-template-columns:78px 1fr; gap:21px; border:1px solid #d6e3e5; border-radius:20px; background:#fff; box-shadow:0 12px 28px rgba(7,55,75,.07); }
.online-deadline-grid article > span { width:76px; height:76px; display:grid; place-items:center; border-radius:19px; color:#fff; background:linear-gradient(145deg,#0a405b,#087d89); font-size:.66rem; font-weight:900; letter-spacing:.09em; }
.online-deadline-grid .is-finish > span { background:linear-gradient(145deg,#8f312d,#d55e45); }
.online-deadline-grid small { color:#14808b; font-size:.57rem; font-weight:900; letter-spacing:.1em; }
.online-deadline-grid strong { display:block; margin-top:4px; color:var(--oc-navy); font-size:1.35rem; }
.online-deadline-grid p { margin:9px 0 0; color:#61757e; font-size:.79rem; line-height:1.75; }
.online-refund-warning { margin:17px 0 0; padding:17px 21px; border:1px solid #e1b8ad; border-left:5px solid #ba4932; border-radius:12px; color:#74534b; background:#fff4f0; font-size:.79rem; line-height:1.7; }
.online-refund-warning strong { margin-right:9px; color:#a43b27; }
.online-course-timeline { max-width:900px; margin:0 auto; padding:0; position:relative; list-style:none; }
.online-course-timeline::before { content:""; width:2px; position:absolute; left:137px; top:32px; bottom:32px; background:linear-gradient(#087b86,#bcdfe2); }
.online-course-timeline li { min-height:96px; margin-top:12px; padding:17px 20px; display:grid; grid-template-columns:105px 58px 1fr; align-items:center; gap:18px; position:relative; border:1px solid #d7e4e6; border-radius:16px; background:#fff; box-shadow:0 7px 20px rgba(7,55,75,.05); }
.online-course-timeline time { color:#294f5a; font-family:Arial,sans-serif; font-size:.83rem; font-weight:900; }
.online-course-timeline li > span { width:54px; min-height:38px; display:grid; place-items:center; position:relative; z-index:1; border:4px solid #fff; border-radius:999px; color:#fff; background:#087c87; font-size:.62rem; font-weight:900; }
.online-course-timeline h3 { margin:0; color:var(--oc-navy); font-size:.94rem; }
.online-course-timeline p { margin:6px 0 0; color:#667b83; font-size:.75rem; line-height:1.65; }
.online-course-timeline p strong { display:block; color:#a53b28; }
.online-course-timeline .is-break { background:#f5f9fa; }
.online-course-timeline .is-break > span { color:#547079; background:#c6dcdf; }
.online-course-timeline .is-required,.online-course-timeline .is-survey { border-color:#e1b9ad; background:#fff9f6; }
.online-course-timeline .is-required > span,.online-course-timeline .is-survey > span { background:#bf4c35; }
.online-course-timeline .is-exam { border-color:#d6bb7c; background:#fffaf0; }
.online-course-timeline .is-exam > span { color:#fff; background:#b27a25; }
.online-curriculum { padding:clamp(30px,5vw,52px); border-radius:27px; background:linear-gradient(145deg,#082f49,#075d6e); box-shadow:0 23px 50px rgba(5,48,68,.2); }
.online-course-modern .online-curriculum > header .section-label { color:#79dce1; }
.online-course-modern .online-curriculum > header h2 { color:#fff; }
.online-course-modern .online-curriculum > header > p:last-child { color:#c4dfe2; }
.online-curriculum-grid { margin:0; padding:0; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:15px; list-style:none; }
.online-curriculum-grid li { min-height:190px; padding:25px; display:grid; grid-template-columns:55px 1fr; gap:18px; border:1px solid rgba(255,255,255,.18); border-radius:18px; background:rgba(255,255,255,.96); }
.online-curriculum-grid li > span { width:53px; height:53px; display:grid; place-items:center; border-radius:14px; color:#fff; background:linear-gradient(145deg,#0a405b,#087d89); font-family:Arial,sans-serif; font-weight:900; }
.online-curriculum-grid small { color:#13808a; font-size:.52rem; font-weight:900; letter-spacing:.12em; }
.online-curriculum-grid h3 { margin:5px 0 0; color:var(--oc-navy); font-size:1rem; }
.online-curriculum-grid p { margin:10px 0 0; color:#60757e; font-size:.78rem; line-height:1.75; }
.online-curriculum-grid .is-exam-card { border-color:#dfbd73; background:#fffaf0; }
.online-curriculum-grid .is-exam-card > span { background:linear-gradient(145deg,#8b5e1d,#c89235); }
.online-curriculum-grid .is-exam-card strong { color:#9b3c28; }
.placement-online-course .online-course-overview { background:linear-gradient(135deg,#eef9f9,#fff 58%,#fff1ed); }
.online-course-final { padding:clamp(28px,5vw,48px); display:grid; grid-template-columns:1fr .9fr; align-items:center; gap:42px; border:1px solid #d5e3e5; border-radius:24px; background:linear-gradient(135deg,#f7fbfc,#fff); box-shadow:0 17px 38px rgba(7,55,75,.07); }
.legacy-content .online-course-final ul { margin:16px 0 0; padding-left:1.25em; }
.legacy-content .online-course-final li { margin-top:8px; color:#61757e; font-size:.78rem; line-height:1.7; }
.online-language-warning { margin-top:7px; padding:7px 10px; display:block; border-left:4px solid #c83d32; border-radius:6px; color:#9b2924; background:#fff0ed; box-shadow:0 4px 12px rgba(155,41,36,.09); font-weight:900; line-height:1.65; }
.online-course-actions { display:grid; gap:10px; }
.legacy-content .online-course-actions a { min-height:86px; padding:17px 54px 17px 20px; display:flex; flex-direction:column; justify-content:center; position:relative; border-radius:14px; color:#fff; background:linear-gradient(135deg,#07344e,#087985); box-shadow:0 11px 24px rgba(5,82,99,.2); text-decoration:none; }
.legacy-content .online-course-actions a.is-secondary { background:linear-gradient(135deg,#7b263c,#c45145); box-shadow:0 11px 24px rgba(123,38,60,.2); }
.online-course-actions small { color:#9ee0e4; font-size:.52rem; font-weight:900; letter-spacing:.13em; }
.online-course-actions .is-secondary small { color:#ffd4ce; }
.online-course-actions strong { margin-top:4px; color:#fff; font-size:.94rem; }
.online-course-actions a > span { position:absolute; right:20px; top:50%; transform:translateY(-50%); }
.online-course-directory { margin-top:76px; padding:clamp(28px,5vw,48px); border:0; border-radius:26px; background:linear-gradient(145deg,#082d47,#0a5968); box-shadow:0 22px 48px rgba(5,48,70,.18); }
.online-course-directory > .section-label { color:#78dce1; }
.online-course-directory h2 { color:#fff; }
.online-course-directory > div { grid-template-columns:repeat(4,minmax(0,1fr)); }
.legacy-content .online-course-directory a { min-height:112px; padding:20px 38px 20px 20px; position:relative; border:1px solid rgba(255,255,255,.16); border-top:1px solid rgba(255,255,255,.16); border-radius:14px; background:rgba(255,255,255,.08); box-shadow:none; }
.legacy-content .online-course-directory a::after { content:"↗"; position:absolute; right:14px; top:14px; color:#82dce1; }
.legacy-content .online-course-directory a[aria-current="page"] { border-color:#d7b466; background:linear-gradient(135deg,rgba(216,179,98,.22),rgba(255,255,255,.1)); }
.legacy-content .online-course-directory b { color:#fff; }
.legacy-content .online-course-directory span { color:#b9d7dc; }
@media (max-width:980px) {
  .online-course-overview { grid-template-columns:1fr 1fr; }
  .online-course-overview-copy { grid-column:1/-1; }
  .online-deadline-grid,.online-curriculum-grid,.online-course-final { grid-template-columns:1fr; }
  .online-course-directory > div { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:620px) {
  .online-course-modern > section + section { margin-top:55px; }
  .online-course-overview { padding:28px 20px; grid-template-columns:1fr; border-radius:20px; }
  .online-course-overview-copy { grid-column:auto; }
  .online-course-hours,.online-course-duration { min-height:145px; }
  .online-deadline-grid article { padding:21px 17px; grid-template-columns:58px 1fr; gap:14px; }
  .online-deadline-grid article > span { width:56px; height:56px; border-radius:15px; font-size:.54rem; }
  .online-course-timeline::before { display:none; }
  .online-course-timeline li { padding:17px 15px; grid-template-columns:1fr auto; gap:8px 12px; }
  .online-course-timeline time { grid-column:1; }
  .online-course-timeline li > span { grid-column:2; grid-row:1; }
  .online-course-timeline li > div { grid-column:1/-1; }
  .online-curriculum { padding:27px 18px; border-radius:20px; }
  .online-curriculum-grid { grid-template-columns:1fr; }
  .online-curriculum-grid li { min-height:0; padding:21px 17px; grid-template-columns:48px 1fr; }
  .online-curriculum-grid li > span { width:46px; height:46px; }
  .online-course-final { padding:27px 20px; border-radius:20px; }
  .online-course-directory { padding:26px 20px; }
  .online-course-directory > div { grid-template-columns:1fr; }
}

/* Premium class page */
.premium-page {
  --premium-ink: #102331;
  --premium-gold: #c9a65a;
  --premium-gold-light: #f3dc9b;
  max-width: 1160px;
  overflow: visible;
}

.premium-jump-nav {
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.premium-jump {
  min-height: 96px;
  padding: 21px 66px 21px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(17,31,42,.16);
  transition: transform .2s ease, box-shadow .2s ease;
}

.premium-jump.executive { background: linear-gradient(125deg, #0b1b28, #304654); }
.premium-jump.grande { background: linear-gradient(125deg, #35132c, #8b3c55); }
.premium-jump::before { content: ""; width: 130px; height: 130px; position: absolute; right: -65px; top: -62px; border: 1px solid rgba(243,220,155,.35); border-radius: 50%; }
.premium-jump::after { content: "→"; width: 38px; height: 38px; display: grid; place-items: center; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); border: 1px solid rgba(255,255,255,.3); border-radius: 50%; color: var(--premium-gold-light); font-size: 1.05rem; }
.premium-jump small { color: #dfc47f; font-size: .61rem; font-weight: 900; letter-spacing: .2em; }
.premium-jump strong { margin-top: 5px; color: #fff; font-size: clamp(.95rem, 2vw, 1.14rem); }
.premium-jump:hover { transform: translateY(-3px); box-shadow: 0 19px 38px rgba(17,31,42,.22); }
.premium-jump:focus-visible,
.premium-class-link:focus-visible { outline: 3px solid #e0bd6c; outline-offset: 3px; }

.premium-overview {
  overflow: hidden;
  border: 1px solid #e3dac5;
  border-radius: 28px;
  background: linear-gradient(145deg, #fbf9f4, #f3eee4);
  box-shadow: 0 22px 50px rgba(27,39,46,.1);
}

.premium-overview-heading {
  padding: clamp(42px, 7vw, 72px) clamp(24px, 8vw, 90px) 62px;
  position: relative;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 85% 12%, rgba(204,171,94,.22), transparent 28%),
    radial-gradient(circle at 10% 100%, rgba(255,255,255,.08), transparent 28%),
    linear-gradient(135deg, #091923, #1c3340 70%, #263d47);
}

.premium-overview-heading::after { content: ""; width: 74px; height: 1px; position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%); background: var(--premium-gold); }
.premium-eyebrow { margin: 0 0 12px; color: #dfc57f; font-size: .65rem; font-weight: 900; letter-spacing: .25em; }
.premium-overview-heading h2 { margin: 0; color: #fff; font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(1.7rem, 4vw, 2.7rem); font-weight: 700; letter-spacing: .08em; }
.premium-wordmark { width: min(430px, 100%); margin: 28px auto 0; padding: 22px 30px 20px; display: grid; grid-template-columns: auto auto; align-items: end; justify-content: center; column-gap: 13px; position: relative; border: 1px solid rgba(226,199,128,.52); background: rgba(255,255,255,.045); box-shadow: inset 0 0 0 5px rgba(255,255,255,.025); }
.premium-wordmark::before,
.premium-wordmark::after { content: ""; width: 34px; height: 1px; position: absolute; top: 50%; background: #d9bd76; }
.premium-wordmark::before { left: 22px; }
.premium-wordmark::after { right: 22px; }
.premium-wordmark span { color: #fff; font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(1.15rem, 3.1vw, 1.9rem); font-weight: 400; letter-spacing: .08em; }
.premium-wordmark strong { color: #e2c77f; font-family: Georgia, serif; font-size: clamp(1.28rem, 3.2vw, 2rem); font-weight: 400; letter-spacing: .14em; }
.premium-wordmark small { grid-column: 1 / -1; margin-top: 8px; color: rgba(255,255,255,.62); font-size: .5rem; font-weight: 800; letter-spacing: .24em; }
.premium-intro { max-width: 850px; margin: 28px auto 0; color: #dce5e7; font-size: clamp(.88rem, 1.6vw, 1rem); line-height: 2.05; text-align: left; }

.premium-value-grid {
  margin: -27px clamp(18px, 5vw, 50px) 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  position: relative;
  z-index: 1;
}

.premium-value { min-height: 142px; padding: 23px 18px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid #e4dccb; border-radius: 16px; text-align: center; background: rgba(255,255,255,.98); box-shadow: 0 12px 28px rgba(31,40,43,.08); }
.premium-value > span { color: #b48b39; font-family: Georgia, serif; font-size: .76rem; font-weight: 700; letter-spacing: .12em; }
.premium-value strong { margin-top: 8px; color: var(--premium-ink); font-size: .94rem; }
.premium-value small { margin-top: 5px; color: #9a7c44; font-size: .52rem; font-weight: 900; letter-spacing: .14em; }

.premium-story { padding: clamp(32px, 6vw, 60px) clamp(22px, 7vw, 72px) clamp(38px, 7vw, 68px); }
.premium-story p { margin: 0; color: #465a63; font-size: .91rem; line-height: 2; }
.premium-story p + p { margin-top: 25px; }
.premium-highlight { padding: clamp(22px, 4vw, 34px); border-left: 4px solid var(--premium-gold); border-radius: 0 16px 16px 0; background: #fff; box-shadow: 0 10px 25px rgba(49,49,38,.06); }
.premium-highlight strong { color: #273b44; font-weight: 700; }
.premium-highlight span { display: block; margin-top: 15px; color: #8b5f1f; }
.premium-closing { padding-top: 27px; border-top: 1px solid #ddd2ba; color: var(--premium-ink) !important; text-align: center; }

.premium-class-section {
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  align-items: stretch;
  overflow: hidden;
  scroll-margin-top: 110px;
  border-radius: 26px;
  color: #fff;
  box-shadow: 0 20px 45px rgba(20,30,38,.17);
}

.premium-class-section.executive { background: linear-gradient(135deg, #0b1b28, #304653); }
.premium-class-section.grande { background: linear-gradient(135deg, #34132b, #8c3d56); }
.premium-class-copy { padding: clamp(36px, 6vw, 65px) clamp(26px, 5vw, 52px); display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; text-align: center; }
.premium-class-copy::before { content: ""; width: 150px; height: 150px; position: absolute; left: -85px; top: -80px; border: 1px solid rgba(243,220,155,.25); border-radius: 50%; }
.premium-class-copy h2 { margin: 0; color: #fff; font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(1.55rem, 3.4vw, 2.35rem); line-height: 1.35; letter-spacing: .07em; }
.premium-class-copy h2 span { display: block; margin-bottom: 8px; color: #dbc47f; font-family: sans-serif; font-size: .66rem; font-weight: 900; letter-spacing: .15em; }
.premium-class-copy > p:not(.premium-eyebrow) { margin: 24px 0 0; color: rgba(255,255,255,.8); font-size: .9rem; line-height: 1.9; }
.premium-class-link { margin-top: 27px; padding: 11px 35px 11px 18px; position: relative; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; color: #fff; font-size: .75rem; font-weight: 800; text-decoration: none; }
.premium-class-link::after { content: "↓"; position: absolute; right: 15px; color: var(--premium-gold-light); }
.premium-class-visual { min-width: 0; margin: 0; padding: clamp(26px, 5vw, 48px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; position: relative; background: rgba(255,255,255,.08); }
.premium-class-visual::before { content: ""; position: absolute; inset: 13px; border: 1px solid rgba(255,255,255,.12); border-radius: 17px; pointer-events: none; }
.premium-identity { width: min(100%, 620px); min-height: 280px; padding: clamp(38px, 7vw, 66px) clamp(25px, 6vw, 58px); display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; z-index: 1; overflow: hidden; border: 1px solid rgba(229,204,139,.48); text-align: center; background: rgba(6,18,26,.36); box-shadow: 0 22px 45px rgba(0,0,0,.2), inset 0 0 0 7px rgba(255,255,255,.025); }
.premium-identity::before,
.premium-identity::after { content: ""; position: absolute; pointer-events: none; }
.premium-identity::before { width: 190px; height: 190px; right: -105px; top: -105px; border: 1px solid rgba(230,202,129,.38); border-radius: 50%; }
.premium-identity::after { width: 72px; height: 1px; left: 50%; bottom: 33px; transform: translateX(-50%); background: #d9bd76; }
.premium-identity small { color: rgba(255,255,255,.58); font-size: .54rem; font-weight: 800; letter-spacing: .27em; }
.premium-identity span { margin-top: 22px; color: #e2c77f; font-size: .65rem; font-weight: 900; letter-spacing: .3em; }
.premium-identity strong { margin-top: 6px; color: #fff; font-family: Georgia, "Yu Mincho", serif; font-size: clamp(2rem, 5vw, 3.45rem); font-weight: 400; line-height: 1.15; letter-spacing: .12em; }
.premium-identity p { margin: 20px 0 0; color: rgba(255,255,255,.76); font-size: .82rem; line-height: 1.8; }
.grande-identity { background: rgba(51,12,36,.36); }
.premium-identity ul { margin: 24px 0 0; padding: 16px 0 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; border-top: 1px solid rgba(255,255,255,.13); list-style: none; }
.premium-identity li { color: rgba(255,255,255,.75); font-size: .7rem; font-weight: 700; letter-spacing: .04em; }
.premium-identity li + li::before { content: "/"; margin-right: 22px; color: #d9bd76; }

@media (max-width: 820px) {
  .premium-class-section { grid-template-columns: 1fr; }
  .premium-class-copy { min-height: 310px; }
  .premium-class-visual { min-height: 250px; }
}

@media (max-width: 620px) {
  .premium-jump-nav,
  .premium-value-grid { grid-template-columns: 1fr; }
  .premium-jump { min-height: 84px; padding: 17px 60px 17px 20px; border-radius: 15px; }
  .premium-overview { border-radius: 21px; }
  .premium-overview-heading { padding: 38px 20px 58px; }
  .premium-intro { line-height: 1.85; }
  .premium-value-grid { margin: -25px 15px 0; }
  .premium-value { min-height: 118px; }
  .premium-story { padding: 31px 19px 40px; }
  .premium-highlight { padding: 21px 18px; }
  .premium-class-section { margin-top: 24px; border-radius: 20px; }
  .premium-class-copy { min-height: 275px; padding: 36px 20px; }
  .premium-class-visual { min-height: 210px; padding: 27px 20px; }
  .premium-wordmark { padding: 20px 52px 18px; }
  .premium-wordmark::before,
  .premium-wordmark::after { width: 20px; }
  .premium-wordmark::before { left: 17px; }
  .premium-wordmark::after { right: 17px; }
  .premium-identity { min-height: 250px; padding: 38px 20px 50px; }
  .premium-identity ul { display: grid; gap: 7px; }
  .premium-identity li + li::before { content: none; }
}
/* 技能実習3講習：開催スケジュール 2026-09 renewal */
.training-grp .training-schedule-modern { --schedule-accent: #1769aa; --schedule-accent-dark: #0a477c; --schedule-soft: #edf6ff; --schedule-line: #cddff0; --schedule-rgb: 23, 105, 170; }
.training-gpi .training-schedule-modern { --schedule-accent: #168267; --schedule-accent-dark: #095b47; --schedule-soft: #edf9f4; --schedule-line: #c9e5da; --schedule-rgb: 22, 130, 103; }
.training-gli .training-schedule-modern { --schedule-accent: #a97824; --schedule-accent-dark: #75500f; --schedule-soft: #fff8e9; --schedule-line: #ead9b2; --schedule-rgb: 169, 120, 36; }

.training-schedule-modern {
  color: #294451;
}

.training-schedule-modern .training-fee-section,
.training-schedule-modern .training-calendar-section {
  margin: 0;
  padding: clamp(26px, 4.5vw, 46px);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--schedule-line);
  border-radius: 26px;
  background: linear-gradient(145deg, #fff 0%, var(--schedule-soft) 145%);
  box-shadow: 0 22px 50px rgba(23, 54, 72, .1);
}

.training-schedule-modern .training-calendar-section {
  margin-top: 54px;
}

.training-schedule-modern .training-section-heading {
  margin-bottom: 24px;
}

.training-schedule-modern .training-section-heading > span {
  display: block;
  color: var(--schedule-accent);
  font: 900 .7rem/1.2 Arial, sans-serif;
  letter-spacing: .17em;
}

.training-schedule-modern .training-section-heading h2 {
  margin: 7px 0 0;
  color: #12394c;
  font-size: clamp(1.55rem, 3.3vw, 2.2rem);
  line-height: 1.35;
}

.training-schedule-modern .training-section-heading.is-calendar p {
  margin: 10px 0 0;
  color: #617986;
  font-size: .9rem;
  line-height: 1.75;
}

.training-fee-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.training-fee-card {
  min-height: 220px;
  padding: 25px 26px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--schedule-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(31, 66, 82, .08);
}

.training-fee-card::after {
  content: "";
  width: 160px;
  height: 160px;
  position: absolute;
  right: -85px;
  top: -90px;
  border: 28px solid rgba(var(--schedule-rgb), .08);
  border-radius: 50%;
}

.training-fee-card.is-online {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(145deg, var(--schedule-accent-dark), var(--schedule-accent));
}

.training-fee-card.is-online::after {
  border-color: rgba(255, 255, 255, .1);
}

.training-schedule-modern .training-mode-label {
  width: fit-content;
  margin: 0;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--schedule-accent);
  background: var(--schedule-soft);
  font: 900 .62rem/1 Arial, sans-serif;
  letter-spacing: .13em;
}

.training-fee-card.is-online .training-mode-label {
  color: #fff;
  background: rgba(255, 255, 255, .16);
}

.training-schedule-modern .training-fee-card h3 {
  margin: 12px 0 17px;
  padding: 0;
  border: 0;
  color: #173e50;
  background: none;
  font-size: 1.16rem;
  text-align: left;
}

.training-schedule-modern .training-fee-card.is-online h3 { color: #fff; }
.training-fee-card dl { margin: 0; padding: 0; border: 0; background: transparent; }
.training-fee-card dl > div { padding: 8px 0; display: flex; align-items: baseline; justify-content: space-between; gap: 12px; border-top: 1px solid var(--schedule-line); }
.training-fee-card dt { color: #59727e; font-size: .82rem; font-weight: 800; }
.training-fee-card dd { margin: 0; color: #243f4d; }
.training-fee-card dd strong,
.training-online-price strong { margin-right: 4px; color: var(--schedule-accent-dark); font: 900 clamp(1.65rem, 3.5vw, 2.25rem)/1 Arial, sans-serif; letter-spacing: -.03em; }
.training-fee-card small,
.training-online-price small { display: block; margin-top: 5px; color: #71858f; font-size: .63rem; }
.training-online-price { margin: 28px 0 0; color: #fff; }
.training-fee-card.is-online .training-online-price strong,
.training-fee-card.is-online .training-online-price small { color: #fff; }

.training-invoice-note {
  margin-top: 18px;
  padding: 17px 20px;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 13px;
  border: 1px solid var(--schedule-line);
  border-radius: 15px;
  background: var(--schedule-soft);
}

.training-invoice-note > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: var(--schedule-accent);
  font-weight: 900;
}

.training-invoice-note p { margin: 0; color: #58707b; font-size: .76rem; line-height: 1.65; }
.training-invoice-note strong { display: inline-block; margin-right: 10px; color: #254b5b; }
.training-invoice-note b { display: inline-block; margin-right: 10px; color: var(--schedule-accent-dark); }

.legacy-content a.training-detail-link {
  margin-top: 18px;
  padding: 16px 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--schedule-line);
  border-radius: 14px;
  color: #173e50;
  background: #fff;
  box-shadow: 0 9px 22px rgba(28, 67, 86, .07);
  font-weight: 850;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.training-detail-link span small { display: block; margin-bottom: 4px; color: var(--schedule-accent); font: 900 .58rem/1 Arial, sans-serif; letter-spacing: .13em; }
.training-detail-link > b { width: 36px; height: 36px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: #fff; background: var(--schedule-accent); }
.legacy-content a.training-detail-link:hover,
.legacy-content a.training-detail-link:focus-visible { border-color: var(--schedule-accent); box-shadow: 0 13px 28px rgba(var(--schedule-rgb), .15); transform: translateY(-2px); }

.training-schedule-legend {
  margin: 0 0 17px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.training-schedule-legend span {
  padding: 7px 11px 7px 27px;
  position: relative;
  border: 1px solid var(--schedule-line);
  border-radius: 999px;
  color: #425e6b;
  background: #fff;
  font-size: .72rem;
  font-weight: 850;
}

.training-schedule-legend span::before { content: ""; width: 9px; height: 9px; position: absolute; left: 11px; top: 50%; border-radius: 50%; background: var(--schedule-accent); transform: translateY(-50%); }
.training-schedule-legend .is-online::before { background: #57889d; }
.training-schedule-legend small { margin-left: auto; color: #768993; font-size: .66rem; }

.training-schedule-months {
  display: grid;
  gap: 24px;
}

.training-schedule-modern .training-schedule-month {
  margin-top: 0;
  border-color: var(--schedule-line);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(27, 61, 78, .08);
}

.training-schedule-modern .training-schedule-month > h4 {
  padding: 16px 22px;
  background: linear-gradient(105deg, var(--schedule-accent-dark), var(--schedule-accent));
}

.training-schedule-modern .training-schedule-month > h4 span {
  font-size: 1.35rem;
  letter-spacing: .03em;
}

.training-schedule-modern .training-schedule-month > h4 small {
  color: rgba(255, 255, 255, .76);
  font-size: .65rem;
  letter-spacing: .18em;
}

.training-schedule-modern .training-schedule-month .schedule-registration-notice {
  margin: 15px 16px;
}

.training-schedule-modern .training-schedule-month .training-schedule-table-wrap {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.training-schedule-table-wrap {
  overflow: hidden;
  border: 1px solid var(--schedule-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(27, 61, 78, .08);
}

.training-schedule-modern .training-month-table {
  width: 100% !important;
  margin: 0;
  border: 0 !important;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  background: #fff;
}

.training-schedule-modern .training-month-table th,
.training-schedule-modern .training-month-table td {
  width: auto !important;
  min-width: 0;
  padding: 17px 12px !important;
  border-width: 0 0 1px !important;
  border-style: solid !important;
  border-color: #e1eaee !important;
  text-align: center !important;
  line-height: 1.65;
}

.training-schedule-modern .training-month-table th {
  color: #173c4b !important;
  -webkit-text-fill-color: #173c4b;
  background: linear-gradient(180deg, #f4f8f9, #dfe9ec) !important;
  border-bottom: 2px solid #b8cbd2 !important;
  font-size: .78rem;
  letter-spacing: .065em;
  font-weight: 900;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .9);
}

.training-schedule-modern .training-month-table th:nth-child(1) { width: 22% !important; }
.training-schedule-modern .training-month-table th:nth-child(2) { width: 11% !important; }
.training-schedule-modern .training-month-table th:nth-child(4) { width: 9% !important; }
.training-schedule-modern .training-month-table th:nth-child(5) { width: 14% !important; }
.training-schedule-modern .training-month-table tr:last-child td { border-bottom: 0 !important; }
.training-schedule-modern .training-month-table tbody tr:nth-child(even) td { background: #fbfdfe; }
.training-schedule-modern .training-month-table tr:has(td:nth-child(3) > a[href*="riyoukiyaku.pdf"]) td { background: rgba(var(--schedule-rgb), .045); }
.training-schedule-modern .training-month-table td:first-child { color: #173f51; font-weight: 850; }
.training-schedule-modern .training-month-table td:nth-child(2) { color: var(--schedule-accent-dark); font-size: .78rem; font-weight: 900; }
.training-schedule-modern .training-month-table td:nth-child(3) { color: #304f5d; font-weight: 750; }
.training-schedule-modern .training-month-table td:nth-child(4) { color: #60747e; font-size: .75rem; font-weight: 800; }
.training-schedule-modern .training-month-table td:last-child:not(:has(a)),
.training-schedule-modern .training-month-table td.auto-schedule-closed { color: #8b5a52; background: #f8eeeb !important; font-size: .73rem; font-weight: 900; }

.training-schedule-modern .training-month-table td:nth-child(3) > a[href*="riyoukiyaku.pdf"] {
  margin-top: 7px;
  padding: 7px 10px;
  display: inline-flex;
  border: 1px solid var(--schedule-line);
  border-radius: 9px;
  color: var(--schedule-accent-dark);
  background: #fff;
  font-size: .68rem;
  font-weight: 800;
  line-height: 1.45;
  text-decoration: none;
}

.training-schedule-modern .map-link {
  margin-top: 8px;
  padding: 8px 12px 8px 29px;
  position: relative;
  border: 1px solid var(--schedule-line);
  color: var(--schedule-accent-dark);
  background: var(--schedule-soft);
  box-shadow: none;
}

.training-schedule-modern .map-link::before { content: ""; width: 10px; height: 10px; position: absolute; left: 12px; top: 9px; border: 2px solid var(--schedule-accent); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); }
.training-schedule-modern .map-link::after { content: ""; width: 3px; height: 3px; position: absolute; left: 17px; top: 14px; border-radius: 50%; background: var(--schedule-accent); }
.training-schedule-modern .apply-mini {
  min-width: 82px;
  min-height: 40px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 11px;
  background: linear-gradient(145deg, #e8782d, #be4517);
  box-shadow: 0 8px 17px rgba(177, 67, 23, .22);
  font-size: .73rem;
  letter-spacing: .02em;
}
.training-schedule-modern a:has(.apply-mini):hover .apply-mini,
.training-schedule-modern a:has(.apply-mini):focus-visible .apply-mini { filter: brightness(1.08); transform: translateY(-1px); }
.training-schedule-modern .training-application-control.is-registration-pending .apply-mini { border-color: transparent; border-radius: 11px; }

@media (max-width: 760px) {
  .training-schedule-modern .training-fee-grid { grid-template-columns: 1fr; }
  .training-schedule-modern .training-schedule-table-wrap { overflow: visible; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
  .training-schedule-modern .training-month-table,
  .training-schedule-modern .training-month-table tbody { display: block; background: transparent; }
  .training-schedule-modern .training-month-table thead { display: none; }
  .training-schedule-modern .training-month-table tbody tr {
    margin-bottom: 14px;
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 14px;
    overflow: hidden;
    border: 1px solid var(--schedule-line);
    border-top: 5px solid var(--schedule-accent);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 9px 22px rgba(26, 60, 77, .08);
  }
  .training-schedule-modern .training-month-table tbody tr:has(td:nth-child(3) > a[href*="riyoukiyaku.pdf"]) { border-top-color: #57889d; }
  .training-schedule-modern .training-month-table td {
    padding: 12px 4px !important;
    display: block;
    border-bottom: 1px solid #e6edef !important;
    background: transparent !important;
    text-align: left !important;
  }
  .training-schedule-modern .training-month-table td::before { display: block; margin-bottom: 5px; color: #81929a; font-size: .58rem; font-weight: 900; letter-spacing: .08em; }
  .training-schedule-modern .training-month-table td:nth-child(1)::before { content: "開催日程"; }
  .training-schedule-modern .training-month-table td:nth-child(2)::before { content: "地域"; }
  .training-schedule-modern .training-month-table td:nth-child(3)::before { content: "会場・受講形式"; }
  .training-schedule-modern .training-month-table td:nth-child(4)::before { content: "定員"; }
  .training-schedule-modern .training-month-table td:nth-child(5)::before { content: "状況"; }
  .training-schedule-modern .training-month-table td:nth-child(3),
  .training-schedule-modern .training-month-table td:nth-child(5) { grid-column: 1 / -1; }
  .training-schedule-modern .training-month-table td:nth-child(4) { border-bottom: 0 !important; }
  .training-schedule-modern .training-month-table td:nth-child(5) { padding-top: 14px !important; border-bottom: 0 !important; text-align: center !important; }
  .training-schedule-modern .training-month-table td:nth-child(5)::before { text-align: left; }
  .training-schedule-modern .apply-mini { width: 100%; }
}

@media (max-width: 520px) {
  .training-schedule-modern .training-fee-section,
  .training-schedule-modern .training-calendar-section { margin-left: -10px; margin-right: -10px; padding: 24px 16px; border-radius: 20px; }
  .training-fee-card { min-height: 0; padding: 22px 19px; }
  .training-invoice-note { grid-template-columns: 1fr; }
  .training-invoice-note > span { width: 32px; height: 32px; }
  .training-invoice-note strong,
  .training-invoice-note b { display: block; margin: 0 0 3px; }
  .training-schedule-legend { align-items: flex-start; }
  .training-schedule-legend small { width: 100%; margin: 3px 0 0; }
}
/* 派遣元責任者講習・職業紹介責任者講習：SEO親ページ */
.course-parent-page {
  --parent-accent: #087989;
  --parent-accent-dark: #083c56;
  --parent-accent-rgb: 8, 121, 137;
}

.course-parent-page.course-parent-placement {
  --parent-accent: #a94a67;
  --parent-accent-dark: #653149;
  --parent-accent-rgb: 169, 74, 103;
}

.quick-course-parent-link {
  color: inherit;
  text-decoration: none;
}

.quick-course-parent-link:hover,
.quick-course-parent-link:focus-visible { text-decoration: underline; text-underline-offset: 4px; }

.quick-course-parent-guide { margin: 5px 0 0; }
.quick-course-parent-guide a { color: #496976; font-size: .72rem; font-weight: 850; text-underline-offset: 3px; }

.course-parent-overview {
  margin-bottom: 44px;
  padding: clamp(25px, 4vw, 42px);
  border: 1px solid #dce7eb;
  border-radius: 24px;
  background: linear-gradient(155deg, #fff, #f5fafb);
  box-shadow: 0 18px 42px rgba(25, 62, 78, .1);
}

.course-parent-overview > header {
  max-width: 820px;
  margin: 0 auto 27px;
  text-align: center;
}

.course-parent-overview > header .section-label {
  margin: 0 0 7px;
  color: var(--parent-accent);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .18em;
}

.legacy-content .course-parent-overview > header h2 {
  margin: 0;
  padding: 0;
  border: 0;
  color: #173d4c;
  background: none;
  font-size: clamp(1.45rem, 3.2vw, 2.15rem);
  text-align: center;
}

.course-parent-overview > header > p:last-child {
  margin: 15px 0 0;
  color: #526c77;
  line-height: 1.85;
}

.course-parent-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.course-parent-choice-grid > article {
  min-width: 0;
  padding: clamp(22px, 3.5vw, 32px);
  border: 1px solid rgba(var(--parent-accent-rgb), .22);
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 11px 26px rgba(28, 67, 82, .075);
}

.course-parent-choice-grid > article > small {
  color: var(--parent-accent);
  font-size: .61rem;
  font-weight: 900;
  letter-spacing: .15em;
}

.legacy-content .course-parent-choice-grid h3 {
  margin: 7px 0 0;
  padding: 0;
  border: 0;
  color: #173d4c;
  background: none;
  font-size: clamp(1.1rem, 2.1vw, 1.4rem);
  text-align: left;
}

.course-parent-choice-grid article > p {
  min-height: 54px;
  margin: 13px 0 19px;
  color: #607680;
  font-size: .84rem;
  line-height: 1.75;
}

.legacy-content .course-parent-choice-grid a.course-parent-primary {
  padding: 15px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--parent-accent-dark), var(--parent-accent));
  box-shadow: 0 10px 22px rgba(var(--parent-accent-rgb), .22);
  font-weight: 900;
  text-decoration: none;
}

.course-parent-choice-grid article > div {
  margin-top: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.legacy-content .course-parent-choice-grid article > div a,
.legacy-content .course-parent-support a {
  padding: 8px 11px;
  border: 1px solid #d9e4e8;
  border-radius: 9px;
  color: #345563;
  background: #f8fbfc;
  font-size: .74rem;
  font-weight: 800;
  text-decoration: none;
}

.course-parent-support {
  margin-top: 20px;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  border-top: 1px solid #dfe9ec;
}

.course-parent-official {
  margin-top: 20px;
  padding: 17px 19px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  border-left: 4px solid var(--parent-accent);
  border-radius: 10px;
  background: rgba(var(--parent-accent-rgb), .07);
}

.course-parent-official strong { color: var(--parent-accent-dark); }
.course-parent-official p { margin: 0; color: #526c77; font-size: .79rem; line-height: 1.65; }
.legacy-content .course-parent-official a { color: var(--parent-accent-dark); font-size: .75rem; font-weight: 900; }

.legacy-content .course-parent-choice-grid a:hover,
.legacy-content .course-parent-choice-grid a:focus-visible,
.legacy-content .course-parent-support a:hover,
.legacy-content .course-parent-support a:focus-visible { transform: translateY(-2px); }

@media (max-width: 760px) {
  .course-parent-choice-grid { grid-template-columns: 1fr; }
  .course-parent-choice-grid article > p { min-height: 0; }
  .course-parent-official { grid-template-columns: 1fr; }
}

/* 技能実習・育成就労：講習ポータルナビゲーション */
.training-page-title {
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.training-portal-navigation {
  width: min(1180px, calc(100% - 36px));
  margin: 22px auto 30px;
  padding: 18px;
  display: grid;
  gap: 13px;
  border: 1px solid #d3e2e5;
  border-radius: 24px;
  background: linear-gradient(145deg, #f8fbfc, #edf5f5);
  box-shadow: 0 16px 38px rgba(18, 59, 71, .1);
}

.training-portal-navigation a { text-decoration: none; }

.training-portal-home {
  padding: 13px 17px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2px 16px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(120deg, #123f50, #17697a);
}

.training-portal-home small { grid-row: 1 / span 2; color: #95e3e3; font-size: .61rem; font-weight: 900; letter-spacing: .12em; writing-mode: vertical-rl; }
.training-portal-home strong { font-size: 1.05rem; }
.training-portal-home span { color: #c7e2e6; font-size: .72rem; }

.training-primary-courses {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.training-primary-courses a {
  --nav-accent: #1769aa;
  min-height: 116px;
  padding: 17px 17px 15px 58px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--nav-accent) 28%, white);
  border-radius: 16px;
  color: #173c48;
  background: #fff;
  box-shadow: 0 9px 22px rgba(19, 62, 74, .08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.training-primary-courses a.is-instructor { --nav-accent: #16805d; }
.training-primary-courses a.is-life { --nav-accent: #a06419; }
.training-primary-courses a::after { position: absolute; right: 15px; bottom: 13px; content: "→"; color: var(--nav-accent); font-weight: 900; }
.training-primary-courses a small { position: absolute; left: 14px; top: 15px; display: grid; width: 32px; height: 32px; place-items: center; border-radius: 10px; color: #fff; background: var(--nav-accent); font-size: .68rem; font-weight: 900; }
.training-primary-courses a strong { color: #173c48; font-size: clamp(.9rem, 1.55vw, 1.06rem); line-height: 1.45; }
.training-primary-courses a span { margin-top: 6px; color: var(--nav-accent); font-size: .69rem; font-weight: 850; }
.training-primary-courses a:hover,
.training-primary-courses a:focus-visible,
.training-primary-courses a[aria-current="page"] { transform: translateY(-3px); border-color: var(--nav-accent); box-shadow: 0 14px 28px color-mix(in srgb, var(--nav-accent) 16%, transparent); }
.training-primary-courses a[aria-current="page"] { box-shadow: inset 0 0 0 2px var(--nav-accent), 0 12px 25px color-mix(in srgb, var(--nav-accent) 15%, transparent); }

.training-next-system {
  padding: 17px 54px 17px 20px;
  position: relative;
  display: grid;
  gap: 4px;
  overflow: hidden;
  border: 1px solid #7bded4;
  border-radius: 16px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 15%, rgba(190, 250, 242, .3), transparent 28%),
    linear-gradient(125deg, #075b70, #087e91 58%, #18a7a0);
  box-shadow: 0 12px 27px rgba(7, 91, 112, .2);
}

.training-next-system::after { position: absolute; right: 20px; top: 50%; content: "→"; transform: translateY(-50%); font-size: 1.3rem; font-weight: 900; }
.training-next-system small { width: max-content; padding: 5px 10px; border-radius: 999px; color: #075b70; background: #c8fff7; box-shadow: 0 5px 14px rgba(0, 54, 68, .18); font-size: .7rem; font-weight: 950; letter-spacing: .1em; }
.training-next-system strong { font-size: clamp(1rem, 2vw, 1.25rem); }
.training-next-system span { color: #e5fbfa; font-size: .73rem; line-height: 1.6; }
.training-next-system:hover,
.training-next-system:focus-visible,
.training-next-system[aria-current="page"] { filter: brightness(1.06); box-shadow: inset 0 0 0 2px #a8f3e9, 0 14px 29px rgba(7, 91, 112, .25); }

.training-support-menu { border: 1px solid #cfdee2; border-radius: 14px; background: #fff; }
.training-support-menu summary { padding: 13px 16px; display: flex; align-items: center; justify-content: space-between; gap: 16px; color: #244956; cursor: pointer; list-style: none; }
.training-support-menu summary::-webkit-details-marker { display: none; }
.training-support-menu summary span { display: grid; gap: 2px; }
.training-support-menu summary small { color: #65818a; font-size: .58rem; font-weight: 900; letter-spacing: .13em; }
.training-support-menu summary strong { font-size: .86rem; }
.training-support-menu summary b { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; color: #fff; background: #17697a; transition: transform .2s ease; }
.training-support-menu[open] summary b { transform: rotate(45deg); }
.training-support-menu > div { padding: 0 13px 13px; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; }
.training-support-menu > div a { padding: 10px 8px; border-radius: 9px; color: #31535e; background: #edf5f6; font-size: .72rem; font-weight: 850; text-align: center; }
.training-support-menu > div a:hover,
.training-support-menu > div a:focus-visible { color: #fff; background: #17697a; }

/* 育成就労制度：3役職・3講習の案内 */
.ikusei-role-directory { margin: 42px 0; padding: clamp(25px, 4vw, 42px); border: 1px solid #bde5e4; border-radius: 24px; background: linear-gradient(145deg, #f8ffff, #eafaf8); box-shadow: 0 18px 42px rgba(7, 91, 112, .1); }
.ikusei-role-directory > header { max-width: 820px; margin: 0 auto 24px; text-align: center; }
.legacy-content .ikusei-role-directory > header h2 { margin: 6px 0 0; padding: 0; border: 0; color: #075b70; background: none; font-size: clamp(1.45rem, 3vw, 2rem); text-align: center; }
.ikusei-role-directory > header p:last-child { margin: 12px 0 0; color: #426e77; line-height: 1.8; }
.ikusei-role-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.legacy-content .ikusei-role-card { padding: 22px 20px; display: flex; min-height: 220px; flex-direction: column; border: 1px solid #bde5e4; border-top: 5px solid #18a7a0; border-radius: 16px; color: #174f5c; background: #fff; box-shadow: 0 10px 24px rgba(7, 91, 112, .08); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.ikusei-role-card small { color: #087e91; font-size: .62rem; font-weight: 900; letter-spacing: .12em; }
.ikusei-role-card strong { margin-top: 9px; color: #075b70; font-size: 1.06rem; line-height: 1.45; }
.ikusei-role-card p { margin: 11px 0 18px; color: #4a7079; font-size: .78rem; line-height: 1.75; }
.ikusei-role-card span { margin-top: auto; color: #087e91; font-size: .75rem; font-weight: 900; }
.legacy-content .ikusei-role-card:hover,
.legacy-content .ikusei-role-card:focus-visible { transform: translateY(-4px); box-shadow: 0 16px 31px rgba(7, 91, 112, .15); }
.ikusei-prelaunch-note { margin: 20px 0 0; padding: 17px 18px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 13px; border: 1px solid #63d8cd; border-radius: 13px; color: #064f61; background: linear-gradient(135deg, #d9faf6, #effefd); box-shadow: 0 9px 22px rgba(7, 126, 145, .1); font-size: .84rem; font-weight: 850; line-height: 1.7; }
.ikusei-prelaunch-note strong { padding: 5px 10px; align-self: center; border-radius: 999px; color: #fff; background: #087e91; font-size: .68rem; letter-spacing: .08em; }

.ikusei-role-page { --role-accent: #087e91; }
.ikusei-role-page .page-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(185, 246, 239, .32) 0, rgba(185, 246, 239, 0) 31%),
    linear-gradient(128deg, #075b70 0%, #087e91 52%, #18a7a0 100%);
}
.ikusei-role-page .page-hero::after {
  background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,0));
}
.ikusei-role-page .page-hero .section-label { color: #bff8ef; }
.ikusei-role-page .page-hero h1 { color: #fff; text-shadow: 0 2px 16px rgba(0, 52, 69, .24); }
.ikusei-role-page .page-hero p:last-child { color: #e5fbfa; }
.ikusei-role-content { display: grid; gap: 24px; }
.ikusei-role-intro { padding: clamp(25px, 4vw, 40px); border: 1px solid #bde5e4; border-radius: 23px; background: linear-gradient(145deg, #fff, #effcfb); box-shadow: 0 16px 38px rgba(7, 91, 112, .09); }
.ikusei-role-intro .application-kicker { color: #087e91; }
.legacy-content .ikusei-role-intro h2 { margin: 5px 0 14px; padding: 0; border: 0; color: #075b70; background: none; font-size: clamp(1.45rem, 3vw, 2rem); text-align: left; }
.ikusei-role-intro > p { color: #426e77; line-height: 1.9; }
.ikusei-role-facts { margin-top: 22px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 11px; }
.ikusei-role-facts article { padding: 18px; border: 1px solid #c8e9e7; border-radius: 14px; background: #fff; }
.ikusei-role-facts small { color: #087e91; font-size: .61rem; font-weight: 900; letter-spacing: .1em; }
.ikusei-role-facts strong { display: block; margin-top: 7px; color: #075b70; font-size: .91rem; line-height: 1.5; }
.ikusei-role-facts p { margin: 8px 0 0; color: #527780; font-size: .75rem; line-height: 1.7; }
.ikusei-role-section { padding: clamp(23px, 3.5vw, 34px); border: 1px solid #dce7e9; border-radius: 20px; background: #fff; box-shadow: 0 11px 28px rgba(25, 62, 75, .07); }
.legacy-content .ikusei-role-section h2 { margin: 0 0 17px; padding: 0; border: 0; color: #173d4b; background: none; font-size: clamp(1.25rem, 2.5vw, 1.65rem); text-align: left; }
.ikusei-role-section p,
.ikusei-role-section li { color: #4c6570; line-height: 1.85; }
.ikusei-role-section ul { margin: 0; padding-left: 1.35rem; }
.ikusei-transition-highlight { position: relative; overflow: hidden; border-color: #42c8bc; background: radial-gradient(circle at 92% 8%, rgba(125, 232, 220, .3), transparent 30%), linear-gradient(145deg, #e8fbf8, #f8ffff); box-shadow: inset 5px 0 0 #0c96a0, 0 15px 34px rgba(7, 126, 145, .14); }
.ikusei-transition-highlight::before { content: "IMPORTANT"; display: inline-flex; margin-bottom: 10px; padding: 5px 10px; border-radius: 999px; color: #fff; background: #087e91; font-size: .62rem; font-weight: 950; letter-spacing: .13em; }
.legacy-content .ikusei-transition-highlight h2 { color: #075b70; font-weight: 950; }
.ikusei-transition-highlight > p { margin: 0 0 18px; padding: 15px 17px; border: 1px solid #a8e5df; border-radius: 12px; color: #064f61; background: rgba(255,255,255,.84); font-weight: 850; line-height: 1.9; }
.ikusei-transition-highlight .ikusei-current-course { box-shadow: 0 12px 26px rgba(7, 91, 112, .2); }
.ikusei-current-course { padding: 20px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 18px; border-radius: 15px; color: #fff; background: linear-gradient(125deg, #123f50, #17697a); }
.ikusei-current-course p { margin: 0; color: #d5e9ec; font-size: .79rem; }
.ikusei-current-course strong { display: block; margin-bottom: 6px; color: #fff; font-size: 1rem; }
.legacy-content .ikusei-current-course a { padding: 12px 15px; border-radius: 10px; color: #174552; background: #fff; font-size: .75rem; font-weight: 900; text-decoration: none; }
.ikusei-official-source-list { display: grid; gap: 9px; }
.legacy-content .ikusei-official-source-list a { padding: 14px 16px; display: flex; justify-content: space-between; gap: 14px; border: 1px solid #d9e5e8; border-radius: 11px; color: #284d5a; background: #f7fafb; font-size: .78rem; font-weight: 850; text-decoration: none; }
.ikusei-official-source-list a::after { content: "↗"; color: #087e91; }

.quick-application-ikusei { grid-column: 1 / -1; padding: 21px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 20px; align-items: center; border: 1px solid #7bded4; border-radius: 19px; background: radial-gradient(circle at 90% 8%, rgba(190, 250, 242, .3), transparent 31%), linear-gradient(125deg, #075b70, #087e91 58%, #18a7a0); box-shadow: 0 14px 30px rgba(7, 91, 112, .2); }
.quick-application-ikusei > a { color: #fff; text-decoration: none; }
.quick-application-ikusei > a small { display: inline-flex; width: max-content; padding: 6px 11px; border-radius: 999px; color: #075b70; background: #c8fff7; box-shadow: 0 5px 14px rgba(0, 54, 68, .18); font-size: .72rem; font-weight: 950; letter-spacing: .12em; }
.quick-application-ikusei > a strong { display: block; margin-top: 5px; font-size: 1.2rem; }
.quick-application-ikusei > a span { display: block; margin-top: 5px; color: #e5fbfa; font-size: .76rem; }
.quick-ikusei-role-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px; }
.quick-ikusei-role-links a { padding: 9px 11px; border: 1px solid rgba(255,255,255,.35); border-radius: 9px; color: #fff; background: rgba(255,255,255,.1); font-size: .7rem; font-weight: 850; text-decoration: none; }
.quick-ikusei-role-links a:hover,
.quick-ikusei-role-links a:focus-visible { background: #fff; color: #075b70; }
.quick-application-ikusei > p { grid-column: 1 / -1; margin: -2px 0 0; padding: 12px 15px; border: 1px solid rgba(200,255,247,.62); border-radius: 11px; color: #053f4d; background: #c8fff7; font-size: .82rem; line-height: 1.65; }
.quick-application-ikusei > p strong { font-weight: 950; }
.common-course-guidance + .quick-application-ikusei { margin-top: 20px; }

@media (max-width: 760px) {
  .training-primary-courses,
  .ikusei-role-grid,
  .ikusei-role-facts { grid-template-columns: 1fr; }
  .training-primary-courses a { min-height: 92px; }
  .training-support-menu > div { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quick-application-ikusei { grid-template-columns: 1fr; }
  .quick-ikusei-role-links { justify-content: flex-start; }
  .ikusei-current-course { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .training-portal-navigation { width: calc(100% - 20px); padding: 12px; border-radius: 18px; }
  .training-support-menu > div { grid-template-columns: 1fr; }
  .training-next-system span { font-size: .68rem; }
}

/* リンク：公式情報を見つけやすくするカード型一覧 */
.link-library {
  --link-navy: #0b3650;
  --link-teal: #087e91;
  --link-mint: #31b9ae;
  display: grid;
  gap: 28px;
}

.link-library-intro {
  padding: clamp(28px, 5vw, 52px);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  border: 1px solid #b9e4e2;
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 4%, rgba(187, 253, 243, .38), transparent 34%),
    linear-gradient(128deg, #073e54 0%, #087e91 57%, #26afa8 100%);
  box-shadow: 0 22px 46px rgba(8, 71, 89, .17);
}

.link-library-intro::after {
  content: "";
  width: 230px;
  height: 230px;
  position: absolute;
  right: -85px;
  top: -115px;
  border: 40px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
}

.link-library-intro > div:first-child { position: relative; z-index: 1; }
.link-library-kicker { margin: 0 0 9px; color: #aaf4e9; font-size: .68rem; font-weight: 950; letter-spacing: .18em; }
.link-library-intro h2 { margin: 0; color: #fff; font-size: clamp(1.55rem, 3.4vw, 2.35rem); line-height: 1.48; letter-spacing: .025em; }
.link-library-intro > div:first-child > p:last-child { max-width: 650px; margin: 17px 0 0; color: #dcf6f4; font-size: .9rem; line-height: 1.85; }
.link-library-mark { width: 132px; height: 132px; position: relative; z-index: 1; display: grid; align-content: center; justify-items: center; flex: 0 0 auto; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; color: #fff; background: rgba(255,255,255,.12); box-shadow: inset 0 0 0 8px rgba(255,255,255,.06); backdrop-filter: blur(6px); }
.link-library-mark span { font-size: .56rem; font-weight: 900; letter-spacing: .16em; }
.link-library-mark strong { margin: -2px 0; font-size: 2.4rem; line-height: 1.25; }
.link-library-mark small { color: #d8f8f4; font-size: .65rem; font-weight: 800; }

.link-group {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid #d4e4e8;
  border-radius: 24px;
  background: linear-gradient(145deg, #fff 0%, #f5fafb 100%);
  box-shadow: 0 15px 35px rgba(21, 63, 78, .08);
}

.link-group-heading { margin-bottom: 24px; display: flex; align-items: center; gap: 14px; }
.link-group-heading > span { display: grid; width: 44px; height: 44px; place-items: center; flex: 0 0 auto; border-radius: 13px; color: #fff; background: linear-gradient(135deg, var(--link-navy), var(--link-teal)); box-shadow: 0 8px 18px rgba(8, 89, 111, .2); font-size: .75rem; font-weight: 950; }
.link-group-heading p { margin: 0 0 2px; color: var(--link-teal); font-size: .61rem; font-weight: 950; letter-spacing: .15em; }
.link-group-heading h2 { margin: 0; color: var(--link-navy); font-size: clamp(1.25rem, 2.5vw, 1.65rem); }

.official-link-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
.official-link-card {
  --card-accent: #1769aa;
  min-height: 225px;
  padding: 23px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--card-accent) 27%, white);
  border-top: 5px solid var(--card-accent);
  border-radius: 18px;
  color: #244c5b;
  background: #fff;
  box-shadow: 0 10px 24px rgba(19, 62, 74, .075);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.official-link-card::after { content: ""; width: 112px; height: 112px; position: absolute; right: -50px; top: -52px; border: 20px solid color-mix(in srgb, var(--card-accent) 10%, transparent); border-radius: 50%; }
.official-link-card.is-moj { --card-accent: #8c6335; }
.official-link-card.is-otit { --card-accent: #16805d; }
.official-link-card.is-ikusei { --card-accent: #a85f17; }
.official-link-card-number { width: max-content; margin-bottom: 19px; padding: 5px 9px; border-radius: 7px; color: #fff; background: var(--card-accent); font-size: .66rem; font-weight: 950; letter-spacing: .06em; }
.official-link-card-copy small { display: block; margin-bottom: 7px; color: var(--card-accent); font-size: .65rem; font-weight: 900; letter-spacing: .06em; }
.official-link-card-copy strong { display: block; color: #153c4d; font-size: clamp(1.05rem, 2vw, 1.3rem); line-height: 1.5; }
.official-link-card-copy p { margin: 8px 0 20px; color: #5d7680; font-size: .76rem; line-height: 1.7; }
.official-link-card-action { margin-top: auto; display: flex; align-items: center; justify-content: space-between; color: var(--card-accent); font-size: .72rem; font-weight: 900; }
.official-link-card-action b { display: grid; width: 29px; height: 29px; place-items: center; border-radius: 50%; color: #fff; background: var(--card-accent); font-size: .9rem; }
.official-link-card:hover,
.official-link-card:focus-visible { transform: translateY(-5px); border-color: var(--card-accent); box-shadow: 0 18px 34px color-mix(in srgb, var(--card-accent) 16%, transparent); color: #244c5b; }
.official-link-card:focus-visible,
.partner-link-card:focus-visible { outline: 3px solid #ffc565; outline-offset: 3px; }
.official-link-card:last-child { grid-column: 1 / -1; min-height: 190px; }

.link-partner-group { background: linear-gradient(145deg, #f7fbfb, #eef7f6); }
.partner-link-card { padding: 21px 23px; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 18px; border: 1px solid #c9dedf; border-radius: 17px; color: #294d59; background: #fff; box-shadow: 0 9px 22px rgba(19, 62, 74, .07); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.partner-link-icon { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 15px; color: #fff; background: linear-gradient(135deg, #315d68, #16805d); box-shadow: 0 8px 17px rgba(22, 128, 93, .2); font-size: .75rem; font-weight: 950; letter-spacing: .08em; }
.partner-link-copy small { display: block; color: #6b858d; font-size: .56rem; font-weight: 900; letter-spacing: .12em; }
.partner-link-copy strong { display: block; margin: 4px 0; color: #153c4d; font-size: 1rem; }
.partner-link-copy > span { color: #647c84; font-size: .73rem; }
.partner-link-action { color: #16805d; font-size: .72rem; font-weight: 900; white-space: nowrap; }
.partner-link-action b { margin-left: 5px; font-size: 1rem; }
.partner-link-card:hover,
.partner-link-card:focus-visible { transform: translateY(-3px); border-color: #16805d; box-shadow: 0 15px 28px rgba(22, 128, 93, .13); color: #294d59; }

@media (max-width: 700px) {
  .link-library-intro { grid-template-columns: 1fr; }
  .link-library-mark { display: none; }
  .official-link-grid { grid-template-columns: 1fr; }
  .official-link-card:last-child { grid-column: auto; }
  .partner-link-card { grid-template-columns: auto 1fr; }
  .partner-link-action { grid-column: 2; }
}

@media (max-width: 480px) {
  .link-library { gap: 18px; }
  .link-library-intro,
  .link-group { border-radius: 19px; }
  .link-library-intro h2 br { display: none; }
  .official-link-card { min-height: 205px; padding: 19px; }
  .partner-link-card { padding: 17px; gap: 13px; }
  .partner-link-icon { width: 45px; height: 45px; border-radius: 12px; }
}
