:root {
  --header-height: 72px;
  --ku-header-height: 72px;
  --footer-height: 80px;
  --max-width: 1120px;
  --page-padding: 24px;
  --bg: #f6f3ee;
  --text: #39210b;
  --border: #e2ded7;
  --accent: #2f5e4e;
  --ku-accent: #6c4420;
  --ku-orange: #f4811f;
  --ku-ivory: #f8f4ee;
  --ku-black: #39210b;
  --ku-text-glow: 0 3px 10px rgba(255, 255, 255, 0.6);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  margin-top: var(--ku-header-height);
  background: var(--bg);
  color: var(--text);
  line-height: 2;
  -webkit-font-smoothing: antialiased;
  font-family:
    "Noto Sans JP", "Noto Sans SC", "Noto Sans", "Noto Serif JP",
    "Noto Serif SC", serif;
}

body.page-school-manager,
body.page-school-manager .page-content {
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

.ku-text-glow {
  text-shadow: 0 4px 12px rgba(255, 255, 255, 0.75);
}

.ku-section-heading {
  position: relative;
  display: inline-block;
  color: var(--ku-black);
  --ku-heading-color: var(--ku-black);
  --ku-heading-line: var(--ku-black);
  --ku-accent: #6c4420;
}

.ku-section-heading--white {
  color: #fff;
  --ku-heading-color: #fff;
}

.ku-section-heading--orange {
  color: var(--ku-orange);
  --ku-heading-color: var(--ku-orange);
}

.ku-section-heading--line-current {
  --ku-heading-line: currentColor;
}

.ku-section-heading__title {
  margin: 0;
  font-size: clamp(2.6rem, 2.2vw + 1.6rem, 3.4rem);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px var(--ku-heading-color);
  text-shadow: none;
  letter-spacing: 0.02em;
}

.ku-section-heading__subtitle {
  margin: -0.35rem 0 0;
  font-size: 1rem;
  font-weight: 700;
  color: currentColor;
  display: inline-block;
}

.ku-section-heading::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ku-heading-line);
  margin-top: 6px;
}

.ku-section-heading--image {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.ku-section-heading--image::after {
  display: none;
}

.ku-section-heading__image {
  width: auto;
  max-width: min(300px, 50vw);
  height: auto;
  display: block;
}

.ku-section-heading__line {
  width: calc(100% + 12px);
  height: 2px;
  background: var(--ku-accent);
  margin-top: 3px;
}

.ku-section-heading--image .ku-section-heading__subtitle {
  font-size: 2rem;
  line-height: 1.05;
  margin-top: -1.4rem;
}

.ku-section {
  width: 100%;
}

.ku-section--blue {
  background: #93cbd7;
}

.ku-section--white {
  background: #fff;
}

.ku-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ku-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--ku-header-height);
  background: #fff;
  z-index: 1000;
  font-family: "Inter", "Noto Sans JP", "Noto Sans", sans-serif;
}

.ku-header::after {
  content: "";
  position: absolute;
  left: 2.25rem;
  right: 2.25rem;
  bottom: 0;
  border-bottom: 2px solid #fddac1;
}

.ku-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 2.25rem;
}

.ku-logo img {
  height: 48px;
  width: auto;
  display: block;
}

.ku-nav {
  display: flex;
  align-items: center;
}

.ku-nav__list {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ku-nav__list li {
  position: relative;
}

.ku-nav__list a:not(.ku-cta),
.ku-nav__list button {
  color: #f4811f;
  font-weight: 600;
  font-size: clamp(0.78rem, 0.6vw + 0.35rem, 0.92rem);
  background: none;
  border: 0;
  padding: 0.2rem 0.3rem;
  cursor: pointer;
  letter-spacing: 0.02em;
}

.ku-nav__list a.is-current:not(.ku-cta),
.ku-nav__list button.is-current {
  position: relative;
}

.ku-nav__list a.is-current:not(.ku-cta)::before,
.ku-nav__list button.is-current::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -6px;
  height: 2px;
  background: #f4811f;
  border-radius: 999px;
  transform: scaleX(1);
  transform-origin: center;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.ku-nav__list a:not(.ku-cta):hover,
.ku-nav__list button:hover {
  color: #d86e12;
}

.ku-submenu-toggle::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid currentColor;
  transform: translateY(1px);
  margin-left: 6px;
  margin-bottom: 1px;
}

.has-submenu.is-open .ku-submenu-toggle::after {
  transform: translateY(1px) rotate(180deg);
}

.has-submenu .ku-submenu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: #fff;
  border: 1px solid #fddac1;
  border-radius: 10px;
  padding: 0.35rem 0;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  min-width: 170px;
  z-index: 10;
}

.has-submenu.is-open .ku-submenu {
  display: block;
}

.ku-submenu a {
  display: block;
  padding: 0.4rem 0.9rem;
  white-space: nowrap;
  color: #f4811f;
  text-align: center;
}

.ku-cta {
  background: #f4811f;
  color: #fff;
  border-radius: 999px;
  padding: 0.45rem 1.8rem;
  border: 2px solid #f4811f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
  font-size: clamp(0.78rem, 0.6vw + 0.35rem, 0.92rem);
  white-space: nowrap;
  font-weight: 700;
}

.ku-cta:hover {
  background: #fff;
  color: #f4811f;
  border-color: #fddac1;
  box-shadow: none;
}

.ku-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #f4811f;
  border: 0;
  cursor: pointer;
  position: relative;
}

.ku-nav-toggle span {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  margin: 0;
  transform: translate(-50%, -8px);
  transform-origin: center;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    background-color 0.2s ease;
}

.ku-nav-toggle span:nth-child(2) {
  transform: translate(-50%, 0);
}

.ku-nav-toggle span:nth-child(3) {
  transform: translate(-50%, 8px);
}

.ku-header.open .ku-nav-toggle {
  background: #d7d7d7;
}

.ku-header.open .ku-nav-toggle span {
  background: #fff;
}

.ku-header.open .ku-nav-toggle span:nth-child(1) {
  transform: translate(-50%, 0) rotate(45deg);
}

.ku-header.open .ku-nav-toggle span:nth-child(2) {
  opacity: 0;
}

.ku-header.open .ku-nav-toggle span:nth-child(3) {
  transform: translate(-50%, 0) rotate(-45deg);
}

body.nav-open {
  overflow: hidden;
}

.only_pc,
.only_pc_only,
.only_pc_960 {
  display: block !important;
}

.only_mb,
.only_tab,
.only_mb_only,
.only_mb_960 {
  display: none !important;
}

@media (max-width: 1023.98px) {
  :root {
    --ku-header-height: 64px;
  }

  .ku-header__inner {
    padding: 0 1.5rem;
  }

  .ku-header::after {
    left: 1.5rem;
    right: 1.5rem;
  }

  .ku-nav-toggle {
    display: flex;
  }

  .ku-nav {
    display: flex;
    position: fixed;
    top: var(--ku-header-height);
    left: 0;
    right: 0;
    height: calc(100vh - var(--ku-header-height));
    background: #fff;
    border-top: 1px solid #fddac1;
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.12);
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .ku-header.open .ku-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .ku-nav__list {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0;
    padding: 1.5rem;
  }

  .ku-nav__list li {
    width: 100%;
    text-align: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f2e7dc;
  }

  .ku-nav__list li:last-child {
    border-bottom: none;
  }

  .ku-submenu {
    position: static;
    border: 0;
    box-shadow: none;
    padding: 0.35rem 0 0;
    min-width: 0;
  }

  .ku-submenu a {
    padding: 0.35rem 0;
  }

  .ku-cta {
    width: 80%;
    max-width: 320px;
    margin: 0 auto;
  }

  .only_pc,
  .only_pc_only {
    display: none !important;
  }

  .only_mb,
  .only_tab,
  .only_mb_only {
    display: block !important;
  }
}

@media (max-width: 1299.98px) {
  .ku-logo img {
    height: 42px;
  }
}

@media (max-width: 767.98px) {
  .ku-header__inner {
    padding: 0 1rem;
  }

  .ku-header::after {
    left: 1rem;
    right: 1rem;
  }

  .ku-logo img {
    height: 34px;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: #fff;
  border-bottom: 1px solid var(--border);
  z-index: 20;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--page-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-group > span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6a6a6a;
}

.nav-group-links {
  display: flex;
  gap: 12px;
}

.page-top {
  --page-top-cta-size: 96px;
  --page-top-overhang: calc(var(--page-top-cta-size) * 0.5);
  padding: 0 0 calc(var(--page-top-overhang) * 3);
}

.page-top__inner {
  position: relative;
  max-width: none;
  margin: 0;
}

.page-top__image {
  display: block;
  position: relative;
  overflow: hidden;
}

.page-top__image img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.78) brightness(1.12) contrast(0.92);
}

.page-top__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

.page-top__content {
  position: absolute;
  left: clamp(16px, 3vw, 40px);
  bottom: 0;
  transform: translateY(50%);
  max-width: calc(100% - var(--page-top-cta-size) - 48px);
}

.page-top__title {
  margin: 0;
  padding-top: clamp(8px, 1vw, 14px);
  color: var(--ku-black);
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(1.15rem, 1vw + 0.85rem, 1.75rem);
  line-height: 1.55;
  text-shadow: var(--ku-text-glow);
}

.page-top__title span {
  display: block;
  white-space: nowrap;
}

.page-top__cta {
  position: absolute;
  right: clamp(14px, 3vw, 36px);
  bottom: 0;
  width: var(--page-top-cta-size);
  height: var(--page-top-cta-size);
  transform: translateY(50%);
  border-radius: 999px;
  border: 0;
  background: #f4811f;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  text-align: center;
}

.page-top__cta-label {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: max-content;
  max-width: 100%;
  text-align: center;
  transform: translateY(5px);
}

.page-top__cta:visited {
  color: #fff;
}

