@charset "UTF-8";
body {
  font-size: 16px;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #333;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #333;
}

h1, h2, p {
  margin: 0;
}

.js-fade-section {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.js-fade-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-fade-section {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.site-header {
  width: 100%;
  background: #fff;
}

body.home .site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1200;
  background: #fff;
}

body.home .hamburger span {
  background: #333;
}

.header-inner {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.site-logo {
  margin: 0;
}

.site-logo img {
  height: 32px;
  width: auto;
}

.header-desktop {
  display: none;
}

.desktop-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* =====================
   ハンバーガーボタン
===================== */
.hamburger {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  padding: 0;
  z-index: 1001;
  cursor: pointer;
}
.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #333;
  transition: 0.3s;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 8px;
}
.hamburger span:nth-child(3) {
  bottom: 0;
}

/* =====================
   ドロワーメニュー
===================== */
.drawer-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, rgba(0, 65, 180, 0.96), rgba(0, 169, 224, 0.96));
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1300;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  color: #fff;
}

.drawer-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 55%), radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.12), transparent 50%);
  pointer-events: none;
}

.drawer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  gap: 14px;
  justify-items: center;
}

.drawer-menu li {
  margin: 0;
  font-size: 16px;
  text-align: center;
  width: 50%;
}

.drawer-menu__link {
  display: block;
  width: 100%;
  padding: 12px 20px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.drawer-menu__link:hover,
.drawer-menu__link:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
}

.drawer-menu__link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.drawer-menu__footer {
  position: relative;
  margin-top: 18px;
  display: grid;
  justify-items: center;
  gap: 10px;
  z-index: 1;
}

.drawer-menu__tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  text-decoration: none;
  text-align: center;
}

.drawer-menu__tel::before {
  content: "☎";
  margin-right: 8px;
}

.drawer-menu__socials {
  display: flex;
  gap: 12px;
}

.drawer-menu__social {
  width: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

.drawer-menu__social img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  display: block;
  background: transparent;
}

/* =====================
   メニューOPEN状態
===================== */
html.is-menu-open {
  overflow: hidden;
  height: 100%;
}

body.is-menu-open {
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none;
}
body.is-menu-open .site-header {
  z-index: 1301;
  background: transparent;
}
body.is-menu-open .site-logo {
  visibility: hidden;
}
body.is-menu-open .drawer-menu {
  transform: translateX(0);
}
body.is-menu-open .hamburger {
  position: fixed;
  top: 18px;
  right: 16px;
  transform: none;
  z-index: 1301;
}
body.is-menu-open .hamburger span {
  background: #fff;
}
body.is-menu-open .hamburger span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}
body.is-menu-open .hamburger span:nth-child(2) {
  opacity: 0;
}
body.is-menu-open .hamburger span:nth-child(3) {
  top: 8px;
  bottom: auto;
  transform: rotate(-45deg);
}

@media (min-width: 768px) {
  .header-inner {
    width: auto;
    max-width: 1120px;
    height: 72px;
    justify-content: flex-start;
    padding: 0 24px;
    box-sizing: border-box;
  }
  .site-logo img {
    height: 38px;
  }
  .hamburger {
    right: 24px;
  }
}
@media (max-width: 767px) {
  .hamburger {
    position: fixed;
    top: 18px;
    right: 16px;
    transform: none;
  }
}
@media (min-width: 1024px) {
  .header-inner {
    max-width: none;
    justify-content: space-between;
    gap: 12px;
    padding: 60px 40px;
  }
  .site-logo img {
    height: 42px;
  }
  .header-desktop {
    display: flex;
    flex: 1;
    margin-left: auto;
    flex-direction: column-reverse;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    min-width: 0;
  }
  .desktop-nav {
    min-width: 0;
    flex: 0 1 auto;
    margin-bottom: 8px;
  }
  .desktop-nav__list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(14px, 1.6vw, 28px);
    white-space: nowrap;
  }
  .desktop-nav__list a {
    color: #222;
    font-size: 16px;
    font-weight: 300;
    text-decoration: none;
  }
  .desktop-nav__list a:hover {
    color: #00A9E0;
  }
  .desktop-nav__item {
    position: relative;
  }
  .desktop-nav__item--has-submenu > a {
    padding-right: 12px;
  }
  .desktop-nav__item--has-submenu > a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-70%) rotate(45deg);
  }
  .desktop-submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    list-style: none;
    margin: 0;
    padding: 10px 0 8px;
    min-width: 180px;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s ease;
    z-index: 1200;
  }
  .desktop-submenu li {
    margin: 0;
  }
  .desktop-submenu a {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    color: #222;
    text-decoration: none;
    white-space: nowrap;
  }
  .desktop-submenu a:hover {
    background: #f5faff;
    color: #00A9E0;
  }
  .desktop-nav__item--has-submenu:hover .desktop-submenu,
  .desktop-nav__item--has-submenu:focus-within .desktop-submenu {
    opacity: 1;
    visibility: visible;
  }
  .desktop-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    justify-content: flex-end;
    margin-top: 10px;
  }
  .desktop-actions__social {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .desktop-actions__social img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  .desktop-actions__tel {
    color: #00A9E0;
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
  }
  .desktop-actions__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    background: rgb(51, 186, 230);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.1;
  }
  .hamburger {
    display: none;
  }
  .drawer-menu {
    display: none;
  }
}
@media (min-width: 1024px) {
  body.home .desktop-nav__list a {
    color: #222;
  }
  body.home .desktop-nav__list a:hover {
    color: #00A9E0;
  }
  body.home .desktop-nav__item--has-submenu > a::after {
    border-right-color: currentColor;
    border-bottom-color: currentColor;
  }
}
.hero {
  width: 100%;
}

/* 動画エリア */
.hero-video {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  height: clamp(220px, 48vw, 520px);
  overflow: hidden;
}
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .hero-video {
    height: clamp(320px, 45vw, 560px);
  }
}
@media (min-width: 1024px) {
  .hero-video {
    height: 100vh;
  }
}
@media (max-width: 768px) {
  .hero-video {
    height: 100vh;
    height: 100svh;
    background: #000;
  }
  .hero-video video {
    object-fit: cover;
  }
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-align: center;
  padding: 0 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
}

.hero-logo {
  display: block;
  margin-top: 10px;
  width: clamp(220px, 42vw, 520px);
  max-width: 100%;
  height: auto;
}
@media (min-width: 640px) {
  .hero-logo {
    margin-top: 20px;
  }
}

.hero-text {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-achievement {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 140px;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  z-index: 2;
}
.hero-achievement img {
  width: 450px;
  height: auto;
}
.hero-achievement p {
  margin: 4px 0 0;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-achievement {
    right: -30px;
    bottom: 20px;
    width: 290px;
  }
  .hero-achievement p {
    font-size: 13px;
  }
}
@media (min-width: 1024px) {
  .hero-achievement {
    right: 32px;
    bottom: 28px;
    width: auto;
  }
}
@media (max-width: 1024px) {
  .hero-achievement img {
    width: 220px;
  }
}
@media (max-width: 768px) {
  .hero-achievement {
    width: auto;
    right: 1rem;
  }
  .hero-achievement img {
    width: 270px;
  }
  .hero-achievement p {
    text-align: right;
  }
}
@media (max-width: 480px) {
  .hero-achievement {
    width: auto;
    right: 1rem;
  }
}

.hero-problem {
  background: linear-gradient(180deg, #f5f8fb 0%, #eceff3 100%);
  color: #333;
}

.hero-problem__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 42px 16px 0;
}
@media (min-width: 768px) {
  .hero-problem__inner {
    padding: 62px 24px 0;
  }
}
@media (max-width: 768px) {
  .hero-problem__inner {
    max-width: 420px;
  }
}

.hero-problem__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .hero-problem__heading {
    gap: 10px;
  }
}

.hero-problem__title {
  margin: 0;
  text-align: center;
  color: #333;
  font-size: clamp(24px, 2.3vw, 32px);
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .hero-problem__title {
    font-size: 16px;
    white-space: normal;
  }
}

.hero-problem__heading-photo {
  margin: 0;
  flex-shrink: 0;
}
.hero-problem__heading-photo img {
  width: clamp(72px, 8vw, 120px);
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .hero-problem__heading-photo img {
    width: 60px;
  }
}

.hero-problem__title-highlight {
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 4px solid #ffe36a;
}

.hero-problem__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .hero-problem__top {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

.hero-problem__bubbles {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  justify-items: stretch;
}
@media (min-width: 1024px) {
  .hero-problem__bubbles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .hero-problem__bubbles {
    order: 1;
    justify-items: stretch;
  }
}

.hero-problem__bubble {
  background: #fff;
  color: #2c2c2c;
  padding: 14px 20px;
  border-radius: 18px;
  border: 1px solid #e4e8ef;
  border-left: 6px solid #ffd95d;
  box-shadow: 0 8px 18px rgba(41, 68, 96, 0.08);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
  white-space: nowrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .hero-problem__bubble {
    width: 100%;
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 20px;
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .hero-problem__bubble {
    font-size: 13px;
  }
}

.hero-problem__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 26px 0 16px;
}

.hero-problem__divider-icon {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 18px rgba(41, 68, 96, 0.16);
  border: 2px solid #dce8f2;
  overflow: hidden;
}
.hero-problem__divider-icon img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .hero-problem__divider-icon {
    width: 64px;
    height: 64px;
  }
}

.hero-problem__divider-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(87, 175, 219, 0.15), rgba(87, 175, 219, 0.45));
}
@media (max-width: 768px) {
  .hero-problem__divider-line {
    display: none;
  }
}

.hero-problem__divider-label {
  background: #2f8ec8;
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.hero-problem__list {
  list-style: none;
  padding: 0;
  margin: 0 auto 24px;
  max-width: 640px;
  background: #fff;
  border: 1px solid #dbe4ed;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(41, 68, 96, 0.08);
  overflow: hidden;
}
.hero-problem__list li {
  position: relative;
  width: 100%;
  padding: 14px 18px 14px 50px;
  font-weight: 700;
  text-align: left;
  line-height: 1.5;
  border-bottom: 1px solid #eef2f7;
}
.hero-problem__list li:last-child {
  border-bottom: 0;
}
.hero-problem__list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #59b6e1;
  transform: translateY(-50%);
}
.hero-problem__list li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 26px;
  width: 4px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-62%) rotate(45deg);
}
@media (max-width: 768px) {
  .hero-problem__list {
    max-width: 100%;
  }
  .hero-problem__list li {
    font-size: 15px;
    padding: 12px 14px 12px 44px;
  }
  .hero-problem__list li::before {
    left: 16px;
  }
  .hero-problem__list li::after {
    left: 22px;
  }
}

.hero-problem__arrow {
  width: 0;
  height: 0;
  margin: 0 auto 28px;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 14px solid #5ab8e2;
}

