@charset "utf-8";

/* =========================================================
   コステック職業訓練サイト：共通デザイン v0.1.9
   親テーマ SOLARIS（TCD088）専用
========================================================= */

body.kunren-custom-front {
  --ctk-navy: #171a2f;
  --ctk-navy-deep: #0d0f20;
  --ctk-orange: #f58220;
  --ctk-orange-dark: #d96f10;
  --ctk-ink: #202238;
  --ctk-text: #545666;
  --ctk-line: #e5e6eb;
  --ctk-soft: #f6f7f9;
  --ctk-warm: #fff7ef;
  --ctk-white: #ffffff;
  background: #ffffff;
  color: var(--ctk-ink);
}

body.kunren-custom-front #header_slider_wrap,
body.kunren-custom-front #index_content_builder,
body.kunren-custom-front #index_news_ticker_wrap {
  display: none !important;
}

/* ヘッダーは通常時・固定時とも濃紺に統一 */
body.kunren-custom-front #header {
  background: rgba(23, 26, 47, 0.98) !important;
  border: 0;
}

body.kunren-custom-front #header_logo a {
  background: var(--ctk-navy) !important;
}

.pc body.kunren-custom-front.use_header_fix #header::after,
.pc body.kunren-custom-front.use_header_fix #header:hover::after,
.mobile body.kunren-custom-front.use_mobile_header_fix #header::after,
.mobile body.kunren-custom-front.use_mobile_header_fix #header:hover::after {
  background: rgba(23, 26, 47, 0.98) !important;
}

body.kunren-custom-front #global_menu > ul > li > a,
body.kunren-custom-front #header.active #global_menu > ul > li > a,
body.kunren-custom-front.header_fix #global_menu > ul > li > a {
  color: #ffffff !important;
}

body.kunren-custom-front #global_menu > ul > li > a:hover,
body.kunren-custom-front #global_menu > ul > li.current-menu-item > a,
body.kunren-custom-front #global_menu > ul > li.active > a,
body.kunren-custom-front #header.active #global_menu > ul > li.current-menu-item > a,
body.kunren-custom-front #header.active #global_menu > ul > li.active > a {
  color: var(--ctk-orange) !important;
}

body.kunren-custom-front #header_search_button::before,
body.kunren-custom-front #header.active #header_search_button::before,
body.kunren-custom-front.header_fix #header_search_button::before {
  color: #ffffff !important;
}

body.kunren-custom-front #global_menu_button span,
body.kunren-custom-front #header.active #global_menu_button span,
body.kunren-custom-front.header_fix_mobile #global_menu_button span {
  background: #ffffff !important;
}

body.kunren-custom-front #container {
  overflow: hidden;
}

body.kunren-custom-front .ctk-main,
body.kunren-custom-front .ctk-main * {
  box-sizing: border-box;
}

body.kunren-custom-front .ctk-main {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.8;
}

.ctk-container {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.ctk-container--narrow {
  width: min(880px, calc(100% - 48px));
}

.ctk-pc-only {
  display: block;
}

.ctk-hero {
  --ctk-hero-image: none;
  --ctk-hero-image-mobile: var(--ctk-hero-image);
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  color: #ffffff;
  background-color: var(--ctk-navy);
  background-image:
    linear-gradient(90deg, rgba(9, 11, 29, 0.96) 0%, rgba(9, 11, 29, 0.80) 48%, rgba(9, 11, 29, 0.48) 100%),
    var(--ctk-hero-image);
  background-position: center;
  background-size: cover;
  padding: 150px 0 80px;
  overflow: hidden;
}

.ctk-hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -220px;
  right: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 130, 32, 0.22), rgba(245, 130, 32, 0) 68%);
}

.ctk-hero__overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.ctk-hero__inner {
  position: relative;
  z-index: 2;
}

.ctk-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  padding: 8px 16px;
  border: 1px solid rgba(245, 130, 32, 0.65);
  border-radius: 999px;
  color: #ff9a45;
  background: rgba(245, 130, 32, 0.12);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}

.ctk-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ctk-orange);
  box-shadow: 0 0 0 5px rgba(245, 130, 32, 0.15);
}

.ctk-hero__title {
  max-width: 800px;
  margin: 0;
  color: #ffffff;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.35;
  letter-spacing: .02em;
}

.ctk-hero__title span {
  color: var(--ctk-orange);
}

.ctk-hero__lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 2;
}

.ctk-hero__actions,
.ctk-course-card__actions,
.ctk-final-cta__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.ctk-hero__actions {
  margin-top: 36px;
}

.ctk-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}

.ctk-button::after {
  content: "→";
  font-size: 17px;
}

.ctk-button:hover {
  transform: translateY(-2px);
}

.ctk-button--primary {
  color: #ffffff;
  background: var(--ctk-orange);
}

.ctk-button--primary:hover {
  color: #ffffff;
  background: var(--ctk-orange-dark);
}

.ctk-button--outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.04);
}

.ctk-button--outline:hover {
  color: var(--ctk-navy);
  background: #ffffff;
}

.ctk-button--dark {
  color: #ffffff;
  background: var(--ctk-navy);
}

.ctk-button--dark:hover {
  color: #ffffff;
  background: #292d4d;
}

.ctk-button--large {
  min-width: 290px;
  min-height: 64px;
  font-size: 17px;
}

.ctk-hero__points {
  max-width: 850px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.ctk-hero-point {
  min-width: 0;
  padding: 0 28px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.ctk-hero-point:first-child {
  padding-left: 0;
}

.ctk-hero-point:last-child {
  padding-right: 0;
  border-right: 0;
}

.ctk-hero-point strong,
.ctk-hero-point span {
  display: block;
}

.ctk-hero-point strong {
  color: #ff9a45;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 25px;
  line-height: 1.4;
}

.ctk-hero-point span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.7;
}

.ctk-notice {
  background: var(--ctk-orange);
  color: #ffffff;
}

.ctk-notice__inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ctk-notice strong,
.ctk-notice span {
  display: block;
}

.ctk-notice strong {
  font-size: 16px;
}

.ctk-notice span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 12px;
}

.ctk-notice__button {
  flex: 0 0 auto;
  padding: 12px 22px;
  border-radius: 5px;
  color: var(--ctk-orange);
  background: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.ctk-notice__button:hover {
  color: var(--ctk-orange-dark);
  background: #fffaf6;
}

.ctk-section {
  padding: 96px 0;
}

.ctk-section--soft {
  background: var(--ctk-soft);
}

.ctk-section--faq {
  background: #ffffff;
}

.ctk-section-heading {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.ctk-section-heading__label {
  margin: 0 0 8px;
  color: var(--ctk-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
}

.ctk-section-heading h2 {
  margin: 0;
  color: var(--ctk-ink);
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: clamp(27px, 3.5vw, 38px);
  line-height: 1.5;
}

.ctk-section-heading > p:last-child {
  margin: 14px 0 0;
  color: var(--ctk-text);
  font-size: 15px;
  line-height: 1.9;
}

.ctk-section-heading--light h2 {
  color: #ffffff;
}

.ctk-section-heading--light > p:last-child {
  color: rgba(255,255,255,.6);
}

.ctk-course-card {
  overflow: hidden;
  border: 1px solid rgba(245, 130, 32, 0.45);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(17, 20, 46, 0.08);
}

.ctk-course-card__status {
  padding: 10px 24px;
  color: #ffffff;
  background: var(--ctk-orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
}

.ctk-course-card__body {
  padding: 42px 48px 0;
}

.ctk-course-card__course-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 34px;
}

.ctk-course-card__course-copy {
  min-width: 0;
}

.ctk-course-card__detail-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  min-height: 46px;
  margin-top: 2px;
  padding: 10px 18px;
  border: 1px solid var(--ctk-navy);
  border-radius: 5px;
  color: var(--ctk-navy);
  background: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease;
}

.ctk-course-card__detail-link::after {
  content: "→";
  margin-left: 9px;
}

.ctk-course-card__detail-link:hover,
.ctk-course-card__detail-link:focus {
  color: #ffffff;
  background: var(--ctk-navy);
}

.ctk-course-card__type {
  margin: 0 0 8px;
  color: var(--ctk-orange);
  font-size: 13px;
  font-weight: 700;
}

.ctk-course-card h3 {
  margin: 0;
  color: var(--ctk-ink);
  font-size: clamp(23px, 3vw, 32px);
  line-height: 1.55;
}

.ctk-course-card__summary {
  margin: 18px 0 0;
  color: var(--ctk-text);
  font-size: 15px;
}

.ctk-schedule {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 28px 0 0;
  overflow: hidden;
  border: 1px solid var(--ctk-line);
  border-radius: 6px;
  background: var(--ctk-line);
}

.ctk-schedule > div {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  min-height: 62px;
  background: #ffffff;
}

.ctk-schedule dt,
.ctk-schedule dd {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 14px 16px;
}

.ctk-schedule dt {
  justify-content: center;
  padding-right: 10px;
  padding-left: 10px;
  white-space: nowrap;
  color: var(--ctk-ink);
  background: #f3f4f7;
  font-size: 13px;
  font-weight: 700;
}

.ctk-schedule dd {
  color: var(--ctk-text);
  font-size: 14px;
}

.ctk-text-link {
  position: relative;
  padding: 8px 2px;
  color: var(--ctk-ink);
  font-weight: 700;
  border-bottom: 1px solid var(--ctk-ink);
}

.ctk-text-link:hover {
  color: var(--ctk-orange);
  border-color: var(--ctk-orange);
}


/* コースに紐づく説明会日程 */
.ctk-course-sessions {
  margin: 36px -48px 0;
  padding: 30px 48px 38px;
  border-top: 1px solid var(--ctk-line);
  background: #f7f8fa;
}

.ctk-course-sessions__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.ctk-course-sessions__label {
  margin: 0 0 6px;
  color: var(--ctk-orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}

.ctk-course-sessions h4 {
  margin: 0;
  color: var(--ctk-ink);
  font-size: 21px;
  line-height: 1.5;
}

.ctk-course-sessions__more {
  display: inline-flex;
  align-items: center;
  color: var(--ctk-navy);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.ctk-course-sessions__more::after {
  content: "→";
  margin-left: 8px;
  color: var(--ctk-orange);
}

.ctk-course-sessions__more:hover,
.ctk-course-sessions__more:focus {
  color: var(--ctk-orange);
}

.ctk-session-list {
  display: grid;
  gap: 10px;
}

.ctk-session-row {
  display: grid;
  grid-template-columns: 96px minmax(145px, .72fr) minmax(240px, 1.55fr) 170px;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  padding: 15px 18px;
  border: 1px solid #e5e7ec;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 5px 18px rgba(17, 20, 46, .04);
}

.ctk-session-row--no-action {
  grid-template-columns: 96px minmax(145px, .72fr) minmax(240px, 1.55fr);
}

.ctk-session-row__status span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  min-height: 30px;
  padding: 5px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--ctk-navy);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.ctk-session-row--few .ctk-session-row__status span {
  background: var(--ctk-orange);
}

.ctk-session-row__date {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ctk-session-row__date strong {
  color: var(--ctk-ink);
  font-size: 17px;
  line-height: 1.4;
}

.ctk-session-row__date span,
.ctk-session-row__meta span {
  color: var(--ctk-text);
  font-size: 12px;
  line-height: 1.6;
}

.ctk-session-row__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ctk-session-row__action a,
.ctk-session-row__action > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 9px 14px;
  border-radius: 5px;
  color: #ffffff;
  background: var(--ctk-orange);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

.ctk-session-row__action a:hover,
.ctk-session-row__action a:focus {
  color: #ffffff;
  background: var(--ctk-orange-dark);
  transform: translateY(-1px);
}

.ctk-session-row.is-disabled {
  border-color: #dedfe4;
  background: #f1f2f4;
  box-shadow: none;
  opacity: .78;
}

.ctk-session-row.is-disabled .ctk-session-row__status span,
.ctk-session-row.is-disabled .ctk-session-row__action > span {
  color: #ffffff;
  background: #9a9ca5;
}

.ctk-session-row.is-disabled .ctk-session-row__date strong,
.ctk-session-row.is-disabled .ctk-session-row__date span,
.ctk-session-row.is-disabled .ctk-session-row__meta span {
  color: #858892;
}

/* カード系セクション共通：横は最大3枚 */
.ctk-card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.ctk-card-grid > * {
  min-width: 0;
}

.ctk-card-grid--count-1 > * {
  flex: 0 1 min(100%, 520px);
}

.ctk-card-grid--count-2 > *,
.ctk-card-grid--count-4 > * {
  flex: 0 1 calc(50% - 10px);
}

.ctk-card-grid--count-3 > *,
.ctk-card-grid--count-5 > *,
.ctk-card-grid--count-6 > * {
  flex: 0 1 calc(33.333% - 14px);
}

.ctk-benefit-card,
.ctk-feature-card {
  position: relative;
  min-width: 0;
  padding: 34px 30px;
  border-radius: 9px;
  background: #ffffff;
  box-shadow: 0 12px 36px rgba(20, 24, 48, 0.06);
}

.ctk-benefit-card {
  border-top: 3px solid var(--ctk-orange);
}

.ctk-benefit-card__num {
  display: block;
  margin-bottom: 16px;
  color: var(--ctk-orange);
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  font-weight: 700;
}

.ctk-benefit-card h3,
.ctk-feature-card h3,
.ctk-session-note h3 {
  margin: 0;
  color: var(--ctk-ink);
  font-size: 19px;
  line-height: 1.6;
}

.ctk-benefit-card p,
.ctk-feature-card p,
.ctk-session-note p {
  margin: 12px 0 0;
  color: var(--ctk-text);
  font-size: 14px;
  line-height: 1.9;
}

.ctk-session-note {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 44px;
  margin-top: 30px;
  padding: 34px 38px;
  border: 1px solid rgba(245, 130, 32, 0.35);
  border-radius: 9px;
  background: var(--ctk-warm);
}

.ctk-session-note__label {
  margin: 0 0 6px !important;
  color: var(--ctk-orange) !important;
  font-size: 12px !important;
  font-weight: 800;
  letter-spacing: .1em;
}

.ctk-feature-card {
  border: 1px solid var(--ctk-line);
  box-shadow: none;
}

.ctk-feature-card__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--ctk-navy);
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
}

/* 参加者・修了生の声 */
.ctk-voice-card {
  position: relative;
  padding: 30px 28px 26px;
  border: 1px solid var(--ctk-line);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 12px 36px rgba(20, 24, 48, 0.05);
}

.ctk-voice-card__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.ctk-voice-card__type,
.ctk-voice-card__sample {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}

.ctk-voice-card__type {
  color: #ffffff;
  background: var(--ctk-navy);
}

.ctk-voice-card__sample {
  color: #9a5a1a;
  background: #fff1df;
}

.ctk-voice-card h2,
.ctk-voice-card h3 {
  margin: 0;
  color: var(--ctk-ink);
  font-size: 18px;
  line-height: 1.65;
}

.ctk-voice-card__body {
  margin: 14px 0 0;
  color: var(--ctk-text);
  font-size: 14px;
  line-height: 1.9;
}

.ctk-voice-card__meta {
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--ctk-line);
  color: #8a8c98;
  font-size: 12px;
  line-height: 1.7;
}

.ctk-section-footer {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.ctk-section-footer .ctk-button {
  min-width: 300px;
}

.ctk-flow {
  position: relative;
  padding: 96px 0;
  color: #ffffff;
  background: var(--ctk-navy);
}

.ctk-flow::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .55;
  background: radial-gradient(circle at 80% 20%, rgba(245, 130, 32, .18), transparent 32%);
  pointer-events: none;
}

.ctk-flow .ctk-container {
  position: relative;
  z-index: 1;
}

.ctk-flow-list {
  display: grid;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ctk-flow-list--count-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ctk-flow-list--count-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ctk-flow-list--count-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ctk-flow-list li {
  position: relative;
  min-width: 0;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 18px 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  text-align: center;
}

.ctk-flow-list li:not(:last-child)::after {
  content: "→";
  display: grid;
  place-items: center;
  position: absolute;
  top: 50%;
  right: -27px;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  border-radius: 50%;
  color: #ffffff;
  background: var(--ctk-orange);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  z-index: 2;
}

.ctk-flow-list span,
.ctk-flow-list strong,
.ctk-flow-list small {
  display: block;
}

.ctk-flow-list span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--ctk-orange);
  font-size: 19px;
  font-weight: 700;
}

.ctk-flow-list strong {
  font-size: 16px;
  line-height: 1.6;
}

.ctk-flow-list small {
  margin-top: 7px;
  color: rgba(255,255,255,.52);
  font-size: 12px;
  line-height: 1.7;
}

.ctk-faq-list {
  border-top: 1px solid var(--ctk-line);
}

.ctk-faq-item {
  border-bottom: 1px solid var(--ctk-line);
}

.ctk-faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 20px 56px 20px 50px;
  color: var(--ctk-ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
  cursor: pointer;
  list-style: none;
}

.ctk-faq-item summary::-webkit-details-marker {
  display: none;
}

.ctk-faq-item summary::before {
  content: "Q";
  position: absolute;
  left: 8px;
  color: var(--ctk-orange);
  font-family: "Noto Serif JP", serif;
  font-size: 21px;
}

.ctk-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 12px;
  color: var(--ctk-orange);
  font-size: 24px;
  font-weight: 400;
}

.ctk-faq-item[open] summary::after {
  content: "−";
}

.ctk-faq-item > div {
  padding: 0 50px 24px;
}

.ctk-faq-item > div p {
  margin: 0;
  color: var(--ctk-text);
  font-size: 14px;
  line-height: 1.9;
}

.ctk-final-cta {
  position: relative;
  padding: 100px 0;
  color: #ffffff;
  text-align: center;
  background: var(--ctk-navy-deep);
  overflow: hidden;
}

.ctk-final-cta::before,
.ctk-final-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(245, 130, 32, .10);
}

.ctk-final-cta::before {
  width: 420px;
  height: 420px;
  top: -260px;
  left: -100px;
}

.ctk-final-cta::after {
  width: 360px;
  height: 360px;
  right: -160px;
  bottom: -240px;
}

.ctk-final-cta__inner {
  position: relative;
  z-index: 1;
}

.ctk-final-cta__label {
  margin: 0 0 12px;
  color: var(--ctk-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
}

.ctk-final-cta h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.55;
}

.ctk-final-cta > .ctk-container > p:not(.ctk-final-cta__label):not(.ctk-final-cta__tel) {
  margin: 16px 0 0;
  color: rgba(255,255,255,.6);
  font-size: 15px;
}