.page-top__cta:hover {
  transform: translateY(50%) scale(1.04);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.page-top__cta:hover .page-top__cta-text {
  opacity: 0.85;
}

.page-top__cta:focus-visible {
  outline: 2px solid #f4811f;
  outline-offset: 4px;
}

.page-top__cta-text {
  line-height: 1.05;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.page-top__cta-underline {
  display: block;
  width: 130%;
  height: auto;
  aspect-ratio: 97/16;
  margin-top: 8px;
  background: url("../images/button-arrow.png") center center/100% 100%
    no-repeat;
}

.page-school-manager .page-top__title {
  color: #39210b;
  text-shadow: 6px 4px 4px #ffffff;
}

.page-school-manager .page-top__content {
  bottom: clamp(6px, 3.2vw, 54px);
  transform: none;
}

.page-school-manager .page-top__title span:first-child {
  font-size: clamp(2.6rem, 2.2vw + 1.45rem, 3.5rem);
  line-height: 1.2;
  margin-top: clamp(10px, 1.1vw, 18px);
  margin-bottom: clamp(30px, 2.8vw, 46px);
}

.page-school-manager .page-top__title span:last-child {
  font-size: clamp(1.3rem, 1.1vw + 0.92rem, 1.9rem);
  line-height: 1.72;
  white-space: pre-line;
  position: relative;
  top: clamp(72px, 7vw, 118px);
  text-decoration-line: underline;
  text-decoration-color: rgba(244, 129, 31, 0.8);
  text-decoration-thickness: 12px;
  text-decoration-skip-ink: none;
  text-underline-offset: -5px;
}

@media (min-width: 769px) {
  .page-bus-staff .page-top__content,
  .page-bus-driver .page-top__content {
    max-width: min(56%, 720px);
    bottom: clamp(10px, 2vw, 28px);
    transform: none;
  }

  .page-bus-staff .page-top__title span:first-child,
  .page-bus-driver .page-top__title span:first-child {
    font-size: clamp(2rem, 1.3vw + 1.4rem, 2.7rem);
    line-height: 1.15;
    margin-bottom: clamp(16px, 1.6vw, 24px);
  }

  .page-bus-staff .page-top__title span:last-child,
  .page-bus-driver .page-top__title span:last-child {
    font-size: clamp(1rem, 0.5vw + 0.82rem, 1.28rem);
    line-height: 1.5;
    top: clamp(28px, 3.6vw, 52px);
  }

  .page-bus-staff .page-top__image,
  .page-bus-driver .page-top__image {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: clamp(250px, 24vw, 330px);
    background: linear-gradient(
      90deg,
      #f6eadc 0%,
      #fff7ef 14%,
      #fff7ef 86%,
      #f6eadc 100%
    );
  }

  .page-bus-staff .page-top__image img,
  .page-bus-driver .page-top__image img {
    width: auto;
    max-width: min(100%, 1240px);
    max-height: clamp(250px, 24vw, 330px);
    margin: 0 auto;
  }
}

.sm-about-section {
  padding: 56px 0 74px;
}

.sm-about-section .ku-section__inner {
  max-width: 1280px;
}

.sm-about-section__header {
  text-align: center;
  margin-bottom: clamp(20px, 2.2vw, 34px);
}

.sm-about-section__title {
  margin: 0;
  color: #39210b;
  font-size: clamp(1.6rem, 1.1vw + 1.3rem, 2.2rem);
  line-height: 1.3;
  font-weight: 700;
}

.sm-about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 24px);
}

.sm-about-card {
  background: #e28d49;
  border-radius: 16px;
  padding: clamp(14px, 1.1vw, 18px);
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 0.95vw, 16px);
  height: clamp(360px, 84vw, 440px);
  overflow: hidden;
}

.sm-about-card__media {
  flex: 0 0 50%;
  border-radius: 10px;
  overflow: hidden;
}

.sm-about-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sm-about-card__body {
  background: #fff;
  border-radius: 6px;
  padding: clamp(12px, 1vw, 16px);
  width: calc(100% - clamp(8px, 0.7vw, 12px));
  align-self: center;
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 0.7vw, 12px);
  min-height: 0;
  letter-spacing: 0;
}

.sm-about-card__title {
  margin: 0;
  color: #f4811f;
  font-size: clamp(1.05rem, 0.72vw + 0.84rem, 1.36rem);
  line-height: 1.38;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0;
}

.sm-about-card__divider {
  width: 100%;
  height: 2px;
  background: #f4811f;
}

.sm-about-card__text {
  margin: 0;
  color: #39210b;
  font-size: clamp(1rem, 0.55vw + 0.84rem, 1.22rem);
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: 0;
}

@media (min-width: 769px) {
  .sm-about-grid {
    grid-auto-rows: 1fr;
  }

  .sm-about-card {
    height: 100%;
    min-height: clamp(520px, 41vw, 660px);
  }

  .sm-about-card__media {
    flex: 0 0 50%;
  }

  .sm-about-card__body {
    flex: 1 1 auto;
    justify-content: flex-start;
  }

  .page-native-educator .sm-about-card__title {
    font-size: clamp(0.94rem, 0.42vw + 0.8rem, 1.12rem);
    line-height: 1.28;
  }

  .page-native-educator .sm-about-card__text {
    font-size: clamp(0.86rem, 0.28vw + 0.78rem, 0.98rem);
    line-height: 1.64;
  }
}

.sm-schedule-section {
  padding: 0 0 84px;
}

.sm-schedule-section .ku-section__inner {
  max-width: 1280px;
}