.hero-problem__bottom {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  color: #fff;
  z-index: 0;
}
.hero-problem__bottom::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/decoration/backblock.webp"), url("../img/decoration/backblock.webp"), linear-gradient(90deg, #59b6e1 0%, #88d7f4 100%);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: left top, right bottom, center;
  background-size: clamp(90px, 18vw, 150px) auto, clamp(90px, 18vw, 150px) auto, 100% 100%;
  z-index: -1;
}
@media (min-width: 768px) {
  .hero-problem__bottom {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .hero-problem__bottom {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero-problem__bottom::before {
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}
@media (max-width: 1023px) {
  .hero-problem__bottom::before {
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}
@media (max-width: 768px) {
  .hero-problem__bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.hero-problem__lead {
  position: relative;
  display: inline-block;
  padding: 0 18px;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .hero-problem__lead {
    display: block;
    text-align: center;
  }
}

.hero-problem__catch {
  position: relative;
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 0 40px;
  margin-bottom: 12px;
  text-align: center;
  font-weight: 700;
  color: #ffd24d;
  font-size: 16px;
  line-height: 1.5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.hero-problem__catch::before, .hero-problem__catch::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: translateY(-50%);
}
.hero-problem__catch::before {
  left: 0;
  background-image: url("../img/decoration/burst-leftlines.webp");
}
.hero-problem__catch::after {
  right: 0;
  background-image: url("../img/decoration/burst-rightlines.webp");
}
@media (min-width: 768px) {
  .hero-problem__catch {
    justify-items: start;
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .hero-problem__catch {
    justify-items: center;
    text-align: center;
  }
}

.hero-problem__catch-word {
  display: inline-flex;
  gap: 2px;
  margin-right: 4px;
  font-size: 21px;
  line-height: 1.2;
}
.hero-problem__catch-word span {
  display: inline-block;
  color: #ffd24d;
}
.hero-problem__catch-word span:nth-child(n) {
  color: #ffd24d;
}
@media (min-width: 768px) {
  .hero-problem__catch-word {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .hero-problem__catch-word {
    font-size: 21px;
  }
}

.hero-problem__desc {
  font-size: 15px;
  line-height: 1.7;
  color: #f3fbff;
}
@media (min-width: 1024px) {
  .hero-problem__desc {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .hero-problem__message {
    margin: 0 auto;
    text-align: center;
  }
}

.hero-problem__photo {
  margin: 0;
}
.hero-problem__photo img {
  width: 100%;
  height: 250px;
  display: block;
  border-radius: 4px;
}
@media (min-width: 768px) {
  .hero-problem__photo img {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .hero-problem__illustration {
    order: 2;
  }
}

.hero-problem {
  position: relative;
  overflow: hidden;
  background: #fff;
  color: #1f1f1f;
}

.hero-problem__inner {
  max-width: none;
  margin: 0 auto;
  padding: 64px 30px 22px;
}

.hero-problem__top {
  display: grid;
  grid-template-columns: minmax(0, 1.43fr) minmax(390px, 0.95fr);
  gap: 34px;
  align-items: start;
  margin: 0;
}

.hero-problem__main-card {
  position: relative;
  min-height: 280px;
  padding: 26px 0 0 170px;
}

.hero-problem__thinking {
  position: absolute;
  left: -90px;
  bottom: -4px;
  z-index: 2;
  margin: 0;
}
.hero-problem__thinking img {
  display: block;
  width: clamp(520px, 17vw, 490px);
  height: auto;
}

.hero-problem__main-body {
  min-height: 280px;
  padding: 38px 52px 34px 130px;
  border-radius: 0 106px 106px 0;
  background: #fff0f1;
}

.hero-problem__ribbon {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin: 0 0 24px;
  padding: 7px 38px 8px;
  border-radius: 6px;
  background: #f05f6b;
  color: #fff;
  font-size: clamp(18px, 1.42vw, 24px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.78) inset, 0 2px 4px rgba(205, 60, 76, 0.22);
}
.hero-problem__ribbon::before, .hero-problem__ribbon::after {
  content: none;
}

.hero-problem__checks {
  display: grid;
  gap: 21px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero-problem__checks li {
  position: relative;
  min-height: 30px;
  padding-left: 48px;
  color: #111;
  font-size: clamp(18px, 1.36vw, 24px);
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  white-space: nowrap;
}
.hero-problem__checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #f2606c;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.84) inset, 0 2px 5px rgba(169, 46, 58, 0.16);
}
.hero-problem__checks li::after {
  content: "";
  position: absolute;
  left: 8px;
  top: calc(0.1em + 7px);
  width: 12px;
  height: 7px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
}

.hero-problem__sub-card {
  margin-top: 55px;
  padding: 29px 60px 36px;
  border-radius: 36px;
  background: #fff3d6;
}

.hero-problem__sub-label {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  margin: 0 0 34px;
  padding: 6px 30px;
  border-radius: 7px;
  background: #ffa914;
  color: #fff;
  font-size: clamp(18px, 1.38vw, 24px);
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.68) inset, 0 2px 4px rgba(205, 124, 0, 0.2);
}

.hero-problem__checks--sub {
  gap: 30px;
}
.hero-problem__checks--sub li {
  font-size: clamp(18px, 1.42vw, 24px);
}
.hero-problem__checks--sub li::before {
  background: #ffa914;
}

.hero-problem__arrow {
  display: block;
  width: 0;
  height: 0;
  margin: 40px auto;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 50px solid #0041b4;
  filter: drop-shadow(0 4px 0 rgba(0, 65, 180, 0.16));
}

.hero-problem__bottom {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(420px, 520px);
  gap: clamp(24px, 3vw, 42px);
  align-items: end;
  justify-content: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
  color: #111;
  text-align: left;
}
.hero-problem__bottom::before {
  content: none;
}

.hero-problem__message {
  margin: auto 0;
  padding: 16px 0 4px;
  text-align: center;
}

.hero-problem__lead {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin: 0 0 12px;
  padding: 0;
  color: #1f1f1f;
  font-size: clamp(16px, 1.22vw, 21px);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.hero-problem__lead::before, .hero-problem__lead::after {
  content: none;
}

.hero-problem__catch {
  position: relative;
  display: inline-block;
  margin: 0 0 18px;
  padding: 0 46px;
  color: #111;
  font-size: clamp(25px, 2.2vw, 35px);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-shadow: none;
}
.hero-problem__catch::before, .hero-problem__catch::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: translateY(-50%);
}
.hero-problem__catch::before {
  left: -4px;
  background-image: url("../img/decoration/burst-leftlines.webp");
}
.hero-problem__catch::after {
  right: -4px;
  background-image: url("../img/decoration/burst-rightlines.webp");
}

.hero-problem__catch-word {
  display: inline;
  margin-right: 4px;
  color: #0041b4;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: 0.02em;
}

.hero-problem__desc {
  max-width: 790px;
  margin: 0 auto;
  color: #111;
  font-size: clamp(14px, 1.05vw, 18px);
  font-weight: 700;
  line-height: 1.85;
  text-align: center;
  margin-bottom: 10px;
}

.hero-problem__desc-break {
  display: none;
}
@media (min-width: 769px) {
  .hero-problem__desc-break {
    display: block;
  }
}

.hero-problem__photo-wrap {
  width: 100%;
  max-width: 520px;
  padding-bottom: 0;
  justify-self: center;
}

.hero-problem__photo-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 13px;
  color: #EF962E;
  font-size: clamp(15px, 1.18vw, 20px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.08em;
}
.hero-problem__photo-label::before, .hero-problem__photo-label::after {
  content: none;
}

.hero-problem__photo {
  margin: 0;
  overflow: hidden;
  background: #fff;
}
.hero-problem__photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .hero-problem__inner {
    padding-inline: 20px;
  }
  .hero-problem__top,
  .hero-problem__bottom {
    gap: 26px;
  }
  .hero-problem__main-card {
    padding-left: 132px;
  }
  .hero-problem__thinking img {
    width: 210px;
  }
  .hero-problem__main-body {
    padding-left: 92px;
    padding-right: 34px;
  }
}
@media (max-width: 900px) {
  .hero-problem__top,
  .hero-problem__bottom {
    grid-template-columns: 1fr;
  }
  .hero-problem__sub-card {
    margin-top: 0;
  }
  .hero-problem__bottom {
    align-items: stretch;
  }
  .hero-problem__photo {
    max-width: 620px;
    margin-inline: auto;
  }
}
@media (max-width: 768px) {
  .hero-problem__inner {
    max-width: 480px;
    padding: 34px 16px 24px;
  }
  .hero-problem__main-card {
    min-height: 0;
    padding: 0;
  }
  .hero-problem__thinking {
    position: relative;
    left: auto;
    bottom: auto;
    display: flex;
    justify-content: flex-start;
    margin: 0 0 -44px 10px;
  }
  .hero-problem__thinking img {
    width: min(50vw, 210px);
  }
  .hero-problem__main-body {
    min-height: 0;
    padding: 58px 18px 24px;
    border-radius: 28px;
  }
  .hero-problem__ribbon {
    justify-content: center;
    padding: 8px 14px 9px;
    font-size: 16px;
  }
  .hero-problem__ribbon::before {
    content: none;
  }
  .hero-problem__ribbon::after {
    content: none;
  }
  .hero-problem__checks {
    gap: 16px;
  }
  .hero-problem__checks li {
    min-height: 28px;
    padding-left: 40px;
    font-size: 15px;
    white-space: normal;
  }
  .hero-problem__checks li::before {
    width: 26px;
    height: 26px;
  }
  .hero-problem__checks li::after {
    left: 8px;
    top: calc(0.1em + 6px);
    width: 11px;
    height: 7px;
  }
  .hero-problem__sub-card {
    padding: 22px 20px 24px;
    border-radius: 24px;
  }
  .hero-problem__sub-label {
    margin-bottom: 20px;
    font-size: 16px;
  }
  .hero-problem__arrow {
    margin: 24px auto;
    border-left-width: 22px;
    border-right-width: 22px;
    border-top-width: 26px;
  }
  .hero-problem__message {
    padding: 0;
  }
  .hero-problem__lead {
    gap: 12px;
    font-size: 14px;
  }
  .hero-problem__catch {
    padding: 0 32px;
    font-size: 22px;
  }
  .hero-problem__catch::before, .hero-problem__catch::after {
    width: 28px;
    height: 28px;
  }
  .hero-problem__desc {
    font-size: 14px;
    line-height: 1.75;
  }
  .hero-problem__photo-label {
    gap: 10px;
    font-size: 14px;
  }
  .hero-problem__photo img {
    height: auto;
  }
}
.features {
  background: #fff;
}

.features__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 24px 56px;
}
@media (max-width: 768px) {
  .features__inner {
    padding-top: 10px;
    max-width: 420px;
  }
}

.section_title--features {
  position: relative;
}
.section_title--features .section_title__decor {
  position: absolute;
  top: -8px;
  left: -24px;
  width: 140px;
  height: auto;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 768px) {
  .section_title--features .section_title__decor {
    top: -4px;
    left: 20px;
    width: 96px;
  }
}

.features__heading {
  margin-bottom: 40px;
  text-align: center;
}

.features__icon {
  display: block;
  width: 48px;
  height: auto;
  margin: 0 auto 8px;
}

.features__en {
  margin-bottom: 8px;
  color: #6a6a6a;
  font-size: 18px;
  letter-spacing: 0.08em;
}

.features__title {
  font-size: 26px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .features__title {
    font-size: 22px;
  }
}

.features__list {
  display: grid;
  gap: 32px;
}

.features__item {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}
@media (max-width: 768px) {
  .features__item {
    grid-template-columns: 1fr;
  }
}

.features__item--reverse {
  direction: rtl;
}
.features__item--reverse .features__media,
.features__item--reverse .features__content {
  direction: ltr;
}
@media (max-width: 768px) {
  .features__item--reverse {
    direction: ltr;
  }
}

.features__media {
  margin: 0;
}
.features__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.features__content {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  align-items: center;
}
@media (max-width: 768px) {
  .features__content {
    margin-top: 1rem;
    grid-template-columns: 72px 1fr;
  }
}

.features__text {
  display: contents;
}

.features__badge {
  display: grid;
  width: 75px;
  height: 75px;
  place-items: center;
  border-radius: 50%;
  background: #e98d73;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
}

.features__subtitle {
  grid-column: 2;
  color: #e98d73;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
}
@media (max-width: 768px) {
  .features__subtitle {
    font-size: 18px;
  }
}

.features__desc {
  grid-column: 1/-1;
  align-self: start;
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

.course {
  position: relative;
  z-index: 1;
  overflow: visible;
  padding: 0 16px 64px;
  background: #fff7c6;
}

.course__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.course__decor {
  position: absolute;
  width: 140px;
  height: auto;
  pointer-events: none;
}
@media (max-width: 768px) {
  .course__decor {
    width: 80px;
  }
}

.course__decor--left {
  top: 120px;
  left: 50px;
}
@media (max-width: 768px) {
  .course__decor--left {
    top: 40px;
    left: 20px;
  }
}

.course__decor--right {
  top: 120px;
  right: 50px;
}
@media (max-width: 768px) {
  .course__decor--right {
    top: 40px;
    right: 10px;
  }
}

.course__decor--dots {
  bottom: -120px;
  left: 20%;
  z-index: 10;
  width: 110px;
}
@media (max-width: 768px) {
  .course__decor--dots {
    bottom: -148px;
    left: -40px;
    width: 90px;
  }
}

.section_title--course {
  margin-bottom: 32px;
}

.course__list {
  display: grid;
  gap: 32px;
  margin-bottom: 36px;
}

.course__item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.course__item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0.34) 50%, rgba(0, 0, 0, 0.2) 100%);
  pointer-events: none;
}

.course__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.course__media {
  margin: 0;
}
.course__media img {
  display: block;
  width: 100%;
  height: auto;
}

.course__overlay {
  position: absolute;
  top: 50%;
  left: 28px;
  z-index: 2;
  max-width: 58%;
  transform: translateY(-50%);
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
@media (max-width: 768px) {
  .course__overlay {
    top: auto;
    right: 16px;
    bottom: 16px;
    left: 16px;
    max-width: none;
    transform: none;
  }
}

.course__label {
  margin: 0 0 8px;
  font-size: 14px;
}
@media (max-width: 769px) {
  .course__label {
    font-size: 14px;
  }
}

.course__title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.course__name {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .course__name {
    font-size: 22px;
  }
}

.course__text {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
}
@media (max-width: 769px) {
  .course__text {
    font-size: 14px;
  }
}

.course-page__other-text {
  text-align: left;
}

.course__arrow {
  position: relative;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #00A9E0;
}
.course__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-60%, -50%) rotate(45deg);
}

.course__cta {
  display: flex;
  justify-content: center;
}

.school {
  position: relative;
  overflow: hidden;
  background: #eaf2fb;
}
.school::before, .school::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0 10px, transparent 10px 20px);
  opacity: 0.7;
  pointer-events: none;
}
.school::before {
  top: 40px;
  right: -60px;
}
.school::after {
  bottom: 60px;
  left: -50px;
}

.school__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 16px 64px;
}
@media (max-width: 768px) {
  .school__inner {
    max-width: 520px;
    padding: 0 16px 56px;
  }
}