.ctk-final-cta__actions {
  justify-content: center;
  margin-top: 36px;
}

.ctk-final-cta__tel {
  margin: 30px 0 0;
  color: #ffffff;
  text-align: center;
}

.ctk-final-cta__tel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: .045em;
  line-height: 1.2;
}

.ctk-final-cta__tel-icon {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
}

.ctk-final-cta__tel-note {
  display: block;
  margin-top: 9px;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .02em;
}

/* iPhone Safariの電話番号自動検出を含め、CTA内の電話番号色を固定 */
body.kunren-custom-front .ctk-final-cta__tel a,
body.kunren-custom-front .ctk-final-cta__tel a:link,
body.kunren-custom-front .ctk-final-cta__tel a:visited,
body.kunren-custom-front .ctk-final-cta__tel a:hover,
body.kunren-custom-front .ctk-final-cta__tel a:focus,
body.kunren-custom-front .ctk-final-cta__tel a:active,
body.kunren-custom-front .ctk-final-cta__tel [x-apple-data-detectors] {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  text-decoration: none !important;
}


/* 声・FAQ一覧ページ */
.ctk-subpage-hero {
  padding: 170px 0 72px;
  color: #ffffff;
  text-align: center;
  background:
    radial-gradient(circle at 80% 15%, rgba(245, 130, 32, .18), transparent 28%),
    var(--ctk-navy);
}

.ctk-subpage-hero h1 {
  margin: 0;
  color: #ffffff;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.5;
}

.ctk-subpage-hero > .ctk-container > p:last-child {
  max-width: 680px;
  margin: 14px auto 0;
  color: rgba(255,255,255,.65);
  font-size: 14px;
  line-height: 1.9;
}

.ctk-page-content {
  max-width: 880px;
  margin: 0 auto 42px;
  color: var(--ctk-text);
  font-size: 15px;
  line-height: 2;
}

.ctk-sample-note {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0 0 34px;
  padding: 14px 18px;
  border: 1px solid rgba(245, 130, 32, .32);
  border-radius: 7px;
  color: #7b4a1c;
  background: var(--ctk-warm);
  font-size: 12px;
  text-align: center;
}

.ctk-sample-note strong {
  color: var(--ctk-orange-dark);
}

@media (max-width: 900px) {
  .ctk-hero {
    min-height: 680px;
  }

  .ctk-card-grid--count-3 > *,
  .ctk-card-grid--count-5 > *,
  .ctk-card-grid--count-6 > * {
    flex-basis: calc(50% - 10px);
  }

  .ctk-session-note {
    grid-template-columns: 1fr;
  }

  .ctk-flow-list,
  .ctk-flow-list--count-3,
  .ctk-flow-list--count-4,
  .ctk-flow-list--count-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .ctk-flow-list li:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 1050px) {
  .ctk-session-row {
    grid-template-columns: 92px minmax(135px, .75fr) minmax(190px, 1.35fr) 150px;
    gap: 12px;
  }
}

@media (max-width: 750px) {
  .ctk-container,
  .ctk-container--narrow {
    width: min(100% - 40px, 1120px);
  }

  .ctk-pc-only {
    display: none;
  }

  .ctk-hero {
    min-height: auto;
    padding: 122px 0 54px;
    background-image:
      linear-gradient(180deg, rgba(9, 11, 29, 0.90) 0%, rgba(9, 11, 29, 0.82) 100%),
      var(--ctk-hero-image-mobile);
    background-position: center center;
  }

  .ctk-hero--has-mobile-image {
    background-image:
      linear-gradient(180deg, rgba(9, 11, 29, 0.84) 0%, rgba(9, 11, 29, 0.68) 52%, rgba(9, 11, 29, 0.52) 100%),
      var(--ctk-hero-image-mobile);
  }

  .ctk-eyebrow {
    margin-bottom: 18px;
    font-size: 11px;
  }

  .ctk-hero__title {
    font-size: 34px;
    line-height: 1.45;
  }

  .ctk-hero__lead {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.9;
  }

  .ctk-hero__actions,
  .ctk-course-card__actions,
  .ctk-final-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .ctk-button,
  .ctk-button--large {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding: 13px 18px;
    font-size: 14px;
  }

  .ctk-hero__points {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 42px;
    padding-top: 24px;
  }

  .ctk-hero-point,
  .ctk-hero-point:first-child,
  .ctk-hero-point:last-child {
    padding: 0;
    border-right: 0;
  }

  .ctk-hero-point strong {
    font-size: 20px;
  }

  .ctk-notice__inner {
    align-items: stretch;
    flex-direction: column;
    min-height: 0;
    padding-top: 22px;
    padding-bottom: 22px;
    text-align: center;
  }

  .ctk-notice__button {
    width: 100%;
  }

  .ctk-section,
  .ctk-flow,
  .ctk-final-cta {
    padding: 66px 0;
  }

  .ctk-section-heading {
    margin-bottom: 34px;
  }

  .ctk-section-heading h2 {
    font-size: 27px;
  }

  .ctk-section-heading > p:last-child {
    font-size: 13px;
  }

  .ctk-course-card__body {
    padding: 28px 22px 0;
  }

  .ctk-course-card__course-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ctk-course-card__detail-link {
    width: 100%;
    min-width: 0;
  }

  .ctk-course-sessions {
    margin: 28px -22px 0;
    padding: 26px 22px 30px;
  }

  .ctk-course-sessions__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .ctk-course-card h3 {
    font-size: 23px;
  }

  .ctk-schedule {
    grid-template-columns: 1fr;
  }

  .ctk-schedule > div {
    grid-template-columns: 108px minmax(0, 1fr);
  }

  .ctk-schedule dt,
  .ctk-schedule dd {
    padding: 12px;
  }


  .ctk-course-sessions {
    margin-top: 34px;
    padding-top: 30px;
  }

  .ctk-course-sessions__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
  }

  .ctk-course-sessions h4 {
    font-size: 20px;
  }

  .ctk-course-sessions__head > p {
    max-width: none;
    text-align: left;
  }

  .ctk-session-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }

  .ctk-session-row__status span {
    min-width: 0;
  }

  .ctk-session-row__date {
    gap: 2px;
  }

  .ctk-session-row__date strong {
    font-size: 18px;
  }

  .ctk-session-row__meta {
    padding-top: 10px;
    border-top: 1px solid rgba(23, 26, 47, .08);
  }

  .ctk-session-row__action a,
  .ctk-session-row__action > span {
    min-height: 48px;
  }

  .ctk-card-grid > *,
  .ctk-card-grid--count-1 > *,
  .ctk-card-grid--count-2 > *,
  .ctk-card-grid--count-3 > *,
  .ctk-card-grid--count-4 > *,
  .ctk-card-grid--count-5 > *,
  .ctk-card-grid--count-6 > * {
    flex-basis: 100%;
  }

  .ctk-benefit-card,
  .ctk-feature-card,
  .ctk-voice-card,
  .ctk-session-note {
    padding: 28px 22px;
  }

  .ctk-section-footer .ctk-button {
    width: 100%;
    min-width: 0;
  }

  .ctk-flow-list,
  .ctk-flow-list--count-3,
  .ctk-flow-list--count-4,
  .ctk-flow-list--count-5 {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .ctk-flow-list li {
    position: relative;
    min-height: 0;
    padding: 24px 18px 22px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.045);
  }

  .ctk-flow-list li:not(:last-child)::after {
    content: "↓";
    display: grid !important;
    place-items: center;
    position: absolute;
    top: auto;
    right: auto;
    bottom: -34px;
    left: 50%;
    width: 26px;
    height: 26px;
    transform: translateX(-50%);
    border-radius: 50%;
    color: #ffffff;
    background: var(--ctk-orange);
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    z-index: 2;
  }

  .ctk-faq-item summary {
    min-height: 70px;
    padding: 17px 40px 17px 38px;
    font-size: 14px;
  }

  .ctk-faq-item summary::before {
    left: 2px;
  }

  .ctk-faq-item summary::after {
    right: 2px;
  }

  .ctk-faq-item > div {
    padding: 0 38px 22px;
  }

  .ctk-final-cta__tel-link {
    gap: 9px;
    padding: 5px 0;
    font-size: 28px;
  }

  .ctk-final-cta__tel-icon {
    width: 25px;
    height: 25px;
  }

  body.kunren-custom-front .ctk-final-cta__tel a:active {
    color: var(--ctk-orange) !important;
    -webkit-text-fill-color: var(--ctk-orange) !important;
  }

  .ctk-subpage-hero {
    padding: 126px 0 52px;
  }

  .ctk-subpage-hero h1 {
    font-size: 29px;
  }
}

/* iPhone 16e前後の幅で、長い見出しの1文字落ちを防止 */
@media (min-width: 361px) and (max-width: 430px) {
  body.kunren-custom-front #ctk-session-title,
  body.kunren-custom-front #ctk-faq-title {
    font-size: 25px;
    letter-spacing: -0.025em;
    white-space: nowrap;
  }
}

/* さらに狭い端末では無理に1行固定しない */
@media (max-width: 360px) {
  body.kunren-custom-front #ctk-session-title,
  body.kunren-custom-front #ctk-faq-title {
    font-size: 23px;
    letter-spacing: -0.02em;
    white-space: normal;
    text-wrap: balance;
  }
}

/* =========================================================
   v0.1.6：説明会詳細リンクを主要CTAとして強調
========================================================= */

.ctk-course-sessions__head {
  align-items: center;
}

.ctk-course-sessions__more,
.ctk-course-sessions__more:link,
.ctk-course-sessions__more:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 20px;
  border-radius: 5px;
  color: #ffffff;
  background: var(--ctk-orange);
  box-shadow: 0 7px 18px rgba(245, 130, 32, .18);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.ctk-course-sessions__more::after {
  content: "→";
  margin-left: 9px;
  color: #ffffff;
}

.ctk-course-sessions__more:hover,
.ctk-course-sessions__more:focus {
  color: #ffffff;
  background: #d96f10;
  box-shadow: 0 9px 22px rgba(217, 111, 16, .24);
  transform: translateY(-1px);
}

@media (max-width: 750px) {
  .ctk-course-sessions__more,
  .ctk-course-sessions__more:link,
  .ctk-course-sessions__more:visited {
    width: 100%;
    min-height: 48px;
  }
}

/* =========================================================
   v0.1.7：説明会詳細ボタンを日程一覧から分離
========================================================= */

.ctk-course-sessions__head {
  display: block;
  margin-bottom: 18px;
}

.ctk-course-sessions__footer {
  display: flex;
  justify-content: center;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #e1e4e9;
}

.ctk-course-sessions__footer .ctk-course-sessions__more,
.ctk-course-sessions__footer .ctk-course-sessions__more:link,
.ctk-course-sessions__footer .ctk-course-sessions__more:visited {
  min-width: 280px;
}

@media (max-width: 750px) {
  .ctk-course-sessions__footer {
    margin-top: 18px;
    padding-top: 18px;
  }

  .ctk-course-sessions__footer .ctk-course-sessions__more,
  .ctk-course-sessions__footer .ctk-course-sessions__more:link,
  .ctk-course-sessions__footer .ctk-course-sessions__more:visited {
    width: 100%;
    min-width: 0;
  }
}


/* =========================================================
   v0.1.9：LINEアイコンの太さ競合を解消
   SOLARISのフッターメニュー先頭項目用スタイルをSNS内で解除。
========================================================= */
#footer_menu .costech-footer-profile #footer_sns li,
#footer_menu .costech-footer-profile #footer_sns li:first-of-type {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 0 !important;
  font-weight: 400 !important;
  line-height: 1 !important;
}

#footer_menu .costech-footer-profile #footer_sns li a,
#footer_menu .costech-footer-profile #footer_sns li:first-of-type a {
  font-weight: 400 !important;
}

#footer_menu .costech-footer-profile #footer_sns li a::before,
#footer_menu .costech-footer-profile #footer_sns li:first-of-type a::before {
  font-family: "design_plus" !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 個別アイコンで別フォントを使うものは親テーマの指定を維持 */
#footer_menu .costech-footer-profile #footer_sns li.twitter a::before,
#footer_menu .costech-footer-profile #footer_sns li.tiktok a::before {
  font-family: "tiktok_x_icon" !important;
}

/* =========================================================
   v0.1.9：教室・学習環境セクション
========================================================= */
.ctk-section--classroom {
  position: relative;
  overflow: hidden;
}

.ctk-section--classroom::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  top: -190px;
  right: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 130, 32, .10), rgba(245, 130, 32, 0) 70%);
  pointer-events: none;
}

.ctk-section--classroom .ctk-container {
  position: relative;
  z-index: 1;
}

.ctk-classroom-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--ctk-line);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(20, 24, 48, .07);
  transition: transform .25s ease, box-shadow .25s ease;
}

.ctk-classroom-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(20, 24, 48, .11);
}

.ctk-classroom-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e9ebef;
}

.ctk-classroom-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 15, 32, .16), rgba(13, 15, 32, 0) 45%);
  pointer-events: none;
}

.ctk-classroom-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.ctk-classroom-card:hover .ctk-classroom-card__image img {
  transform: scale(1.025);
}

.ctk-classroom-card figcaption {
  padding: 20px 22px 22px;
}

.ctk-classroom-card figcaption span,
.ctk-classroom-card figcaption strong {
  display: block;
}

.ctk-classroom-card figcaption span {
  margin-bottom: 5px;
  color: var(--ctk-orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}

.ctk-classroom-card figcaption strong {
  color: var(--ctk-ink);
  font-size: 16px;
  line-height: 1.6;
}

@media screen and (max-width: 900px) and (min-width: 751px) {
  .ctk-classroom-grid > * {
    flex-basis: calc(50% - 10px);
  }

  .ctk-classroom-grid > *:last-child:nth-child(odd) {
    flex-basis: min(100%, 520px);
  }
}

@media screen and (max-width: 750px) {
  .ctk-classroom-card figcaption {
    padding: 17px 18px 19px;
  }

  .ctk-classroom-card figcaption strong {
    font-size: 15px;
  }
}


/* =========================================================
   v0.1.10：教室写真と参加者・修了生の声の背景を分離
========================================================= */
.ctk-section--voices {
  position: relative;
  background: #ffffff;
  border-top: 1px solid rgba(20, 24, 48, 0.045);
}

.ctk-section--voices .ctk-voice-card {
  border-color: #e2e5eb;
  box-shadow: 0 14px 38px rgba(20, 24, 48, 0.075);
}

.ctk-section--voices .ctk-voice-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(20, 24, 48, 0.10);
}

/* トップページは登録数に応じた共通カード配置を維持 */
.ctk-section--voices .ctk-voice-grid.ctk-card-grid {
  display: flex;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
}

@media screen and (max-width: 750px) {
  .ctk-section--voices .ctk-voice-card {
    box-shadow: 0 10px 28px rgba(20, 24, 48, 0.07);
  }
}

/* =========================================================
   v0.2.0：SCFで複数コースを登録した場合の間隔
========================================================= */
.ctk-course-card + .ctk-course-card {
  margin-top: 32px;
}

@media screen and (max-width: 750px) {
  .ctk-course-card + .ctk-course-card {
    margin-top: 24px;
  }
}

.ctk-empty-state {
  max-width: 760px;
  margin: 0 auto;
  padding: 22px 24px;
  border: 1px dashed #d8dce5;
  border-radius: 8px;
  background: #fafbfc;
  color: #697080;
  text-align: center;
}

/* =========================================================
   訓練説明会申込ページ
========================================================= */
.ctk-entry-hero {
  background: linear-gradient(135deg, #111b37 0%, #1c2c57 100%);
}

.ctk-entry-section {
  background: #f4f5f7;
}

.ctk-entry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: 34px;
}

.ctk-entry-main,
.ctk-entry-info-card,
.ctk-entry-phone-card {
  border: 1px solid rgba(22, 31, 55, .1);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 14px 42px rgba(17, 25, 48, .06);
}

.ctk-entry-main {
  padding: 44px 46px 48px;
}

.ctk-entry-heading {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e7ec;
}