.sm-schedule {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.sm-schedule__title {
  margin: 0 0 6px;
}

.sm-schedule__toggle {
  width: min(292px, 100%);
  border: 1px solid #f4811f;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 6px 10px rgba(57, 33, 11, 0.08);
  color: #f4811f;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 16px 22px;
  font-family: inherit;
  font-size: clamp(1.08rem, 1.8vw + 0.72rem, 1.3rem);
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  text-align: left;
}

.sm-schedule__arrow {
  width: 12px;
  height: 12px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  transform-origin: 60% 60%;
  transition: transform 0.24s ease;
  flex-shrink: 0;
}

.sm-schedule.is-open .sm-schedule__arrow {
  transform: translateY(1px) rotate(-135deg);
}

.sm-schedule__panel {
  border: 1px solid #f4811f;
  background: #fff;
}

.sm-schedule__panel-inner {
  padding: 44px clamp(36px, 4vw, 56px) 48px;
}

.sm-schedule-item + .sm-schedule-item {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 0;
}

.sm-schedule-item__time {
  margin: 0;
  color: #39210b;
  font-size: clamp(1.2rem, 0.62vw + 1.04rem, 1.5rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.2vw, 18px);
  padding: 0 clamp(14px, 2vw, 24px);
  margin-bottom: 16px;
}

.sm-schedule-item__time::before,
.sm-schedule-item__time::after {
  content: "";
  flex: 1 1 auto;
  min-width: 24px;
  height: 1px;
  background: rgba(57, 33, 11, 0.6);
}

.sm-schedule-item__time-divider {
  display: none;
}

.sm-schedule-item__heading {
  margin: 0 0 14px;
  color: #f4811f;
  font-size: clamp(1.3rem, 0.7vw + 1.05rem, 1.7rem);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.sm-schedule-item__content {
  display: flex;
  align-items: stretch;
  gap: clamp(10px, 1vw, 16px);
}

.sm-schedule-item__media {
  flex: 0 0 31%;
  width: 31%;
  min-width: 0;
  overflow: hidden;
}

.sm-schedule-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.sm-schedule-item__text {
  flex: 1 1 auto;
  min-width: 0;
  color: #39210b;
  font-size: clamp(0.9rem, 0.2vw + 0.86rem, 1rem);
  font-weight: 700;
  line-height: 1.8;
}

.sm-schedule-item__text p {
  margin: 0;
}

.sm-schedule-item__text p + p {
  margin-top: 0.45em;
}

.sm-schedule-item--image-right .sm-schedule-item__content {
  flex-direction: row-reverse;
}

.sm-attractive-section {
  background: #fff;
  padding: 84px 0 128px;
}

.sm-attractive-section .ku-section__inner {
  max-width: 1280px;
}

.sm-attractive-section__header {
  margin: 0;
}

.sm-attractive-heading {
  width: min(840px, 100%);
}

.sm-attractive-heading .ku-section-heading__image {
  max-width: min(480px, 72vw);
}

.sm-attractive-heading .ku-section-heading__subtitle {
  color: #f4811f;
}

.sm-attractive-heading .ku-section-heading__line {
  width: clamp(170px, 20vw, 230px);
}

.sm-attractive-grid {
  width: min(100%, 1120px);
  margin: clamp(22px, 2vw, 30px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.sm-attractive-card {
  background: #fff;
  border: 2px solid rgba(244, 129, 31, 0.75);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 5px 5px 0 rgba(57, 33, 11, 0.16);
}

.sm-attractive-card__tab {
  min-height: clamp(56px, 4vw, 68px);
  background: #e28a43;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 10px 18px;
}

.sm-attractive-card__tab span {
  display: inline-block;
  font-family: "Old Standard TT", "Times New Roman", serif;
  font-size: clamp(1.35rem, 0.55vw + 1.2rem, 1.75rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}

.sm-attractive-card__body {
  min-height: clamp(190px, 18vw, 240px);
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px 14px 20px;
}

.sm-attractive-card--with-note .sm-attractive-card__body {
  min-height: clamp(206px, 19.5vw, 254px);
  gap: 10px;
}

.sm-attractive-card__icon {
  width: clamp(72px, 6vw, 94px);
}

.sm-attractive-card__icon img {
  display: block;
  width: 100%;
  height: auto;
}

.sm-attractive-card__stat {
  margin: 0;
  color: #39210b;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.sm-attractive-card__label {
  font-size: clamp(1.02rem, 0.28vw + 0.94rem, 1.14rem);
}

.sm-attractive-card__value {
  font-size: clamp(2.05rem, 1.3vw + 1.7rem, 2.7rem);
  font-weight: 700;
  line-height: 0.9;
}

.sm-attractive-card__suffix {
  font-size: clamp(1.02rem, 0.28vw + 0.94rem, 1.14rem);
}

.sm-attractive-card__note {
  margin: 0;
  color: #39210b;
  font-size: clamp(0.86rem, 0.18vw + 0.81rem, 0.96rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.sm-attractive-card--with-note .sm-attractive-card__note {
  margin-top: -10px;
  color: #39210b;
}

.sm-attractive-card__note--shift-right {
  padding-left: 2ch;
}

@media (min-width: 769px) {
  .page-native-educator .sm-attractive-card__label,
  .page-native-educator .sm-attractive-card__suffix {
    font-size: clamp(0.88rem, 0.2vw + 0.82rem, 0.98rem);
  }

  .page-native-educator .sm-attractive-card__value {
    font-size: clamp(1.8rem, 1vw + 1.5rem, 2.3rem);
  }

  .page-native-educator .sm-attractive-card__note {
    font-size: clamp(0.78rem, 0.14vw + 0.74rem, 0.86rem);
  }
}

.sm-job-desc-section {
  background: #93cbd7;
  padding: 44px 0 68px;
}

.sm-job-desc-section .ku-section__inner {
  max-width: 1280px;
}

.sm-job-desc-section__header {
  margin: 0;
}

.sm-job-desc-heading {
  width: min(980px, 100%);
}

.sm-job-desc-heading .ku-section-heading__image {
  max-width: min(560px, 82vw);
}

.sm-job-desc-heading .ku-section-heading__subtitle {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sm-job-desc-heading .ku-section-heading__line {
  width: clamp(210px, 26vw, 320px);
  background: #6c4420;
}

.sm-job-desc-table {
  width: min(100%, 1120px);
  margin: clamp(20px, 2vw, 30px) auto 0;
}

.sm-job-desc-row {
  margin: 0;
  padding: clamp(18px, 1.65vw, 24px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  display: grid;
  grid-template-columns: minmax(120px, 190px) minmax(0, 1fr);
  gap: 10px clamp(18px, 3vw, 42px);
  align-items: start;
}

.sm-job-desc-row:last-child {
  border-bottom: 0;
}

.sm-job-desc-row__label {
  margin: 0;
  color: #39210b;
  font-family: "Noto Sans JP", "Noto Sans SC", sans-serif;
  font-size: clamp(1.15rem, 0.45vw + 1.02rem, 1.38rem);
  font-weight: 900;
  line-height: 1.5;
}

.sm-job-desc-row__value {
  margin: 0;
  min-width: 0;
  color: #39210b;
  font-family: "Noto Sans JP", "Noto Sans SC", sans-serif;
  font-size: clamp(1rem, 0.2vw + 0.94rem, 1.08rem);
  font-weight: 500;
  line-height: 1.75;
}

.sm-job-desc-text,
.sm-job-desc-note {
  margin: 0;
}

.sm-job-desc-text + .sm-job-desc-text,
.sm-job-desc-note + .sm-job-desc-note,
.sm-job-desc-text + .sm-job-desc-note,
.sm-job-desc-note + .sm-job-desc-text {
  margin-top: 0.18em;
}

.sm-job-desc-text--lead {
  font-weight: 500;
}

.sm-job-desc-text--em {
  margin-top: 0.35em;
  font-weight: 500;
}

.sm-job-desc-note {
  font-weight: 500;
  font-size: 0.94em;
  line-height: 1.55;
}

.sm-job-desc-link {
  color: #e6f8ff;
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-word;
}

.sm-job-desc-link:hover {
  color: #fff;
}

.sm-job-desc-row--vacation .sm-job-desc-row__value {
  line-height: 1.6;
}

.sm-job-desc-vacation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px clamp(16px, 2.4vw, 34px);
}

.sm-job-desc-vacation__col {
  min-width: 0;
}

.sm-job-desc-vacation__heading {
  margin: 0 0 0.15em;
  color: #39210b;
  font-weight: 900;
  line-height: 1.35;
}

.sm-job-desc-vacation-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  column-gap: 14px;
  row-gap: 0.1em;
}

.sm-job-desc-vacation-list__item {
  position: relative;
  margin: 0;
  padding-left: 0.9em;
  color: #39210b;
  font: inherit;
  line-height: 1.55;
  white-space: nowrap;
}

.sm-job-desc-vacation-list__item::before {
  content: "■";
  position: absolute;
  left: 0;
  top: 0;
  color: currentColor;
}

.sm-benefits-section {
  background: #fff;
  padding: 44px 0 72px;
}

.sm-benefits-section .ku-section__inner {
  max-width: 1280px;
}

.sm-benefits-section__header {
  margin: 0;
}

.sm-benefits-heading {
  width: min(840px, 100%);
}

.sm-benefits-heading .ku-section-heading__image {
  width: auto;
  max-width: none;
}

.sm-benefits-heading .ku-section-heading__subtitle {
  color: #f4811f;
}

.sm-benefits-heading .ku-section-heading__line {
  width: clamp(190px, 24vw, 290px);
  background: #6c4420;
}

.sm-benefits-list {
  width: min(100%, 1120px);
  margin: clamp(40px, 3.8vw, 60px) auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  --sm-benefits-gap-x: clamp(14px, 1.8vw, 26px);
  --sm-benefits-gap-y: clamp(22px, 2.6vw, 34px);
  gap: var(--sm-benefits-gap-y) var(--sm-benefits-gap-x);
}

.sm-benefits-item {
  flex: 0 0 calc((100% - (4 * var(--sm-benefits-gap-x))) / 5);
  max-width: calc((100% - (4 * var(--sm-benefits-gap-x))) / 5);
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sm-benefits-item__ring {
  width: clamp(124px, 10vw, 146px);
  aspect-ratio: 1 / 1;
  border: 2px solid #f4811f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.sm-benefits-item__icon {
  width: 100%;
  max-width: 72px;
  height: auto;
  display: block;
}

.sm-benefits-item__title {
  margin: 12px 0 0;
  color: #39210b;
  font-family: "Noto Sans JP", "Noto Sans SC", sans-serif;
  font-size: clamp(1rem, 0.34vw + 0.91rem, 1.18rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
}

.sm-benefits-item__note {
  margin: 6px 0 0;
  color: #39210b;
  font-family: "Noto Sans JP", "Noto Sans SC", sans-serif;
  font-size: clamp(0.82rem, 0.18vw + 0.78rem, 0.9rem);
  font-weight: 500;
  line-height: 1.55;
  max-width: 11.8em;
}

.sm-benefits-item:last-child .sm-benefits-item__note {
  max-width: 18.5em;
}

.sm-career-section {
  background: #93cbd7;
  padding: 46px 0 78px;
}

.sm-career-section .ku-section__inner {
  max-width: 1280px;
}

.sm-career-section__header {
  margin: 0;
}

.sm-career-heading {
  width: min(900px, 100%);
}

.sm-career-heading .ku-section-heading__image {
  width: auto;
  max-width: 100%;
}

.sm-career-heading .ku-section-heading__subtitle {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sm-career-heading .ku-section-heading__line {
  width: clamp(200px, 24vw, 300px);
  background: #6c4420;
}

.sm-career-panel {
  width: min(100%, 1120px);
  margin: clamp(26px, 2.6vw, 40px) auto 0;
  display: flex;
  justify-content: center;
}

.sm-career-panel__image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  box-shadow: none;
  border-radius: 0;
  filter: drop-shadow(6px 6px 0 rgba(57, 33, 11, 0.16));
}

.sm-career-panel__image--desktop {
  display: block;
}

.sm-career-panel__image--mobile {
  display: none;
}

.sm-interview-section {
  background: #fff;
  padding: 46px 0 76px;
}

.sm-interview-section .ku-section__inner {
  max-width: none;
  width: 100%;
  margin: 0;
  --sm-interview-left-pad: max(
    var(--page-padding),
    calc((100vw - 1280px) / 2 + var(--page-padding))
  );
  padding-left: var(--sm-interview-left-pad);
  padding-right: 0;
}

.sm-interview-section__header {
  margin: 0;
}

.sm-interview-heading {
  width: min(900px, 100%);
}

.sm-interview-heading .ku-section-heading__image {
  width: auto;
  max-width: 100%;
}

.sm-interview-heading .ku-section-heading__subtitle {
  color: #f4811f;
}

.sm-interview-heading .ku-section-heading__line {
  width: clamp(210px, 27vw, 340px);
  background: #6c4420;
}

.sm-interview-feature {
  width: 100%;
  margin: clamp(26px, 2.4vw, 36px) 0 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 44%);
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
}

.sm-interview-feature__copy {
  padding: 0 clamp(8px, 0.8vw, 14px) 0 0;
  color: #39210b;
}

.sm-interview-feature__lead {
  margin: 0;
  color: #39210b;
  font-family: "Noto Sans JP", "Noto Sans SC", sans-serif;
  font-size: clamp(1.5rem, 0.85vw + 1.24rem, 1.95rem);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0;
}

.sm-interview-feature__meta {
  margin-top: clamp(34px, 2.8vw, 46px);
}

.sm-interview-feature__meta-line {
  display: block;
  width: clamp(110px, 13vw, 180px);
  height: 2px;
  background: #6c4420;
  margin-bottom: 14px;
}

.sm-interview-feature__meta-text {
  margin: 0;
  color: #39210b;
  font-family: "Noto Sans JP", "Noto Sans SC", sans-serif;
  font-size: clamp(1rem, 0.25vw + 0.93rem, 1.1rem);
  font-weight: 700;
  line-height: 1.65;
}

.sm-interview-feature__media {
  margin: 0;
  justify-self: end;
}

.sm-interview-feature__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-top-left-radius: clamp(42px, 5vw, 62px);
}

.sm-interview-slider-wrap {
  width: 100%;
  margin: 0;
  position: relative;
  padding-bottom: 0;
}

.sm-interview-swiper {
  margin: 0;
}

.sm-interview-swiper .slick-list {
  overflow: hidden;
}

.sm-interview-swiper .slick-track {
  display: flex;
  align-items: stretch;
}

.sm-interview-slide {
  height: auto;
  width: clamp(960px, 91vw, 1260px);
  padding-right: clamp(22px, 2vw, 34px);
}

.sm-interview-slide__inner {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  row-gap: clamp(12px, 1.1vw, 18px);
  background: #e28a43;
  color: #fff;
  border-radius: 0 0 clamp(48px, 4vw, 72px) 0;
  min-height: clamp(205px, 18vw, 270px);
  padding: clamp(18px, 1.8vw, 26px) clamp(54px, 4vw, 70px)
    clamp(34px, 3.4vw, 48px) clamp(22px, 2vw, 30px);
}

.sm-interview-slide__title {
  margin: 0;
  color: #fff;
  font-family: "Noto Sans JP", "Noto Sans SC", sans-serif;
  font-size: clamp(1.12rem, 0.3vw + 1.04rem, 1.28rem);
  font-weight: 700;
  line-height: 1.4;
}

.sm-interview-slide__text {
  margin: 0;
  color: #fff;
  font-family: "Noto Sans JP", "Noto Sans SC", sans-serif;
  font-size: clamp(0.92rem, 0.15vw + 0.88rem, 1rem);
  font-weight: 500;
  line-height: 2;
  display: flex;
  align-items: center;
}

.sm-interview-swiper .slick-dots {
  position: static;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin: 24px 0 34px;
  margin-left: calc(-1 * var(--sm-interview-left-pad));
  padding: 0;
}

.sm-interview-swiper .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
}

.sm-interview-swiper .slick-dots li button {
  width: 16px;
  height: 16px;
  padding: 0;
  border: 2px solid #f4811f;
  border-radius: 50%;
  background: #fff;
}

.sm-interview-swiper .slick-dots li button::before {
  display: none;
}

.sm-interview-swiper .slick-dots li.slick-active button {
  background: #f4811f;
}

.sm-flow-section {
  background: #93cbd7;
  padding: 46px 0 82px;
}

.sm-flow-section .ku-section__inner {
  max-width: 1280px;
}

.sm-flow-section__header {
  margin: 0;
}

.sm-flow-heading {
  width: min(900px, 100%);
}

.sm-flow-heading .ku-section-heading__image {
  width: auto;
  max-width: 100%;
}

.sm-flow-heading .ku-section-heading__subtitle {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sm-flow-heading .ku-section-heading__line {
  width: clamp(180px, 23vw, 280px);
  background: #6c4420;
}

.sm-flow-card {
  width: min(100%, 1120px);
  margin: clamp(26px, 2.6vw, 38px) auto 0;
  background: #fff;
  border-radius: 12px;
  padding: clamp(24px, 2.4vw, 34px) clamp(22px, 2.6vw, 38px)
    clamp(28px, 2.8vw, 38px);
}

.sm-flow-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sm-flow-step {
  margin: 0;
  padding: clamp(16px, 1.5vw, 20px) 0;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 170px;
  gap: 0 clamp(18px, 2.3vw, 30px);
  align-items: center;
}

.sm-flow-step:nth-child(odd) {
  padding-left: clamp(14px, 3.2vw, 38px);
  padding-right: clamp(118px, 11vw, 166px);
}

.sm-flow-step:nth-child(even) {
  padding-left: clamp(86px, 9vw, 126px);
  padding-right: clamp(0px, 0.4vw, 8px);
}

.sm-flow-step__num {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #93cbd7;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Old Standard TT", "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
  justify-self: center;
}

.sm-flow-step:not(.is-last) .sm-flow-step__num::after {
  content: "";
  position: absolute;
  left: calc(50% + 4px);
  top: calc(100% + 10px);
  width: clamp(88px, 8vw, 112px);
  height: 2px;
  background: #93cbd7;
  transform: rotate(58deg);
  transform-origin: left center;
}

.sm-flow-step:nth-child(even):not(.is-last) .sm-flow-step__num::after {
  left: auto;
  right: calc(50% + 4px);
  transform: rotate(-58deg);
  transform-origin: right center;
}

.sm-flow-step__body {
  min-width: 0;
}

.sm-flow-step__title {
  margin: 0;
  color: #93cbd7;
  font-family: "Noto Sans JP", "Noto Sans SC", sans-serif;
  font-size: clamp(1.3rem, 0.55vw + 1.13rem, 1.62rem);
  font-weight: 700;
  line-height: 1.35;
}

.sm-flow-step__text {
  margin: 10px 0 0;
  color: #39210b;
  font-family: "Noto Sans JP", "Noto Sans SC", sans-serif;
  font-size: clamp(0.98rem, 0.2vw + 0.92rem, 1.06rem);
  font-weight: 700;
  line-height: 1.85;
}

.sm-flow-step__icon {
  justify-self: end;
}

.sm-flow-step__icon img {
  display: block;
  width: 151px;
  max-width: 100%;
  height: auto;
}

.sm-faq-section {
  background: #fff;
  padding: 56px 0 88px;
}

.sm-faq-section .ku-section__inner {
  max-width: 1280px;
}

.sm-faq-section__header {
  margin: 0;
}

.sm-faq-heading {
  width: min(900px, 100%);
}

.sm-faq-heading .ku-section-heading__image {
  width: auto;
  max-width: 100%;
}

.sm-faq-heading .ku-section-heading__subtitle {
  color: #f4811f;
}

.sm-faq-heading .ku-section-heading__line {
  width: clamp(170px, 21vw, 260px);
  background: #6c4420;
}

.sm-faq-list {
  width: min(100%, 1120px);
  margin: clamp(28px, 3vw, 40px) auto 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sm-faq-item {
  background: #fff;
  border: 1px solid rgba(244, 129, 31, 0.75);
  border-radius: 16px;
  overflow: hidden;
}

.sm-faq-item__title {
  margin: 0;
}

.sm-faq-item__button {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  margin: 0;
  padding: 12px 18px 12px 20px;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) 42px;
  align-items: center;
  column-gap: 16px;
  text-align: left;
  color: #1f1309;
  font-family: "Noto Sans JP", "Noto Sans SC", sans-serif;
}

.sm-faq-item__question {
  display: block;
  min-width: 0;
  font-size: clamp(1rem, 0.2vw + 0.94rem, 1.08rem);
  font-weight: 700;
  line-height: 1.45;
  color: #1f1309;
}

.sm-faq-item__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  padding-top: 1px;
  font-family: "Noto Sans JP", "Noto Sans SC", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
}

.sm-faq-item__mark--q {
  color: #1f1309;
}

.sm-faq-item__mark--a {
  color: #f4811f;
}

.sm-faq-item__toggle {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e78b3f;
  justify-self: end;
  box-shadow: inset 0 0 0 1px rgba(231, 139, 63, 0.24);
}

.sm-faq-item__toggle::before,
.sm-faq-item__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 3px;
  background: #fff;
  border-radius: 99px;
  transform: translate(-50%, -50%);
}

.sm-faq-item__toggle::after {
  width: 3px;
  height: 16px;
}

.sm-faq-item.is-open .sm-faq-item__toggle::after {
  display: none;
}

.sm-faq-item__panel {
  display: block;
}

.sm-faq-item__answer {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
  padding: 0 18px 18px 20px;
  color: #f4811f;
  font-family: "Noto Sans JP", "Noto Sans SC", sans-serif;
}

.sm-faq-item__answer-text {
  margin: 0;
  color: #f4811f;
  font-size: clamp(0.95rem, 0.15vw + 0.9rem, 1rem);
  font-weight: 700;
  line-height: 1.65;
}

.sm-faq-section__cta {
  margin-top: clamp(46px, 5vw, 72px);
  text-align: center;
}

.sm-faq-section__apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 364px);
  padding: 14px 42px;
  border-radius: 999px;
  background: #e78b3f;
  border: 2px solid #e78b3f;
  color: #fff;
  font-family: "Noto Sans JP", "Noto Sans SC", sans-serif;
  font-size: clamp(1.16rem, 0.3vw + 1.06rem, 1.32rem);
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
  box-shadow: 0 8px 0 rgba(57, 33, 11, 0.12);
  transition:
    background-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.sm-faq-section__apply:hover {
  background: #fff;
  color: #e78b3f;
  box-shadow: 0 8px 0 rgba(57, 33, 11, 0.08);
}

.sm-hr-section {
  position: relative;
  background: #93cbd7;
  overflow: hidden;
  padding: 40px 0 34px;
}

.sm-hr-section__deco {
  position: absolute;
  top: 40px;
  right: 0;
  width: auto;
  height: calc(100% - 40px);
  z-index: 0;
  pointer-events: none;
}

.sm-hr-section .ku-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
}

.sm-hr-section__header {
  margin: 0;
}

.sm-hr-title-wrap {
  position: relative;
  width: min(840px, 100%);
}

.sm-hr-title-wrap__bg {
  display: block;
  width: 100%;
  height: auto;
}

.sm-hr-title-wrap__label {
  position: absolute;
  inset: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding-left: 0;
  color: #fff;
  font-size: clamp(2rem, 1.1vw + 1.72rem, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
}

.sm-hr-title-wrap__label span {
  position: relative;
  display: inline-block;
  padding: 0 0 10px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sm-hr-title-wrap__label span::after {
  content: "";
  position: absolute;
  left: 0;
  width: clamp(260px, 42vw, 470px);
  bottom: 0;
  height: 2px;
  background: #6c4420;
}

.sm-hr-list {
  width: min(100%, 1020px);
  margin: clamp(24px, 3vw, 36px) auto 0;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 24px);
  padding-bottom: 8px;
}

.sm-hr-item {
  display: grid;
  --sm-hr-gap: clamp(14px, 2vw, 24px);
  grid-template-columns: minmax(0, calc(50% - var(--sm-hr-gap))) minmax(0, 50%);
  align-items: center;
  gap: var(--sm-hr-gap);
}

.sm-hr-item.is-image-left .sm-hr-item__copy {
  order: 2;
}

.sm-hr-item.is-image-left .sm-hr-item__media {
  order: 1;
}

.sm-hr-item__copy {
  position: relative;
  min-height: clamp(112px, 10vw, 150px);
  display: flex;
  align-items: center;
  padding: 14px 18px 12px;
}

.sm-hr-item.is-text-left .sm-hr-item__copy {
  justify-content: center;
  text-align: left;
  padding-right: clamp(32px, 4vw, 52px);
  padding-left: 14px;
}

.sm-hr-item.is-text-right .sm-hr-item__copy {
  justify-content: center;
  text-align: right;
  padding-left: 14px;
  padding-right: clamp(32px, 4vw, 52px);
}

.sm-hr-item__num {
  position: absolute;
  bottom: -2px;
  z-index: 0;
  line-height: 1;
  pointer-events: none;
}

.sm-hr-item.is-text-left .sm-hr-item__num {
  right: 8px;
}

.sm-hr-item.is-text-right .sm-hr-item__num {
  left: 8px;
}

.sm-hr-item__num img {
  display: block;
  width: clamp(126px, 12vw, 186px);
  height: auto;
}

.sm-hr-item__num-fallback {
  display: block;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: clamp(6.2rem, 10.5vw, 11rem);
  font-weight: 700;
  line-height: 0.78;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.65);
}

.sm-hr-item__text {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  width: min(100%, 32ch);
  color: #39210b;
  font-size: clamp(1.02rem, 0.35vw + 0.92rem, 1.16rem);
  line-height: 1.52;
  font-weight: 700;
}

.sm-hr-item__note {
  font-size: 0.9em;
}

.sm-hr-item__nowrap {
  white-space: nowrap;
  word-break: keep-all;
}

.sm-hr-item__media {
  width: 100%;
  max-width: none;
}

.sm-hr-item.is-image-right .sm-hr-item__media {
  justify-self: end;
}

.sm-hr-item.is-image-left .sm-hr-item__media {
  justify-self: start;
}

.sm-hr-item__media img {
  display: block;
  width: 100%;
  height: auto;
  border: 6px solid #fff;
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.about-section {
  padding: 36px 0 52px;
  color: var(--ku-black);
}

.about-header {
  margin-bottom: 20px;
}

.about-title {
  margin: 0;
  font-size: clamp(2.6rem, 2.2vw + 1.6rem, 3.4rem);
  font-weight: 700;
  color: #f7fbfd;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.8);
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.02em;
}

.about-subtitle {
  margin: 6px 0 0;
  font-size: 1rem;
  font-weight: 700;
  color: #f7fbfd;
  border-bottom: 2px solid rgba(255, 255, 255, 0.8);
  display: inline-block;
  padding-bottom: 2px;
}

.about-body {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.about-text {
  flex: 1 1 52%;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 2.2;
  min-width: 0;
  max-width: 100%;
}

.about-text__line {
  display: inline;
}

.about-text__break {
  display: none;
}

.about-text p {
  margin: 0 0 18px;
}

.about-media {
  flex: 1 1 48%;
  min-width: 0;
}

.about-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-details {
  margin-top: 18px;
}

.about-summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--ku-black);
  border: 0;
  border-radius: 999px;
  padding: 12px 28px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.about-summary::-webkit-details-marker {
  display: none;
}

.about-summary__icon {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.about-details[open] .about-summary__icon {
  transform: rotate(-135deg);
}

.about-points {
  margin-top: 18px;
  background: #fff;
  border: 2px solid var(--ku-accent);
  padding: 18px 20px;
}

.about-points__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 600;
  color: var(--ku-black);
  line-height: 1.7;
}

.about-point__num {
  background: #93cbd7;
  color: var(--ku-black);
  border-radius: 50%;
  width: 2.2rem;
  height: 2.2rem;
  flex: 0 0 2.2rem;
  aspect-ratio: 1/1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1;
  text-align: center;
}

.stats-section {
  padding: 36px 0 52px;
}

.stats-row {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stats-row + .stats-row {
  margin-top: 36px;
}

.stats-row__header,
.stats-row__graph {
  flex: 1 1 0;
}

.stats-row__header {
  display: flex;
  align-items: center;
}

.stats-row__graph img {
  width: 100%;
  height: auto;
  display: block;
}

.stats-row--reverse {
  flex-direction: row-reverse;
}

.stats-header {
  display: flex;
  align-items: center;
}

.stats-header__media {
  position: relative;
  display: inline-block;
}

.stats-header__image {
  width: min(145px, 30vw);
  height: auto;
  display: block;
}

.stats-header__text {
  position: absolute;
  left: 40%;
  top: 82%;
  transform: translateY(-50%);
  color: var(--ku-orange);
}

.stats-header__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.stats-header__meta {
  margin: 4px 0 0;
  font-size: 1.14rem;
  font-weight: 400;
  white-space: nowrap;
}

.interview-section {
  padding: 36px 0 56px;
  color: var(--ku-black);
}

.interview-header {
  margin: 3rem 0 6rem;
}

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

.interview-panel {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  background: #fff;
}

.interview-panel--text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.125rem, 4vw, 1.875rem);
}

.interview-panel__quote {
  margin: 0;
  font-size: clamp(1.08rem, 0.5vw + 0.95rem, 1.24rem);
  font-weight: 600;
  line-height: 1.7;
  text-align: center;
  max-width: 70%;
}

.interview-panel--image {
  background: #cfcfcf;
}

.interview-panel__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interview-panel__arrow {
  position: absolute;
  left: 50%;
  width: clamp(1.5rem, 4vw, 2.4rem);
  height: auto;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

.interview-panel__arrow--bottom {
  bottom: -0.12rem;
}

.interview-panel__arrow--top {
  top: -0.12rem;
}

.interview-panel__arrow--flip {
  transform: translateX(-50%) rotate(180deg);
}

.interview-panel__overlay {
  position: absolute;
  left: 0.875rem;
  bottom: 0.75rem;
  padding-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ku-black);
  text-shadow: 0 4px 10px rgba(255, 255, 255, 0.85);
  z-index: 3;
}

.interview-panel__meta,
.interview-panel__name {
  font-size: 0.82rem;
  font-weight: 500;
}

.recruit-section {
  padding: 3.5rem 0 4.5rem;
  color: #39210b;
}

.recruit-header {
  margin-bottom: 3rem;
}

.recruit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem 2rem;
}

.recruit-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.recruit-card__media {
  border: 1px solid #e7e1d8;
}

.recruit-card__media-link {
  display: block;
  position: relative;
  overflow: hidden;
}

.recruit-card__media-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transition: opacity 0.24s ease;
  pointer-events: none;
}

.recruit-card__media img {
  width: 100%;
  height: auto;
  display: block;
  transition:
    transform 0.24s ease,
    opacity 0.24s ease;
}

.recruit-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.9rem;
  flex: 1 1 auto;
}