.school__heading {
  margin-bottom: 32px;
  text-align: center;
}

.school__icon {
  display: block;
  width: 48px;
  height: auto;
  margin: 0 auto 8px;
}

.school__en {
  margin-bottom: 8px;
  color: #6a6a6a;
  font-size: 18px;
  letter-spacing: 0.1em;
}

.school__title {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .school__title {
    font-size: 22px;
  }
}

.school__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .school__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .school__grid {
    grid-template-columns: 1fr;
  }
}

.school__card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.school__link {
  display: block;
  color: inherit;
}

.school__label {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
  padding: 4px 12px;
  border-radius: 999px;
  background: #fff;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.school__photo {
  margin: 0;
}
.school__photo img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .school__photo img {
    height: 140px;
  }
}

.school-page {
  padding: 72px 16px 90px;
  background: #fff;
}

.school-page__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.school-page__heading {
  margin-bottom: 16px;
}

.section_title--school-page img {
  width: 72px;
}

.section_title--school-page p {
  font-size: 20px;
  letter-spacing: 0.08em;
  margin: 8px 0 4px;
}

.section_title--school-page :is(h1, h2) {
  font-size: 34px;
  font-weight: 700;
  margin: 0;
}

.school-page__name {
  font-size: 28px;
  font-weight: 700;
  margin: 12px 0 20px;
  text-align: center;
}

.school-page__name--center {
  text-align: center;
}

.school-page__schedule .school-page__name {
  text-align: center;
}

.school-page__gallery {
  display: grid;
  gap: 16px;
}

.school-page__main {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  width: 100%;
  height: 560px;
}

.school-page__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.school-page__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.school-page__thumb {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #e1ebf2;
}

.school-page__thumb img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.school-page__schedule {
  margin-top: 48px;
  text-align: left;
}

.school-page__schedule-heading {
  text-align: center;
  margin-bottom: 24px;
}

.section_title--school-schedule p {
  font-size: 18px;
  letter-spacing: 0.08em;
  margin: 6px 0 4px;
}

.section_title--school-schedule :is(h1, h2) {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.school-page__schedule-card {
  padding: 20px 0;
}

.school-page__schedule-card img {
  display: block;
  width: auto;
  max-width: min(100%, 760px);
  height: auto;
  margin: 0 auto;
}

.school-page__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.school-page__table th,
.school-page__table td {
  border: 1px solid #2f8157;
  padding: 10px;
  text-align: center;
  font-size: 13px;
  line-height: 1.5;
}

.school-page__table thead th {
  background: #2f8157;
  color: #fff;
  font-weight: 700;
}

.school-page__table-head {
  background: #2f8157;
  color: #fff;
  width: 32%;
}

.school-page__table-slot {
  background: #2f8157;
  color: #fff;
  font-weight: 700;
  text-align: left;
}

.school-page__table-slot span {
  font-size: 11px;
  font-weight: 500;
  display: inline-block;
  margin-top: 4px;
}

.school-page__table-slot--accent {
  color: #ffd86b;
}

.school-page__dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-block;
}

.school-page__dot--yellow {
  background: #f5dd63;
}

.school-page__dot--orange {
  background: #ff8a3c;
}

.school-page__info {
  margin: 28px 0 0;
  padding: 0;
}

.school-page__info-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #cfd9e3;
}

.school-page__info-row dt {
  font-weight: 700;
  color: #1f2933;
}

.school-page__info-row dd {
  font-size: 14px;
  margin: 0;
  color: #2d3a45;
  line-height: 1.7;
  text-align: left;
  white-space: pre-line;
}

@media (max-width: 768px) {
  .school-page {
    padding: 0px 16px 72px;
  }
  .section_title--school-page p {
    font-size: 18px;
  }
  .section_title--school-page :is(h1, h2) {
    font-size: 28px;
  }
  .school-page__name {
    font-size: 22px;
  }
  .school-page__thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: row;
    overflow-x: visible;
    padding-bottom: 0;
  }
  .school-page__thumb {
    min-width: 0;
  }
  .school-page__main {
    height: 320px;
  }
  .school-page__schedule {
    margin-top: 36px;
  }
  .school-page__schedule-card {
    padding: 16px 0;
  }
  .school-page__table th,
  .school-page__table td {
    padding: 8px 6px;
    font-size: 12px;
  }
  .school-page__table-head {
    width: 40%;
  }
  .school-page__info-row {
    grid-template-columns: 88px 1fr;
    gap: 12px;
  }
}
.school-page__block + .school-page__block {
  margin-top: 48px;
}

.flow {
  overflow-x: clip;
  padding: 0 16px 72px;
  background: #fff;
}

.flow__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.flow__heading {
  margin-bottom: 40px;
}

.flow__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .flow__steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.flow__step {
  position: relative;
  text-align: center;
}
.flow__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid #f2dea2;
}
@media (max-width: 768px) {
  .flow__step:not(:last-child)::after {
    display: none;
  }
}

.flow__step-head,
.flow__photo {
  width: min(260px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.flow__step-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: nowrap;
  padding: 10px 12px;
  background: #fff5bf;
}
@media (max-width: 768px) {
  .flow__step-head {
    width: 100%;
    max-width: 240px;
  }
}

.flow__step-num {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #f0cf60;
  font-size: 20px;
  font-weight: 700;
}

.flow__step-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.flow__photo {
  height: 170px;
  margin-top: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 8px;
}
.flow__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .flow__photo {
    width: 100%;
    max-width: 260px;
    height: 170px;
  }
}

.flow__desc {
  max-width: min(260px, 100%);
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
}

.flow__down {
  display: none;
  width: 0;
  height: 0;
  margin-top: 16px;
  border-top: 14px solid #f2dea2;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}
@media (max-width: 768px) {
  .flow__down {
    display: inline-block;
  }
}

.flow__cta {
  display: flex;
  justify-content: center;
}

section.achievements,
main.achievements {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 72px 0 80px;
  background: url("../img/achievements/achievements-back.webp") center/cover no-repeat;
}
@media (max-width: 640px) {
  section.achievements,
  main.achievements {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    padding: 10px 0 64px;
  }
}

.achievements__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.achievements__heading {
  margin-bottom: 36px;
}

.section_title--achievements img {
  width: 72px;
}
.section_title--achievements p {
  margin: 8px 0 4px;
  font-size: 20px;
  letter-spacing: 0.08em;
}
.section_title--achievements :is(h1, h2) {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
}
@media (max-width: 640px) {
  .section_title--achievements p {
    font-size: 18px;
  }
  .section_title--achievements :is(h1, h2) {
    font-size: 28px;
  }
}

.achievements__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  align-items: stretch;
  margin-bottom: 44px;
  padding: 0 20px;
}
@media (max-width: 900px) {
  .achievements__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
}
@media (max-width: 640px) {
  .achievements__list {
    grid-template-columns: 1fr;
  }
}

.achievements__item {
  position: relative;
  padding: 12px;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.7);
}
@media (max-width: 900px) {
  .achievements__item:not(:last-child)::after {
    display: none;
  }
}

.achievements__link {
  display: block;
  color: #333;
  text-decoration: none;
}

.achievements__photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 6px;
  background: #f2f2f2;
}

.achievements__img,
.achievements__placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.achievements__img {
  object-fit: contain;
  object-position: top;
}

.achievements__placeholder {
  background: #e6e6e6;
}

.achievements__body {
  margin-top: 12px;
}

.achievements__meta {
  margin: 0 0 6px;
  color: #7a7a7a;
  font-size: 14px;
}

.achievements__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.achievements__text {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.7;
  white-space: pre-line;
}

.achievements__date {
  margin: 0 0 6px;
  color: #7a7a7a;
  font-size: 14px;
}

.achievements__empty {
  margin: 0 0 32px;
  font-size: 18px;
  text-align: center;
}

.achievements__cta {
  display: flex;
  justify-content: center;
}

.notice {
  padding: 72px 16px 80px;
  background: #fff;
}

.notice__inner {
  max-width: 980px;
  margin: 0 auto;
}

.notice__heading {
  margin-bottom: 36px;
}

.section_title--notice img {
  width: 72px;
}

.section_title--notice p {
  font-size: 20px;
  letter-spacing: 0.08em;
  margin: 8px 0 4px;
}

.section_title--notice :is(h1, h2) {
  font-size: 34px;
  font-weight: 700;
  margin: 0;
}

.notice__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 44px;
}

.notice__item {
  border-bottom: 1px solid #e6e6e6;
  padding: 10px 20px;
}

.notice__link {
  display: grid;
  grid-template-columns: 110px max-content minmax(0, 1fr);
  align-items: center;
  column-gap: 16px;
  text-decoration: none;
  color: #333;
}

.notice__date {
  font-size: 14px;
  color: #7a7a7a;
  min-width: 110px;
}

.notice__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  background: #f0b23a;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
}

.notice__title {
  min-width: 0;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.6;
  word-break: normal;
  overflow-wrap: anywhere;
}

.notice__empty {
  text-align: center;
  margin: 0 0 32px;
  font-size: 18px;
}

@media (max-width: 640px) {
  .notice {
    padding: 10px 16px 64px;
  }
  .notice__link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 12px;
    row-gap: 8px;
  }
  .notice__date {
    min-width: auto;
  }
  .notice__title {
    flex-basis: 100%;
    width: auto;
  }
  .notice__label {
    min-width: 0;
    font-size: 10px;
    padding: 4px 10px;
  }
  .section_title--notice p {
    font-size: 18px;
  }
  .section_title--notice :is(h1, h2) {
    font-size: 28px;
  }
}
.staff {
  padding: 64px 16px 72px;
  background: #fff;
}

.staff__inner {
  max-width: 920px;
  margin: 0 auto;
}