.ctk-entry-heading__label,
.ctk-entry-info-card__label {
  margin: 0 0 8px;
  color: var(--ctk-orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.ctk-entry-heading h2,
.ctk-entry-info-card h2 {
  margin: 0;
  color: var(--ctk-ink);
  font-size: 27px;
  line-height: 1.45;
}

.ctk-entry-heading > p:last-child {
  margin: 12px 0 0;
  color: var(--ctk-text);
  font-size: 14px;
  line-height: 1.9;
}

.ctk-entry-alert {
  margin: 0 0 24px;
  padding: 16px 18px;
  border: 1px solid #e2b782;
  border-radius: 7px;
  color: #744817;
  background: #fff7ec;
  font-size: 14px;
  line-height: 1.8;
}

.ctk-entry-side {
  display: grid;
  gap: 20px;
  position: sticky;
  top: 110px;
}

.ctk-entry-info-card,
.ctk-entry-phone-card {
  padding: 30px 28px;
}

.ctk-entry-info-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.ctk-entry-info-card li {
  position: relative;
  margin: 0;
  padding-left: 24px;
  color: var(--ctk-ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
}

.ctk-entry-info-card li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 1px;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--ctk-orange);
  border-bottom: 2px solid var(--ctk-orange);
  transform: rotate(-45deg);
}

.ctk-entry-info-card__note {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid #e7e8ec;
  color: var(--ctk-text);
  font-size: 12px;
  line-height: 1.85;
}

.ctk-entry-phone-card {
  color: #ffffff;
  background: var(--ctk-navy);
  text-align: center;
}

.ctk-entry-phone-card__label {
  margin: 0 0 12px;
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}

.ctk-entry-phone-card a {
  display: inline-block;
  color: #ffffff;
  font-family: "Noto Serif JP", serif;
  font-size: 29px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  letter-spacing: .02em;
}

.ctk-entry-phone-card p:last-child {
  margin: 10px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}

/* Contact Form 7 */
.ctk-entry-form .ctk-cf7-form {
  display: grid;
  gap: 22px;
}

.ctk-entry-form .ctk-cf7-row {
  display: grid;
  gap: 9px;
}

.ctk-entry-form .ctk-cf7-row > label,
.ctk-entry-form label {
  color: var(--ctk-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.ctk-entry-form .ctk-required {
  display: inline-flex;
  align-items: center;
  margin-left: 7px;
  padding: 2px 7px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--ctk-orange);
  font-size: 10px;
  font-weight: 700;
  vertical-align: 1px;
}

.ctk-entry-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.ctk-entry-form input[type="text"],
.ctk-entry-form input[type="email"],
.ctk-entry-form input[type="tel"],
.ctk-entry-form select,
.ctk-entry-form textarea {
  width: 100%;
  min-height: 52px;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid #cfd3dc;
  border-radius: 6px;
  color: var(--ctk-ink);
  background: #ffffff;
  box-sizing: border-box;
  font-size: 15px;
  line-height: 1.6;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.ctk-entry-form select {
  padding-right: 42px;
}

.ctk-entry-form textarea {
  min-height: 150px;
  resize: vertical;
}

.ctk-entry-form input:focus,
.ctk-entry-form select:focus,
.ctk-entry-form textarea:focus {
  outline: none;
  border-color: var(--ctk-orange);
  box-shadow: 0 0 0 3px rgba(245, 130, 32, .13);
}

.ctk-entry-form .wpcf7-not-valid {
  border-color: #cf3f3f !important;
}

.ctk-entry-form .wpcf7-not-valid-tip {
  margin-top: 7px;
  color: #b82e2e;
  font-size: 12px;
  font-weight: 600;
}

.ctk-entry-form .ctk-cf7-submit {
  margin-top: 8px;
  text-align: center;
}

.ctk-entry-form input[type="submit"] {
  min-width: 280px;
  min-height: 56px;
  padding: 13px 34px;
  border: 0;
  border-radius: 6px;
  color: #ffffff;
  background: var(--ctk-orange);
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  transition: background .2s ease, transform .2s ease;
}

.ctk-entry-form input[type="submit"]:hover,
.ctk-entry-form input[type="submit"]:focus {
  background: var(--ctk-orange-dark);
  transform: translateY(-1px);
}

.ctk-entry-form .wpcf7-spinner {
  display: block;
  margin: 14px auto 0;
}

.ctk-entry-form .wpcf7-response-output {
  margin: 24px 0 0 !important;
  padding: 15px 18px !important;
  border-width: 1px !important;
  border-radius: 7px;
  font-size: 14px;
  line-height: 1.8;
}

@media (max-width: 960px) {
  .ctk-entry-layout {
    grid-template-columns: 1fr;
  }

  .ctk-entry-side {
    position: static;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr);
  }
}

@media (max-width: 700px) {
  .ctk-entry-main {
    padding: 30px 20px 34px;
  }

  .ctk-entry-heading h2,
  .ctk-entry-info-card h2 {
    font-size: 23px;
  }

  .ctk-entry-side {
    grid-template-columns: 1fr;
  }

  .ctk-entry-info-card,
  .ctk-entry-phone-card {
    padding: 26px 22px;
  }

  .ctk-entry-form input[type="submit"] {
    width: 100%;
    min-width: 0;
  }
}

/* =========================================================
   訓練説明会申込ページ：スマートフォン横はみ出し対策 v0.3.1
========================================================= */
.ctk-entry-layout,
.ctk-entry-main,
.ctk-entry-side,
.ctk-entry-form,
.ctk-entry-form .wpcf7,
.ctk-entry-form .wpcf7 form,
.ctk-entry-form .ctk-cf7-form,
.ctk-entry-form .ctk-cf7-row,
.ctk-entry-form .wpcf7-form-control-wrap {
  min-width: 0;
  max-width: 100%;
}

.ctk-entry-form input[type="text"],
.ctk-entry-form input[type="email"],
.ctk-entry-form input[type="tel"],
.ctk-entry-form select,
.ctk-entry-form textarea {
  display: block;
  max-width: 100%;
  min-width: 0;
}

.ctk-entry-heading,
.ctk-entry-heading p,
.ctk-entry-info-card,
.ctk-entry-info-card p,
.ctk-entry-phone-card {
  overflow-wrap: anywhere;
  word-break: normal;
}

@media (max-width: 960px) {
  .ctk-entry-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 700px) {
  body.kunren-custom-front .ctk-entry-page {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .ctk-entry-page .ctk-container {
    width: calc(100% - 28px);
    max-width: none;
    min-width: 0;
  }

  .ctk-entry-main {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

  .ctk-entry-form select {
    width: 100% !important;
    text-overflow: ellipsis;
  }

  .ctk-entry-form textarea {
    width: 100% !important;
  }

  .ctk-entry-phone-card a {
    max-width: 100%;
    font-size: clamp(25px, 8vw, 29px);
    white-space: nowrap;
  }
}

/* =========================================================
   訓練実績ページ：デザイン確認版 v0.4.0
========================================================= */
.ctk-records-page {
  background: #f6f7f9;
}

.ctk-records-hero {
  padding-bottom: 78px;
}

.ctk-records-intro {
  padding: 76px 0;
  background: #ffffff;
}

.ctk-records-intro__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr);
  align-items: center;
  gap: 72px;
}

.ctk-records-kicker,
.ctk-record-past__label {
  margin: 0 0 12px;
  color: var(--ctk-orange);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .18em;
}

.ctk-records-intro__copy h2 {
  margin: 0 0 24px;
  color: var(--ctk-navy);
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: clamp(28px, 3.3vw, 42px);
  line-height: 1.55;
}

.ctk-records-intro__copy > p:not(.ctk-records-kicker) {
  margin: 0 0 12px;
  color: var(--ctk-text);
  font-size: 15px;
  line-height: 2;
}

.ctk-records-intro__facts {
  display: grid;
  gap: 12px;
}

.ctk-records-intro__facts > div {
  display: grid;
  grid-template-columns: 115px minmax(0, 1fr);
  align-items: center;
  min-height: 78px;
  padding: 15px 20px;
  border: 1px solid #e1e4ea;
  border-left: 3px solid var(--ctk-orange);
  background: #fbfbfc;
  box-sizing: border-box;
}

.ctk-records-intro__facts strong {
  color: var(--ctk-navy);
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: .03em;
}

.ctk-records-intro__facts span {
  color: var(--ctk-text);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
}

.ctk-records-section {
  padding-top: 84px;
  padding-bottom: 100px;
  background: #f6f7f9;
}

.ctk-records-heading {
  margin-bottom: 30px;
}

.ctk-records-preview-note {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 10px;
  max-width: 940px;
  margin: 0 auto 30px;
  padding: 13px 18px;
  border: 1px solid rgba(245, 130, 32, .35);
  border-radius: 7px;
  color: #72502c;
  background: #fff8f0;
  font-size: 12px;
  line-height: 1.8;
  text-align: center;
  box-sizing: border-box;
}

.ctk-records-preview-note strong {
  color: var(--ctk-orange-dark);
}

.ctk-records-year-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 940px;
  margin: 0 auto 34px;
}

.ctk-records-year-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 18px;
  border: 1px solid #d7dae1;
  border-radius: 999px;
  color: var(--ctk-navy);
  background: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.ctk-records-year-nav a:hover,
.ctk-records-year-nav a:focus {
  border-color: var(--ctk-orange);
  color: #ffffff;
  background: var(--ctk-orange);
}

.ctk-records-years {
  max-width: 980px;
  margin: 0 auto;
}

.ctk-record-year {
  margin: 0 0 18px;
  border: 1px solid #dfe2e8;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(17, 24, 52, .045);
  overflow: hidden;
  scroll-margin-top: 110px;
}

.ctk-record-year > summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 22px;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  padding: 18px 24px;
  color: var(--ctk-navy);
  background: #ffffff;
  cursor: pointer;
  list-style: none;
  box-sizing: border-box;
}

.ctk-record-year > summary::-webkit-details-marker {
  display: none;
}

.ctk-record-year[open] > summary {
  border-bottom: 1px solid #e4e6eb;
  background: linear-gradient(90deg, #fff8ef 0%, #ffffff 46%);
}

.ctk-record-year__title {
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.ctk-record-year__count {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 11px;
  border-radius: 999px;
  color: var(--ctk-orange-dark);
  background: #fff1e0;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.ctk-record-year__toggle {
  position: relative;
  width: 18px;
  height: 18px;
}

.ctk-record-year__toggle::before,
.ctk-record-year__toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--ctk-orange);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform .2s ease;
}

.ctk-record-year__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.ctk-record-year[open] .ctk-record-year__toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.ctk-record-year__content {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: #f8f9fb;
}

.ctk-record-card {
  position: relative;
  border: 1px solid #dde1e8;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 7px 22px rgba(17, 24, 52, .04);
  overflow: hidden;
}

.ctk-record-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--ctk-orange);
  content: "";
}

.ctk-record-card__head {
  padding: 26px 28px 20px;
}

.ctk-record-card__type {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  margin: 0 0 12px;
  padding: 3px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--ctk-navy);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .04em;
}

.ctk-record-card__head h3 {
  margin: 0;
  color: var(--ctk-navy);
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: clamp(20px, 2.4vw, 27px);
  line-height: 1.55;
}

.ctk-record-card__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #e6e8ed;
  border-bottom: 1px solid #e6e8ed;
  background: #f6f7f9;
}

.ctk-record-card__meta > div {
  min-width: 0;
  padding: 17px 28px;
}

.ctk-record-card__meta > div + div {
  border-left: 1px solid #e0e3e9;
}

.ctk-record-card__meta span,
.ctk-record-card__summary > span {
  display: block;
  margin: 0 0 5px;
  color: #8a5a2c;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: .08em;
}

.ctk-record-card__meta strong {
  display: block;
  color: var(--ctk-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.ctk-record-card__summary {
  padding: 20px 28px 24px;
}

.ctk-record-card__summary p {
  margin: 0;
  color: var(--ctk-text);
  font-size: 14px;
  line-height: 1.9;
}

.ctk-record-past {
  margin-top: 30px;
  padding: 34px 38px;
  border: 1px dashed #cfd3db;
  border-radius: 10px;
  background: #ffffff;
  text-align: center;
  scroll-margin-top: 110px;
}

.ctk-record-past h3 {
  margin: 0 0 12px;
  color: var(--ctk-navy);
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 24px;
  line-height: 1.5;
}

.ctk-record-past p:last-child {
  max-width: 700px;
  margin: 0 auto;
  color: var(--ctk-text);
  font-size: 13px;
  line-height: 1.9;
}

.ctk-records-cta {
  margin-top: 0;
}

@media (max-width: 900px) {
  .ctk-records-intro__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ctk-records-intro__facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ctk-records-intro__facts > div {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 7px;
    text-align: center;
  }
}

@media (max-width: 700px) {
  .ctk-records-intro {
    padding: 52px 0;
  }

  .ctk-records-intro__copy h2 br {
    display: none;
  }

  .ctk-records-intro__facts {
    grid-template-columns: 1fr;
  }

  .ctk-records-intro__facts > div {
    grid-template-columns: 92px minmax(0, 1fr);
    text-align: left;
  }

  .ctk-records-section {
    padding-top: 62px;
    padding-bottom: 72px;
  }

  .ctk-records-year-nav {
    justify-content: flex-start;
    flex-wrap: nowrap;
    margin-right: -14px;
    margin-left: -14px;
    padding: 0 14px 6px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .ctk-records-year-nav a {
    flex: 0 0 auto;
  }

  .ctk-record-year > summary {
    min-height: 68px;
    padding: 15px 17px;
  }

  .ctk-record-year__title {
    font-size: 20px;
  }

  .ctk-record-year__content {
    padding: 14px;
  }

  .ctk-record-card__head {
    padding: 24px 20px 17px;
  }

  .ctk-record-card__head h3 {
    font-size: 20px;
  }

  .ctk-record-card__meta {
    grid-template-columns: 1fr;
  }

  .ctk-record-card__meta > div {
    padding: 14px 20px;
  }

  .ctk-record-card__meta > div + div {
    border-top: 1px solid #e0e3e9;
    border-left: 0;
  }

  .ctk-record-card__summary {
    padding: 18px 20px 22px;
  }

  .ctk-record-past {
    padding: 28px 20px;
  }
}

/* 訓練実績ページ：SCF運用版 v0.4.1 */
.ctk-records-intro__body p {
  margin: 0 0 12px;
  color: var(--ctk-text);
  font-size: 15px;
  line-height: 2;
}

.ctk-records-intro__body p:last-child {
  margin-bottom: 0;
}

.ctk-record-card__meta--single {
  grid-template-columns: 1fr;
}

.ctk-record-card__meta--single > div + div {
  border-left: 0;
}

.ctk-records-empty {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 24px;
  border: 1px solid #dfe2e8;
  border-radius: 10px;
  background: #fff;
  text-align: center;
}

.ctk-records-empty p {
  margin: 0;
  color: var(--ctk-text);
  font-size: 14px;
  line-height: 1.8;
}

/* =========================================================
   訓練説明会ページ v0.5.0
========================================================= */

.ctk-session-page {
  background: #fff;
}

.ctk-session-hero {
  background:
    radial-gradient(circle at 80% 35%, rgba(245, 130, 32, 0.16), transparent 28%),
    linear-gradient(135deg, var(--ctk-navy-deep) 0%, var(--ctk-navy) 72%, #242847 100%);
}

.ctk-session-intro {
  padding: 92px 0;
  background: #fff;
}

.ctk-session-intro__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 72px;
  align-items: start;
}

.ctk-session-intro__heading h2 {
  margin: 12px 0 0;
  color: var(--ctk-ink);
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.38;
  letter-spacing: 0.03em;
}

.ctk-session-intro__body {
  padding: 32px 36px;
  border-left: 4px solid var(--ctk-orange);
  background: var(--ctk-soft);
  color: var(--ctk-text);
  font-size: 16px;
  line-height: 2;
}

.ctk-session-intro__body p {
  margin: 0;
}

.ctk-session-points {
  background: var(--ctk-soft);
}

.ctk-session-points__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 46px;
}

.ctk-session-point-card {
  position: relative;
  min-width: 0;
  min-height: 310px;
  padding: 42px 34px 34px;
  overflow: hidden;
  border: 1px solid rgba(23, 26, 47, 0.09);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(23, 26, 47, 0.07);
}

.ctk-session-point-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: var(--ctk-orange);
}

.ctk-session-point-card__number {
  position: absolute;
  top: 16px;
  right: 22px;
  color: rgba(23, 26, 47, 0.08);
  font-size: 68px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.ctk-session-point-card__label {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  color: var(--ctk-orange-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.ctk-session-point-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  color: var(--ctk-ink);
  font-size: 21px;
  line-height: 1.55;
}

.ctk-session-point-card > p:last-child {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ctk-text);
  font-size: 15px;
  line-height: 1.9;
}

.ctk-session-experience {
  padding: 88px 0;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(245, 130, 32, 0.13), transparent 44%),
    var(--ctk-navy);
}

.ctk-session-experience__inner {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}

.ctk-session-experience__mark {
  display: grid;
  width: 190px;
  height: 190px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--ctk-orange);
  font-size: 54px;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: inset 0 0 0 16px rgba(255, 255, 255, 0.025);
}

.ctk-session-experience__label {
  margin: 0 0 12px;
  color: var(--ctk-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.ctk-session-experience__copy h2 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.45;
}

.ctk-session-experience__copy > div {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 2;
}

.ctk-session-experience__copy p {
  margin: 0;
}

.ctk-session-flow {
  background: #fff;
}

.ctk-session-flow__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 48px;
}

.ctk-session-flow-card {
  position: relative;
  min-width: 0;
  padding: 28px 22px 26px;
  border: 1px solid var(--ctk-line);
  border-radius: 16px;
  background: #fff;
}

.ctk-session-flow-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  z-index: 2;
  width: 18px;
  height: 18px;
  border-top: 3px solid var(--ctk-orange);
  border-right: 3px solid var(--ctk-orange);
  background: #fff;
  transform: translateY(-50%) rotate(45deg);
}