.recruit-card__title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: inherit;
}

.recruit-card__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: inherit;
}

.recruit-card__more {
  margin-top: auto;
  align-self: flex-end;
  font-size: 0.95rem;
  font-weight: 700;
  color: #f4811f;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  line-height: 1.2;
  padding: 0.2rem 1.7rem 0.2rem 0.25rem;
  background: url("../images/arrow-orange.png") right center / auto 100%
    no-repeat;
}

.recruit-card__more:hover {
  opacity: 0.75;
}

.recruit-card__media-link:hover::after,
.recruit-card__media-link:focus-visible::after {
  opacity: 1;
}

.recruit-card__media-link:hover img,
.recruit-card__media-link:focus-visible img {
  opacity: 0.9;
  transform: scale(1.01);
}

.recruit-card__media-link:focus-visible,
.recruit-card__more:focus-visible {
  outline: 2px solid #f4811f;
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .ku-section-heading__title {
    font-size: clamp(1.2rem, 3.6vw, 1.5rem);
  }

  .ku-section-heading__subtitle {
    font-size: 0.95rem;
  }

  .ku-section-heading--image .ku-section-heading__subtitle {
    font-size: 1.2rem;
    margin-top: -1rem;
  }

  .about-section {
    padding: 30px 0 44px;
  }

  .about-body {
    flex-direction: column;
    gap: 14px;
  }

  .about-title {
    font-size: clamp(2.1rem, 6vw, 2.6rem);
  }

  .about-text {
    font-size: 0.95rem;
  }

  .about-text p {
    margin-bottom: 10px;
  }

  .about-text,
  .about-header {
    padding: 0 6px;
  }

  .about-media {
    padding: 0 14px;
  }

  .about-summary {
    padding: 9px 18px;
  }

  .about-points {
    padding: 18px 10px;
  }

  .about-point__num {
    width: 2rem;
    height: 2rem;
    flex-basis: 2rem;
  }

  .stats-section {
    padding: 30px 0 44px;
  }

  .stats-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .stats-row + .stats-row {
    margin-top: 28px;
  }

  .stats-row--reverse {
    flex-direction: column;
  }

  .stats-header__image {
    width: min(80px, 36vw);
  }

  .stats-header__text {
    left: 38%;
    top: 82%;
  }

  .stats-header__title {
    font-size: 0.95rem;
  }

  .stats-header__meta {
    font-size: 0.75rem;
  }

  .interview-section {
    padding: 30px 0 48px;
  }

  .interview-header {
    margin-top: 1.5rem;
    margin-bottom: 4.5rem;
  }

  .interview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .interview-panel--text {
    padding: 1rem;
  }

  .interview-panel__quote {
    font-size: 0.95rem;
    max-width: 85%;
  }

  .interview-panel__overlay {
    left: 0.625rem;
    bottom: 0.625rem;
    padding-bottom: 0.8rem;
    font-size: 0.74rem;
  }

  .interview-panel__meta,
  .interview-panel__name {
    font-size: 0.68rem;
  }

  .recruit-section {
    padding: 2.8rem 0 3.8rem;
  }

  .recruit-header {
    margin-bottom: 2rem;
  }

  .recruit-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .recruit-card__body {
    margin-top: 0.75rem;
  }

  .recruit-card__title {
    font-size: 1.05rem;
  }

  .recruit-card__text {
    font-size: 0.95rem;
  }

  .recruit-card__more {
    font-size: 0.86rem;
    padding-right: 1.5rem;
  }

  .interview-panel--n1 {
    order: 1;
  }

  .interview-panel--n2 {
    order: 2;
  }

  .interview-panel--n3 {
    order: 5;
  }

  .interview-panel--n4 {
    order: 3;
  }

  .interview-panel--n5 {
    order: 4;
  }

  .interview-panel--n6 {
    order: 7;
  }

  .interview-panel--n7 {
    order: 8;
  }

  .interview-panel--n8 {
    order: 11;
  }

  .interview-panel--n9 {
    order: 12;
  }

  .interview-panel--n10 {
    order: 6;
  }

  .interview-panel--n11 {
    order: 9;
  }

  .interview-panel--n12 {
    order: 10;
  }

  .interview-panel--n10 .interview-panel__arrow,
  .interview-panel--n12 .interview-panel__arrow {
    top: auto;
    bottom: -0.12rem;
    transform: translateX(-50%);
  }

  .interview-panel--n8 .interview-panel__arrow {
    bottom: auto;
    top: -0.12rem;
    transform: translateX(-50%) rotate(180deg);
  }
}