.staff__heading {
  margin-bottom: 20px;
  text-align: center;
}

.section_title--staff img {
  width: 72px;
}

.section_title--staff p {
  font-size: 20px;
  letter-spacing: 0.08em;
  margin: 8px 0 4px;
}

.section_title--staff :is(h1, h2) {
  font-size: 34px;
  font-weight: 700;
  margin: 0;
}

.staff__lead {
  max-width: 760px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  text-align: left;
}

.staff__featured {
  margin-top: 32px;
}

.staff-detail {
  background: #0a9bcf;
  color: #fff;
  padding: 20px;
  display: grid;
  gap: 16px;
  border-radius: 4px;
}

.staff-detail--button {
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.staff-detail__photo {
  background: #fff;
  padding: 8px;
  border-radius: 2px;
}

.staff-detail__photo img {
  display: block;
  width: 100%;
  height: auto;
}

.staff-detail__catch {
  display: inline-block;
  background: #fff;
  color: #0a9bcf;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 8px;
  margin: 0 0 8px;
}

.staff-detail__role {
  margin: 0 0 4px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.staff-detail__name {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.staff-detail__name-en {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.staff-detail__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.staff__grid {
  margin-top: 24px;
  display: grid;
  gap: 24px;
}

.staff-card {
  border: 4px solid #0a9bcf;
  background: #fff;
  padding: 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.staff-card:focus-visible {
  outline: 3px solid #0a9bcf;
  outline-offset: 2px;
}

.staff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.staff-card__media {
  padding: 12px 12px 0;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.staff-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff-card__body {
  background: #0a9bcf;
  color: #fff;
  padding: 12px;
  flex: 1;
}

.staff-card__role {
  margin: 0 0 4px;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.staff-card__name {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.staff-card__name-en {
  font-size: 11px;
  font-weight: 600;
}

.staff-card__text {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}

.staff-modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  box-sizing: border-box;
  background: transparent;
  display: grid;
  place-items: center;
  align-content: center;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  padding: max(24px, env(safe-area-inset-top)) 24px max(24px, env(safe-area-inset-bottom));
  z-index: 4000;
}

.staff-modal::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.staff-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.staff-modal__content {
  width: 100%;
  max-width: 680px;
  align-self: center;
  max-height: calc(100dvh - 48px);
  overflow: auto;
  background: #fff;
  padding: 24px;
  position: relative;
  border-radius: 6px;
  margin: auto;
  box-sizing: border-box;
}

.staff-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #0a9bcf;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.is-modal-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .staff {
    padding: 0px 16px 56px;
  }
  .section_title--staff p {
    font-size: 18px;
  }
  .section_title--staff :is(h1, h2) {
    font-size: 28px;
  }
  .staff-detail {
    padding: 16px;
  }
  .staff-modal {
    padding: 0;
    overflow: hidden;
  }
  .staff-modal__content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100vw - 32px);
    max-width: 520px;
    max-height: calc(100dvh - 32px);
    padding: 16px 16px 20px;
    margin: 0;
  }
  .staff-modal__close {
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
  .staff-detail--modal .staff-detail__photo {
    width: min(220px, 72vw);
    margin: 0 auto;
  }
  .staff-detail--modal .staff-detail__name {
    font-size: 18px;
  }
  .staff-detail--modal .staff-detail__text {
    font-size: 13px;
    line-height: 1.7;
  }
}
@media (min-width: 680px) {
  .staff-detail {
    grid-template-columns: 180px 1fr;
    align-items: center;
  }
}
@media (min-width: 720px) {
  .staff__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 960px) {
  .staff__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .staff-modal__content {
    width: min(920px, 100%);
    padding: 32px;
  }
  .staff-detail {
    grid-template-columns: 260px 1fr;
    gap: 24px;
  }
  .staff-modal__close {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
}
.student {
  padding: 72px 16px 80px;
  background: #fff;
}
@media (max-width: 640px) {
  .student {
    padding: 0 16px 64px;
  }
}

.student__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.student__heading {
  margin-bottom: 36px;
}

.section_title--student img {
  width: 72px;
}
.section_title--student p {
  margin: 8px 0 4px;
  font-size: 20px;
  letter-spacing: 0.08em;
}
.section_title--student :is(h1, h2) {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
}
@media (max-width: 640px) {
  .section_title--student p {
    font-size: 18px;
  }
  .section_title--student :is(h1, h2) {
    font-size: 28px;
  }
}

.student__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  align-items: stretch;
  margin-bottom: 44px;
}
@media (max-width: 900px) {
  .student__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
}
@media (max-width: 640px) {
  .student__list {
    grid-template-columns: 1fr;
  }
}

.student__item {
  position: relative;
  padding: 12px;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  background: #fff;
}
@media (max-width: 900px) {
  .student__item:not(:last-child)::after {
    display: none;
  }
}

.student__link {
  display: block;
  color: #333;
  text-decoration: none;
}

.student__photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 6px;
  background: #f2f2f2;
}

.student__img,
.student__placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.student__img {
  object-fit: cover;
}

.student__placeholder {
  background: #e6e6e6;
}

.student__body {
  margin-top: 12px;
}

.student__date {
  margin: 0 0 6px;
  color: #7a7a7a;
  font-size: 14px;
}

.student__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.student__empty {
  margin: 0 0 32px;
  font-size: 18px;
  text-align: center;
}

.student__cta {
  display: flex;
  justify-content: center;
}

.question {
  padding: 72px 16px 80px;
  background: #fff;
}
@media (max-width: 640px) {
  .question {
    padding: 12px 16px;
  }
}

.question__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.question__heading {
  margin-bottom: 40px;
}

.section_title--question img {
  width: 72px;
}
.section_title--question p {
  margin: 8px 0 4px;
  font-size: 20px;
  letter-spacing: 0.08em;
}
.section_title--question :is(h1, h2) {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
}
@media (max-width: 640px) {
  .section_title--question p {
    font-size: 18px;
  }
  .section_title--question :is(h1, h2) {
    font-size: 28px;
  }
}

.question__list {
  display: grid;
  gap: 24px;
}

.question__item {
  padding: 12px 26px;
  border-radius: 16px;
  background: #f3f0f0;
}
.question__item.is-open .question__caret {
  transform: rotate(-135deg);
}
@media (max-width: 640px) {
  .question__item {
    padding: 10px 20px;
  }
}

.question__row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.question__question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.question__question:focus-visible {
  outline: 2px solid #2f8ec8;
  outline-offset: 4px;
  border-radius: 10px;
}

.question__caret {
  width: 10px;
  height: 10px;
  margin-left: 10px;
  flex-shrink: 0;
  border-right: 2px solid #4b5f70;
  border-bottom: 2px solid #4b5f70;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.question__answer {
  padding: 14px 0 10px;
  border-top: 1px solid #dfd9d9;
}

.question__icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
}

.question__icon--q {
  background: #00A9E0;
  color: #fff;
}

.question__icon--a {
  border: 2px solid #00A9E0;
  background: #fff;
  color: #00A9E0;
}

.question__text {
  margin: 0;
  color: #333;
  font-size: 14px;
  line-height: 1.7;
}

.question__text--q {
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 640px) {
  .question__text--q {
    font-size: 14px;
  }
}

section.blog,
main.blog {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 72px 0 80px;
  background: url("../img/achievements/achievements-back.webp") center/cover no-repeat;
}
@media (max-width: 640px) {
  section.blog,
  main.blog {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    padding: 10px 0 64px;
  }
}

.blog__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.blog__heading {
  margin-bottom: 36px;
}

.section_title--blog img {
  width: 72px;
}
.section_title--blog p {
  margin: 8px 0 4px;
  font-size: 20px;
  letter-spacing: 0.08em;
}
.section_title--blog :is(h1, h2) {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
}
@media (max-width: 640px) {
  .section_title--blog p {
    font-size: 18px;
  }
  .section_title--blog :is(h1, h2) {
    font-size: 28px;
  }
}

.blog__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  margin-bottom: 44px;
  padding: 20px;
}
@media (max-width: 900px) {
  .blog__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .blog__list {
    grid-template-columns: 1fr;
  }
}

.blog__item {
  overflow: hidden;
  padding: 12px;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.7);
}

.blog__link {
  display: block;
  color: #333;
  text-decoration: none;
}

.blog__photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 6px;
  background: #f2f2f2;
}

.blog__img,
.blog__placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.blog__img {
  object-fit: cover;
}

.blog__placeholder {
  background: #e6e6e6;
}

.blog__body {
  padding: 14px 12px 6px;
}

.blog__date {
  margin: 0 0 8px;
  color: #7a7a7a;
  font-size: 14px;
}

.blog__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.blog__empty {
  margin: 0 0 32px;
  font-size: 18px;
  text-align: center;
}

.blog__cta {
  display: flex;
  justify-content: center;
}

.course-page {
  padding: 72px 16px 90px;
  background: #fff;
}

.course-page__inner {
  max-width: 980px;
  margin: 0 auto;
}

.course-page__heading {
  margin-bottom: 28px;
}

.section_title--course-page img {
  width: 72px;
}

.section_title--course-page p {
  font-size: 20px;
  letter-spacing: 0.08em;
  margin: 8px 0 4px;
}

.section_title--course-page :is(h1, h2) {
  font-size: 34px;
  font-weight: 700;
  margin: 0;
}

.course-page__panel {
  background: #6ccbe9;
  border-radius: 80px;
  padding: 44px 32px 48px;
  position: relative;
}

.course-page__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #a7c1f7;
  color: #1a1a1a;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 36px;
  font-size: 18px;
  margin: 0 auto 24px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.course-page__dots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.course-page__dot {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  margin: 0 auto;
}

.course-page__dot--beginner {
  background: #a6cf66;
}

.course-page__dot--basic {
  background: #6cb6ea;
}

.course-page__dot--expert {
  background: #a87ad6;
}

.course-page__detail {
  margin-top: 48px;
  text-align: center;
}

.course-page__detail--basic {
  margin-top: 64px;
}

.course-page__detail--expert {
  margin-top: 64px;
}

.course-page__detail--others {
  margin-top: 64px;
}

.course-page__en {
  font-size: 28px;
  color: #9ec562;
  margin: 0 0 8px;
  font-weight: 700;
}

.course-page__jp {
  font-size: 36px;
  color: #9ec562;
  margin: 0 0 32px;
}

#course-beginner .course-page__jp,
#course-basic .course-page__jp {
  font-size: 32px;
}

.course-page__en--basic,
.course-page__jp--basic {
  color: #5bb5e7;
}

.course-page__en--expert,
.course-page__jp--expert {
  color: #9c7bd6;
}

.course-page__en--others,
.course-page__jp--others {
  color: #333;
}

.course-page__steps {
  display: grid;
  gap: 28px;
}

