

.tk { background: var(--bg-school-info); }
.tk-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-112);
  padding: 120px 0;
}
.tk-headgroup { display: flex; flex-direction: column; gap: var(--space-16); }
.tk-eyebrow {
  font-family: var(--font-jp); font-weight: var(--fw-bold);
  font-size: 26px; line-height: 1.4; color: #1e293b; text-align: center;
}

.tk-exam { display: flex; flex-direction: column; gap: var(--space-48); align-items: center; }
.tk-exam__date {
  display: flex; gap: var(--space-48); align-items: baseline; justify-content: center;
  font-family: var(--font-jp); font-weight: var(--fw-bold); font-size: 26px; line-height: 1.4;
}
.tk-exam__date-label { color: var(--c-brand-300, #50587d); }
.tk-exam__date-val { color: #131936; }
.tk-exam__card {
  width: 922px; max-width: 100%;
  background: #f6f7fb;
  border: 1px solid var(--c-blue-100, #c2d3ff);
  border-radius: 8px;
  padding: var(--space-24);
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-16);
}
.tk-exam__item { display: flex; gap: var(--space-24); align-items: center; white-space: nowrap; }
.tk-exam__item-label {
  font-family: var(--font-jp); font-weight: var(--fw-bold);
  font-size: 20px; line-height: 1.6; color: var(--c-brand-300, #50587d);
}
.tk-exam__item-val {
  font-family: var(--font-jp); font-weight: var(--fw-bold);
  font-size: 20px; line-height: 1.6; color: #131936;
}
.tk-exam__div { flex: 1 1 0; min-width: 8px; height: 40px; position: relative; }
.tk-exam__div::before {
  content: ""; position: absolute; left: 50%; top: 0;
  width: 1px; height: 100%; background: var(--c-brand-100);
}

.tk-selector { display: flex; gap: var(--space-24); align-items: stretch; }
.tk-selector__card {
  flex: 1 1 0; min-width: 0;
  display: flex; align-items: center; justify-content: center; gap: var(--space-24);
  background: #ffffff;
  border-radius: 8px;
  padding: var(--space-24) var(--space-16);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  text-decoration: none;
}
.tk-selector__card { transition: filter 0.2s ease, transform 0.2s ease; }
.tk-selector__card:hover { filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.16)); transform: translateY(-2px); }
@media (prefers-reduced-motion: reduce) {
  .tk-selector__card { transition: none !important; transform: none !important; }
}
.tk-selector__card--green { border: 1.5px solid var(--c-success-500, #22c55e); }
.tk-selector__card--blue { border: 1.5px solid var(--c-accent-blue); }
.tk-selector__card:focus-visible { outline: 3px solid var(--c-blue-500); outline-offset: 2px; }
.tk-selector__badge {
  flex: none; width: 64px; box-sizing: border-box;
  border-radius: 8px; padding: var(--space-16) 0;
  font-family: var(--font-jp); font-weight: var(--fw-bold);
  font-size: 16px; line-height: 1; text-align: center; color: #ffffff;
}
.tk-selector__card--green .tk-selector__badge { background: var(--c-success-500, #22c55e); }
.tk-selector__card--blue .tk-selector__badge { background: var(--c-accent-blue); }
.tk-selector__text {
  font-family: var(--font-jp); font-weight: var(--fw-bold);
  font-size: 26px; line-height: 1.4; color: #131936;
}
.tk-selector__card--green .tk-selector__text b { color: var(--c-success-500, #22c55e); }
.tk-selector__card--blue .tk-selector__text b { color: var(--c-accent-blue); }
.tk-selector__chev { flex: none; width: 16px; height: 9px; }
.tk-selector__card--green .tk-selector__chev { color: var(--c-success-500, #22c55e); }
.tk-selector__card--blue .tk-selector__chev { color: var(--c-accent-blue); }

.tk-course {
  background: #ffffff;
  padding: var(--space-32) var(--space-32) 112px;
  display: flex; flex-direction: column; gap: 88px;
  scroll-margin-top: calc(var(--header-h, 70px) + 16px);
}
.tk-course__band { width: 100%; padding: var(--space-16) 0; }
.tk-course--green .tk-course__band,
.tk-course__band--green { background: var(--c-success-500, #22c55e); }
.tk-course--blue .tk-course__band,
.tk-course__band--blue { background: var(--c-accent-blue); }
.tk-course__band-eyebrow {
  font-family: var(--font-jp); font-weight: var(--fw-bold);
  font-size: 26px; line-height: 1.4; color: #ffffff; text-align: center;
  margin-bottom: var(--space-16);
}
.tk-course__band-row { display: flex; gap: var(--space-32); align-items: center; justify-content: center; }
.tk-course__badge {
  flex: none; width: 72px; box-sizing: border-box;
  background: #ffffff; border-radius: 8px; padding: var(--space-16) 0;
  font-family: var(--font-jp); font-weight: var(--fw-bold);
  font-size: 20px; line-height: 1; text-align: center;
}
.tk-course--green .tk-course__badge,
.tk-course__badge--green { color: var(--c-success-500, #22c55e); }
.tk-course--blue .tk-course__badge,
.tk-course__badge--blue { color: var(--c-accent-blue); }
.tk-course__band-title {
  font-family: var(--font-jp); font-weight: var(--fw-bold);
  font-size: 44px; line-height: 1.4; color: #ffffff;
}
.tk-course__band-title--sm { font-size: 34px; line-height: 1.45; }
.tk-course__inner { padding-inline: 77px; display: flex; flex-direction: column; gap: 88px; }
.tk-course__inner--full { padding-inline: 0; }
.tk-course__intro { display: flex; flex-direction: column; gap: var(--space-24); text-align: center; }
.tk-course__lead {
  font-family: var(--font-jp); font-weight: var(--fw-bold);
  font-size: 26px; line-height: 1.4; color: #131936;
}
.tk-course__lead-text { font-family: var(--font-jp); font-size: 16px; line-height: var(--lh-body); color: #131936; }

.tk-block { display: flex; flex-direction: column; gap: var(--space-32); align-items: center; }
.tk-block__lead {
  font-family: var(--font-jp); font-size: 20px; line-height: 1.8; color: #131936; text-align: center;
}
.tk-block__h26 {
  font-family: var(--font-jp); font-weight: var(--fw-bold);
  font-size: 26px; line-height: 1.4; color: #1e293b; text-align: center;
}
.tk-block__h26--left { text-align: left; }
.tk-block__h34 {
  font-family: var(--font-jp); font-weight: var(--fw-bold);
  font-size: 34px; line-height: 1.45; color: #1e293b; text-align: center; width: 100%;
}
.tk-block__note { font-family: var(--font-jp); font-size: 16px; line-height: var(--lh-body); color: #1e293b; }

.tk-table {
  width: 100%; background: #f6f7fb; padding: var(--space-24);
  display: flex; flex-direction: column; gap: var(--space-8);
}
.tk-table__line { height: 1px; background: var(--c-brand-100); }
.tk-table__row { display: flex; gap: var(--space-24); align-items: flex-start; }
.tk-table__label {
  flex: none; width: 70px;
  font-family: var(--font-jp); font-weight: var(--fw-bold);
  font-size: 16px; line-height: var(--lh-body); color: var(--c-brand-300, #50587d);
}
.tk-table__label--wide { width: 210px; }
.tk-table__val { font-family: var(--font-jp); font-size: 16px; line-height: var(--lh-body); color: #131936; }
.tk-table__fee { display: flex; gap: var(--space-16); }

.tk-content { display: flex; gap: var(--space-24); align-items: stretch; justify-content: center; width: 100%; }
.tk-content__box {
  flex: 1 1 0; min-width: 0;
  display: flex; flex-direction: column; gap: var(--space-16);
}
.tk-course--green .tk-content__box { border: 1px solid var(--c-success-500, #22c55e); }
.tk-course--blue .tk-content__box { border: 1px solid var(--c-accent-blue); }
.tk-content__box-title {
  min-height: 72px; box-sizing: border-box;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: var(--space-4) var(--space-16);
  font-family: var(--font-jp); font-weight: var(--fw-bold);
  font-size: 20px; line-height: 1.6; color: #ffffff; text-align: center;
}
.tk-course--green .tk-content__box-title { background: var(--c-success-500, #22c55e); }
.tk-course--blue .tk-content__box-title { background: var(--c-accent-blue); }
.tk-content__list {
  list-style: none; margin: 0; padding: 0 var(--space-24) var(--space-24);
  display: flex; flex-direction: column; gap: var(--space-16);
}
.tk-content__list li {
  position: relative; padding-left: var(--space-24);
  font-family: var(--font-jp); font-size: 16px; line-height: 1.4; color: #131936;
}
.tk-content__list li::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 10px; height: 10px; border-radius: 5px; background: var(--c-accent-blue);
}
.tk-content__arrow { flex: none; align-self: center; display: flex; }
.tk-content__arrow .tk-flow__arrow { width: 48px; height: 100px; }
.tk-course--green .tk-content__arrow { color: var(--c-success-500, #22c55e); }
.tk-course--blue .tk-content__arrow { color: var(--c-accent-blue); }

.tk-notes { display: flex; gap: var(--space-48); justify-content: center; }
.tk-notes__col {
  margin: 0; padding-left: 0; list-style: none;
  display: flex; flex-direction: column; gap: var(--space-16);
}

.tk-notes__col li {
  font-family: var(--font-jp); font-size: 16px; line-height: 1.6; color: #131936;
  padding-left: 1em; text-indent: -1em;
}
.tk-notes__col li::before { content: "・"; }

.tk-block .table-scroll { width: 100%; max-width: 100%; }
.tk-sched { width: 100%; max-width: 1040px; border-collapse: collapse; table-layout: fixed; margin-inline: auto; }
.tk-sched col:nth-child(1) { width: 68px; }
.tk-sched th {
  background: #f6f7fb; border-bottom: 1px solid #131936;
  font-family: var(--font-jp); font-weight: var(--fw-bold);
  font-size: 20px; line-height: 1.6; color: #1e293b; text-align: left;
  padding: var(--space-12);
}
.tk-sched td {
  border-bottom: 1px solid #e2e8f0;
  font-family: var(--font-jp); font-size: 16px; line-height: var(--lh-body); color: #1e293b;
  padding: var(--space-12); text-align: left;
}
.tk-sched tbody tr:nth-child(even) { background: #f8fafc; }
.tk-sched th:nth-child(1), .tk-sched td:nth-child(1) { width: 68px; }
.tk-sched th:nth-child(2), .tk-sched td:nth-child(2) { width: 300px; }

.tk-cta {
  width: 100%; box-sizing: border-box;
  display: flex; align-items: center; gap: var(--space-20);
  border-radius: 16px; padding: var(--space-24) var(--space-32);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.tk-course--green .tk-cta, .tk-cta--green { background: var(--c-success-500, #22c55e); }
.tk-course--blue .tk-cta, .tk-cta--blue { background: var(--c-accent-blue); }
.tk-cta:hover { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16); transform: translateY(-2px); }
.tk-cta:focus-visible { outline: 3px solid var(--c-blue-500); outline-offset: 2px; }
.tk-cta__body { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; gap: var(--space-8); align-items: center; }
.tk-cta__pill {
  background: #ffffff; border-radius: 100px; padding: var(--space-4) var(--space-16);
  font-family: var(--font-jp); font-weight: var(--fw-bold);
  font-size: 16px; line-height: var(--lh-body); text-align: center;
  color: var(--c-success-500, #22c55e);
}
.tk-cta--blue .tk-cta__pill, .tk-course--blue .tk-cta__pill, .tk-cta__pill--blue { color: var(--c-accent-blue); }
.tk-cta__title {
  font-family: var(--font-jp); font-weight: var(--fw-bold);
  font-size: 34px; line-height: 1.45; color: #ffffff; text-align: center;
}
.tk-cta__note { font-family: var(--font-jp); font-size: 16px; line-height: var(--lh-body); color: #ffffff; text-align: center; }
.tk-cta__chevron { flex: none; width: 32px; height: 32px; }
@media (prefers-reduced-motion: reduce) {
  .tk-cta { transition: none !important; transform: none !important; }
}

.tk-rec { display: flex; align-items: flex-start; justify-content: center; padding: var(--space-48); }
.tk-rec__cell { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; gap: var(--space-32); align-items: center; }
.tk-rec__band {
  width: 100%; background: var(--c-accent-blue); padding: 2px 0;
  font-family: var(--font-jp); font-weight: var(--fw-bold);
  font-size: 18px; line-height: 1.8; color: #ffffff; text-align: center;
}
.tk-rec__illust { width: auto; height: 193px; }
.tk-rec__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: var(--space-16); align-self: flex-start;
}
.tk-rec__list li {
  position: relative; padding-left: var(--space-24);
  font-family: var(--font-jp); font-size: 16px; line-height: 1.4; color: #131936;
}
.tk-rec__list li::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 10px; height: 10px; border-radius: 5px; background: var(--c-accent-blue);
}
.tk-rec__div { flex: none; width: 1px; align-self: stretch; background: var(--c-brand-100); margin-inline: var(--space-24); }

.tk-confirm { display: flex; gap: 72px; align-items: flex-start; }
.tk-confirm__text { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; gap: 56px; }
.tk-confirm__block { display: flex; flex-direction: column; gap: var(--space-24); }
.tk-confirm__body { font-family: var(--font-jp); font-size: 16px; line-height: 1.8; color: #131936; }
.tk-hl { font-weight: var(--fw-bold); color: var(--c-accent-blue); }
.tk-confirm__photo { flex: none; width: 658px; max-width: 55%; height: auto; object-fit: cover; }

.tk-flow { display: flex; gap: var(--space-24); align-items: stretch; }
.tk-flow__step { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; gap: var(--space-24); }
.tk-flow__badge {
  width: 100%; background: var(--c-accent-blue);
  font-family: var(--font-jp); font-weight: var(--fw-bold);
  font-size: 20px; line-height: 1.6; color: #ffffff; text-align: center;
  margin-bottom: calc(-1 * var(--space-16));
}
.tk-flow__title {
  font-family: var(--font-jp); font-weight: var(--fw-bold);
  font-size: 20px; line-height: 1.6; color: #131936; text-align: center;
}
.tk-flow__text { font-family: var(--font-jp); font-size: 16px; line-height: 1.8; color: #131936; }
.tk-flow__sep { flex: none; align-self: center; display: flex; color: var(--c-accent-blue); }
.tk-flow__sep .tk-flow__arrow { width: 28px; height: 68px; }

.tk-apply { display: flex; gap: var(--space-48); align-items: stretch; }
.tk-apply__col {
  flex: 1 1 0; min-width: 0;
  background: #ffffff; padding: var(--space-32);
  display: flex; flex-direction: column; gap: var(--space-48);
}
.tk-apply__col .tk-cta { margin-top: auto; }
.tk-apply .tk-course__band-row { padding: var(--space-16) 0; }

.cs-lead { background: #ffffff; padding: 64px var(--space-24); }
.cs-lead__title {
  font-family: var(--font-jp); font-weight: var(--fw-bold);
  font-size: 44px; line-height: 1.4; color: var(--c-accent-blue); text-align: center;
}

.course-list {
  background: var(--bg-school-info);
  padding: 120px 0;
  display: flex; flex-direction: column; gap: var(--space-32);
}
.course-list__heading {
  font-family: var(--font-jp); font-weight: var(--fw-bold);
  font-size: 44px; line-height: 1.4; color: #131936; text-align: center;
}
.course-list__link { display: block; text-decoration: none; color: inherit; }
.course-list .si-obanner__card { margin-block: 24px; }
.course-list__link:focus-visible { outline: 3px solid var(--c-blue-500); outline-offset: 2px; }

.course-list__link { transition: opacity 0.2s ease; }
.course-list__link:hover { opacity: 0.7; }
@media (prefers-reduced-motion: reduce) {
  .course-list__link { transition: none !important; }
}

.si-banner {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
}
.si-banner::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 665px;
  max-width: 48%;
  background: url("../pageimg/youseikouza/images/banner-stripes.webp") center / cover no-repeat;
  z-index: 1;
}
.si-banner__photo {
  position: absolute;
  right: 0; top: 0;
  width: 1136px;
  max-width: 79%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.si-banner__card {
  position: relative;
  z-index: 2;
  margin-left: 28px;
  width: 609px;
  max-width: calc(100% - 56px);
  box-sizing: border-box;
  background: #ffffff;
  padding: 64px 24px;
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
  align-items: flex-start;
}
.si-banner__top {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 14px;
  border-top: 1px solid #131936;
  border-bottom: 1px solid #131936;
  padding: var(--space-24) 0 27px;
}
.si-banner__badge { height: 66px; width: auto; flex: none; }
.si-banner__limited {
  font-family: var(--font-jp);
  font-weight: var(--fw-bold);
  font-size: 22px;
  line-height: 1.2;
  color: #131936;
}
.si-banner__lead { display: flex; flex-direction: column; gap: var(--space-16); }
.si-banner__title {
  font-family: var(--font-jp);
  font-weight: var(--fw-bold);
  font-size: 56px;
  line-height: 1.35;
  color: var(--c-accent-blue);
}
.si-banner__desc {
  font-family: var(--font-jp);
  font-weight: var(--fw-bold);
  font-size: 20px;
  line-height: 1.6;
  color: #131936;
}
.si-obanner {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
}
.si-obanner::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 697px;
  max-width: 50%;
  background: url("../pageimg/youseikouza_on-line/images/banner-stripes-online.webp") left center / cover no-repeat;
  z-index: 0;
}
.si-obanner__photo {
  position: absolute;
  right: 0; top: 0;
  width: 52%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.si-obanner__card {
  position: relative;
  z-index: 2;
  margin-left: 28px;
  width: 609px;
  max-width: calc(100% - 56px);
  box-sizing: border-box;
  background: #ffffff;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
  align-items: flex-start;
}
.si-obanner__eyebrow {
  width: 100%;
  font-family: var(--font-jp);
  font-weight: var(--fw-bold);
  font-size: 22px;
  line-height: 1.2;
  color: #131936;
  border-top: 1px solid #131936;
  border-bottom: 1px solid #131936;
  padding: var(--space-24) 0 27px;
}
.si-obanner__title {
  font-family: var(--font-jp);
  font-weight: var(--fw-bold);
  font-size: 56px;
  line-height: 1.35;
  color: var(--c-accent-blue);
}
.si-obanner__desc {
  font-family: var(--font-jp);
  font-weight: var(--fw-bold);
  font-size: 20px;
  line-height: 1.6;
  color: #131936;
}
.si-obanner__desc--regular { font-weight: var(--fw-regular, 400); }

.si-related--recap .si-info-card--counsel {
  width: auto;
  margin: 0;
  padding-block: var(--space-24);
}

@media (max-width: 1023px) {
  .tk-eyebrow { font-size: 20px; }
  .tk-course__band-title { font-size: 34px; }
  .tk-course__inner { padding-inline: var(--space-24); }
  .tk-selector { flex-direction: column; }
  .tk-confirm__photo { max-width: 48%; }
  .cs-lead__title { font-size: 34px; }
  .tk-notes { flex-direction: column; align-items: center; gap: var(--space-16); }
  .tk-exam__card { flex-direction: column; align-items: stretch; gap: var(--space-12); }
  .tk-exam__item { justify-content: space-between; }
  .tk-exam__div { display: none; }
}

@media (max-width: 767px) {
  .tk-stack { gap: var(--section-y-sp); padding: var(--section-y-sp) 0; }
  .tk-eyebrow { font-size: 16px; }

  .tk-exam__date { font-size: 20px; gap: var(--space-24); }
  .tk-exam__card { flex-direction: column; align-items: stretch; gap: var(--space-12); padding: var(--space-16); }
  .tk-exam__item { justify-content: space-between; gap: var(--space-12); }
  .tk-exam__item-label, .tk-exam__item-val { font-size: 16px; }
  .tk-exam__div { display: none; }

  .tk-selector { flex-direction: column; gap: var(--space-16); }
  .tk-selector__card { gap: var(--space-12); padding: var(--space-16) var(--space-12); }
  .tk-selector__text { font-size: 18px; white-space: normal; text-align: center; }
  .tk-selector__badge { width: 48px; padding: var(--space-8) 0; font-size: 13px; }

  .tk-course { padding: var(--space-16) var(--space-16) var(--space-48); gap: var(--space-48); }
  .tk-course__band-eyebrow { font-size: 18px; margin-bottom: var(--space-8); }
  .tk-course__band-row { gap: var(--space-16); padding-inline: var(--space-8); }
  .tk-course__badge { width: 56px; font-size: 16px; padding: var(--space-8) 0; }
  .tk-course__band-title { font-size: 22px; }
  .tk-course__band-title--sm { font-size: 20px; }
  .tk-course__inner { padding-inline: 0; gap: var(--space-48); }
  .tk-course__lead { font-size: 20px; }
  .tk-course__lead-text { font-size: 14px; text-align: left; }
  .tk-block { gap: var(--space-16); }
  .tk-block__lead { font-size: 16px; text-align: left; }
  .tk-block__h26 { font-size: 20px; }
  .tk-block__h34 { font-size: 24px; }
  .tk-block__note { font-size: 12px; }

  .tk-table { padding: var(--space-16); }
  .tk-table__row { flex-direction: column; gap: var(--space-4); }
  .tk-table__label, .tk-table__label--wide { width: auto; font-size: 14px; }
  .tk-table__val { font-size: 14px; }
  .tk-table__fee { gap: var(--space-12); }

  .tk-content { flex-direction: column; }
  .tk-content__arrow { transform: rotate(90deg); }
  .tk-content__arrow .tk-flow__arrow { width: 32px; height: 64px; }
  .tk-content__box-title { min-height: 0; padding: var(--space-8) var(--space-12); font-size: 16px; }
  .tk-content__list { padding: 0 var(--space-16) var(--space-16); }
  .tk-content__list li { font-size: 14px; }

  .tk-notes { flex-direction: column; gap: var(--space-16); }
  .tk-notes__col li { font-size: 14px; }

  .tk-sched { min-width: 520px; width: 520px; }
  .tk-sched th { font-size: 13px; padding: var(--space-8) var(--space-4); }
  .tk-sched td { font-size: 12px; padding: var(--space-8) var(--space-4); }
  .tk-sched th:nth-child(1), .tk-sched td:nth-child(1) { width: 34px; }
  .tk-sched th:nth-child(2), .tk-sched td:nth-child(2) { width: 168px; }

  .tk-cta { padding: var(--space-16); gap: var(--space-12); }
  .tk-cta__pill { font-size: 11px; }
  .tk-cta__title { font-size: 22px; }
  .tk-cta__note { font-size: 12px; }
  .tk-cta__chevron { display: none; }

  .tk-rec { flex-direction: column; padding: var(--space-16); gap: var(--space-32); }
  .tk-rec__cell { width: 100%; }
  .tk-rec__div { width: 100%; height: 1px; align-self: auto; margin: 0; }
  .tk-rec__band { font-size: 16px; }
  .tk-rec__illust { height: 150px; }
  .tk-rec__list { align-self: stretch; }
  .tk-rec__list li { font-size: 14px; }

  .tk-confirm { flex-direction: column; gap: var(--space-24); }
  .tk-confirm__photo { width: 100%; max-width: none; }
  .tk-confirm__text { gap: var(--space-24); }
  .tk-confirm__body { font-size: 14px; }

  .tk-flow { flex-direction: column; gap: var(--space-16); }
  .tk-flow__sep { transform: rotate(90deg); }
  .tk-flow__sep .tk-flow__arrow { width: 20px; height: 48px; }
  .tk-flow__badge { font-size: 16px; margin-bottom: calc(-1 * var(--space-8)); }
  .tk-flow__title { font-size: 16px; }
  .tk-flow__text { font-size: 14px; }

  .tk-apply { flex-direction: column; gap: var(--space-24); }
  .tk-apply__col { padding: var(--space-16); gap: var(--space-24); }

  .cs-lead { padding: var(--space-48) var(--space-24); }
  .cs-lead__title { font-size: 22px; }

  .course-list { padding: var(--section-y-sp) 0; gap: var(--space-24); }
  .course-list__heading { font-size: 24px; }
  .si-banner { flex-direction: column; min-height: 0; align-items: stretch; }
  .si-banner::before { width: 100%; max-width: none; height: 100%; z-index: 0; }
  .si-banner__photo { position: static; width: 100%; max-width: none; height: 240px; order: 2; }
  .si-banner__card { width: auto; max-width: none; margin: 24px 12px; padding: 32px 12px; order: 1; }
  .si-banner__title { font-size: 26px; line-height: 1.4; }
  .si-banner__desc { font-size: 16px; }
  .si-banner__limited { font-size: 16px; text-align: center; }
  .si-banner__top { flex-direction: row; align-items: center; justify-content: center; gap: var(--space-12); }
  .si-banner__badge { width: 168px; height: auto; }
  .si-obanner { flex-direction: column; min-height: 0; align-items: stretch; }
  .si-obanner::before { width: 100%; max-width: none; height: 100%; }
  .si-obanner__photo { position: static; width: 100%; height: 220px; order: 2; }
  .si-obanner__card { width: auto; max-width: none; margin: 24px 12px; padding: 32px 12px; order: 1; }
  .si-obanner__eyebrow { font-size: 18px; }
  .si-obanner__title { font-size: 26px; line-height: 1.4; }
  .si-obanner__desc { font-size: 16px; }
}