@media (max-width: 600px) {
  .interview-panel--text {
    padding: 0.75rem;
  }

  .interview-panel__quote {
    font-size: 0.85rem;
    max-width: 90%;
  }
}

@media (min-width: 901px) {
  .about-body {
    align-items: center;
  }

  .about-text {
    font-size: 1.2rem;
    line-height: 3.12;
    position: relative;
    z-index: 2;
    margin-right: -90px;
    text-shadow: 0 6px 14px rgba(255, 255, 255, 0.85);
    max-width: none;
    width: calc(100% + 90px);
    overflow: visible;
  }

  .about-text__line {
    display: inline;
    white-space: nowrap;
  }

  .about-text__break {
    display: inline;
  }

  .about-media {
    position: relative;
    z-index: 1;
  }
}
.page-content {
  padding-top: 0;
  min-height: calc(100vh - var(--ku-header-height));
  display: flex;
  flex-direction: column;
}

.page-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px var(--page-padding);
}

.page-section h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.page-section p {
  margin: 0;
  max-width: 720px;
  line-height: 1.6;
}

.apply-page {
  padding: 42px 0 72px;
  background: #f6fbff;
  scroll-margin-top: calc(var(--ku-header-height) + 16px);
}

.apply-page__inner {
  max-width: 980px;
}