.course-page__step {
  border: 4px solid #cfe3a2;
  border-radius: 40px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 140px 220px 1fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbef 100%);
  text-align: left;
  box-shadow: 0 14px 32px rgba(45, 71, 22, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.course-page__step--basic {
  border-color: #83c7ee;
  background: linear-gradient(180deg, #ffffff 0%, #f2f9ff 100%);
}

.course-page__step--expert {
  border-color: #c9b3ea;
  background: linear-gradient(180deg, #ffffff 0%, #f8f3ff 100%);
}

.course-page__step-label {
  text-align: center;
  font-weight: 700;
  background: #f4f8ea;
  border-radius: 22px;
  padding: 24px 16px;
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 190px;
  box-sizing: border-box;
}

.course-page__step--basic .course-page__step-label {
  background: #eef8ff;
}

.course-page__step--expert .course-page__step-label {
  background: #f6efff;
}

.course-page__step-num {
  font-size: 15px;
  margin: 0;
  letter-spacing: 0.08em;
  color: #6f8f36;
}

.course-page__step--basic .course-page__step-num {
  color: #2e8fc5;
}

.course-page__step--expert .course-page__step-num {
  color: #7b5bb0;
}

.course-page__step-title {
  font-size: 22px;
  margin: 0;
  line-height: 1.45;
}

.course-page__step-media {
  margin: 0;
  height: 150px;
  border-radius: 18px;
  overflow: hidden;
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

.course-page__step-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.course-page__step-text {
  border-radius: 18px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e6ecd8;
}

.course-page__step--basic .course-page__step-text {
  border-color: #d9ecf9;
}

.course-page__step--expert .course-page__step-text {
  border-color: #e8dcf7;
}

.course-page__step-text p {
  text-align: left;
  margin: 0 0 12px;
  line-height: 1.85;
}

.course-page__step-text p:last-child {
  margin-bottom: 0;
}

@media (min-width: 769px) {
  .course-page__step {
    grid-template-columns: 280px 360px;
    grid-template-areas: "label media" "text text";
    justify-content: center;
  }
  .course-page__step-label {
    grid-area: label;
    min-height: 220px;
  }
  .course-page__step-title {
    font-size: 24px;
  }
  .course-page__step-media {
    grid-area: media;
    height: 220px;
  }
  .course-page__step-text {
    grid-area: text;
    max-width: 760px;
    margin: 0 auto;
  }
}
@media (hover: hover) and (min-width: 769px) {
  .course-page__step:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(45, 71, 22, 0.14);
  }
}
.course-page__step-text a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #83c7ee;
  color: #2f7dbd;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  background: #eef8ff;
}

.course-page__step-text a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.course-page__step-text a:hover,
.course-page__step-text a:focus-visible {
  background: #d9efff;
}

.course-page__arrow {
  width: 0;
  height: 0;
  margin: 0 auto;
  border-left: 24px solid transparent;
  border-right: 24px solid transparent;
  border-top: 28px solid #a7cc6c;
}

.course-page__arrow--basic {
  border-top-color: #31a7df;
}

.course-page__arrow--expert {
  border-top-color: #9c7bd6;
}

.course-page__others {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

.course-page__other {
  border: 3px solid #8e8e8e;
  border-radius: 28px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 180px 200px 1fr;
  gap: 20px;
  align-items: center;
  background: #fff;
}

.course-page__other-label {
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.course-page__other-media {
  width: 200px;
  height: 130px;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
}

.course-page__other-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.course-page__other-text p {
  margin: 0 0 10px;
  line-height: 1.7;
}

.course-page__other-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .course-page {
    padding: 0px 16px 72px;
  }
  .course-page__panel {
    border-radius: 40px;
    padding: 32px 20px 36px;
  }
  .course-page__dots {
    gap: 20px;
  }
  .course-page__dot {
    width: 120px;
    height: 120px;
  }
  .course-page__step {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
    padding: 24px;
  }
  .course-page__step-label {
    min-height: 0;
    padding: 18px 14px;
  }
  .course-page__step-title {
    font-size: 22px;
  }
  .course-page__step-media {
    max-width: none;
    width: 100%;
    margin: 0;
    height: 180px;
  }
  .course-page__step-text {
    padding: 18px 16px;
  }
  .course-page__other {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .course-page__other-media {
    width: 100%;
    max-width: 320px;
    height: 180px;
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  .course-page__panel {
    border-radius: 28px;
    padding: 28px 16px 32px;
  }
  .course-page__badge {
    padding: 10px 24px;
    font-size: 14px;
  }
  .course-page__dots {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .course-page__dot {
    width: 96px;
    height: 96px;
    font-size: 14px;
  }
  .section_title--course-page p {
    font-size: 18px;
  }
  .section_title--course-page :is(h1, h2) {
    font-size: 28px;
  }
  .course-page__en {
    font-size: 22px;
  }
  .course-page__jp {
    font-size: 28px;
    margin-bottom: 24px;
  }
  #course-beginner .course-page__jp,
  #course-basic .course-page__jp {
    font-size: 24px;
  }
  .course-page__other {
    padding: 18px 16px;
  }
}
.flow-page {
  padding: 72px 16px 90px;
}

.flow-page__inner {
  max-width: 980px;
  margin: 0 auto;
}

.flow-page__heading {
  margin-bottom: 40px;
}

.section_title--flow-page img {
  width: 72px;
}

.section_title--flow-page p {
  font-size: 20px;
  letter-spacing: 0.08em;
  margin: 8px 0 4px;
}

.section_title--flow-page :is(h1, h2) {
  font-size: 34px;
  font-weight: 700;
  margin: 0;
}

.flow-page__steps {
  display: grid;
  gap: 28px;
}

.flow-page__step {
  position: relative;
}

.flow-page__step-head {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #bfe6f4;
  border-radius: 999px;
  padding: 12px 24px;
  margin-bottom: 16px;
}

.flow-page__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #00A9E0;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 18px;
}

.flow-page__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.flow-page__content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  align-items: center;
}

.flow-page__content--split {
  grid-template-columns: 1fr 1.2fr;
}

.flow-page__media {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  aspect-ratio: 16/9;
}

.flow-page__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.flow-page__text p {
  margin: 0 0 12px;
  line-height: 1.7;
}

.flow-page__text p:last-child {
  margin-bottom: 0;
}

.flow-page__actions {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.flow-page__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 56px 10px 20px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  position: relative;
}

.flow-page__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%);
}

.flow-page__button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #f26a1c;
  border-right: 2px solid #f26a1c;
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: 1;
}

.flow-page__button--school {
  background: rgb(242, 127, 127);
}

.flow-page__button--school::before {
  border-color: rgb(242, 127, 127);
}

.flow-page__button--contact {
  background: rgb(51, 186, 230);
}

.flow-page__button--contact::before {
  border-color: rgb(51, 186, 230);
}

.flow-page__down {
  display: block;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 24px solid #00A9E0;
  margin: 24px auto 0;
}

@media (max-width: 768px) {
  .flow-page {
    padding: 0px 16px 72px;
  }
  .flow-page__content {
    grid-template-columns: 1fr;
  }
  .flow-page__content--split {
    grid-template-columns: 1fr;
  }
  .flow-page__step-head {
    border-radius: 24px;
    padding: 10px 16px;
  }
  .flow-page__panel {
    border-left: 0;
    padding-left: 0;
  }
}
@media (max-width: 640px) {
  .section_title--flow-page p {
    font-size: 18px;
  }
  .section_title--flow-page :is(h1, h2) {
    font-size: 28px;
  }
}
.contact {
  padding: 48px 16px 8px;
}
@media (max-width: 640px) {
  .contact {
    padding: 40px 16px 0;
  }
}

.contact__inner {
  max-width: 720px;
  margin: 0 auto;
}

.contact__text {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 8px;
}
@media (max-width: 640px) {
  .contact__text {
    font-size: 16px;
  }
}