.ctk-session-flow-card__step {
  margin: 0 0 18px;
  color: var(--ctk-orange-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.ctk-session-flow-card h3 {
  margin: 0 0 12px;
  color: var(--ctk-ink);
  font-size: 18px;
  line-height: 1.55;
}

.ctk-session-flow-card p {
  margin: 0;
  color: var(--ctk-text);
  font-size: 14px;
  line-height: 1.8;
}

.ctk-session-schedule {
  background: var(--ctk-soft);
}

.ctk-session-schedule__courses {
  display: grid;
  gap: 30px;
  margin-top: 48px;
}

.ctk-session-course-block {
  overflow: hidden;
  border: 1px solid rgba(23, 26, 47, 0.1);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(23, 26, 47, 0.06);
}

.ctk-session-course-block__head {
  padding: 24px 30px 22px;
  border-bottom: 1px solid var(--ctk-line);
  background: linear-gradient(90deg, #fff7ef 0%, #fff 78%);
}

.ctk-session-course-block__head p {
  margin: 0 0 6px;
  color: var(--ctk-orange-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.ctk-session-course-block__head h3 {
  margin: 0;
  color: var(--ctk-ink);
  font-size: 21px;
  line-height: 1.55;
}

.ctk-session-course-block .ctk-session-list {
  padding: 22px 24px 24px;
}

.ctk-session-schedule__empty {
  margin-top: 42px;
}

.ctk-session-faq {
  background: #fff;
}

.ctk-session-faq__link {
  margin-top: 36px;
  text-align: center;
}

.ctk-session-cta__actions {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 18px;
  margin-top: 34px;
}

.ctk-session-cta__phone {
  display: grid;
  min-width: 310px;
  padding: 13px 26px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.ctk-session-cta__phone span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.ctk-session-cta__phone a,
.ctk-session-cta__phone strong {
  margin: 2px 0;
  color: #fff;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.ctk-session-cta__phone small {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  line-height: 1.5;
}

@media screen and (max-width: 1100px) {
  .ctk-session-flow__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .ctk-session-flow-card:not(:last-child)::after {
    display: none;
  }
}

@media screen and (max-width: 800px) {
  .ctk-session-intro {
    padding: 68px 0;
  }

  .ctk-session-intro__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ctk-session-intro__body {
    padding: 24px 26px;
  }

  .ctk-session-points__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ctk-session-point-card {
    min-height: 0;
  }

  .ctk-session-experience__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ctk-session-experience__mark {
    width: 118px;
    height: 118px;
    font-size: 34px;
  }

  .ctk-session-flow__list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ctk-session-flow-card {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
  }

  .ctk-session-flow-card__step {
    margin: 2px 0 0;
  }

  .ctk-session-course-block__head {
    padding: 22px 22px 20px;
  }

  .ctk-session-course-block .ctk-session-list {
    padding: 16px;
  }

  .ctk-session-cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .ctk-session-cta__phone {
    width: min(100%, 420px);
    min-width: 0;
  }
}

@media screen and (max-width: 520px) {
  .ctk-session-intro__heading h2,
  .ctk-session-experience__copy h2 {
    font-size: 28px;
  }

  .ctk-session-intro__heading h2 br,
  .ctk-session-experience__copy h2 br {
    display: none;
  }

  .ctk-session-point-card {
    padding: 38px 24px 26px;
  }

  .ctk-session-flow-card {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 24px;
  }

  .ctk-session-course-block__head h3 {
    font-size: 18px;
  }

  .ctk-session-cta__phone a,
  .ctk-session-cta__phone strong {
    font-size: 25px;
  }
}

.ctk-faq-categories {
  display: grid;
  gap: 58px;
}

.ctk-faq-category > h2 {
  margin: 0 0 24px;
  padding: 0 0 14px 18px;
  border-bottom: 1px solid var(--ctk-line);
  border-left: 5px solid var(--ctk-orange);
  color: var(--ctk-ink);
  font-size: 25px;
  line-height: 1.5;
}

@media screen and (max-width: 520px) {
  .ctk-faq-categories {
    gap: 42px;
  }

  .ctk-faq-category > h2 {
    font-size: 21px;
  }
}

/* =========================================================
   v0.5.1 共通CTA：WEBボタンと電話枠を同じレイアウトで表示
========================================================= */
.ctk-common-cta__actions {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 18px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.ctk-common-cta__buttons {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 18px;
  flex-wrap: wrap;
}

.ctk-common-cta__buttons .ctk-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  min-height: 96px;
  height: 100%;
  padding: 18px 30px;
  box-sizing: border-box;
  line-height: 1.5;
}

.ctk-common-cta__phone {
  display: grid;
  place-items: center;
  min-width: 310px;
  min-height: 96px;
  padding: 12px 26px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.ctk-common-cta__phone span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.ctk-common-cta__phone a,
.ctk-common-cta__phone strong {
  margin: 2px 0;
  color: #fff;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.ctk-common-cta__phone small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

body.kunren-custom-page .ctk-common-cta__phone a,
body.kunren-custom-page .ctk-common-cta__phone a:link,
body.kunren-custom-page .ctk-common-cta__phone a:visited,
body.kunren-custom-page .ctk-common-cta__phone a:hover,
body.kunren-custom-page .ctk-common-cta__phone a:focus,
body.kunren-custom-page .ctk-common-cta__phone a:active,
body.kunren-custom-page .ctk-common-cta__phone [x-apple-data-detectors] {
  color: #fff !important;
  text-decoration: none !important;
}

.ctk-common-cta__actions.is-buttons-only .ctk-common-cta__buttons {
  width: auto;
}

@media screen and (max-width: 800px) {
  .ctk-common-cta__actions,
  .ctk-common-cta__buttons {
    width: 100%;
    flex-direction: column;
    gap: 14px;
  }

  .ctk-common-cta__buttons .ctk-button,
  .ctk-common-cta__phone {
    width: min(100%, 420px);
    min-width: 0;
    min-height: 84px;
    margin-right: auto;
    margin-left: auto;
  }

  .ctk-common-cta__phone a,
  .ctk-common-cta__phone strong {
    font-size: clamp(23px, 7vw, 27px);
  }
}

/* =========================================================
   v0.6.0 訓練コース詳細ページ
========================================================= */
.ctk-course-detail-page {
  background: #fff;
}

.ctk-course-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 84px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 14%, rgba(245, 130, 32, 0.22), transparent 31%),
    linear-gradient(135deg, #111429 0%, var(--ctk-navy) 62%, #202743 100%);
}

.ctk-course-hero::after {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -270px;
  width: 570px;
  height: 570px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow: inset 0 0 0 70px rgba(255, 255, 255, 0.018);
}

.ctk-course-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 64px;
  align-items: center;
}

.ctk-course-hero__eyebrow {
  margin: 0 0 20px;
  color: var(--ctk-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.ctk-course-hero__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 24px;
}

.ctk-course-hero__labels > span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.ctk-course-hero__labels .ctk-course-status {
  border-color: var(--ctk-orange);
  color: #fff;
  background: var(--ctk-orange);
}

.ctk-course-hero__labels .ctk-course-status--closed,
.ctk-course-hero__labels .ctk-course-status--completed {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.14);
}

.ctk-course-hero__labels .ctk-course-status--in_training {
  border-color: #4db4a5;
  background: #2c8f82;
}

.ctk-course-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 4.3vw, 58px);
  line-height: 1.35;
  letter-spacing: 0.015em;
}

.ctk-course-hero__catchcopy {
  margin: 28px 0 0;
  color: #fff;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.75;
}

.ctk-course-hero__summary {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.95;
}

.ctk-course-hero__action {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(7px);
}

.ctk-course-hero__action > p {
  margin: 0 0 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.ctk-course-hero__action > p span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.ctk-course-hero__action > p strong {
  display: block;
  color: #fff;
  font-size: 17px;
  line-height: 1.65;
}

.ctk-course-hero__action .ctk-button {
  width: 100%;
  min-width: 0;
  min-height: 66px;
  padding: 16px 18px;
}

.ctk-course-hero__session-link {
  display: block;
  margin-top: 16px;
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.ctk-course-facts {
  position: relative;
  z-index: 2;
  margin-top: -24px;
  padding-bottom: 22px;
}

.ctk-course-facts__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--ctk-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(23, 26, 47, 0.1);
}

.ctk-course-facts__grid > div {
  min-width: 0;
  padding: 24px 28px;
  border-right: 1px solid var(--ctk-line);
  border-bottom: 1px solid var(--ctk-line);
}

.ctk-course-facts__grid > div:nth-child(3n) {
  border-right: 0;
}

.ctk-course-facts__grid > div:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.ctk-course-facts dt {
  margin: 0 0 9px;
  color: var(--ctk-orange-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.ctk-course-facts dd {
  margin: 0;
  color: var(--ctk-ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
}

.ctk-course-anchor-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-top: 1px solid var(--ctk-line);
  border-bottom: 1px solid var(--ctk-line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 7px 20px rgba(23, 26, 47, 0.04);
  backdrop-filter: blur(8px);
}

.admin-bar .ctk-course-anchor-nav {
  top: 32px;
}

.ctk-course-anchor-nav .ctk-container {
  display: flex;
  justify-content: center;
  gap: 0;
}

.ctk-course-anchor-nav a {
  position: relative;
  display: grid;
  min-height: 62px;
  padding: 0 34px;
  place-items: center;
  color: var(--ctk-ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.ctk-course-anchor-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--ctk-orange);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.ctk-course-anchor-nav a:hover::after,
.ctk-course-anchor-nav a:focus::after {
  transform: scaleX(1);
}

.ctk-course-about {
  background: #fff;
}

.ctk-course-about > .ctk-container {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.8fr);
  gap: 74px;
  align-items: start;
}

.ctk-course-section-heading > p {
  margin: 0 0 12px;
  color: var(--ctk-orange-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.ctk-course-section-heading h2 {
  margin: 0 0 28px;
  color: var(--ctk-ink);
  font-size: clamp(28px, 3.5vw, 43px);
  line-height: 1.5;
}

.ctk-course-richtext {
  color: var(--ctk-text);
  font-size: 16px;
  line-height: 2;
}

.ctk-course-richtext > :first-child {
  margin-top: 0;
}

.ctk-course-richtext > :last-child {
  margin-bottom: 0;
}

.ctk-course-recommend {
  padding: 34px 34px 28px;
  border-radius: 18px;
  background: var(--ctk-warm);
  box-shadow: inset 0 0 0 1px rgba(245, 130, 32, 0.12);
}

.ctk-course-recommend h3 {
  margin: 0 0 22px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(217, 111, 16, 0.2);
  color: var(--ctk-ink);
  font-size: 21px;
}

.ctk-course-recommend ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ctk-course-recommend li {
  position: relative;
  padding: 14px 0 14px 31px;
  border-bottom: 1px solid rgba(217, 111, 16, 0.13);
}

.ctk-course-recommend li:last-child {
  border-bottom: 0;
}

.ctk-course-recommend li::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 3px;
  width: 14px;
  height: 8px;
  border-bottom: 3px solid var(--ctk-orange);
  border-left: 3px solid var(--ctk-orange);
  transform: rotate(-45deg);
}

.ctk-course-recommend strong,
.ctk-course-recommend span {
  display: block;
}

.ctk-course-recommend strong {
  color: var(--ctk-ink);
  font-size: 15px;
  line-height: 1.65;
}

.ctk-course-recommend span {
  margin-top: 4px;
  color: var(--ctk-text);
  font-size: 13px;
  line-height: 1.7;
}

.ctk-course-learning {
  background: var(--ctk-soft);
}

.ctk-course-learning__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.ctk-course-learning-card {
  position: relative;
  min-width: 0;
  min-height: 290px;
  padding: 38px 28px 30px;
  overflow: hidden;
  border: 1px solid rgba(23, 26, 47, 0.09);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(23, 26, 47, 0.06);
}

.ctk-course-learning-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--ctk-orange);
}

.ctk-course-learning-card__number {
  position: absolute;
  top: 16px;
  right: 22px;
  color: rgba(23, 26, 47, 0.07);
  font-size: 62px;
  font-weight: 800;
  line-height: 1;
}

.ctk-course-learning-card > p {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  color: var(--ctk-orange-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.ctk-course-learning-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 17px;
  color: var(--ctk-ink);
  font-size: 21px;
  line-height: 1.5;
}

.ctk-course-learning-card > div {
  position: relative;
  z-index: 1;
  color: var(--ctk-text);
  font-size: 14px;
  line-height: 1.9;
}

.ctk-course-curriculum {
  background: #fff;
}

.ctk-course-table-wrap {
  margin-top: 46px;
  overflow-x: auto;
  border: 1px solid var(--ctk-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(23, 26, 47, 0.05);
}

.ctk-course-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.ctk-course-table th,
.ctk-course-table td {
  padding: 21px 24px;
  border-right: 1px solid var(--ctk-line);
  border-bottom: 1px solid var(--ctk-line);
  text-align: left;
  vertical-align: top;
}

.ctk-course-table thead th {
  color: #fff;
  font-size: 13px;
  background: var(--ctk-navy);
}

.ctk-course-table tbody th {
  width: 24%;
  color: var(--ctk-ink);
  font-size: 15px;
  background: var(--ctk-warm);
}

.ctk-course-table tbody td {
  color: var(--ctk-text);
  font-size: 14px;
  line-height: 1.75;
}

.ctk-course-table th:last-child,
.ctk-course-table td:last-child {
  width: 110px;
  border-right: 0;
  text-align: center;
  white-space: nowrap;
}

.ctk-course-table tbody tr:last-child th,
.ctk-course-table tbody tr:last-child td {
  border-bottom: 0;
}

.ctk-course-application {
  background: var(--ctk-soft);
}

.ctk-course-application__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.ctk-course-info-card {
  min-width: 0;
  padding: 34px;
  border: 1px solid rgba(23, 26, 47, 0.09);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(23, 26, 47, 0.06);
}

.ctk-course-info-card--wide {
  grid-column: 1 / -1;
}

.ctk-course-info-card h3 {
  margin: 0 0 24px;
  padding: 0 0 15px 16px;
  border-bottom: 1px solid var(--ctk-line);
  border-left: 5px solid var(--ctk-orange);
  color: var(--ctk-ink);
  font-size: 21px;
  line-height: 1.5;
}

.ctk-course-info-card dl {
  margin: 0;
}

.ctk-course-info-card dl > div {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 22px;
  padding: 17px 0;
  border-bottom: 1px solid var(--ctk-line);
}

.ctk-course-info-card dl > div:last-child {
  border-bottom: 0;
}

.ctk-course-info-card dt {
  color: var(--ctk-orange-dark);
  font-size: 13px;
  font-weight: 800;
}

.ctk-course-info-card dd {
  margin: 0;
  color: var(--ctk-ink);
  font-size: 15px;
  line-height: 1.8;
}

.ctk-course-info-card dd strong,
.ctk-course-info-card dd small {
  display: block;
}

.ctk-course-info-card dd strong {
  font-size: 17px;
}

.ctk-course-info-card dd small {
  margin-top: 4px;
  color: var(--ctk-text);
  font-size: 12px;
}

.ctk-course-info-card__fee {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 12px;
  padding: 20px 22px;
  border-radius: 12px;
  background: var(--ctk-warm);
}

.ctk-course-info-card__fee span {
  color: var(--ctk-orange-dark);
  font-size: 13px;
  font-weight: 800;
}

.ctk-course-info-card__fee strong {
  color: var(--ctk-ink);
  font-size: 29px;
}

.ctk-course-application__note {
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 4px solid var(--ctk-orange);
  color: var(--ctk-text);
  font-size: 14px;
  line-height: 1.85;
  background: var(--ctk-warm);
}

.ctk-course-application__note > :first-child,
.ctk-course-application__note > :last-child {
  margin-top: 0;
  margin-bottom: 0;
}

.ctk-course-leaflet {
  background: #fff;
}

.ctk-course-leaflet__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: 72px;
  align-items: center;
}

.ctk-course-leaflet__copy h2 {
  margin: 0 0 22px;
  color: var(--ctk-ink);
  font-size: clamp(29px, 3.5vw, 43px);
}

.ctk-course-leaflet__copy > p:not(.ctk-records-kicker) {
  margin: 0 0 30px;
  color: var(--ctk-text);
  font-size: 15px;
  line-height: 1.9;
}

.ctk-course-leaflet__copy .ctk-button {
  min-width: 260px;
}

.ctk-course-leaflet__image {
  padding: 18px;
  border: 1px solid var(--ctk-line);
  border-radius: 18px;
  background: var(--ctk-soft);
  box-shadow: 0 18px 42px rgba(23, 26, 47, 0.08);
}

.ctk-course-leaflet__image a,
.ctk-course-leaflet__image img {
  display: block;
}

.ctk-course-leaflet__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.ctk-course-sessions-detail {
  background: var(--ctk-soft);
}

.ctk-course-sessions-detail__list {
  margin-top: 46px;
  padding: 24px;
  border: 1px solid rgba(23, 26, 47, 0.09);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(23, 26, 47, 0.06);
}

.ctk-course-section-link {
  margin-top: 32px;
  text-align: center;
}

.ctk-course-section-link a {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ctk-ink);
  color: var(--ctk-ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.ctk-course-section-link a:hover,
.ctk-course-section-link a:focus {
  border-color: var(--ctk-orange);
  color: var(--ctk-orange-dark);
}

.ctk-course-faq {
  background: #fff;
}

.ctk-course-final-cta {
  margin-top: 0;
}

@media screen and (max-width: 1100px) {
  .ctk-course-hero__inner {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 42px;
  }

  .ctk-course-learning__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 900px) {
  .ctk-course-hero {
    padding: 76px 0 66px;
  }

  .ctk-course-hero__inner,
  .ctk-course-about > .ctk-container,
  .ctk-course-leaflet__inner {
    grid-template-columns: 1fr;
  }

  .ctk-course-hero__action {
    width: min(100%, 560px);
  }

  .ctk-course-facts__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ctk-course-facts__grid > div:nth-child(3n) {
    border-right: 1px solid var(--ctk-line);
  }

  .ctk-course-facts__grid > div:nth-child(2n) {
    border-right: 0;
  }

  .ctk-course-facts__grid > div:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--ctk-line);
  }

  .ctk-course-facts__grid > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .ctk-course-about > .ctk-container,
  .ctk-course-leaflet__inner {
    gap: 44px;
  }

  .ctk-course-leaflet__image {
    width: min(100%, 680px);
  }
}

@media screen and (max-width: 800px) {
  .admin-bar .ctk-course-anchor-nav {
    top: 46px;
  }

  .ctk-course-anchor-nav {
    overflow-x: auto;
  }

  .ctk-course-anchor-nav .ctk-container {
    width: max-content;
    min-width: 100%;
    justify-content: flex-start;
  }

  .ctk-course-anchor-nav a {
    min-height: 56px;
    padding: 0 24px;
    white-space: nowrap;
  }

  .ctk-course-application__grid {
    grid-template-columns: 1fr;
  }

  .ctk-course-info-card--wide {
    grid-column: auto;
  }
}

@media screen and (max-width: 620px) {
  .ctk-course-hero {
    padding: 60px 0 58px;
  }

  .ctk-course-hero h1 {
    font-size: 31px;
  }

  .ctk-course-hero__catchcopy {
    font-size: 18px;
  }

  .ctk-course-hero__action {
    padding: 22px;
  }

  .ctk-course-facts {
    margin-top: 0;
    padding-top: 20px;
  }

  .ctk-course-facts__grid {
    grid-template-columns: 1fr;
  }

  .ctk-course-facts__grid > div,
  .ctk-course-facts__grid > div:nth-child(3n),
  .ctk-course-facts__grid > div:nth-child(2n),
  .ctk-course-facts__grid > div:nth-last-child(-n + 3),
  .ctk-course-facts__grid > div:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--ctk-line);
  }

  .ctk-course-facts__grid > div:last-child {
    border-bottom: 0;
  }

  .ctk-course-learning__grid {
    grid-template-columns: 1fr;
  }

  .ctk-course-learning-card {
    min-height: 0;
  }

  .ctk-course-info-card {
    padding: 26px 22px;
  }

  .ctk-course-info-card dl > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .ctk-course-info-card__fee {
    align-items: flex-start;
    flex-direction: column;
  }

  .ctk-course-info-card__fee strong {
    font-size: 25px;
  }

  .ctk-course-leaflet__copy .ctk-button {
    width: 100%;
    min-width: 0;
  }

  .ctk-course-sessions-detail__list {
    padding: 16px;
  }
}


/* =========================================================
   v0.6.1 見出しラベル・リーフレット・説明会導入部の調整
========================================================= */

/* オレンジの英字小見出しを、装飾性を保ったまま読みやすくする */
.ctk-section-heading__label,
.ctk-records-kicker,
.ctk-record-past__label,
.ctk-course-hero__eyebrow,
.ctk-course-section-heading > p,
.ctk-final-cta__label,
.ctk-entry-heading__label,
.ctk-entry-info-card__label {
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.15em;
}

.ctk-course-sessions__label,
.ctk-classroom-card figcaption span {
  font-size: 12px;
  line-height: 1.5;
}

.ctk-course-learning-card > p,
.ctk-session-point-card__label,
.ctk-session-experience__label,
.ctk-session-flow-card__step,
.ctk-session-course-block__head p {
  font-size: 13px;
  line-height: 1.5;
}

.ctk-course-facts dt {
  font-size: 12px;
  line-height: 1.5;
}

/* 説明会ページ導入見出し：指定した改行単位をPCでは崩さない */
.ctk-session-intro__inner {
  grid-template-columns: minmax(450px, 1.05fr) minmax(0, 0.95fr);
  gap: 64px;
  align-items: center;
}

.ctk-session-intro__heading h2 {
  font-size: clamp(30px, 3vw, 43px);
}

.ctk-session-intro__title--multiline .ctk-session-intro__title-line {
  display: block;
  white-space: nowrap;
}

/* リーフレットは内容を確認できる大きさを保ちつつ、主張を抑える */
.ctk-course-leaflet__inner {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: 72px;
}

.ctk-course-leaflet__image {
  width: min(100%, 340px);
  min-height: 0;
  padding: 14px;
  justify-self: center;
}

.ctk-course-leaflet__image a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
}

.ctk-course-leaflet__image img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  margin: 0 auto;
  object-fit: contain;
}

@media screen and (max-width: 900px) {
  .ctk-session-intro__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
  }

  .ctk-course-leaflet__image {
    width: min(100%, 340px);
    justify-self: center;
  }
}

@media screen and (max-width: 520px) {
  .ctk-session-intro__title--multiline .ctk-session-intro__title-line {
    display: inline;
    white-space: normal;
  }

  .ctk-session-intro__title--multiline .ctk-session-intro__title-line + .ctk-session-intro__title-line::before {
    content: " ";
  }

  .ctk-course-leaflet__image a {
    height: 360px;
  }

  .ctk-course-leaflet__image img {
    max-height: 360px;
  }
}

/* =========================================================
   v0.7.1：訓練に関わる皆さまの声
   一覧・説明会ページ専用グリッドをトップページから分離
========================================================= */
.ctk-voices-page .ctk-subpage-hero,
.ctk-session-voices {
  position: relative;
}

.ctk-voices-section {
  background: #ffffff;
}

.ctk-voices-section--graduate {
  background: #f7f8fa;
}

.ctk-voices-section--past_internship {
  background: #f3f4f6;
  border-top: 1px solid #e1e4e9;
}

.ctk-voices-page .ctk-voice-grid,
.ctk-session-voices .ctk-voice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}

.ctk-voices-page .ctk-voice-grid--session,
.ctk-session-voices .ctk-voice-grid--session {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1120px;
}

.ctk-voices-page .ctk-voice-grid--employer,
.ctk-voices-page .ctk-voice-grid--past_internship {
  grid-template-columns: minmax(0, 1fr);
  max-width: 900px;
}

.ctk-voice-card {
  height: 100%;
  box-sizing: border-box;
}

.ctk-voice-card--session {
  border-top: 4px solid var(--ctk-orange);
}

.ctk-voice-card--graduate {
  border-top: 4px solid var(--ctk-navy);
}

.ctk-voice-card--employer {
  border-left: 5px solid var(--ctk-orange);
}

.ctk-voice-card--past_internship {
  border-left: 5px solid #7b7f89;
  background: #ffffff;
}

.ctk-voice-card__type {
  font-size: 12px;
  letter-spacing: .04em;
}

.ctk-voice-card__body.ctk-voice-card__full {
  margin-top: 14px;
}

.ctk-voice-card__full > :first-child {
  margin-top: 0;
}

.ctk-voice-card__full > :last-child {
  margin-bottom: 0;
}

.ctk-voice-card__full p {
  margin: 0 0 1em;
  color: var(--ctk-text);
  font-size: 14px;
  line-height: 1.95;
}

.ctk-voice-card__more {
  margin-top: 16px;
  border-top: 1px solid var(--ctk-line);
}

.ctk-voice-card__more summary {
  position: relative;
  display: block;
  padding: 14px 26px 0 0;
  color: var(--ctk-navy);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.ctk-voice-card__more summary::-webkit-details-marker {
  display: none;
}

.ctk-voice-card__more summary::after {
  content: "+";
  position: absolute;
  top: 12px;
  right: 2px;
  color: var(--ctk-orange);
  font-size: 20px;
  line-height: 1;
}

.ctk-voice-card__more[open] summary::after {
  content: "−";
}

.ctk-voice-card__more .ctk-voice-card__full {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #dde0e6;
}

.ctk-voice-card__industry {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 0;
  color: var(--ctk-text);
  font-size: 13px;
}

.ctk-voice-card__industry span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 9px;
  border-radius: 999px;
  color: #ffffff;
  background: #747984;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
}

.ctk-voice-card--compact {
  padding: 26px 24px 24px;
}

.ctk-voice-card--compact h3 {
  font-size: 17px;
}

.ctk-voice-card--compact .ctk-voice-card__body {
  font-size: 13px;
  line-height: 1.9;
}

.ctk-session-voices {
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  border-top: 1px solid rgba(20, 24, 48, .05);
  border-bottom: 1px solid rgba(20, 24, 48, .05);
}

.ctk-voices-past-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 28px;
  padding: 18px 22px;
  border: 1px solid #dfe2e7;
  border-radius: 8px;
  background: #ffffff;
}