.apply-page__header {
  margin-bottom: 20px;
}

.apply-page__title {
  margin: 0;
  font-size: clamp(1.65rem, 1.2vw + 1.2rem, 2.3rem);
  color: #11233c;
}

.apply-page__description {
  margin: 12px 0 0;
  line-height: 1.6;
  color: #31455e;
}

.apply-form-wrapper {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #d6e4f2;
  box-shadow: 0 10px 24px rgba(17, 35, 60, 0.08);
  padding: 28px;
}

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

.apply-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.apply-field[hidden] {
  display: none !important;
}

.apply-field--full {
  grid-column: 1 / -1;
}

.apply-field label {
  font-weight: 700;
  color: #11233c;
}

.apply-field input,
.apply-field select,
.apply-field textarea {
  width: 100%;
  border: 1px solid #b8cbe0;
  border-radius: 10px;
  padding: 11px 12px;
  font-size: 1rem;
  line-height: 1.4;
  background: #fff;
}

.apply-field textarea {
  min-height: 110px;
  resize: vertical;
}

.apply-field input:focus,
.apply-field select:focus,
.apply-field textarea:focus {
  outline: 2px solid #66a7e3;
  outline-offset: 1px;
  border-color: #66a7e3;
}

.apply-required {
  color: #c63c3c;
  font-size: 0.92em;
}

.apply-form__tracking {
  margin: 18px 0 0;
  font-size: 0.95rem;
  color: #455f7f;
}

.apply-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  line-height: 1.55;
}

.apply-consent a {
  color: #0d5ea8;
  text-decoration: underline;
}

.apply-consent__policy {
  display: block;
  margin-top: 6px;
}

.apply-consent input {
  margin-top: 3px;
}

.apply-error {
  margin-top: 18px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #e2a2a2;
  background: #fff2f2;
  color: #9a1f1f;
}

.apply-error ul {
  margin: 0;
  padding-left: 20px;
}

.apply-actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.apply-submit {
  border: 2px solid #f4811f;
  border-radius: 999px;
  background: #fff;
  color: #f4811f;
  font-weight: 700;
  padding: 12px 34px;
  min-width: 220px;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.apply-submit:hover:not(:disabled) {
  background: #f4811f;
  color: #fff;
  border-color: #fddac1;
  transform: translateY(-1px);
}

.apply-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.apply-success {
  border-radius: 12px;
  border: 1px solid #9dc5ea;
  background: #edf7ff;
  padding: 24px;
  color: #10365d;
}

.apply-success__title {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.apply-success__ja,
.apply-success__en {
  margin: 0;
  line-height: 1.7;
}

.apply-success__en {
  margin-top: 14px;
}

#footer {
  margin-top: auto;
  padding: 32px 0 24px;
  background-color: #eeeeee;
  color: #333;
  font-weight: 700;
}

#footer a {
  color: inherit;
}

#footer a:hover {
  opacity: 0.6;
}

#footer .footer-inner {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  padding: 0 2.5rem;
}

#footer .footer-contents-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #cdcbc8;
}

#footer .footer-logo-sns-section {
  width: 25%;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#footer .footer-logo a {
  display: block;
}

#footer .footer-logo-img {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
}

#footer .sns-box {
  display: flex;
  gap: 8px;
  width: 7rem;
}

#footer .sns-contents {
  display: flex;
  align-items: center;
}

#footer .footer-page-contents {
  width: calc(75% - 24px);
  min-width: 260px;
}

#footer .footer-page-contents ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.35rem 1.5rem;
  margin: 0;
  width: 100%;
}

#footer .footer-page-contents ul li {
  padding: 4px 0;
  border-bottom: none;
  font-size: 0.9rem;
  min-width: 0;
  overflow-wrap: anywhere;
}

#footer .footer-lower-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 12px;
}

#footer .footer-lower-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

#footer .button-wrapper,
#footer .link-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

#footer .footer-lower-link-button {
  padding: 6px 14px;
  border: 2px solid #cdcbc8;
  border-radius: 999px;
  font-size: 0.8rem;
  color: #333;
  background: transparent;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
}

#footer .footer-lower-link-button:hover {
  background: #333;
  color: #eeeeee;
  border-color: #333;
  opacity: 1;
}

#footer .footer-lower-link {
  font-size: 0.8rem;
  color: #333;
}

#footer .copyright {
  font-size: 0.75rem;
  color: #333;
  margin-left: auto;
  font-weight: 700;
}

.site-footer {
  min-height: var(--footer-height);
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px var(--page-padding);
}