.contact__note {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

.contact__note a {
  color: #0041B4;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact_line {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 18px;
  padding: 0;
  list-style: none;
}
@media (max-width: 640px) {
  .contact_line {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }
}

.contact_line li {
  margin: 0;
}

.contact_line a {
  position: relative;
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 46px 14px 18px;
  border: 2px solid #06c755;
  border-radius: 10px;
  background: #fff;
  color: #111;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  box-shadow: 0 4px 0 rgba(6, 199, 85, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.contact_line a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 10px;
  height: 10px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.contact_line a:hover {
  background: #f0fff6;
  box-shadow: 0 2px 0 rgba(6, 199, 85, 0.24);
  transform: translateY(2px);
}
@media (max-width: 640px) {
  .contact_line a {
    min-height: 58px;
    padding: 12px 42px 12px 16px;
  }
}

.contact_line__school {
  font-size: 16px;
}
@media (max-width: 640px) {
  .contact_line__school {
    font-size: 15px;
  }
}

.contact_line__label {
  flex-shrink: 0;
  color: #06a846;
  font-size: 13px;
}
@media (max-width: 640px) {
  .contact_line__label {
    font-size: 12px;
  }
}

.wpcf7 {
  display: block;
  width: min(100% - 32px, 860px);
  margin: 32px auto 0;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
@media (max-width: 640px) {
  .wpcf7 {
    padding: 22px;
    margin: 24px auto 0px;
  }
}

.wpcf7 form {
  max-width: none;
  margin: 0;
  margin-left: 0;
  margin-right: 0;
}

.wpcf7 p {
  margin: 0;
  padding: 30px 0;
  border-top: 1px solid #d7d7d7;
  display: block;
}
@media (max-width: 640px) {
  .wpcf7 p {
    padding: 20px 0;
  }
}

.wpcf7 p:last-child {
  margin-bottom: 0;
  border-bottom: 1px solid #d7d7d7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 0;
}
@media (max-width: 640px) {
  .wpcf7 p:last-child {
    padding: 24px 0;
  }
}

.wpcf7 label {
  display: grid;
  grid-template-columns: minmax(150px, 280px) 64px minmax(0, 1fr);
  column-gap: 18px;
  align-items: center;
  font-weight: 700;
  margin: 0;
  width: 100%;
}
@media (max-width: 640px) {
  .wpcf7 label {
    grid-template-columns: 1fr;
    row-gap: 12px;
    align-items: start;
  }
}

.wpcf7 label br {
  display: none;
}

.wpcf7 .wpcf7-form-control-wrap {
  display: block;
  width: min(100%, 760px);
  max-width: 760px;
  grid-column: 3;
  margin-top: 0;
}
@media (max-width: 640px) {
  .wpcf7 .wpcf7-form-control-wrap {
    grid-column: auto;
    width: 100%;
    max-width: none;
  }
}

.wpcf7 .required,
.wpcf7 .req {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  padding: 2px 10px;
  border-radius: 999px;
  background: #e84c4c;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  grid-column: 2;
  justify-self: center;
}
@media (max-width: 640px) {
  .wpcf7 .required,
  .wpcf7 .req {
    grid-column: auto;
    justify-self: start;
  }
}

.wpcf7 .wpcf7-form-control {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cfd6df;
  background: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wpcf7 .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  padding: 0;
}

.wpcf7 .wpcf7-radio .wpcf7-list-item {
  margin: 0;
}

.wpcf7 .wpcf7-radio .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  margin: 0;
}

.wpcf7 .wpcf7-radio input[type=radio] {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #00A9E0;
}

.wpcf7 textarea.wpcf7-form-control {
  display: block;
  width: 100% !important;
  max-width: none;
  height: 190px;
  min-height: 190px;
  resize: vertical;
}
@media (max-width: 640px) {
  .wpcf7 textarea.wpcf7-form-control {
    height: 140px;
    min-height: 140px;
  }
}

.wpcf7 input[type=text].wpcf7-form-control,
.wpcf7 input[type=email].wpcf7-form-control,
.wpcf7 input[type=tel].wpcf7-form-control {
  max-width: 390px;
}

.wpcf7 .wpcf7-form-control:focus {
  outline: none;
  border-color: #00A9E0;
  box-shadow: 0 0 0 3px rgba(0, 169, 224, 0.2);
}

.wpcf7 .wpcf7-submit {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: min(360px, 100%);
  margin-left: auto;
  margin-right: auto;
  padding: 14px 20px;
  border: none;
  border-radius: 999px;
  background: #0041B4;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.wpcf7 .contact__privacy-guide {
  display: block;
  margin: 0 0 14px;
  text-align: center;
  font-size: 14px;
  color: #4a5560;
  line-height: 1.7;
}
@media (max-width: 640px) {
  .wpcf7 .contact__privacy-guide {
    font-size: 13px;
    margin-bottom: 12px;
  }
}

.wpcf7 .contact__privacy-guide a {
  color: #0041B4;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.wpcf7 .wpcf7-submit:hover {
  background: #003aa0;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
  transform: translateY(-1px);
}

.wpcf7 .wpcf7-submit:active {
  transform: translateY(0);
  box-shadow: none;
}

.wpcf7 .wpcf7-not-valid-tip {
  color: #d13b3b;
  font-size: 14px;
  margin-top: 6px;
}

.wpcf7 .wpcf7-response-output {
  margin: 16px 0 0;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #e3e8ee;
  background: #fff;
  font-size: 14px;
}

.contact__form .wpcf7 .wpcf7-response-output {
  display: none !important;
}

.wpcf7 .wpcf7-spinner {
  margin-left: 10px;
}

.contact-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  background: #fff;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

body.is-top .contact-sticky-cta {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}

body.has-sticky-cta:not(.is-top) .contact-sticky-cta {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.contact-sticky-cta.is-hidden {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}

body.is-modal-open .contact-sticky-cta {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}

body.has-sticky-cta.is-modal-open .contact-sticky-cta {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}

.contact-sticky-cta__inner {
  max-width: 700px;
  margin: 0 auto;
  background: transparent;
  padding: 14px 16px 16px;
  border-radius: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  overflow: hidden;
}
@media (max-width: 720px) {
  .contact-sticky-cta__inner {
    padding: 12px;
    gap: 10px;
  }
}

.contact-sticky-cta__button {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  min-width: 0;
}
@media (max-width: 720px) {
  .contact-sticky-cta__button {
    justify-content: space-around;
  }
}

.contact-sticky-cta__button--school {
  background: rgb(242, 127, 127);
}

.contact-sticky-cta__button--trial {
  background: rgb(51, 186, 230);
}

.contact-sticky-cta__label {
  font-size: 18px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  padding-left: 15px;
}
@media (max-width: 720px) {
  .contact-sticky-cta__label {
    font-size: 15px;
    padding-left: 5px;
  }
}

.contact-sticky-cta__arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  position: relative;
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .contact-sticky-cta__arrow {
    width: 25px;
    height: 25px;
  }
}

.contact-sticky-cta__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #c45d00;
  border-right: 2px solid #c45d00;
  transform: translate(-60%, -50%) rotate(45deg);
}

.contact-sticky-cta__button--school .contact-sticky-cta__arrow::before {
  border-top-color: #c94a64;
  border-right-color: #c94a64;
}

.contact-sticky-cta__button--trial .contact-sticky-cta__arrow::before {
  border-top-color: #b15d00;
  border-right-color: #b15d00;
}

body.has-sticky-cta {
  padding-bottom: 74px;
}

.privacy {
  padding: 40px 16px 80px;
}

.privacy__inner {
  width: min(980px, 100%);
  margin: 0 auto;
  box-sizing: border-box;
  border-radius: 12px;
  padding: 30px 22px;
}

.privacy__section + .privacy__section {
  margin-top: 34px;
}

.privacy__heading {
  margin: 0;
  padding: 0 0 16px 16px;
  border-bottom: 1px solid #cdd9e6;
  border-left: 5px solid #0041B4;
  font-size: 22px;
  line-height: 1.4;
  color: #243547;
}

.privacy__section p,
.privacy__section li {
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.95;
  color: #2f3f50;
  overflow-wrap: anywhere;
}

.privacy__section ul {
  margin: 10px 0 0;
  padding-left: 1.5em;
}

.privacy__section li {
  margin-top: 4px;
}

.privacy__contact {
  margin-top: 16px;
  max-width: 480px;
  background: #edf3fa;
  border: 1px solid #cfdeee;
  padding: 16px 18px;
}

.privacy__contact p {
  margin: 0;
  line-height: 1.8;
}

.privacy__contact p + p {
  margin-top: 2px;
}

.privacy__contact-name {
  font-weight: 700;
}

.privacy__contact a {
  color: #0041B4;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 640px) {
  .privacy {
    padding: 32px 14px 64px;
  }
  .privacy__inner {
    padding: 22px 14px;
  }
  .privacy__section + .privacy__section {
    margin-top: 26px;
  }
  .privacy__heading {
    padding: 0 0 12px 12px;
    border-left-width: 4px;
    font-size: 18px;
  }
  .privacy__section p,
  .privacy__section li {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.8;
  }
}
.single-post {
  padding: 64px 16px 80px;
  background: #fff;
}

.single-post__inner {
  max-width: 860px;
  margin: 0 auto;
}

.single-post__article {
  background: #fff;
}

.single-post__header {
  text-align: center;
  margin-bottom: 24px;
}

.single-post__meta {
  font-size: 14px;
  color: #7a7a7a;
  margin: 0 0 8px;
}

.single-post__title {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.single-post__thumb {
  margin: 0 0 24px;
}

.single-post__thumb img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.single-post__content {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.single-post__content h2,
.single-post__content h3,
.single-post__content h4 {
  margin: 32px 0 16px;
  line-height: 1.4;
}

.single-post__content p {
  margin: 0 0 16px;
}

.single-post__content img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 640px) {
  .single-post {
    padding: 48px 16px 64px;
  }
  .single-post__title {
    font-size: 22px;
  }
}
.single-achievement {
  padding: 64px 16px 80px;
  background: #fff;
}

.single-achievement__inner {
  max-width: 860px;
  margin: 0 auto;
}

.single-achievement__article {
  background: #fff;
}

.single-achievement__header {
  text-align: center;
  margin-bottom: 24px;
}

.single-achievement__meta {
  font-size: 14px;
  color: #7a7a7a;
  margin: 0 0 8px;
}

.single-achievement__title {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.single-achievement__thumb {
  margin: 0 0 24px;
}

.single-achievement__thumb img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.single-achievement__content {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.single-achievement__content h2,
.single-achievement__content h3,
.single-achievement__content h4 {
  margin: 32px 0 16px;
  line-height: 1.4;
}

.single-achievement__content p {
  margin: 0 0 16px;
}

.single-achievement__content img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 640px) {
  .single-achievement {
    padding: 48px 16px 64px;
  }
  .single-achievement__title {
    font-size: 22px;
  }
}
.section_title {
  margin: 30px auto;
  text-align: center;
  position: relative;
}

.section_title img:not(.section_title__decor) {
  display: block;
  margin: 0 auto;
}

.section_title__decor {
  position: absolute;
  display: block;
  margin: 0;
}

.section_title :is(h1, h2) {
  font-size: 24px;
}
@media (max-width: 768px) {
  .section_title :is(h1, h2) {
    font-size: 20px;
  }
}

@media (min-width: 641px) {
  .site-header + .section_title {
    padding-top: 72px;
  }
  .drawer-menu + .section_title {
    padding-top: 72px;
  }
}
.second-trial-cta {
  position: relative;
  overflow: hidden;
  padding: 52px 16px;
  background: url("../img/school/honsya1.webp") center top/cover no-repeat;
}
.second-trial-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.72);
}
@media (min-width: 769px) {
  .second-trial-cta {
    background-position: center 12%;
  }
}
@media (max-width: 768px) {
  .second-trial-cta {
    padding: 20px 16px;
  }
}

.second-trial-cta__inner {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.second-trial-cta__title {
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .second-trial-cta__title {
    font-size: 24px;
  }
}

.second-trial-cta__lead {
  margin: 0 0 28px;
  font-size: 16px;
}

.second-trial-cta__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 340px));
  gap: 48px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .second-trial-cta__actions {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.second-trial-cta__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 56px;
  margin: 0;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}
@media (max-width: 768px) {
  .second-trial-cta__button {
    max-width: 300px;
    min-height: 48px;
    margin: 0 auto;
    padding: 0 10px;
    gap: 10px;
    justify-content: space-between;
    font-size: 14px;
  }
}

.second-trial-cta__button--school {
  justify-content: space-between;
  padding-right: 16px;
  background: rgb(242, 127, 127);
}
.second-trial-cta__button--school .second-trial-cta__arrow::before {
  border-top-color: rgb(242, 127, 127);
  border-right-color: rgb(242, 127, 127);
}

.second-trial-cta__button--contact {
  justify-content: space-between;
  padding-right: 16px;
  background: rgb(51, 186, 230);
}

.second-trial-cta__icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  place-items: center;
}
.second-trial-cta__icon svg {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .second-trial-cta__icon {
    width: 28px;
    height: 28px;
  }
}

.second-trial-cta__text {
  flex: 1;
  text-align: center;
  white-space: nowrap;
}

.second-trial-cta__arrow {
  position: relative;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
}
.second-trial-cta__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #f28b24;
  border-right: 2px solid #f28b24;
  transform: translate(-60%, -50%) rotate(45deg);
}
@media (max-width: 768px) {
  .second-trial-cta__arrow {
    width: 26px;
    height: 26px;
  }
}

.third-trial-cta {
  padding: 12px 0;
  overflow: hidden;
  background: #fff;
}

.third-trial-cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(200px, 260px) minmax(500px, 620px) minmax(96px, 122px) minmax(190px, 230px);
  column-gap: clamp(18px, 2.4vw, 36px);
  align-items: center;
  justify-content: center;
  min-height: 188px;
  margin: 0 auto;
  padding: 18px clamp(16px, 2.2vw, 30px);
  color: #fff;
  background: linear-gradient(115deg, rgba(63, 194, 194, 0.9) 0%, rgba(50, 141, 198, 0.96) 45%, rgba(44, 83, 183, 0.98) 100%), #2f85c6;
  box-shadow: inset 0 4px 0 rgba(255, 255, 255, 0.22);
}

.third-trial-cta__photo {
  position: relative;
  z-index: 2;
  grid-column: 1;
  align-self: stretch;
  justify-self: end;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}
.third-trial-cta__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left bottom;
  filter: saturate(1.06) brightness(1.08);
}

.third-trial-cta__content {
  position: relative;
  z-index: 3;
  grid-column: 2;
  min-width: 0;
}

.third-trial-cta__heading-row {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 32px);
  margin-bottom: 12px;
}

.third-trial-cta__title {
  display: flex;
  gap: 7px;
  margin: 0;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}

.third-trial-cta__title-box {
  display: grid;
  width: 1.52em;
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.18);
  text-shadow: 0 2px 6px rgba(21, 89, 142, 0.45);
}

.third-trial-cta__status {
  margin: 0;
  font-size: clamp(27px, 2.55vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 7px rgba(21, 89, 142, 0.42);
  white-space: nowrap;
}

.third-trial-cta__lead {
  margin: 0 0 18px;
  font-size: clamp(15px, 1.1vw, 19px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 7px rgba(21, 89, 142, 0.45);
  white-space: nowrap;
}

.third-trial-cta__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 320px));
  gap: clamp(18px, 2.6vw, 38px);
}

.third-trial-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 58px;
  padding: 11px 24px;
  border: 2px solid rgba(22, 43, 67, 0.45);
  border-radius: 28px;
  color: #111;
  font-size: clamp(18px, 1.35vw, 21px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 0 rgba(21, 67, 105, 0.26);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.third-trial-cta__button:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(21, 67, 105, 0.26);
}

.third-trial-cta__button--school {
  background: #fff;
}

.third-trial-cta__button--trial {
  background: #ffd24d;
}

.third-trial-cta__button-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: rotate(45deg);
}

.third-trial-cta__calendar {
  display: grid;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  place-items: center;
}
.third-trial-cta__calendar svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.third-trial-cta__device {
  position: relative;
  z-index: 2;
  grid-column: 3;
  justify-self: end;
  align-self: end;
  margin-bottom: 0;
}

.third-trial-cta__phone {
  width: clamp(50px, 6vw, 110px);
  aspect-ratio: 0.54;
  padding: 7px 6px;
  overflow: hidden;
  border: 6px solid #263247;
  border-radius: 20px;
  background: #101726;
  box-shadow: -10px 12px 18px rgba(12, 35, 74, 0.28);
  transform: rotate(8deg);
}
.third-trial-cta__phone img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
  object-position: 50% 40%;
}