.ctk-voices-past-note strong {
  flex: 0 0 auto;
  padding: 4px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: #6f747f;
  font-size: 11px;
  letter-spacing: .08em;
}

.ctk-voices-past-note p {
  margin: 0;
  color: #5d626d;
  font-size: 13px;
  line-height: 1.8;
}

@media screen and (max-width: 960px) {
  .ctk-voices-page .ctk-voice-grid--session,
  .ctk-session-voices .ctk-voice-grid--session {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 750px) {
  .ctk-voices-page .ctk-voice-grid,
  .ctk-voices-page .ctk-voice-grid--session,
  .ctk-voices-page .ctk-voice-grid--employer,
  .ctk-voices-page .ctk-voice-grid--past_internship,
  .ctk-session-voices .ctk-voice-grid,
  .ctk-session-voices .ctk-voice-grid--session {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .ctk-voice-card,
  .ctk-voice-card--compact {
    padding: 24px 21px 22px;
  }

  .ctk-voices-past-note {
    display: block;
    padding: 18px;
  }

  .ctk-voices-past-note strong {
    margin-bottom: 10px;
  }
}

/* =========================================================
   v0.8.0：教室・アクセスページ
========================================================= */
.ctk-access-page .ctk-section-heading {
  margin-bottom: 46px;
}

.ctk-access-info {
  background: #ffffff;
}

.ctk-access-info__grid {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: stretch;
}

.ctk-access-info__grid--single {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.ctk-access-info-card,
.ctk-access-map {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--ctk-line);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(17, 21, 44, .08);
}

.ctk-access-info-card {
  position: relative;
  padding: 34px 34px 32px;
}

.ctk-access-info-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--ctk-orange);
}

.ctk-access-info-card h3 {
  margin: 0 0 24px;
  color: var(--ctk-navy);
  font-size: 22px;
  line-height: 1.5;
}

.ctk-access-info-card dl {
  margin: 0 0 26px;
}

.ctk-access-info-card dl > div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid var(--ctk-line);
}

.ctk-access-info-card dl > div:last-child {
  border-bottom: 1px solid var(--ctk-line);
}

.ctk-access-info-card dt {
  color: #8a8d98;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.ctk-access-info-card dd {
  margin: 0;
  color: var(--ctk-ink);
  font-size: 14px;
  line-height: 1.85;
}

.ctk-access-info-card dd span {
  display: block;
}

.ctk-access-info-card dd a {
  color: var(--ctk-navy);
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

.ctk-access-info-card .ctk-button {
  width: 100%;
}

.ctk-access-map {
  min-height: 500px;
}

.ctk-access-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
}

.ctk-access-route {
  background: var(--ctk-soft);
}

.ctk-access-route__note {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  max-width: 880px;
  margin: -8px auto 32px;
  padding: 16px 20px;
  border: 1px solid rgba(245, 130, 32, .30);
  border-radius: 8px;
  background: var(--ctk-warm);
}

.ctk-access-route__note strong {
  flex: 0 0 auto;
  padding: 4px 9px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--ctk-orange);
  font-size: 10px;
  letter-spacing: .08em;
}

.ctk-access-route__note p {
  margin: 0;
  color: #6a5b4e;
  font-size: 13px;
  line-height: 1.8;
}

.ctk-access-route__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ctk-access-route-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--ctk-line);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(17, 21, 44, .06);
}

.ctk-access-route-card__image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e9ebef;
}

.ctk-access-route-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ctk-access-route-card__image.is-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: rgba(255,255,255,.92);
  background:
    radial-gradient(circle at 75% 20%, rgba(245,130,32,.50), transparent 34%),
    linear-gradient(145deg, #171a2f 0%, #30354f 100%);
}

.ctk-access-route-card__image.is-placeholder::before,
.ctk-access-route-card__image.is-placeholder::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
}

.ctk-access-route-card__image.is-placeholder::before {
  width: 150px;
  height: 150px;
  right: -50px;
  bottom: -70px;
}

.ctk-access-route-card__image.is-placeholder::after {
  width: 80px;
  height: 80px;
  left: -24px;
  top: -30px;
}

.ctk-access-route-card__image.is-placeholder span {
  position: relative;
  z-index: 1;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
}

.ctk-access-route-card__image.is-placeholder small {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .20em;
}

.ctk-access-route-card__copy {
  padding: 25px 24px 27px;
}

.ctk-access-route-card__copy > p {
  margin: 0 0 9px;
  color: var(--ctk-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.ctk-access-route-card__copy h3 {
  margin: 0 0 11px;
  color: var(--ctk-navy);
  font-size: 17px;
  line-height: 1.6;
}

.ctk-access-route-card__copy div {
  color: var(--ctk-text);
  font-size: 13px;
  line-height: 1.9;
}

.ctk-access-classroom {
  background: #ffffff;
}

.ctk-access-classroom__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}

.ctk-access-classroom__grid--count-1 {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
}

.ctk-access-classroom__grid--count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 900px;
  margin-inline: auto;
}

.ctk-access-classroom-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--ctk-line);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(17, 21, 44, .06);
}

.ctk-access-classroom-card__image {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #e7e8ec;
}

.ctk-access-classroom-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ctk-access-classroom-card__copy {
  padding: 25px 24px 28px;
}

.ctk-access-classroom-card__copy > p,
.ctk-access-visit-card > p {
  margin: 0 0 8px;
  color: var(--ctk-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.ctk-access-classroom-card__copy h3,
.ctk-access-visit-card h3 {
  margin: 0 0 10px;
  color: var(--ctk-navy);
  font-size: 18px;
  line-height: 1.6;
}

.ctk-access-classroom-card__copy div,
.ctk-access-visit-card div {
  color: var(--ctk-text);
  font-size: 13px;
  line-height: 1.9;
}

.ctk-access-visit {
  background: var(--ctk-warm);
}

.ctk-access-visit__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.ctk-access-visit-card {
  position: relative;
  min-width: 0;
  padding: 29px 27px 28px;
  border: 1px solid rgba(245,130,32,.20);
  border-radius: 9px;
  background: #ffffff;
}

.ctk-access-visit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 27px;
  width: 44px;
  height: 3px;
  background: var(--ctk-orange);
}

.ctk-access-faq {
  background: #ffffff;
}

.ctk-access-faq .ctk-section-footer {
  margin-top: 30px;
  text-align: center;
}

@media screen and (max-width: 980px) {
  .ctk-access-info__grid {
    grid-template-columns: 1fr;
  }

  .ctk-access-map,
  .ctk-access-map iframe {
    min-height: 420px;
  }

  .ctk-access-route__grid,
  .ctk-access-classroom__grid,
  .ctk-access-visit__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 700px) {
  .ctk-access-page .ctk-section-heading {
    margin-bottom: 32px;
  }

  .ctk-access-info-card {
    padding: 29px 22px 25px;
  }

  .ctk-access-info-card h3 {
    font-size: 20px;
  }

  .ctk-access-info-card dl > div {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 13px 0;
  }

  .ctk-access-info-card dd a {
    font-size: 17px;
  }

  .ctk-access-map,
  .ctk-access-map iframe {
    min-height: 340px;
  }

  .ctk-access-route__note {
    display: block;
    padding: 16px;
  }

  .ctk-access-route__note strong {
    display: inline-flex;
    margin-bottom: 9px;
  }

  .ctk-access-route__grid,
  .ctk-access-classroom__grid,
  .ctk-access-classroom__grid--count-2,
  .ctk-access-visit__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .ctk-access-route-card__copy,
  .ctk-access-classroom-card__copy {
    padding: 23px 21px 24px;
  }

  .ctk-access-visit-card {
    padding: 27px 22px 25px;
  }
}

/* =========================================================
   v0.9.0 求職者支援制度・受講までの流れ
========================================================= */

.ctk-top-flow-routes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 940px;
  margin: 0 auto;
}

.ctk-top-flow-route {
  position: relative;
  min-width: 0;
  padding: 26px 28px 28px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  background: rgba(255,255,255,.075);
  text-align: left;
}

.ctk-top-flow-route > p {
  margin: 0 0 9px;
  color: var(--ctk-orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
}

.ctk-top-flow-route h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.55;
}

.ctk-top-flow-route > div {
  margin-top: 11px;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.85;
}

.ctk-top-flow-merge {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 27px 0 23px;
}

.ctk-top-flow-merge::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(255,255,255,.16);
}