@media (max-width: 768px) {
  .page-top {
    --page-top-cta-size: 80px;
    padding: 0;
  }

  .page-top__content {
    left: 10px;
    bottom: 36px;
    right: 10px;
    transform: none;
    max-width: none;
  }

  .page-top__title {
    padding-top: 6px;
    font-size: clamp(1.08rem, 2.6vw + 0.25rem, 1.5rem);
    overflow-wrap: anywhere;
  }

  .page-top__title span {
    white-space: normal;
  }

  .page-top__cta {
    font-size: 0.72rem;
    padding: 11px 13px;
  }

  .page-top__cta-text {
  }

  .page-top__cta-underline {
    width: 136%;
    margin-top: 6px;
  }

  .page-school-manager .page-top__title span:first-child {
    font-size: clamp(1.5rem, 2.9vw + 0.68rem, 2rem);
    margin-bottom: 20px;
  }

  .page-school-manager .page-top__title span:last-child {
    font-size: clamp(1.02rem, 1.5vw + 0.62rem, 1.25rem);
    line-height: 1.6;
    top: 0;
    text-decoration-thickness: 10px;
    text-underline-offset: -4px;
  }

  .page-school-manager .page-top__content {
    bottom: 58px;
  }

  .page-school-manager .ku-section-heading--image .ku-section-heading__image {
    width: auto;
    max-width: 80vw;
    height: auto;
  }

  .sm-about-section {
    padding: 34px 0 48px;
  }

  .sm-about-section__header {
    margin-bottom: 16px;
  }

  .sm-about-section__title {
    font-size: clamp(1.38rem, 3.8vw + 0.55rem, 1.86rem);
  }

  .sm-about-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sm-about-card {
    max-width: 430px;
    margin: 0 auto;
    width: 100%;
    border-radius: 14px;
    padding: 24px;
    gap: 12px;
    height: clamp(520px, 132vw, 620px);
  }

  .sm-about-card__media {
    flex: 0 0 57%;
    border-radius: 9px;
  }

  .sm-about-card__body {
    flex: 1 1 43%;
    padding: 8px;
    gap: 0;
    justify-content: flex-start;
  }

  .sm-about-card__title {
    font-size: clamp(0.96rem, 1.8vw + 0.58rem, 1.16rem);
    line-height: 1.25;
  }

  .sm-about-card__text {
    font-size: clamp(0.88rem, 1.2vw + 0.58rem, 0.98rem);
    line-height: 1.58;
    margin-top: 0;
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    align-items: center;
  }

  .sm-about-card__divider {
    margin-top: clamp(8px, 2vw, 14px);
    margin-bottom: clamp(6px, 1.6vw, 10px);
  }

  .page-native-educator .sm-about-card {
    height: clamp(560px, 146vw, 700px);
  }

  .page-native-educator .sm-about-card__title {
    font-size: clamp(0.9rem, 1.4vw + 0.58rem, 1.04rem);
    line-height: 1.22;
  }

  .page-native-educator .sm-about-card__text {
    font-size: clamp(0.82rem, 0.75vw + 0.62rem, 0.9rem);
    line-height: 1.5;
  }

  .sm-schedule-section {
    padding: 0 0 54px;
  }

  .sm-schedule-section .ku-section__inner {
    padding-left: 8px;
    padding-right: 8px;
  }

  .sm-schedule {
    border: 0;
    background: transparent;
  }

  .sm-schedule__title {
    margin: 0 0 6px;
  }

  .sm-schedule__toggle {
    width: min(292px, 100%);
    border: 1px solid #f4811f;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 6px 10px rgba(57, 33, 11, 0.08);
    justify-content: center;
    gap: 18px;
    padding: 16px 22px;
    font-size: clamp(1.08rem, 1.8vw + 0.72rem, 1.3rem);
  }

  .sm-schedule__arrow {
    width: 12px;
    height: 12px;
    border-right-width: 3px;
    border-bottom-width: 3px;
    transform: translateY(-1px) rotate(45deg);
  }

  .sm-schedule.is-open .sm-schedule__arrow {
    transform: translateY(1px) rotate(-135deg);
  }

  .sm-schedule__panel {
    border: 1px solid #f4811f;
    border-top-width: 1px;
    background: #fff;
  }

  .sm-schedule__panel-inner {
    padding: 20px 10px 24px;
  }

  .sm-schedule-item + .sm-schedule-item {
    margin-top: 18px;
    padding-top: 18px;
  }

  .sm-schedule-item__time {
    font-size: clamp(1.08rem, 1.6vw + 0.72rem, 1.25rem);
    gap: 10px;
    padding: 0 8px;
    margin-bottom: 12px;
  }

  .sm-schedule-item__time-divider {
    display: none;
  }

  .sm-schedule-item__heading {
    margin-bottom: 10px;
    font-size: clamp(1.24rem, 2.4vw + 0.68rem, 1.5rem);
    line-height: 1.2;
  }

  .sm-schedule-item__content {
    align-items: center;
    gap: 10px;
  }

  .sm-schedule-item__media {
    flex: 0 0 clamp(84px, 24vw, 112px);
    width: clamp(84px, 24vw, 112px);
    aspect-ratio: 3 / 4;
  }

  .sm-schedule-item__text {
    flex: 1 1 auto;
    font-size: clamp(0.8rem, 0.6vw + 0.66rem, 0.88rem);
    line-height: 1.42;
  }

  .sm-schedule-item__text p + p {
    margin-top: 0.2em;
  }

  .sm-schedule-item__media img {
    height: 100%;
    object-position: center bottom;
  }

  .sm-attractive-section {
    padding: 22px 0 28px;
  }

  .sm-attractive-section .ku-section__inner {
    padding-left: 8px;
    padding-right: 8px;
  }

  .sm-attractive-heading {
    width: min(100%, 520px);
  }

  .sm-attractive-heading .ku-section-heading__image {
    max-width: min(100%, 340px);
  }

  .sm-attractive-heading .ku-section-heading__subtitle {
    color: #f4811f;
  }

  .sm-attractive-heading .ku-section-heading__line {
    width: clamp(130px, 34vw, 165px);
  }

  .sm-attractive-grid {
    margin-top: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .sm-attractive-card {
    border-radius: 10px;
    box-shadow: 4px 4px 0 rgba(57, 33, 11, 0.14);
  }

  .sm-attractive-card__tab {
    min-height: 34px;
    padding: 6px 8px;
  }

  .sm-attractive-card__tab span {
    font-size: clamp(0.88rem, 0.8vw + 0.72rem, 1.02rem);
    letter-spacing: 0.05em;
  }

  .sm-attractive-card__body {
    min-height: 140px;
    gap: 6px;
    padding: 6px 6px 6px;
  }

  .sm-attractive-card--with-note .sm-attractive-card__body {
    min-height: 152px;
    gap: 4px;
    padding-bottom: 7px;
  }

  .sm-attractive-card__icon {
    width: clamp(36px, 10vw, 50px);
  }

  .sm-attractive-card__stat {
    white-space: normal;
    flex-wrap: wrap;
    row-gap: 2px;
    column-gap: 2px;
    line-height: 1.05;
    text-align: center;
  }

  .sm-attractive-card__label,
  .sm-attractive-card__suffix {
    font-size: clamp(0.7rem, 0.55vw + 0.58rem, 0.82rem);
  }

  .sm-attractive-card__label {
    flex: 0 0 100%;
    display: block;
    text-align: center;
    line-height: 1.25;
  }

  .sm-attractive-card__value {
    font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  }

  .sm-attractive-card__note {
    margin-top: 0;
    font-size: clamp(0.6rem, 0.45vw + 0.5rem, 0.72rem);
    line-height: 1.1;
  }

  .sm-attractive-card--with-note .sm-attractive-card__note {
    margin-top: -3px;
  }

  .sm-job-desc-section {
    padding: 26px 0 34px;
  }

  .sm-job-desc-section .ku-section__inner {
    padding-left: 12px;
    padding-right: 12px;
  }

  .sm-job-desc-heading {
    width: min(100%, 520px);
  }

  .sm-job-desc-heading .ku-section-heading__image {
    max-width: min(100%, 360px);
  }

  .sm-job-desc-heading .ku-section-heading__line {
    width: clamp(145px, 42vw, 210px);
  }

  .sm-job-desc-table {
    margin-top: 12px;
  }

  .sm-job-desc-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px 0 11px;
  }

  .sm-job-desc-row__label {
    font-size: clamp(0.95rem, 0.8vw + 0.76rem, 1.06rem);
    line-height: 1.35;
  }

  .sm-job-desc-row__value {
    font-size: clamp(0.82rem, 0.7vw + 0.66rem, 0.94rem);
    font-weight: 500;
    line-height: 1.55;
  }

  .sm-job-desc-text + .sm-job-desc-text,
  .sm-job-desc-note + .sm-job-desc-note,
  .sm-job-desc-text + .sm-job-desc-note,
  .sm-job-desc-note + .sm-job-desc-text {
    margin-top: 0.08em;
  }

  .sm-job-desc-text--em {
    margin-top: 0.2em;
  }

  .sm-job-desc-row--salary .sm-job-desc-text--lead + .sm-job-desc-text {
    margin-top: 0.12em;
  }

  .sm-job-desc-row--salary .sm-job-desc-text--lead:not(:first-child) {
    margin-top: 0.55em;
  }

  .sm-job-desc-row--salary .sm-job-desc-text--em {
    margin-top: 0.14em;
  }

  .sm-job-desc-row--salary .sm-job-desc-text--em + .sm-job-desc-note {
    margin-top: 0;
  }

  .sm-job-desc-note {
    font-size: 0.9em;
    line-height: 1.4;
  }

  .sm-job-desc-vacation {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .sm-job-desc-vacation-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 8px;
    row-gap: 0.05em;
  }

  .sm-job-desc-vacation-list__item {
    padding-left: 0.95em;
    font-size: 0.95em;
    line-height: 1.5;
    white-space: normal;
    word-break: keep-all;
  }

  .sm-job-desc-vacation__heading {
    margin-bottom: 0.05em;
  }

  .sm-benefits-section {
    padding: 24px 0 34px;
  }

  .sm-benefits-section .ku-section__inner {
    padding-left: 12px;
    padding-right: 12px;
  }

  .sm-benefits-heading {
    width: min(100%, 520px);
  }

  .sm-benefits-heading .ku-section-heading__image {
    width: auto;
    max-width: none;
  }

  .sm-benefits-heading .ku-section-heading__line {
    width: clamp(130px, 38vw, 190px);
  }

  .sm-benefits-list {
    margin-top: 20px;
    --sm-benefits-gap-x: 10px;
    --sm-benefits-gap-y: 24px;
  }

  .sm-benefits-item {
    flex-basis: calc((100% - var(--sm-benefits-gap-x)) / 2);
    max-width: calc((100% - var(--sm-benefits-gap-x)) / 2);
  }

  .sm-benefits-item__ring {
    width: clamp(96px, 31vw, 120px);
    border-width: 1.5px;
    padding: 14px;
  }

  .sm-benefits-item__icon {
    max-width: 58px;
  }

  .sm-benefits-item__title {
    margin-top: 9px;
    font-size: clamp(0.92rem, 0.8vw + 0.72rem, 1.02rem);
    line-height: 1.35;
  }

  .sm-benefits-item__note {
    margin-top: 4px;
    font-size: clamp(0.72rem, 0.55vw + 0.58rem, 0.8rem);
    line-height: 1.45;
    max-width: 10.8em;
  }

  .sm-benefits-item:last-child .sm-benefits-item__note {
    max-width: 14.8em;
  }

  .sm-career-section {
    padding: 26px 0 36px;
  }

  .sm-career-section .ku-section__inner {
    padding-left: 12px;
    padding-right: 12px;
  }

  .sm-career-heading {
    width: min(100%, 520px);
  }

  .sm-career-heading .ku-section-heading__image {
    width: auto;
    max-width: 100%;
  }

  .sm-career-heading .ku-section-heading__line {
    width: clamp(140px, 42vw, 210px);
  }

  .sm-career-panel {
    margin-top: 18px;
    padding: 0;
  }

  .sm-career-panel__image--desktop {
    display: none;
  }

  .sm-career-panel__image--mobile {
    display: block;
  }

  .sm-career-panel__image {
    border-radius: 0;
    box-shadow: none;
    filter: drop-shadow(7px 7px 12px rgba(57, 33, 11, 0.16));
  }

  .sm-interview-section {
    padding: 24px 0 34px;
  }

  .sm-interview-section .ku-section__inner {
    --sm-interview-left-pad: 0px;
    padding-left: 0;
    padding-right: 0;
  }

  .sm-interview-heading {
    width: min(100%, 520px);
  }

  .sm-interview-heading .ku-section-heading__image {
    width: auto;
    max-width: 100%;
  }

  .sm-interview-heading .ku-section-heading__line {
    width: clamp(145px, 44vw, 210px);
  }

  .sm-interview-feature {
    width: 100%;
    margin-top: 16px;
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
  }

  .sm-interview-feature__copy {
    order: 2;
    padding: 0 0 10px;
  }

  .sm-interview-feature__lead {
    padding-left: 12px;
    padding-right: 12px;
    font-size: clamp(1.02rem, 1.4vw + 0.7rem, 1.2rem);
    line-height: 1.65;
  }

  .sm-interview-feature__meta {
    margin-top: 14px;
  }

  .sm-interview-feature__meta-line {
    width: 96px;
    margin-bottom: 8px;
  }

  .sm-interview-feature__meta-text {
    padding-left: 12px;
    padding-right: 12px;
    font-size: clamp(0.88rem, 0.75vw + 0.7rem, 0.98rem);
    line-height: 1.5;
  }

  .sm-interview-feature__media {
    order: 1;
    width: 100%;
    margin-top: 8px;
    margin-right: 0;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-top-left-radius: 34px;
  }

  .sm-interview-feature__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-top-left-radius: 0;
  }

  .sm-interview-slider-wrap {
    width: 100%;
    margin-right: 0;
    padding-bottom: 0;
  }

  .sm-interview-slide {
    width: auto;
    padding-right: 10px;
  }

  .sm-interview-slide__inner {
    display: grid;
    grid-template-rows: auto 1fr;
    row-gap: 10px;
    border-radius: 0 0 44px 0;
    min-height: 200px;
    padding: 14px 14px 20px;
  }

  .sm-interview-slide__title {
    font-size: clamp(0.95rem, 0.9vw + 0.74rem, 1.05rem);
    line-height: 1.35;
  }

  .sm-interview-slide__text {
    margin-top: 8px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    font-size: clamp(0.76rem, 0.7vw + 0.6rem, 0.86rem);
    line-height: 1.75;
  }

  .sm-interview-swiper .slick-dots {
    position: static;
    left: auto;
    bottom: auto;
    margin-top: 14px;
    padding-top: 4px;
    gap: 6px;
    width: auto;
    margin-left: 0;
    margin-bottom: 0;
  }

  .sm-interview-swiper .slick-dots li button {
    width: 8px;
    height: 8px;
    border-width: 1px;
  }

  .sm-flow-section {
    padding: 24px 0 36px;
  }

  .sm-flow-section .ku-section__inner {
    padding-left: 12px;
    padding-right: 12px;
  }

  .sm-flow-heading {
    width: min(100%, 520px);
  }

  .sm-flow-heading .ku-section-heading__image {
    width: auto;
    max-width: 100%;
  }

  .sm-flow-heading .ku-section-heading__line {
    width: clamp(140px, 40vw, 200px);
  }

  .sm-flow-card {
    margin-top: 16px;
    border-radius: 12px;
    padding: 14px 12px 16px;
  }

  .sm-flow-step {
    position: relative;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 0 12px;
    align-items: start;
    padding: 12px 0 18px;
  }

  .sm-flow-step:nth-child(odd),
  .sm-flow-step:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
  }

  .sm-flow-step__num {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
    align-self: start;
    margin-top: 1px;
    box-sizing: border-box;
    padding-top: 2px;
  }

  .sm-flow-step:not(.is-last) .sm-flow-step__num::after {
    left: 50%;
    right: auto;
    top: calc(100% + 9px);
    width: 2px;
    height: 56px;
    transform: translateX(-50%);
    transform-origin: center top;
  }

  .sm-flow-step:nth-child(even):not(.is-last) .sm-flow-step__num::after {
    left: 50%;
    right: auto;
    width: 2px;
    height: 56px;
    transform: translateX(-50%);
    transform-origin: center top;
  }

  .sm-flow-step__body {
    grid-column: 2;
    display: block;
    min-width: 0;
    width: 100%;
    padding-right: 66px;
  }

  .sm-flow-step__title {
    font-size: clamp(1.02rem, 1vw + 0.78rem, 1.18rem);
    line-height: 1.3;
    font-weight: 700;
  }

  .sm-flow-step__text {
    margin-top: 6px;
    padding-right: 6px;
    font-size: clamp(0.8rem, 0.7vw + 0.64rem, 0.9rem);
    font-weight: 500;
    line-height: 1.8;
  }

  .sm-flow-step__icon {
    position: absolute;
    top: 8px;
    right: 0;
    margin-top: 0;
  }

  .sm-flow-step__icon img {
    width: 54px;
  }

  .sm-faq-section {
    padding: 24px 0 42px;
  }

  .sm-faq-section .ku-section__inner {
    padding-left: 12px;
    padding-right: 12px;
  }

  .sm-faq-heading {
    width: min(100%, 520px);
  }

  .sm-faq-heading .ku-section-heading__image {
    width: auto;
    max-width: 100%;
  }

  .sm-faq-heading .ku-section-heading__line {
    width: clamp(130px, 38vw, 180px);
  }

  .sm-faq-list {
    margin-top: 14px;
    gap: 10px;
  }

  .sm-faq-item {
    border-radius: 12px;
  }

  .sm-faq-item__button {
    padding: 10px 10px 10px 12px;
    grid-template-columns: 20px minmax(0, 1fr) 34px;
    column-gap: 10px;
  }

  .sm-faq-item__question {
    font-size: clamp(0.88rem, 0.8vw + 0.68rem, 0.98rem);
    line-height: 1.45;
  }

  .sm-faq-item__mark {
    font-size: 0.95rem;
    padding-top: 0;
  }

  .sm-faq-item__toggle {
    width: 30px;
    height: 30px;
  }

  .sm-faq-item__toggle::before {
    width: 12px;
    height: 2px;
  }

  .sm-faq-item__toggle::after {
    width: 2px;
    height: 12px;
  }

  .sm-faq-item__answer {
    grid-template-columns: 20px minmax(0, 1fr);
    column-gap: 10px;
    padding: 0 10px 12px 12px;
  }

  .sm-faq-item__answer-text {
    font-size: clamp(0.82rem, 0.7vw + 0.64rem, 0.9rem);
    line-height: 1.55;
  }

  .sm-faq-section__cta {
    margin-top: 34px;
  }

  .sm-faq-section__apply {
    min-width: min(100%, 260px);
    padding: 12px 28px;
    font-size: clamp(1.02rem, 0.8vw + 0.84rem, 1.12rem);
    box-shadow: 0 6px 0 rgba(57, 33, 11, 0.1);
  }

  .sm-hr-section {
    padding: 24px 0 22px;
  }

  .sm-hr-section .ku-section__inner {
    padding-left: 8px;
    padding-right: 8px;
  }

  .sm-hr-section__deco {
    display: none;
  }

  .sm-hr-title-wrap {
    width: min(100%, 520px);
  }

  .sm-hr-title-wrap__label {
    font-size: clamp(1.4rem, 4.2vw + 0.42rem, 1.95rem);
    padding-left: 0;
  }

  .sm-hr-title-wrap__label span {
    padding-bottom: 8px;
  }

  .sm-hr-title-wrap__label span::after {
    width: clamp(170px, 52vw, 260px);
  }

  .sm-hr-list {
    margin-top: 12px;
    gap: 14px;
    padding-bottom: 0;
  }

  .sm-hr-item {
    display: block;
    padding-top: 88px;
  }

  .sm-hr-item:last-child {
    padding-bottom: 66px;
  }

  .sm-hr-item__copy {
    min-height: clamp(96px, 24vw, 126px);
    align-items: flex-end;
    padding: 6px 8px 2px;
  }

  .sm-hr-item.is-text-left .sm-hr-item__copy {
    justify-content: flex-start;
    text-align: left;
    padding-right: clamp(108px, 34vw, 168px);
    padding-left: 8px;
  }

  .sm-hr-item.is-text-right .sm-hr-item__copy {
    justify-content: flex-end;
    text-align: right;
    padding-left: clamp(108px, 34vw, 168px);
    padding-right: 8px;
  }

  .sm-hr-item--n05.is-text-left .sm-hr-item__copy {
    padding-right: clamp(68px, 22vw, 112px);
  }

  .sm-hr-item__num {
    bottom: -2px;
  }

  .sm-hr-item.is-text-left .sm-hr-item__num {
    right: 2px;
  }

  .sm-hr-item.is-text-right .sm-hr-item__num {
    left: 2px;
  }

  .sm-hr-item__num img {
    width: clamp(144px, 42vw, 216px);
  }

  .sm-hr-item__num-fallback {
    font-size: clamp(8.6rem, 38vw, 12.8rem);
  }

  .sm-hr-item__text {
    padding: 0;
    width: 100%;
    font-size: clamp(0.94rem, 1vw + 0.64rem, 1.08rem);
    line-height: 1.5;
  }

  .sm-hr-item__note {
    font-size: 0.88em;
  }

  .sm-hr-item__media {
    width: 100%;
    margin-top: 10px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
    border: 5px solid #fff;
    border-radius: 6px;
    box-sizing: border-box;
  }

  .sm-hr-item__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border: 0;
    border-radius: 0;
  }

  .sm-hr-item__nowrap {
    font-size: 0.92em;
  }

  .apply-page {
    padding: 28px 0 52px;
  }

  .apply-form-wrapper {
    padding: 18px;
    border-radius: 12px;
  }

  .apply-form__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .apply-field--full {
    grid-column: auto;
  }

  .apply-submit {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: auto;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px var(--page-padding);
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .page-content {
    padding-top: 0;
  }

  #footer {
    padding: 28px 0 20px;
  }

  #footer .footer-inner {
    padding: 0 2.5rem;
  }

  #footer .footer-contents-row {
    flex-direction: column;
  }

  #footer .footer-logo-sns-section {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  #footer .sns-box {
    width: auto;
    justify-content: center;
  }

  #footer .sns-contents {
    width: 32px;
    height: 32px;
  }

  #footer .sns-contents img {
    width: 100%;
    height: auto;
    display: block;
  }

  #footer .footer-page-contents {
    width: 100%;
  }

  #footer .footer-page-contents ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #footer .footer-lower-row {
    flex-direction: column;
    align-items: flex-start;
  }

  #footer .copyright {
    margin-left: 0;
  }
}

@media (min-width: 769px) {
  .page-top__title {
    font-size: clamp(2.4rem, 1.8vw + 1.6rem, 3.2rem);
  }
}

@media (min-width: 769px) and (max-width: 1199px) {
  .page-top__title {
    font-size: clamp(2.1rem, 1.4vw + 1.2rem, 2.7rem);
  }
}

@media (min-width: 1200px) {
  .page-top__content {
    left: 80px;
    max-width: calc(100% - var(--page-top-cta-size) - 120px);
  }
}
.ku-nav-break {
  display: inline-block;
  line-height: 1.05;
  text-align: center;
  white-space: normal;
}