.third-trial-cta__message {
  position: relative;
  z-index: 2;
  grid-column: 4;
  display: grid;
  gap: 6px;
  justify-items: center;
  justify-self: start;
  margin: 0;
  min-width: 190px;
  padding: 24px 22px;
  color: #fff;
  font-size: clamp(15px, 1.15vw, 20px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.06em;
  text-align: center;
  text-shadow: 0 2px 7px rgba(21, 89, 142, 0.45);
}
.third-trial-cta__message::before, .third-trial-cta__message::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 28px;
  height: 92px;
  border-color: #f5cf53;
  border-style: solid;
  transform: translateY(-50%);
}
.third-trial-cta__message::before {
  left: -2px;
  border-width: 3px 0 3px 3px;
  border-radius: 100% 0 0 100%;
}
.third-trial-cta__message::after {
  right: -2px;
  border-width: 3px 3px 3px 0;
  border-radius: 0 100% 100% 0;
}

@media (max-width: 1024px) {
  .third-trial-cta__inner {
    grid-template-columns: minmax(130px, 165px) minmax(390px, 1fr) minmax(72px, 92px) minmax(150px, 180px);
    column-gap: clamp(16px, 2vw, 24px);
  }
  .third-trial-cta__photo {
    grid-column: 1;
  }
  .third-trial-cta__content {
    grid-column: 2;
  }
  .third-trial-cta__device {
    grid-column: 3;
  }
  .third-trial-cta__message {
    grid-column: 4;
  }
  .third-trial-cta__actions {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
  .third-trial-cta__lead {
    font-size: clamp(15px, 1.25vw, 18px);
  }
}
@media (max-width: 900px) {
  .third-trial-cta__inner {
    grid-template-columns: minmax(120px, 180px) minmax(0, 680px);
    column-gap: clamp(16px, 3vw, 28px);
    justify-content: center;
    min-height: 0;
    padding: 20px clamp(18px, 4vw, 36px);
  }
  .third-trial-cta__photo {
    position: relative;
    left: auto;
    bottom: auto;
    grid-column: 1;
    justify-self: start;
    width: 100%;
    max-width: 180px;
    height: 100%;
  }
  .third-trial-cta__content {
    grid-column: 2;
    width: 100%;
    text-align: center;
  }
  .third-trial-cta__device {
    display: none;
  }
  .third-trial-cta__message {
    display: none;
  }
  .third-trial-cta__heading-row {
    justify-content: center;
    gap: 18px;
    margin-bottom: 10px;
  }
  .third-trial-cta__lead {
    margin-bottom: 16px;
    white-space: normal;
  }
  .third-trial-cta__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 620px;
    margin: 0 auto;
  }
  .third-trial-cta__button {
    width: 80%;
    padding-inline: 18px;
  }
}
@media (max-width: 768px) {
  .third-trial-cta {
    padding: 8px 0;
  }
  .third-trial-cta__inner {
    display: grid;
    grid-template-columns: minmax(118px, 42%) minmax(0, 1fr);
    grid-template-areas: "photo heading" "photo lead" "actions actions";
    gap: 10px 12px;
    align-items: end;
    min-height: 0;
    padding: 18px 14px 18px;
    border-radius: 22px;
    text-align: center;
  }
  .third-trial-cta__photo {
    position: relative;
    grid-area: photo;
    left: auto;
    width: 100%;
    height: 176px;
    margin: 0;
    align-self: stretch;
    border-radius: 18px 0 0 18px;
  }
  .third-trial-cta__photo img {
    object-fit: contain;
    object-position: left bottom;
  }
  .third-trial-cta__photo::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 55%, rgba(49, 146, 199, 0.35) 100%);
  }
  .third-trial-cta__content {
    display: contents;
  }
  .third-trial-cta__device {
    display: none;
  }
  .third-trial-cta__heading-row {
    grid-area: heading;
    flex-direction: column;
    justify-content: end;
    gap: 10px;
    margin: 0;
    align-self: end;
  }
  .third-trial-cta__title {
    justify-content: center;
    gap: 5px;
    font-size: clamp(25px, 7vw, 34px);
  }
  .third-trial-cta__title-box {
    width: 1.42em;
    border-radius: 8px;
  }
  .third-trial-cta__status {
    color: #fff;
    font-size: clamp(25px, 7.4vw, 36px);
    text-shadow: 0 2px 7px rgba(21, 89, 142, 0.42);
  }
  .third-trial-cta__lead {
    grid-area: lead;
    margin: 0;
    align-self: start;
    color: #fff;
    font-size: clamp(13px, 3.6vw, 17px);
    line-height: 1.65;
    letter-spacing: 0.03em;
    text-shadow: 0 2px 7px rgba(21, 89, 142, 0.45);
    white-space: normal;
  }
  .third-trial-cta__actions {
    grid-area: actions;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 360px;
    width: 100%;
    margin: 10px auto 0;
  }
  .third-trial-cta__button {
    justify-self: center;
    gap: 10px;
    min-height: 50px;
    padding: 10px 16px;
    border-radius: 18px;
    font-size: 17px;
  }
  .third-trial-cta__button-icon {
    display: block;
    width: 12px;
    height: 12px;
    border-top-width: 3px;
    border-right-width: 3px;
  }
  .third-trial-cta__calendar {
    display: grid;
    width: 24px;
    height: 24px;
  }
}
.trial-cta {
  padding: 40px 16px;
}

.trial-cta__inner {
  max-width: 960px;
  margin: 0 auto;
}

.trial-cta__badge {
  position: relative;
  left: 50%;
  z-index: 2;
  display: inline-block;
  margin: 0 0 -18px;
  padding: 12px 36px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: #f5d20a;
  color: #333;
  font-weight: 700;
}
.trial-cta__badge::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  border-width: 10px 10px 0;
  border-style: solid;
  border-color: #f5d20a transparent transparent;
}

.trial-cta__panel {
  padding: 56px 32px 40px;
  border-radius: 40px;
  background: rgb(204, 238, 249);
  text-align: center;
}
@media (max-width: 768px) {
  .trial-cta__panel {
    padding: 48px 20px 32px;
  }
}

.trial-cta__lead {
  margin: 0 0 28px;
  color: #333;
  font-size: 18px;
  font-weight: 700;
}

.trial-cta__actions {
  max-width: 700px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 768px) {
  .trial-cta__actions {
    grid-template-columns: 1fr;
  }
}

.trial-cta__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.trial-cta__button--school {
  background: rgb(242, 127, 127);
}
.trial-cta__button--school .trial-cta__arrow::before {
  border-color: rgb(242, 127, 127);
}

.trial-cta__button--contact {
  background: rgb(51, 186, 230);
}
.trial-cta__button--contact .trial-cta__arrow::before {
  border-color: rgb(51, 186, 230);
}

.trial-cta__icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  place-items: center;
}
.trial-cta__icon svg {
  display: block;
  width: 100%;
  height: auto;
}

.trial-cta__button-text {
  flex: 1;
  text-align: center;
  white-space: nowrap;
}

.trial-cta__arrow {
  position: relative;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
}
.trial-cta__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 3px solid #f26a1c;
  border-right: 3px solid #f26a1c;
  transform: translate(-60%, -50%) rotate(45deg);
}

.school__cta {
  display: flex;
  justify-content: center;
}

.school__button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 28px;
  border: 2px solid #00A9E0;
  border-radius: 999px;
  color: #333;
  text-decoration: none;
  font-weight: 700;
  background: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.school__button-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #00A9E0;
  position: relative;
  flex-shrink: 0;
}

.school__button-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-60%, -50%) rotate(45deg);
}

@media (max-width: 520px) {
  .school__button {
    width: 100%;
    justify-content: space-between;
  }
}
.student__pagination,
.achievements__pagination,
.notice__pagination,
.blog__pagination {
  display: flex;
  justify-content: center;
  margin-top: 28px;
  padding: 0 8px;
  box-sizing: border-box;
}

.student__pagination .page-numbers,
.achievements__pagination .page-numbers,
.notice__pagination .page-numbers,
.blog__pagination .page-numbers {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
  max-width: 100%;
  box-sizing: border-box;
}

.student__pagination .page-numbers li,
.achievements__pagination .page-numbers li,
.notice__pagination .page-numbers li,
.blog__pagination .page-numbers li {
  margin: 0;
}

.student__pagination .page-numbers a,
.student__pagination .page-numbers span,
.achievements__pagination .page-numbers a,
.achievements__pagination .page-numbers span,
.notice__pagination .page-numbers a,
.notice__pagination .page-numbers span,
.blog__pagination .page-numbers a,
.blog__pagination .page-numbers span {
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f2f2f2;
  color: #333;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.2s ease, color 0.2s ease;
}

.student__pagination .page-numbers a:hover,
.achievements__pagination .page-numbers a:hover,
.notice__pagination .page-numbers a:hover,
.blog__pagination .page-numbers a:hover {
  background: #e8f2d6;
}

.student__pagination .page-numbers .current,
.achievements__pagination .page-numbers .current,
.notice__pagination .page-numbers .current,
.blog__pagination .page-numbers .current {
  background: #9ec562;
  color: #fff;
}

.student__pagination .page-numbers .dots,
.achievements__pagination .page-numbers .dots,
.notice__pagination .page-numbers .dots,
.blog__pagination .page-numbers .dots {
  background: transparent;
  color: #7a7a7a;
  min-width: auto;
  padding: 0 4px;
}

.student__pagination .page-numbers .prev,
.student__pagination .page-numbers .next,
.achievements__pagination .page-numbers .prev,
.achievements__pagination .page-numbers .next,
.notice__pagination .page-numbers .prev,
.notice__pagination .page-numbers .next,
.blog__pagination .page-numbers .prev,
.blog__pagination .page-numbers .next {
  background: transparent;
  min-width: auto;
  padding: 0 14px;
  position: relative;
  font-weight: 700;
}

.student__pagination .page-numbers .next,
.achievements__pagination .page-numbers .next,
.notice__pagination .page-numbers .next,
.blog__pagination .page-numbers .next {
  padding-right: 36px;
  padding-left: 10px;
}

.student__pagination .page-numbers .prev,
.achievements__pagination .page-numbers .prev,
.notice__pagination .page-numbers .prev,
.blog__pagination .page-numbers .prev {
  padding-left: 36px;
  padding-right: 10px;
}