.ctk-top-flow-merge span {
  position: relative;
  z-index: 1;
  padding: 7px 20px;
  border-radius: 999px;
  color: #fff;
  background: var(--ctk-navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}

.ctk-flow--application .ctk-flow-list {
  gap: 20px;
}

.ctk-flow--application .ctk-flow-list li {
  min-height: 176px;
  padding: 24px 14px 22px;
}

.ctk-flow--application .ctk-flow-list span {
  width: 48px;
  height: 48px;
  margin-bottom: 13px;
  font-size: 17px;
}

.ctk-flow--application .ctk-flow-list strong {
  font-size: 15px;
}

.ctk-flow--application .ctk-top-flow-footer {
  margin-top: 34px;
}

.ctk-flow-page-hero {
  background:
    radial-gradient(circle at 86% 24%, rgba(245,130,32,.18), transparent 31%),
    linear-gradient(135deg, #10142a 0%, #171a32 68%, #2a1c27 100%);
}

.ctk-flow-system__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 42px;
  align-items: start;
  max-width: 1040px;
  margin: 0 auto 44px;
}

.ctk-flow-richtext {
  color: #555a68;
  font-size: 15px;
  line-height: 2;
}

.ctk-flow-richtext > :first-child { margin-top: 0; }
.ctk-flow-richtext > :last-child { margin-bottom: 0; }

.ctk-flow-system__note {
  padding: 25px 28px;
  border-left: 4px solid var(--ctk-orange);
  border-radius: 8px;
  background: #fff7ef;
}

.ctk-flow-system__note strong {
  display: block;
  margin-bottom: 9px;
  color: #9a4b0d;
  font-size: 14px;
}

.ctk-flow-system__note p {
  margin: 0;
  color: #655c55;
  font-size: 13px;
  line-height: 1.85;
}

.ctk-flow-system__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.ctk-flow-system-card {
  position: relative;
  min-width: 0;
  padding: 28px 24px 25px;
  border: 1px solid var(--ctk-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(17,22,43,.06);
}

.ctk-flow-system-card > span {
  display: block;
  margin-bottom: 16px;
  color: rgba(245,130,32,.22);
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.ctk-flow-system-card h3 {
  margin: 0 0 10px;
  color: var(--ctk-navy);
  font-size: 17px;
  line-height: 1.6;
}

.ctk-flow-system-card p {
  margin: 0;
  color: #646977;
  font-size: 13px;
  line-height: 1.85;
}

.ctk-flow-routes-section {
  background: #f5f6f8;
}

.ctk-flow-route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  max-width: 1060px;
  margin: 0 auto;
}

.ctk-flow-route-card {
  min-width: 0;
  padding: 34px 36px 36px;
  border-top: 4px solid var(--ctk-orange);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(17,22,43,.07);
}

.ctk-flow-route-card--web {
  border-top-color: var(--ctk-navy);
}

.ctk-flow-route-card__label {
  margin: 0 0 9px;
  color: var(--ctk-orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
}

.ctk-flow-route-card--web .ctk-flow-route-card__label {
  color: #555f80;
}

.ctk-flow-route-card h3 {
  margin: 0;
  color: var(--ctk-navy);
  font-size: clamp(21px, 2.3vw, 27px);
  line-height: 1.5;
}

.ctk-flow-route-card__body {
  margin: 13px 0 0;
  color: #626775;
  font-size: 14px;
  line-height: 1.9;
}

.ctk-flow-route-card ol {
  margin: 25px 0 0;
  padding: 0;
  counter-reset: ctk-route;
  list-style: none;
}

.ctk-flow-route-card li {
  position: relative;
  padding: 15px 0 15px 43px;
  border-top: 1px solid var(--ctk-line);
  counter-increment: ctk-route;
}

.ctk-flow-route-card li::before {
  content: counter(ctk-route);
  position: absolute;
  top: 15px;
  left: 0;
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  color: #fff;
  background: var(--ctk-orange);
  font-size: 12px;
  font-weight: 700;
}

.ctk-flow-route-card--web li::before {
  background: var(--ctk-navy);
}

.ctk-flow-route-card li strong,
.ctk-flow-route-card li span {
  display: block;
}

.ctk-flow-route-card li strong {
  color: #282d3d;
  font-size: 14px;
  line-height: 1.65;
}

.ctk-flow-route-card li span {
  margin-top: 4px;
  color: #747986;
  font-size: 12px;
  line-height: 1.75;
}

.ctk-flow-converge {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.ctk-flow-converge span {
  position: relative;
  padding: 13px 24px 13px 49px;
  border-radius: 999px;
  color: #fff;
  background: var(--ctk-navy);
  font-size: 13px;
  font-weight: 700;
}

.ctk-flow-converge span::before {
  content: "↓";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ctk-orange);
  font-size: 18px;
}

.ctk-flow-application {
  background: #fff;
}

.ctk-flow-timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.ctk-flow-timeline-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  min-width: 0;
  padding: 26px 28px;
  border: 1px solid var(--ctk-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(17,22,43,.045);
}

.ctk-flow-timeline-card__number {
  padding-right: 20px;
  border-right: 1px solid var(--ctk-line);
  text-align: center;
}

.ctk-flow-timeline-card__number span,
.ctk-flow-timeline-card__number small {
  display: block;
}

.ctk-flow-timeline-card__number span {
  color: var(--ctk-orange);
  font-size: 31px;
  font-weight: 800;
  line-height: 1;
}

.ctk-flow-timeline-card__number small {
  margin-top: 7px;
  color: #9094a0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
}

.ctk-flow-timeline-card__copy {
  min-width: 0;
  padding-left: 23px;
}

.ctk-flow-timeline-card h3 {
  margin: 0;
  color: var(--ctk-navy);
  font-size: 17px;
  line-height: 1.6;
}

.ctk-flow-timeline-card p {
  margin: 8px 0 0;
  color: #676c79;
  font-size: 13px;
  line-height: 1.85;
}

.ctk-flow-deadline {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  max-width: 940px;
  margin: 38px auto 0;
  padding: 25px 30px;
  border: 1px solid #f3c9a7;
  border-radius: 10px;
  background: #fff7ef;
}

.ctk-flow-deadline > span {
  color: var(--ctk-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}

.ctk-flow-deadline h3 {
  margin: 0;
  color: #5d2d09;
  font-size: 18px;
  line-height: 1.6;
}

.ctk-flow-deadline p {
  margin: 7px 0 0;
  color: #705b4c;
  font-size: 13px;
  line-height: 1.85;
}

.ctk-flow-cautions {
  background: #f5f6f8;
}

.ctk-flow-cautions__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ctk-flow-cautions__grid article {
  min-width: 0;
  padding: 26px 25px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(17,22,43,.05);
}

.ctk-flow-cautions__grid article > span {
  display: block;
  margin-bottom: 10px;
  color: var(--ctk-orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}

.ctk-flow-cautions__grid h3 {
  margin: 0;
  color: var(--ctk-navy);
  font-size: 16px;
  line-height: 1.6;
}

.ctk-flow-cautions__grid p {
  margin: 9px 0 0;
  color: #6a6f7d;
  font-size: 13px;
  line-height: 1.85;
}

.ctk-flow-source-note {
  max-width: 1000px;
  margin: 28px auto 0;
  padding-top: 19px;
  border-top: 1px solid #dfe2e8;
  color: #747987;
  font-size: 12px;
  line-height: 1.85;
}

.ctk-flow-after-support {
  color: #fff;
  background:
    radial-gradient(circle at 15% 20%, rgba(245,130,32,.15), transparent 28%),
    var(--ctk-navy);
}

.ctk-flow-after-support .ctk-section-heading h2,
.ctk-flow-after-support .ctk-section-heading > p {
  color: #fff;
}

.ctk-flow-after-support__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 950px;
  margin: 0 auto;
}

.ctk-flow-after-support__grid article {
  min-width: 0;
  padding: 30px 32px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 11px;
  background: rgba(255,255,255,.055);
}

.ctk-flow-after-support__grid article > p {
  margin: 0 0 10px;
  color: var(--ctk-orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
}

.ctk-flow-after-support__grid h3 {
  margin: 0;
  color: #fff;
  font-size: 21px;
  line-height: 1.55;
}

.ctk-flow-after-support__grid article > div {
  margin-top: 12px;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.9;
}

.ctk-course-application__flow-link {
  margin-top: 22px;
}

.ctk-course-application__flow-link .ctk-button {
  min-width: 300px;
}

@media screen and (max-width: 1024px) {
  .ctk-flow-system__grid,
  .ctk-flow-cautions__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ctk-flow-timeline {
    grid-template-columns: 1fr;
    max-width: 760px;
  }
}

@media screen and (max-width: 767px) {
  .ctk-top-flow-routes,
  .ctk-flow-route-grid,
  .ctk-flow-system__intro,
  .ctk-flow-after-support__grid {
    grid-template-columns: 1fr;
  }

  .ctk-top-flow-route,
  .ctk-flow-route-card {
    padding: 24px 22px 26px;
  }

  .ctk-top-flow-merge::before {
    left: 0;
    right: 0;
  }

  .ctk-flow-system__intro {
    gap: 24px;
    margin-bottom: 30px;
  }

  .ctk-flow-system__grid,
  .ctk-flow-cautions__grid {
    grid-template-columns: 1fr;
  }

  .ctk-flow-system-card {
    padding: 24px 22px;
  }

  .ctk-flow-converge span {
    border-radius: 10px;
    text-align: left;
  }

  .ctk-flow-timeline-card {
    grid-template-columns: 62px minmax(0, 1fr);
    padding: 21px 18px;
  }

  .ctk-flow-timeline-card__number {
    padding-right: 14px;
  }

  .ctk-flow-timeline-card__number span {
    font-size: 25px;
  }

  .ctk-flow-timeline-card__copy {
    padding-left: 17px;
  }

  .ctk-flow-deadline {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px;
  }

  .ctk-flow-after-support__grid article {
    padding: 25px 23px;
  }

  .ctk-course-application__flow-link .ctk-button {
    min-width: 0;
    width: 100%;
  }
}

/* =========================================================
   v0.9.1 全ページ最終調整
   見出し・ページヘッダー・申込フォーム・プライバシー
========================================================= */

/* 日本語の不自然な一文字落ちを抑え、見出しを読みやすくする */
body.kunren-custom-front .ctk-main h1,
body.kunren-custom-front .ctk-main h2,
body.kunren-custom-front .ctk-main h3,
body.kunren-custom-front .ctk-main h4,
body.kunren-custom-front .ctk-main p,
body.kunren-custom-front .ctk-main li,
body.kunren-custom-front .ctk-main dt,
body.kunren-custom-front .ctk-main dd {
  line-break: strict;
  word-break: normal;
  overflow-wrap: break-word;
}

@supports (word-break: auto-phrase) {
  body.kunren-custom-front .ctk-main h1,
  body.kunren-custom-front .ctk-main h2,
  body.kunren-custom-front .ctk-main h3,
  body.kunren-custom-front .ctk-main h4 {
    word-break: auto-phrase;
  }
}

body.kunren-custom-front .ctk-main h1,
body.kunren-custom-front .ctk-main h2,
body.kunren-custom-front .ctk-main h3 {
  text-wrap: balance;
}

body.kunren-custom-front .ctk-main {
  font-size: 16px;
}

.ctk-section-heading__label,
.ctk-records-kicker,
.ctk-record-past__label,
.ctk-course-hero__eyebrow,
.ctk-course-section-heading > p,
.ctk-final-cta__label,
.ctk-entry-heading__label,
.ctk-entry-info-card__label,
.ctk-access-section-label,
.ctk-flow-section-label,
.ctk-voices-section-label {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: .15em;
}

/* 固定ページのページヘッダーは、濃紺＋オレンジの光を共通化 */
.ctk-subpage-hero,
.ctk-entry-hero {
  position: relative;
  overflow: hidden;
  border: 0;
  background:
    radial-gradient(circle at 83% 12%, rgba(245, 130, 32, .23), transparent 31%),
    radial-gradient(circle at 8% 105%, rgba(245, 130, 32, .08), transparent 34%),
    linear-gradient(135deg, #0d0f20 0%, #171a2f 67%, #232943 100%);
}

.ctk-subpage-hero::after,
.ctk-entry-hero::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -260px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
  box-shadow: inset 0 0 0 65px rgba(255,255,255,.014);
  pointer-events: none;
}

.ctk-subpage-hero > .ctk-container,
.ctk-entry-hero > .ctk-container {
  position: relative;
  z-index: 1;
}

.ctk-subpage-hero > .ctk-container > p:last-child {
  color: rgba(255,255,255,.72);
  font-size: 15px;
}

/* コース詳細だけに出ていたヘッダー下の細い白線を除去 */
body.single-ctk_course #header,
body.single-ctk_course #header.active,
body.single-ctk_course.header_fix #header {
  border-bottom: 0 !important;
  box-shadow: none !important;
}

body.single-ctk_course .ctk-course-hero {
  margin-top: -1px;
  background:
    radial-gradient(circle at 86% 14%, rgba(245, 130, 32, .23), transparent 31%),
    radial-gradient(circle at 8% 105%, rgba(245, 130, 32, .08), transparent 34%),
    linear-gradient(135deg, #0d0f20 0%, #171a2f 67%, #232943 100%);
}

/* リーフレット：後勝ちルールによりスマホで2列に戻っていた問題を修正 */
@media screen and (max-width: 900px) {
  .ctk-course-leaflet__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .ctk-course-leaflet__copy {
    width: 100%;
    min-width: 0;
    text-align: center;
  }

  .ctk-course-leaflet__copy h2,
  .ctk-course-leaflet__copy > p {
    writing-mode: horizontal-tb;
    overflow-wrap: normal;
  }

  .ctk-course-leaflet__image {
    width: min(100%, 340px);
    margin-inline: auto;
  }
}

@media screen and (max-width: 520px) {
  .ctk-course-leaflet__inner {
    gap: 26px;
  }

  .ctk-course-leaflet__copy h2 {
    font-size: 30px;
  }

  .ctk-course-leaflet__image {
    width: min(100%, 310px);
    padding: 10px;
  }

  .ctk-course-leaflet__image a {
    height: 340px;
  }

  .ctk-course-leaflet__image img {
    max-height: 340px;
  }
}

/* 申込フォーム全体 */
.ctk-entry-main {
  border-top: 4px solid var(--ctk-orange);
}

.ctk-entry-form .ctk-cf7-form {
  gap: 26px;
  padding: 30px;
  border: 1px solid #e0e3e9;
  border-radius: 12px;
  background: #fafbfc;
}

.ctk-entry-form .ctk-cf7-row {
  gap: 10px;
}

.ctk-entry-form .ctk-cf7-row--session {
  padding: 22px;
  border: 1px solid rgba(245,130,32,.25);
  border-radius: 10px;
  background: var(--ctk-warm);
}

.ctk-entry-form .ctk-cf7-note {
  margin: 8px 0 0;
  color: #6a6270;
  font-size: 13px;
  line-height: 1.75;
}

.ctk-entry-session-summary {
  position: relative;
  margin: 0 0 26px;
  padding: 22px 24px 22px 30px;
  border: 1px solid rgba(245,130,32,.34);
  border-radius: 12px;
  background: linear-gradient(135deg, #fffaf5 0%, #fff 100%);
  box-shadow: 0 12px 28px rgba(23,26,47,.05);
}

.ctk-entry-session-summary::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 5px;
  border-radius: 0 4px 4px 0;
  background: var(--ctk-orange);
}

.ctk-entry-session-summary[hidden] {
  display: none !important;
}

.ctk-entry-session-summary p {
  margin: 0;
}

.ctk-entry-session-summary__label {
  color: var(--ctk-orange-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
}

.ctk-entry-session-summary__date {
  margin-top: 7px !important;
  color: var(--ctk-ink);
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.45;
}

.ctk-entry-session-summary__course {
  margin-top: 6px !important;
  color: var(--ctk-ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

.ctk-entry-session-summary__place {
  margin-top: 5px !important;
  color: var(--ctk-text);
  font-size: 13px;
  line-height: 1.7;
}

.ctk-entry-form .ctk-cf7-privacy {
  margin-top: 4px;
  padding: 18px 20px;
  border: 1px solid #d9dde5;
  border-radius: 9px;
  background: #fff;
}

.ctk-entry-form .ctk-cf7-privacy .wpcf7-list-item {
  display: block;
  margin: 0;
}

.ctk-entry-form .ctk-cf7-privacy label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.75;
}

.ctk-entry-form .ctk-cf7-privacy input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin: 2px 0 0;
  accent-color: var(--ctk-orange);
}

.ctk-entry-form .ctk-cf7-privacy a,
.ctk-entry-privacy-note a {
  color: var(--ctk-orange-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ctk-entry-privacy-note {
  margin: 18px 0 0;
  color: var(--ctk-text);
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
}

.ctk-entry-form input[type="submit"] {
  min-width: min(100%, 360px);
  min-height: 60px;
  box-shadow: 0 9px 22px rgba(245,130,32,.2);
}

@media screen and (max-width: 700px) {
  .ctk-entry-main {
    padding-top: 28px;
    padding-bottom: 32px;
  }

  .ctk-entry-form .ctk-cf7-form {
    gap: 22px;
    padding: 20px 16px;
  }

  .ctk-entry-form .ctk-cf7-row--session {
    padding: 18px 14px;
  }

  .ctk-entry-session-summary {
    padding: 19px 17px 19px 23px;
  }

  .ctk-entry-session-summary__date {
    font-size: 21px;
  }

  .ctk-entry-form select[name="your-session"] {
    font-size: 14px;
    font-weight: 700;
  }

  .ctk-entry-form .ctk-cf7-privacy {
    padding: 16px 14px;
  }

  .ctk-entry-form .ctk-cf7-privacy label {
    font-size: 13px;
  }
}

/* プライバシーポリシー */
.ctk-privacy-section {
  background: var(--ctk-soft);
}

.ctk-privacy-content {
  padding: 54px 60px;
  border: 1px solid rgba(23,26,47,.09);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(23,26,47,.06);
  color: var(--ctk-text);
  font-size: 15px;
  line-height: 2;
}

.ctk-privacy-content > :first-child {
  margin-top: 0;
}

.ctk-privacy-content h2 {
  margin: 46px 0 18px;
  padding: 0 0 13px 18px;
  border-bottom: 1px solid var(--ctk-line);
  border-left: 5px solid var(--ctk-orange);
  color: var(--ctk-ink);
  font-size: 23px;
  line-height: 1.55;
}

.ctk-privacy-content p,
.ctk-privacy-content ul {
  margin: 0 0 20px;
}

.ctk-privacy-content ul {
  padding-left: 1.8em;
  list-style: disc outside !important;
}

.ctk-privacy-content ol {
  margin: 0 0 20px;
  padding-left: 1.8em;
  list-style: decimal outside !important;
}

.ctk-privacy-content li {
  display: list-item;
}

.ctk-privacy-content li::marker {
  color: var(--ctk-orange);
}

.ctk-privacy-content li + li {
  margin-top: 7px;
}

.ctk-privacy-contact {
  margin-top: 48px;
  padding: 28px 30px;
  border-radius: 12px;
  background: var(--ctk-warm);
}

.ctk-privacy-contact h2 {
  margin-top: 0;
}

.ctk-privacy-date {
  margin-top: 34px !important;
  color: #737786;
  font-size: 13px;
  text-align: right;
}

@media screen and (max-width: 700px) {
  .ctk-privacy-content {
    padding: 34px 22px;
    font-size: 14px;
  }

  .ctk-privacy-content h2 {
    margin-top: 38px;
    padding-left: 13px;
    font-size: 20px;
  }

  .ctk-privacy-contact {
    padding: 22px 18px;
  }
}

/* =========================================================
   v0.9.2 コース申込導線・ヘッダー・説明会申込フォーム調整
========================================================= */

/* 白背景上の「受講までの流れ」ボタンを明確に表示 */
.ctk-course-application__flow-link .ctk-button--dark {
  color: #fff !important;
  border: 1px solid var(--ctk-navy) !important;
  background: var(--ctk-navy) !important;
  box-shadow: 0 8px 20px rgba(23, 26, 47, .12);
}

.ctk-course-application__flow-link .ctk-button--dark:hover,
.ctk-course-application__flow-link .ctk-button--dark:focus {
  color: #fff !important;
  border-color: #292d4d !important;
  background: #292d4d !important;
}

/*
 * 親テーマは single 投稿でメニュー文字を黒、header::before を薄い線にします。
 * 訓練詳細ではヒーローと連続する濃紺ヘッダーへ固定します。
 */
body.single-ctk_course #header,
body.single-ctk_course #header.active,
body.single-ctk_course.header_fix #header,
body.single-ctk_course.header_fix_mobile #header {
  border: 0 !important;
  border-bottom: 0 !important;
  background: var(--ctk-navy) !important;
  box-shadow: none !important;
}

body.single-ctk_course #header::before {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.pc body.single-ctk_course.use_header_fix #header::after,
.pc body.single-ctk_course.use_header_fix #header:hover::after,
.pc body.single-ctk_course.header_fix #header::after,
.mobile body.single-ctk_course.use_mobile_header_fix #header::after,
.mobile body.single-ctk_course.use_mobile_header_fix #header:hover::after,
.mobile body.single-ctk_course.header_fix_mobile #header::after {
  border: 0 !important;
  background: var(--ctk-navy) !important;
  box-shadow: none !important;
}

body.single-ctk_course #global_menu,
body.single-ctk_course #global_menu > ul {
  background: transparent !important;
}

body.single-ctk_course #header #global_menu > ul > li > a,
body.single-ctk_course #header.active #global_menu > ul > li > a,
body.single-ctk_course.header_fix #global_menu > ul > li > a {
  color: #fff !important;
}

body.single-ctk_course #header #global_menu > ul > li > a:hover,
body.single-ctk_course #header #global_menu > ul > li.current-menu-item > a,
body.single-ctk_course #header #global_menu > ul > li.active > a {
  color: var(--ctk-orange) !important;
}

body.single-ctk_course #header_search_button::before,
body.single-ctk_course #header.active #header_search_button::before {
  color: #fff !important;
  background: transparent !important;
}

body.single-ctk_course #global_menu_button span,
body.single-ctk_course #header.active #global_menu_button span {
  background: #fff !important;
}

body.single-ctk_course .ctk-course-hero {
  margin-top: 0 !important;
  border-top: 0 !important;
}

/* CF7・親テーマ側の装飾をリセットし、フォーム外枠を一重にする */
.ctk-entry-form,
.ctk-entry-form .wpcf7,
.ctk-entry-form .wpcf7 form {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.ctk-entry-form .ctk-cf7-form {
  display: grid;
  gap: 28px;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

/* 日程選択欄はPC・スマホとも縦積みにし、長い科名でもはみ出さない */
.ctk-entry-form .ctk-cf7-row--session {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 22px 24px;
  overflow: hidden;
  box-sizing: border-box;
}

.ctk-entry-form .ctk-cf7-row--session > label,
.ctk-entry-form .ctk-cf7-row--session > .wpcf7-form-control-wrap,
.ctk-entry-form .ctk-cf7-row--session > .ctk-cf7-note {
  grid-column: 1;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin-right: 0;
  margin-left: 0;
}

.ctk-entry-form .ctk-cf7-row--session > .ctk-cf7-note {
  margin-top: 3px;
  padding-top: 13px;
  border-top: 1px solid rgba(245, 130, 32, .17);
}

.ctk-entry-form select[name="your-session"] {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  height: 54px;
  margin: 0 !important;
  padding-right: 42px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box !important;
}

/* フォーム本体の左右に不要な二重線を出さない */
.ctk-entry-form .wpcf7-form-control-wrap,
.ctk-entry-form .ctk-cf7-row,
.ctk-entry-form .wpcf7-form-control-wrap::before,
.ctk-entry-form .wpcf7-form-control-wrap::after,
.ctk-entry-form .ctk-cf7-row::before,
.ctk-entry-form .ctk-cf7-row::after {
  border: 0;
  outline: 0;
  box-shadow: none;
}

@media screen and (max-width: 700px) {
  .ctk-entry-form .ctk-cf7-form {
    gap: 24px;
    padding: 0;
  }

  .ctk-entry-form .ctk-cf7-row--session {
    padding: 18px 16px;
  }
}



/* =========================================================
   v0.9.3 必須ラベル横並び・コース未決定／予告表示対応
========================================================= */

/* CF7の必須ラベルは項目名の横へ配置 */
.ctk-entry-form .ctk-cf7-row > label,
.ctk-entry-form .ctk-cf7-label {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  width: fit-content;
  max-width: 100%;
}

.ctk-entry-form .ctk-cf7-row > label .ctk-required,
.ctk-entry-form .ctk-cf7-label .ctk-required {
  flex: 0 0 auto;
  margin: 0;
}

/* 開講月とコース種別を、情報量が少ない段階でも見やすく表示 */
.ctk-course-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px 14px;
  margin: 0 0 10px;
}

.ctk-course-card__opening {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 11px;
  border-radius: 999px;
  color: #fff;
  background: var(--ctk-orange);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
}

.ctk-course-card__meta .ctk-course-card__type {
  margin: 0;
}

/* 説明会が未定のカードは、下端に十分な余白を確保 */
.ctk-course-card--no-sessions .ctk-course-card__body {
  padding-bottom: 42px;
}

.ctk-course-card--minimal .ctk-course-card__course-head {
  align-items: center;
}

/* 基本情報が1～3項目だけでも空き枠を作らない */
.ctk-schedule--count-1 > div {
  grid-column: 1 / -1;
}

.ctk-schedule--count-3 > div:last-child {
  grid-column: 1 / -1;
}

/* コースが未決定の期間に表示する案内 */
.ctk-course-empty {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 34px 38px;
  border: 1px solid rgba(245, 130, 32, .34);
  border-radius: 12px;
  background: linear-gradient(135deg, #fffaf5 0%, #fff 72%);
  box-shadow: 0 16px 38px rgba(17, 20, 46, .06);
}

.ctk-course-empty__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  background: var(--ctk-orange);
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.ctk-course-empty h3 {
  margin: 0;
  color: var(--ctk-ink);
  font-size: clamp(21px, 2.5vw, 28px);
  line-height: 1.55;
}

.ctk-course-empty p {
  margin: 10px 0 0;
  color: var(--ctk-text);
  font-size: 14px;
  line-height: 1.9;
}

.ctk-course-empty .ctk-button {
  min-width: 210px;
}

@media screen and (max-width: 750px) {
  .ctk-course-card--no-sessions .ctk-course-card__body {
    padding-bottom: 28px;
  }

  .ctk-course-empty {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 22px;
    text-align: center;
  }

  .ctk-course-empty__icon {
    margin: 0 auto;
  }

  .ctk-course-empty .ctk-button {
    width: 100%;
    min-width: 0;
  }

  .ctk-course-card__meta {
    gap: 8px 10px;
  }
}


/* =========================================================
   v0.9.7 訓練詳細：ヘッダー右側の募集案内カード
========================================================= */
@media screen and (min-width: 1101px) {
  .ctk-course-hero__inner {
    grid-template-columns: minmax(0, 1fr) 405px;
    gap: 50px;
  }
}


/* =========================================================
   v0.9.10 訓練詳細：申込ボタンの段落ちのみ調整
========================================================= */
.ctk-course-hero__action {
  box-sizing: border-box;
  width: 100%;
  padding: 28px 22px 24px;
}
.ctk-course-hero__action > p strong {
  white-space: nowrap;
  letter-spacing: -0.01em;
}


.ctk-course-hero__action .ctk-button {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  min-height: 58px;
  padding: 13px 12px;
  gap: 8px;
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
  word-break: keep-all;
  flex-wrap: nowrap;
}

.ctk-course-hero__action .ctk-button::after {
  flex: 0 0 auto;
  margin-left: 2px;
}

@media screen and (max-width: 1100px) and (min-width: 901px) {
  .ctk-course-hero__inner {
    grid-template-columns: minmax(0, 1fr) 365px;
    gap: 36px;
  }
}

@media screen and (max-width: 620px) {
  .ctk-course-hero__action {
    padding: 22px 20px 20px;
  }

  .ctk-course-hero__action .ctk-button {
    min-height: 56px;
    padding-inline: 10px;
    font-size: 13px;
  }
}


/* =========================================================
   v0.9.12 説明会申込：送信完了モーダル
========================================================= */
body.ctk-entry-modal-open {
  overflow: hidden;
}

body.ctk-cf7-success-modal-used .ctk-entry-form form.sent .wpcf7-response-output {
  display: none !important;
}

.ctk-entry-success-modal[hidden] {
  display: none !important;
}

.ctk-entry-success-modal {
  position: fixed;
  z-index: 100000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  box-sizing: border-box;
}

.ctk-entry-success-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 24, .78);
  backdrop-filter: blur(5px);
}

.ctk-entry-success-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 46px 48px 40px;
  border: 1px solid rgba(245, 130, 32, .34);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0, rgba(245, 130, 32, .14), transparent 34%),
    #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .34);
  color: #202437;
  text-align: center;
  box-sizing: border-box;
}