.student__pagination .page-numbers .next::after,
.achievements__pagination .page-numbers .next::after,
.notice__pagination .page-numbers .next::after,
.blog__pagination .page-numbers .next::after,
.student__pagination .page-numbers .prev::after,
.achievements__pagination .page-numbers .prev::after,
.notice__pagination .page-numbers .prev::after,
.blog__pagination .page-numbers .prev::after {
  content: "";
  width: 22px;
  height: 22px;
  border: 2px solid #9ec562;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.student__pagination .page-numbers .prev::after,
.achievements__pagination .page-numbers .prev::after,
.notice__pagination .page-numbers .prev::after,
.blog__pagination .page-numbers .prev::after {
  left: 6px;
}

.student__pagination .page-numbers .next::after,
.achievements__pagination .page-numbers .next::after,
.notice__pagination .page-numbers .next::after,
.blog__pagination .page-numbers .next::after {
  right: 6px;
}

.student__pagination .page-numbers .next::before,
.achievements__pagination .page-numbers .next::before,
.notice__pagination .page-numbers .next::before,
.blog__pagination .page-numbers .next::before,
.student__pagination .page-numbers .prev::before,
.achievements__pagination .page-numbers .prev::before,
.notice__pagination .page-numbers .prev::before,
.blog__pagination .page-numbers .prev::before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #9ec562;
  border-right: 2px solid #9ec562;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.student__pagination .page-numbers .prev::before,
.achievements__pagination .page-numbers .prev::before,
.notice__pagination .page-numbers .prev::before,
.blog__pagination .page-numbers .prev::before {
  left: 14px;
  transform: translateY(-50%) rotate(-135deg);
}

.student__pagination .page-numbers .next::before,
.achievements__pagination .page-numbers .next::before,
.notice__pagination .page-numbers .next::before,
.blog__pagination .page-numbers .next::before {
  right: 14px;
}

@media (max-width: 640px) {
  .student__pagination .page-numbers,
  .achievements__pagination .page-numbers,
  .notice__pagination .page-numbers,
  .blog__pagination .page-numbers {
    gap: 6px;
    flex-wrap: nowrap;
  }
  .student__pagination .page-numbers a,
  .student__pagination .page-numbers span,
  .achievements__pagination .page-numbers a,
  .achievements__pagination .page-numbers span,
  .notice__pagination .page-numbers a,
  .notice__pagination .page-numbers span,
  .blog__pagination .page-numbers a,
  .blog__pagination .page-numbers span {
    min-width: 30px;
    height: 30px;
    font-size: 14px;
  }
  .student__pagination .page-numbers .next,
  .student__pagination .page-numbers .prev,
  .achievements__pagination .page-numbers .next,
  .achievements__pagination .page-numbers .prev,
  .notice__pagination .page-numbers .next,
  .notice__pagination .page-numbers .prev,
  .blog__pagination .page-numbers .next,
  .blog__pagination .page-numbers .prev {
    padding: 0 6px;
    min-width: 30px;
  }
  .student__pagination .page-numbers .next::after,
  .student__pagination .page-numbers .prev::after,
  .achievements__pagination .page-numbers .next::after,
  .achievements__pagination .page-numbers .prev::after,
  .notice__pagination .page-numbers .next::after,
  .notice__pagination .page-numbers .prev::after,
  .blog__pagination .page-numbers .next::after,
  .blog__pagination .page-numbers .prev::after {
    width: 16px;
    height: 16px;
  }
  .student__pagination .page-numbers .next::before,
  .student__pagination .page-numbers .prev::before,
  .achievements__pagination .page-numbers .next::before,
  .achievements__pagination .page-numbers .prev::before,
  .notice__pagination .page-numbers .next::before,
  .notice__pagination .page-numbers .prev::before,
  .blog__pagination .page-numbers .next::before,
  .blog__pagination .page-numbers .prev::before {
    width: 4px;
    height: 4px;
  }
  .student__pagination .page-numbers .next,
  .student__pagination .page-numbers .prev,
  .achievements__pagination .page-numbers .next,
  .achievements__pagination .page-numbers .prev,
  .notice__pagination .page-numbers .next,
  .notice__pagination .page-numbers .prev,
  .blog__pagination .page-numbers .next,
  .blog__pagination .page-numbers .prev {
    font-size: 0;
  }
  .student__pagination .page-numbers .next::after,
  .achievements__pagination .page-numbers .next::after,
  .notice__pagination .page-numbers .next::after,
  .blog__pagination .page-numbers .next::after,
  .student__pagination .page-numbers .prev::after,
  .achievements__pagination .page-numbers .prev::after,
  .notice__pagination .page-numbers .prev::after,
  .blog__pagination .page-numbers .prev::after {
    border-width: 2px;
  }
}
.site-breadcrumb {
  width: fit-content;
  max-width: calc(100% - 32px);
  margin: 14px 0 0;
  padding: 10px 16px;
  border: 1px solid rgba(0, 65, 180, 0.1);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 169, 224, 0.08), rgba(0, 65, 180, 0.05));
  color: #667085;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  box-sizing: border-box;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}
.site-breadcrumb::-webkit-scrollbar {
  display: none;
}
.site-breadcrumb ol,
.site-breadcrumb ul {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.site-breadcrumb a {
  color: #0041B4;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-breadcrumb a:hover {
  color: #00A9E0;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 640px) {
  .site-breadcrumb {
    max-width: calc(100% - 20px);
    margin-top: 10px;
    padding: 9px 12px;
    border-radius: 14px;
    font-size: 12px;
  }
}

.recruit__table {
  width: min(1120px, 92%);
  margin: 24px auto 0;
  padding: 14px;
  background: #f4f8fb;
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(16, 72, 116, 0.08);
}

.recruit__table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 0 1px #dbe7f1;
}

.recruit__table th,
.recruit__table td {
  padding: 20px 22px;
  border-bottom: none;
}

.recruit__table tr:not(:first-child) th,
.recruit__table tr:not(:first-child) td {
  border-top: 1px solid #e2edf7;
}

.recruit__table th {
  width: 220px;
  font-size: 16px;
  text-align: left;
  white-space: nowrap;
  vertical-align: top;
  font-weight: 700;
  color: #124a73;
  background: #eaf4ff;
}

.recruit__table td {
  vertical-align: top;
  line-height: 1.8;
  color: #1f2933;
}

.recruit__table td p {
  margin: 0;
}

.recruit__table td p + p {
  margin-top: 6px;
}

@media (min-width: 769px) {
  .recruit__table th,
  .recruit__table td {
    font-size: 18px;
  }
  .recruit__table th {
    width: 260px;
    padding-right: 36px;
  }
  .recruit__table td {
    padding-left: 18px;
  }
}
.recruit__gallery {
  width: min(1120px, 92%);
  margin: 16px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.recruit__gallery-item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(16, 72, 116, 0.12);
}

.recruit__gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.recruit__flow {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 0 8px;
  box-sizing: border-box;
  margin: 40px auto;
}

.recruit__flow .box {
  width: 100%;
  margin: 0;
}

.recruit__flow h2 {
  color: #00a9e0;
  font-size: 24px;
  margin: 0 0 6px;
}

.recruit__flow .img {
  width: 100%;
  height: 96px;
  display: flex;
  justify-content: center; /* 横中央 */
  align-items: center;
  overflow: hidden;
}

.recruit__flow img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.recruit__flow p {
  text-align: center;
  font-size: 14px;
}

@media (min-width: 769px) {
  .recruit__flow {
    width: min(1120px, 92%);
    gap: 20px;
    padding: 0;
    align-items: start;
  }
  .recruit__flow .box {
    width: 100%;
    margin: 0;
  }
  .recruit__flow .img {
    height: 160px;
  }
  .recruit__flow h2 {
    font-size: 32px;
    margin-bottom: 8px;
  }
  .recruit__flow p {
    font-size: 22px;
  }
}
.recruit__apply {
  width: 50%;
  height: auto;
  padding: 10px;
  background-color: #00a7d9;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto;
}

@media (min-width: 769px) {
  .recruit__apply {
    width: min(320px, 36%);
  }
}
.recruit__apply p {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

.recruit__apply a {
  color: #fff;
}

.recruit-voice {
  margin: 40px 0 60px;
}

.recruit-voice__inner {
  width: min(900px, 90%);
  margin: 0 auto;
}

.recruit-voice__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.recruit-voice__item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.recruit-voice__photo {
  width: 140px;
  text-align: center;
  flex-shrink: 0;
}

.recruit-voice__photo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 8px;
}

.recruit-voice__name {
  font-weight: bold;
  font-size: 16px;
  margin: 0;
}

.recruit-voice__content {
  flex: 1;
}

.recruit-voice__quote {
  background-color: #f5f5f5;
  border-radius: 12px;
  padding: 16px 20px;
  margin: 0 0 12px;
  line-height: 1.7;
  font-size: 16px;
}

.recruit-voice__meta {
  margin: auto;
}

.recruit-voice__meta p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

@media (min-width: 769px) {
  .recruit-voice__item {
    align-items: flex-start;
  }
  .recruit-voice__meta {
    margin: 0;
  }
  .recruit-voice__content {
    margin: 0;
  }
  .recruit-voice__quote {
    margin: 0;
  }
}
.staff_school {
  width: min(460px, 92%);
  margin: 0 auto;
  border-collapse: collapse;
}

.staff_school th,
.staff_school td {
  padding: 8px 6px;
  font-size: 16px;
  line-height: 1.6;
}

.staff_school th {
  text-align: left;
  font-weight: 600;
}

.staff_school td {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

@media (min-width: 769px) {
  .staff_school {
    width: min(520px, 56%);
  }
}
@media (max-width: 768px) {
  .recruit__table {
    width: 94%;
    padding: 10px;
  }
  .recruit__table th {
    width: 7.5em;
    white-space: nowrap;
    font-size: 14px;
    padding: 14px 12px 8px;
  }
  .recruit__table td {
    padding: 10px 14px 14px;
  }
  .recruit__gallery {
    width: 94%;
    display: flex;
    gap: 0;
    margin-top: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .recruit__gallery::-webkit-scrollbar {
    display: none;
  }
  .recruit__gallery-item {
    border-radius: 10px;
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding-right: 8px;
    box-sizing: border-box;
  }
  .recruit__gallery-item img {
    height: 200px;
  }
  .recruit-voice__item {
    flex-direction: column;
    gap: 12px;
  }
  .recruit-voice__photo {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
  }
  .recruit-voice__photo img {
    width: 72px;
    height: 72px;
    margin: 0;
  }
}
.price__table {
  width: 95%;
  margin: 24px auto 0;
  max-width: 980px;
  background: #f4f8fb;
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(16, 72, 116, 0.08);
  overflow-x: auto;
  margin-bottom: 2rem;
}

.price__table table {
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 0 1px #dbe7f1;
}

.price__table th,
.price__table td {
  border-bottom: 1px solid #dbe7f1;
  border-right: 1px solid #dbe7f1;
  padding: 18px 16px;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
}

.price__table td {
  width: 40%;
  color: #1f2933;
}

.price__table table tr:first-child th {
  background: #1b6aa6;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.price__table table tr:not(:first-child) th {
  background: #e7f2ff;
  color: #124a73;
  font-weight: 700;
}

.left_th {
  width: 18%;
  text-align: left;
  padding-left: 20px;
}

.price__table table tr th:last-child,
.price__table table tr td:last-child {
  border-right: none;
}

.price__table table tr:nth-child(even) td {
  background: #f9fcff;
}

@media (max-width: 768px) {
  .price__table th,
  .price__table td {
    padding: 14px 12px;
    font-size: 13px;
  }
  .price__table table tr:first-child th {
    font-size: 9px;
  }
  .left_th {
    width: 26%;
    padding-left: 14px;
  }
}
.site-footer {
  background: #fff;
  color: #333;
}

.site-footer__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px 16px 24px;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}

.site-footer__brand {
  max-width: 320px;
  margin: auto;
}

.site-footer__logo {
  width: 220px;
  height: auto;
  display: block;
  margin-bottom: 16px;
}

.site-footer__address,
.site-footer__hours,
.site-footer__tel {
  margin: 0 0 12px;
  line-height: 1.7;
  font-size: 14px;
}

.site-footer__tel a {
  color: #00A9E0;
  text-decoration: none;
}

.site-footer__nav {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.site-footer__accordion {
  margin: 0;
}

.site-footer__title {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

.site-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 14px;
}

.site-footer__list a {
  color: #333;
  text-decoration: none;
}

.site-footer__list a:hover {
  text-decoration: underline;
}

.site-footer__bottom {
  background: #0041B4;
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 12px;
}
@media (min-width: 768px) {
  .site-footer__bottom {
    margin-bottom: 10px;
  }
}

.site-footer__bottom p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-footer__inner {
    flex-direction: column;
    gap: 28px;
  }
  .site-footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .site-footer__nav {
    grid-template-columns: 1fr;
  }
  .site-footer__inner {
    padding-left: 0;
    padding-right: 0;
  }
  .site-footer__nav {
    width: 100%;
  }
  .site-footer__accordion {
    border-top: 1px solid #e6e6e6;
    padding: 18px 16px;
  }
  .site-footer__title {
    list-style: none;
    cursor: pointer;
    position: relative;
    padding-right: 24px;
  }
  .site-footer__title::-webkit-details-marker {
    display: none;
  }
  .site-footer__title::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 8px;
    height: 8px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: translateY(-60%) rotate(45deg);
    transition: transform 0.2s ease;
  }
  .site-footer__accordion[open] .site-footer__title::after {
    transform: translateY(-30%) rotate(-135deg);
  }
  .site-footer__list {
    gap: 0;
    padding-bottom: 8px;
  }
  .site-footer__list li {
    border-bottom: 1px solid #e6e6e6;
  }
  .site-footer__list a {
    display: block;
    padding: 14px 0;
  }
  .site-footer__logo {
    width: 200px;
  }
}

/*# sourceMappingURL=style.css.map */