.ctk-entry-success-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #f2f3f6;
  color: #2b3043;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.ctk-entry-success-modal__close:hover,
.ctk-entry-success-modal__close:focus {
  background: #e7e9ef;
  outline: 2px solid rgba(245, 130, 32, .42);
  outline-offset: 2px;
}

.ctk-entry-success-modal__label {
  margin: 0 0 12px;
  color: var(--ctk-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
}

.ctk-entry-success-modal__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--ctk-orange);
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(245, 130, 32, .28);
}

.ctk-entry-success-modal h2 {
  margin: 0;
  color: #15192e;
  font-size: clamp(25px, 4vw, 34px);
  line-height: 1.4;
}

.ctk-entry-success-modal__lead {
  margin: 10px 0 24px;
  color: #555c6d;
  font-size: 15px;
  line-height: 1.8;
}

.ctk-entry-success-modal__session {
  margin: 0 0 22px;
  padding: 20px 22px;
  border: 1px solid rgba(245, 130, 32, .32);
  border-left: 4px solid var(--ctk-orange);
  border-radius: 10px;
  background: #fff8f1;
  text-align: left;
}

.ctk-entry-success-modal__session-label {
  margin: 0 0 9px;
  color: #a75913;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .07em;
}

.ctk-entry-success-modal__session-date {
  margin: 0;
  color: #171b30;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.5;
}

.ctk-entry-success-modal__session-course {
  margin: 5px 0 0;
  color: #303649;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.ctk-entry-success-modal__session-place {
  margin: 7px 0 0;
  color: #656b7b;
  font-size: 13px;
  line-height: 1.7;
}

.ctk-entry-success-modal__mail {
  margin: 0 0 17px;
  padding: 18px 20px;
  border-radius: 10px;
  background: #eef1f8;
  text-align: left;
}

.ctk-entry-success-modal__mail p {
  margin: 0;
  color: #343a4e;
  font-size: 14px;
  line-height: 1.8;
}

.ctk-entry-success-modal__mail p + p {
  margin-top: 5px;
}

.ctk-entry-success-modal__notice {
  margin: 0;
  color: #666c7b;
  font-size: 13px;
  line-height: 1.85;
  text-align: left;
}

.ctk-entry-success-modal__notice a {
  color: #20263b;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ctk-entry-success-modal__button {
  min-width: 190px;
  min-height: 52px;
  margin-top: 25px;
  padding: 12px 30px;
  border: 0;
  border-radius: 7px;
  background: var(--ctk-orange);
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  transition: background .2s ease, transform .2s ease;
}

.ctk-entry-success-modal__button:hover,
.ctk-entry-success-modal__button:focus {
  background: var(--ctk-orange-dark);
  transform: translateY(-1px);
  outline: 2px solid rgba(245, 130, 32, .35);
  outline-offset: 3px;
}

@media (max-width: 620px) {
  .ctk-entry-success-modal {
    align-items: end;
    padding: 14px;
  }

  .ctk-entry-success-modal__dialog {
    width: 100%;
    max-height: calc(100dvh - 28px);
    padding: 38px 20px 26px;
    border-radius: 16px 16px 12px 12px;
  }

  .ctk-entry-success-modal__close {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    font-size: 23px;
  }

  .ctk-entry-success-modal__label {
    font-size: 11px;
  }

  .ctk-entry-success-modal__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 14px;
    font-size: 24px;
  }

  .ctk-entry-success-modal h2 {
    font-size: 25px;
  }

  .ctk-entry-success-modal__lead {
    margin-bottom: 19px;
    font-size: 14px;
  }

  .ctk-entry-success-modal__session {
    padding: 16px 15px;
  }

  .ctk-entry-success-modal__session-date {
    font-size: 18px;
  }

  .ctk-entry-success-modal__mail {
    padding: 15px;
  }

  .ctk-entry-success-modal__button {
    width: 100%;
    margin-top: 20px;
  }
}


/* =========================================================
   v0.9.14 訓練詳細：スマートフォンの募集案内カード幅調整
========================================================= */
.ctk-course-hero__action,
.ctk-course-hero__recruiting,
.ctk-course-hero__period {
  min-width: 0;
  max-width: 100%;
}

.ctk-course-hero__period {
  display: flex !important;
  align-items: baseline;
  justify-content: flex-start;
  gap: .2em;
  white-space: nowrap;
}

.ctk-course-hero__period-start,
.ctk-course-hero__period-end {
  display: inline-flex;
  align-items: baseline;
  min-width: 0;
}

.ctk-course-hero__period-mark {
  margin-right: .2em;
  color: var(--ctk-orange);
  font-weight: 800;
}

@media screen and (max-width: 620px) {
  .ctk-course-hero__inner {
    min-width: 0;
  }

  .ctk-course-hero__action {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    overflow: hidden;
  }

  .ctk-course-hero__period {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 2px;
    white-space: normal;
    text-align: center;
  }

  .ctk-course-hero__period-start,
  .ctk-course-hero__period-end {
    display: flex;
    justify-content: center;
    width: 100%;
    white-space: nowrap;
  }

  .ctk-course-hero__action .ctk-button {
    max-width: 100%;
  }
}


/* =========================================================
   v0.9.15 訓練詳細：募集期間の文字サイズ復元
========================================================= */
.ctk-course-hero__recruiting > strong.ctk-course-hero__period,
.ctk-course-hero__recruiting .ctk-course-hero__period-start,
.ctk-course-hero__recruiting .ctk-course-hero__period-end,
.ctk-course-hero__recruiting .ctk-course-hero__period-mark {
  margin-bottom: 0 !important;
  font-size: 17px !important;
  line-height: 1.65 !important;
  font-weight: 700;
  letter-spacing: 0 !important;
}

.ctk-course-hero__recruiting .ctk-course-hero__period-start,
.ctk-course-hero__recruiting .ctk-course-hero__period-end {
  color: #fff !important;
}

.ctk-course-hero__recruiting .ctk-course-hero__period-mark {
  color: var(--ctk-orange) !important;
}

/* =========================================================
   v0.9.17 共通ヘッダー：スマートフォンのメニューアイコン色
   親テーマの single ページ用黒色指定より詳細度を高くし、
   訓練サイトの濃紺ヘッダー上では常に白色で表示します。
========================================================= */
html body.kunren-custom-page #header #global_menu_button span,
html body.kunren-custom-page #header.active #global_menu_button span,
html body.kunren-custom-page.header_fix_mobile #header #global_menu_button span,
html body.kunren-custom-page.single #header #global_menu_button span,
html body.kunren-custom-page.single-ctk_course #header #global_menu_button span {
  background: #ffffff !important;
}

/* =========================================================
   v0.9.18 スマートフォン：ページ上部へ戻るボタン
   PC用の帯状ボタン（#return_top2）は変更せず、
   スマートフォン用の右下ボタン（#return_top）のみサイトカラーへ統一します。
========================================================= */
@media screen and (max-width: 750px) {
  #return_top a {
    background: #f58220 !important;
    color: #ffffff !important;
    box-shadow: 0 8px 22px rgba(13, 15, 32, 0.22);
  }

  #return_top a::before {
    color: #ffffff !important;
  }

  #return_top a:hover,
  #return_top a:focus,
  #return_top a:active {
    background: #d96f10 !important;
    color: #ffffff !important;
  }
}


/* =========================================================
   v0.9.19 スマートフォン：追従フッターバーと上部へ戻るボタン
   ブラウザUIとCTAが同化しないよう、濃紺の台座にオレンジの
   ボタンを載せる構成へ変更します。申込フォームページでは、
   同じページへ戻る追従CTAを表示しません。
========================================================= */
@media screen and (max-width: 750px) {
  body.show_footer_bar #dp-footer-bar {
    box-sizing: border-box;
    height: auto !important;
    min-height: 0;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom, 0px));
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    background: #171a2f !important;
    box-shadow: 0 -8px 24px rgba(8, 10, 24, 0.24);
  }

  body.show_footer_bar #dp-footer-bar a.footer_button {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    height: 50px;
    line-height: 1.35;
    padding: 0 18px;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.20);
  }

  body.show_footer_bar #return_top {
    right: 12px;
    bottom: calc(78px + env(safe-area-inset-bottom, 0px));
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 12px, 0) !important;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  body.show_footer_bar #return_top.active {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) !important;
  }

  body.show_footer_bar #return_top a,
  body.show_footer_bar #return_top a:hover,
  body.show_footer_bar #return_top a:focus,
  body.show_footer_bar #return_top a:active {
    box-sizing: border-box;
    width: 46px;
    height: 46px;
    line-height: 46px;
    border: 2px solid #f58220;
    border-radius: 50%;
    background: #ffffff !important;
    color: #171a2f !important;
    box-shadow: 0 7px 20px rgba(8, 10, 24, 0.26);
  }

  body.show_footer_bar #return_top a::before {
    color: #171a2f !important;
  }

  body.kunren-entry-page #dp-footer-bar {
    display: none !important;
  }

  body.kunren-entry-page #return_top {
    bottom: 12px;
  }
}


/* =========================================================
   v0.9.20 説明会日程：個別日程相談
========================================================= */
.ctk-session-consultation {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 290px);
  align-items: center;
  gap: 30px;
  margin-top: 32px;
  padding: 28px 30px;
  border: 1px solid rgba(245, 130, 32, 0.32);
  border-left: 5px solid var(--ctk-orange);
  border-radius: 16px;
  background: linear-gradient(135deg, #fff9f3 0%, #ffffff 100%);
  box-shadow: 0 12px 30px rgba(23, 26, 47, 0.07);
}

.ctk-session-consultation__copy {
  min-width: 0;
}

.ctk-session-consultation__label {
  margin: 0 0 8px;
  color: var(--ctk-orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.ctk-session-consultation h3 {
  margin: 0;
  color: #171a2f;
  font-size: clamp(20px, 2.2vw, 25px);
  line-height: 1.45;
}

.ctk-session-consultation__text {
  margin: 12px 0 0;
  color: #5c6170;
  font-size: 15px;
  line-height: 1.85;
}

.ctk-session-consultation__action {
  min-width: 0;
  text-align: center;
}

.ctk-session-consultation__action > a,
.ctk-session-consultation__phone {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 76px;
  padding: 12px 18px;
  border: 1px solid var(--ctk-orange);
  border-radius: 12px;
  background: var(--ctk-orange);
  color: #ffffff !important;
  text-decoration: none;
  box-shadow: 0 7px 18px rgba(245, 130, 32, 0.18);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.ctk-session-consultation__action > a:hover,
.ctk-session-consultation__action > a:focus {
  border-color: #d96f10;
  background: #d96f10;
  color: #ffffff !important;
  transform: translateY(-1px);
}

.ctk-session-consultation__action span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.ctk-session-consultation__action strong {
  margin-top: 2px;
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.ctk-session-consultation__action small {
  display: block;
  margin-top: 8px;
  color: #686d7a;
  font-size: 12px;
  line-height: 1.55;
}

.ctk-course-sessions-detail .ctk-session-consultation {
  margin-bottom: 4px;
}

@media screen and (max-width: 750px) {
  .ctk-session-consultation {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    margin-top: 24px;
    padding: 23px 20px 21px;
    border-left-width: 4px;
    border-radius: 14px;
  }

  .ctk-session-consultation__label {
    font-size: 10px;
  }

  .ctk-session-consultation h3 {
    font-size: 21px;
  }

  .ctk-session-consultation__text {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.8;
  }

  .ctk-session-consultation__action > a,
  .ctk-session-consultation__phone {
    min-height: 68px;
  }

  .ctk-session-consultation__action strong {
    font-size: 20px;
  }
}


/* =========================================================
   v0.9.21 トップページ：個別日程相談（簡易表示）
========================================================= */
.ctk-course-sessions .ctk-session-consultation--compact {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  margin-top: 18px;
  padding: 17px 18px;
  border-left-width: 4px;
  border-radius: 12px;
  box-shadow: none;
}

.ctk-course-sessions .ctk-session-consultation--compact h3 {
  font-size: 17px;
  line-height: 1.45;
}

.ctk-course-sessions .ctk-session-consultation--compact .ctk-session-consultation__text {
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.7;
}

.ctk-course-sessions .ctk-session-consultation--compact .ctk-session-consultation__action {
  width: 190px;
}

.ctk-course-sessions .ctk-session-consultation--compact .ctk-session-consultation__action > a,
.ctk-course-sessions .ctk-session-consultation--compact .ctk-session-consultation__phone {
  min-height: 58px;
  padding: 8px 14px;
  border-radius: 10px;
}

.ctk-course-sessions .ctk-session-consultation--compact .ctk-session-consultation__action span {
  font-size: 11px;
}

.ctk-course-sessions .ctk-session-consultation--compact .ctk-session-consultation__action strong {
  font-size: 17px;
}

.ctk-course-sessions .ctk-session-consultation--compact .ctk-session-consultation__action small {
  margin-top: 5px;
  font-size: 11px;
}

@media screen and (max-width: 750px) {
  .ctk-course-sessions .ctk-session-consultation--compact {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    margin-top: 16px;
    padding: 17px 16px 16px;
  }

  .ctk-course-sessions .ctk-session-consultation--compact h3 {
    font-size: 16px;
  }

  .ctk-course-sessions .ctk-session-consultation--compact .ctk-session-consultation__text {
    font-size: 13px;
  }

  .ctk-course-sessions .ctk-session-consultation--compact .ctk-session-consultation__action {
    width: 100%;
  }

  .ctk-course-sessions .ctk-session-consultation--compact .ctk-session-consultation__action > a,
  .ctk-course-sessions .ctk-session-consultation--compact .ctk-session-consultation__phone {
    min-height: 56px;
  }
}

/* =========================================================
   v0.9.24 訓練詳細：日付と曜日の分離防止
========================================================= */
.ctk-course-fact-range {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: .18em;
  row-gap: 0;
}

.ctk-course-fact-range__start,
.ctk-course-fact-range__end {
  display: inline-block;
  white-space: nowrap;
}

/* =========================================================
   v0.9.24 訓練に関するお知らせ一覧
========================================================= */
.ctk-news-archive-page {
  background: #f5f6f8;
}

.ctk-news-archive {
  padding: 72px 0 110px;
}

.ctk-news-category-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 36px;
}

.ctk-news-category-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 20px;
  border: 1px solid #dfe3e9;
  border-radius: 999px;
  color: #505666;
  background: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease, background-color .2s ease;
}

.ctk-news-category-nav a:hover,
.ctk-news-category-nav a:focus,
.ctk-news-category-nav a.is-current {
  border-color: var(--ctk-orange);
  color: #ffffff;
  background: var(--ctk-orange);
}

.ctk-news-list {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}

.ctk-news-card {
  margin: 0;
}

.ctk-news-card__link {
  position: relative;
  display: grid;
  grid-template-columns: 185px minmax(0, 1fr) 34px;
  gap: 28px;
  align-items: center;
  min-height: 94px;
  padding: 22px 28px;
  border: 1px solid #e1e5eb;
  border-radius: 15px;
  color: var(--ctk-ink);
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(23, 26, 47, .045);
  text-decoration: none;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.ctk-news-card__link:hover,
.ctk-news-card__link:focus {
  border-color: rgba(245, 130, 32, .55);
  color: var(--ctk-ink);
  box-shadow: 0 14px 34px rgba(23, 26, 47, .09);
  transform: translateY(-2px);
}

.ctk-news-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}

.ctk-news-card__meta time {
  color: #747b89;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
}

.ctk-news-card__meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 25px;
  padding: 4px 11px;
  border-radius: 999px;
  color: #b95700;
  background: #fff0e3;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
}

.ctk-news-card h2 {
  margin: 0;
  color: var(--ctk-ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
}

.ctk-news-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid #e2e5ea;
  border-radius: 50%;
  color: var(--ctk-orange-dark);
  background: #ffffff;
  font-size: 16px;
  font-weight: 700;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}

.ctk-news-card__link:hover .ctk-news-card__arrow,
.ctk-news-card__link:focus .ctk-news-card__arrow {
  border-color: var(--ctk-orange);
  color: #ffffff;
  background: var(--ctk-orange);
}

.ctk-news-pagination {
  margin: 42px 0 0;
}

.ctk-news-pagination ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ctk-news-pagination .page-numbers li {
  margin: 0;
}

.ctk-news-pagination a.page-numbers,
.ctk-news-pagination span.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 7px 12px;
  border: 1px solid #dfe3e9;
  border-radius: 9px;
  color: #505666;
  background: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.ctk-news-pagination span.page-numbers.current,
.ctk-news-pagination a.page-numbers:hover,
.ctk-news-pagination a.page-numbers:focus {
  border-color: var(--ctk-orange);
  color: #ffffff;
  background: var(--ctk-orange);
}

.ctk-news-empty {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 30px;
  border: 1px solid #e1e5eb;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(23, 26, 47, .055);
  text-align: center;
}

.ctk-news-empty__label {
  margin: 0 0 11px;
  color: var(--ctk-orange-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
}

.ctk-news-empty h2 {
  margin: 0;
  color: var(--ctk-ink);
  font-size: clamp(23px, 3vw, 30px);
  line-height: 1.5;
}

.ctk-news-empty > p:last-child {
  margin: 16px 0 0;
  color: var(--ctk-text);
  font-size: 15px;
  line-height: 1.9;
}

@media screen and (max-width: 750px) {
  .ctk-news-archive {
    padding: 48px 0 76px;
  }

  .ctk-news-category-nav {
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 26px;
  }

  .ctk-news-category-nav a {
    min-height: 38px;
    padding: 7px 15px;
    font-size: 12px;
  }

  .ctk-news-list {
    gap: 11px;
  }

  .ctk-news-card__link {
    display: block;
    min-height: 0;
    padding: 21px 54px 21px 20px;
    border-radius: 12px;
  }

  .ctk-news-card__meta {
    margin-bottom: 10px;
  }

  .ctk-news-card h2 {
    font-size: 15px;
    line-height: 1.75;
  }

  .ctk-news-card__arrow {
    position: absolute;
    top: 50%;
    right: 15px;
    width: 30px;
    height: 30px;
    transform: translateY(-50%);
  }

  .ctk-news-card__link:hover,
  .ctk-news-card__link:focus {
    transform: none;
  }

  .ctk-news-empty {
    padding: 48px 20px;
  }
}

/* =========================================================
   v0.9.25 訓練に関するお知らせ詳細
========================================================= */
.ctk-news-single-page {
  background: #f5f6f8;
}

.ctk-news-single-hero {
  padding-bottom: 76px;
}

.ctk-news-single-hero .ctk-container--narrow {
  margin-inline: auto;
}

.ctk-news-single-hero h1 {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(29px, 4vw, 43px);
  overflow-wrap: anywhere;
}

.ctk-news-single-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.ctk-news-single-hero__meta time {
  color: rgba(255, 255, 255, .72);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
}

.ctk-news-single-hero__meta a {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 4px 12px;
  border: 1px solid rgba(245, 130, 32, .48);
  border-radius: 999px;
  color: #ffae68;
  background: rgba(245, 130, 32, .12);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
}

.ctk-news-single {
  padding: 72px 0 96px;
}

.ctk-news-article {
  margin: 0;
  border: 1px solid #e1e5eb;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(23, 26, 47, .06);
  overflow: hidden;
}

.ctk-news-article__image {
  margin: 0;
  background: #eef0f4;
}

.ctk-news-article__image img {
  display: block;
  width: 100%;
  height: auto;
}

.ctk-news-article__content {
  padding: 54px 60px 60px;
  color: var(--ctk-text);
  font-size: 15px;
  line-height: 2.05;
}

.ctk-news-article__content > *:first-child {
  margin-top: 0;
}

.ctk-news-article__content > *:last-child {
  margin-bottom: 0;
}

.ctk-news-article__content p {
  margin: 0 0 1.8em;
  line-height: 2.05;
}

.ctk-news-article__content h2,
.ctk-news-article__content h3,
.ctk-news-article__content h4 {
  color: var(--ctk-ink);
  font-weight: 700;
}

.ctk-news-article__content h2 {
  position: relative;
  margin: 2.7em 0 1.15em;
  padding: 0 0 13px 18px;
  border-bottom: 1px solid #e5e7ec;
  font-size: 24px;
  line-height: 1.55;
}

.ctk-news-article__content h2::before {
  content: "";
  position: absolute;
  top: .15em;
  bottom: .55em;
  left: 0;
  width: 4px;
  border-radius: 4px;
  background: var(--ctk-orange);
}

.ctk-news-article__content h3 {
  margin: 2.25em 0 1em;
  padding-left: 14px;
  border-left: 3px solid var(--ctk-orange);
  font-size: 20px;
  line-height: 1.6;
}

.ctk-news-article__content h4 {
  margin: 2em 0 .8em;
  font-size: 17px;
  line-height: 1.7;
}

.ctk-news-article__content a {
  color: var(--ctk-orange-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ctk-news-article__content ul,
.ctk-news-article__content ol {
  margin: 0 0 1.8em;
  padding-left: 1.6em;
}

.ctk-news-article__content ul {
  list-style: disc outside;
}

.ctk-news-article__content ol {
  list-style: decimal outside;
}

.ctk-news-article__content li {
  margin: .42em 0;
  line-height: 1.9;
}

.ctk-news-article__content li::marker {
  color: var(--ctk-orange);
  font-weight: 700;
}

.ctk-news-article__content blockquote {
  margin: 2em 0;
  padding: 24px 28px;
  border: 0;
  border-left: 4px solid var(--ctk-orange);
  border-radius: 0 10px 10px 0;
  color: #555b6a;
  background: #f7f8fa;
  box-shadow: none;
}

.ctk-news-article__content blockquote::before,
.ctk-news-article__content blockquote::after {
  display: none;
}

.ctk-news-article__content table {
  width: 100%;
  margin: 2em 0;
  border-collapse: collapse;
}

.ctk-news-article__content th,
.ctk-news-article__content td {
  padding: 15px 18px;
  border: 1px solid #dfe3e9;
  line-height: 1.8;
}

.ctk-news-article__content th {
  color: var(--ctk-ink);
  background: #f6f7f9;
  font-weight: 700;
}

.ctk-news-page-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 42px;
}

.ctk-news-post-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.ctk-news-post-nav__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 112px;
  padding: 22px 26px;
  border: 1px solid #e1e5eb;
  border-radius: 13px;
  color: var(--ctk-ink);
  background: #ffffff;
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.ctk-news-post-nav__item:hover,
.ctk-news-post-nav__item:focus {
  border-color: rgba(245, 130, 32, .55);
  color: var(--ctk-ink);
  box-shadow: 0 10px 26px rgba(23, 26, 47, .07);
  transform: translateY(-2px);
}

.ctk-news-post-nav__item--prev {
  padding-left: 48px;
}

.ctk-news-post-nav__item--next {
  padding-right: 48px;
  text-align: right;
}

.ctk-news-post-nav__item::before {
  position: absolute;
  top: 50%;
  color: var(--ctk-orange-dark);
  font-size: 19px;
  font-weight: 700;
  transform: translateY(-50%);
}

.ctk-news-post-nav__item--prev::before {
  content: "←";
  left: 22px;
}

.ctk-news-post-nav__item--next::before {
  content: "→";
  right: 22px;
}

.ctk-news-post-nav__item span {
  margin-bottom: 6px;
  color: #777d8a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
}

.ctk-news-post-nav__item strong {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}

.ctk-news-single__back {
  margin-top: 36px;
  text-align: center;
}

.ctk-news-related {
  padding: 82px 0 105px;
  border-top: 1px solid #e3e6eb;
  background: #ffffff;
}

.ctk-news-related .ctk-section-heading {
  margin-bottom: 34px;
}

.ctk-news-related .ctk-news-card h3 {
  margin: 0;
  color: var(--ctk-ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
}

@media screen and (max-width: 750px) {
  .ctk-news-single-hero {
    padding-bottom: 52px;
  }

  .ctk-news-single-hero h1 {
    font-size: 27px;
    line-height: 1.55;
  }

  .ctk-news-single-hero__meta {
    margin-top: 15px;
  }

  .ctk-news-single {
    padding: 44px 0 72px;
  }

  .ctk-news-article {
    border-radius: 13px;
  }

  .ctk-news-article__content {
    padding: 32px 22px 38px;
    font-size: 14px;
  }

  .ctk-news-article__content h2 {
    margin-top: 2.3em;
    padding-left: 14px;
    font-size: 20px;
  }

  .ctk-news-article__content h3 {
    font-size: 17px;
  }

  .ctk-news-article__content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .ctk-news-post-nav {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .ctk-news-post-nav__empty {
    display: none;
  }

  .ctk-news-post-nav__item {
    min-height: 92px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .ctk-news-post-nav__item:hover,
  .ctk-news-post-nav__item:focus {
    transform: none;
  }

  .ctk-news-related {
    padding: 62px 0 76px;
  }

  .ctk-news-related .ctk-news-card h3 {
    font-size: 15px;
    line-height: 1.75;
  }
}

/* =========================================================
   v0.9.26 お知らせ詳細ページのヘッダー統一
   親テーマの single 投稿用白背景・境界線を無効化し、
   訓練詳細ページと同じ濃紺ヘッダーへ揃えます。
========================================================= */
body.single-news #header,
body.single-news #header.active,
body.single-news.header_fix #header,
body.single-news.header_fix_mobile #header {
  border: 0 !important;
  border-bottom: 0 !important;
  background: var(--ctk-navy) !important;
  box-shadow: none !important;
}

body.single-news #header::before {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.pc body.single-news.use_header_fix #header::after,
.pc body.single-news.use_header_fix #header:hover::after,
.pc body.single-news.header_fix #header::after,
.mobile body.single-news.use_mobile_header_fix #header::after,
.mobile body.single-news.use_mobile_header_fix #header:hover::after,
.mobile body.single-news.header_fix_mobile #header::after {
  border: 0 !important;
  background: var(--ctk-navy) !important;
  box-shadow: none !important;
}

body.single-news #global_menu,
body.single-news #global_menu > ul {
  background: transparent !important;
}

body.single-news #header #global_menu > ul > li > a,
body.single-news #header.active #global_menu > ul > li > a,
body.single-news.header_fix #global_menu > ul > li > a {
  color: #fff !important;
}

body.single-news #header #global_menu > ul > li > a:hover,
body.single-news #header #global_menu > ul > li.current-menu-item > a,
body.single-news #header #global_menu > ul > li.active > a {
  color: var(--ctk-orange) !important;
}

body.single-news #header_search_button::before,
body.single-news #header.active #header_search_button::before {
  color: #fff !important;
  background: transparent !important;
}

body.single-news #global_menu_button span,
body.single-news #header.active #global_menu_button span,
body.single-news.header_fix_mobile #global_menu_button span {
  background: #fff !important;
}

body.single-news .ctk-news-single-hero {
  margin-top: 0 !important;
  border-top: 0 !important;
}


/* =========================================================
   v0.9.27 白背景上のリンクボタン視認性調整
   FAQ下の一覧リンク、Googleマップ、説明会参加者の声リンクを
   濃紺の共通ボタンへ統一します。
========================================================= */
.ctk-section--faq .ctk-button--dark,
.ctk-section--faq .ctk-button--dark:link,
.ctk-section--faq .ctk-button--dark:visited,
.ctk-access-info-card .ctk-button--dark,
.ctk-access-info-card .ctk-button--dark:link,
.ctk-access-info-card .ctk-button--dark:visited,
.ctk-session-voices .ctk-button--dark,
.ctk-session-voices .ctk-button--dark:link,
.ctk-session-voices .ctk-button--dark:visited {
  border-color: var(--ctk-navy) !important;
  color: #ffffff !important;
  background: var(--ctk-navy) !important;
  box-shadow: 0 8px 20px rgba(23, 26, 47, .12);
  text-decoration: none !important;
}

.ctk-section--faq .ctk-button--dark:hover,
.ctk-section--faq .ctk-button--dark:focus,
.ctk-access-info-card .ctk-button--dark:hover,
.ctk-access-info-card .ctk-button--dark:focus,
.ctk-session-voices .ctk-button--dark:hover,
.ctk-session-voices .ctk-button--dark:focus {
  border-color: #292d4d !important;
  color: #ffffff !important;
  background: #292d4d !important;
}

/* =========================================================
   v0.9.31 ヘッダーナビ：現在地表示と申込CTAの文字色
   通常メニューの現在地はサイトカラーのオレンジ、
   申込CTAは現在地でも白文字＋オレンジ背景を維持します。
========================================================= */
@media screen and (min-width: 1151px) {
  body.kunren-custom-front #global_menu > ul > li:not(.costech-nav-cta).current-menu-item > a,
  body.kunren-custom-front #global_menu > ul > li:not(.costech-nav-cta).current_page_item > a,
  body.kunren-custom-front #global_menu > ul > li:not(.costech-nav-cta).current-menu-parent > a,
  body.kunren-custom-front #global_menu > ul > li:not(.costech-nav-cta).current-menu-ancestor > a,
  body.kunren-custom-front #global_menu > ul > li:not(.costech-nav-cta).active > a,
  body.kunren-custom-front #header.active #global_menu > ul > li:not(.costech-nav-cta).current-menu-item > a,
  body.kunren-custom-front #header.active #global_menu > ul > li:not(.costech-nav-cta).current_page_item > a,
  body.kunren-custom-front.header_fix #global_menu > ul > li:not(.costech-nav-cta).current-menu-item > a,
  body.kunren-custom-front.header_fix #global_menu > ul > li:not(.costech-nav-cta).current_page_item > a {
    color: #f58220 !important;
  }

  body.kunren-custom-front #global_menu > ul > li.costech-nav-cta > a,
  body.kunren-custom-front #global_menu > ul > li.costech-nav-cta.current-menu-item > a,
  body.kunren-custom-front #global_menu > ul > li.costech-nav-cta.current_page_item > a,
  body.kunren-custom-front #global_menu > ul > li.costech-nav-cta.current-menu-parent > a,
  body.kunren-custom-front #global_menu > ul > li.costech-nav-cta.current-menu-ancestor > a,
  body.kunren-custom-front #global_menu > ul > li.costech-nav-cta.active > a,
  body.kunren-custom-front #header.active #global_menu > ul > li.costech-nav-cta > a,
  body.kunren-custom-front.header_fix #global_menu > ul > li.costech-nav-cta > a {
    background: #f58220 !important;
    color: #ffffff !important;
  }

  body.kunren-custom-front #global_menu > ul > li.costech-nav-cta > a:hover,
  body.kunren-custom-front #global_menu > ul > li.costech-nav-cta > a:focus,
  body.kunren-custom-front #global_menu > ul > li.costech-nav-cta.current-menu-item > a:hover,
  body.kunren-custom-front #global_menu > ul > li.costech-nav-cta.current-menu-item > a:focus,
  body.kunren-custom-front #global_menu > ul > li.costech-nav-cta.current_page_item > a:hover,
  body.kunren-custom-front #global_menu > ul > li.costech-nav-cta.current_page_item > a:focus {
    background: #d96f10 !important;
    color: #ffffff !important;
  }
}

#mobile_menu li.costech-nav-cta > a,
#mobile_menu li.costech-nav-cta.current-menu-item > a,
#mobile_menu li.costech-nav-cta.current_page_item > a,
#mobile_menu li.costech-nav-cta.active > a {
  background: #f58220 !important;
  color: #ffffff !important;
}

#mobile_menu li.costech-nav-cta > a:hover,
#mobile_menu li.costech-nav-cta > a:focus,
#mobile_menu li.costech-nav-cta.current-menu-item > a:hover,
#mobile_menu li.costech-nav-cta.current-menu-item > a:focus,
#mobile_menu li.costech-nav-cta.current_page_item > a:hover,
#mobile_menu li.costech-nav-cta.current_page_item > a:focus {
  background: #d96f10 !important;
  color: #ffffff !important;
}
