:root {
  --green: #009f58;
  --green-dark: #006437;
  --green-soft: #e9f8ef;
  --mint: #f4fbf7;
  --orange: #f68f4b;
  --pink: #ed6683;
  --blue: #2da9dc;
  --yellow: #ffd84e;
  --ink: #303338;
  --muted: #6d7478;
  --line: #e8eee9;
  --paper: #fff;
  --max: 1120px;
  font-family: "Noto Sans JP", "Hiragino Sans", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.8;
}

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

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 12px clamp(18px, 3vw, 42px);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(0, 159, 88, .08);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 215px;
  color: var(--green);
  font-weight: 800;
  letter-spacing: .03em;
}

.brand img {
  width: 160px;
  height: auto;
}

.brand span {
  padding-left: 12px;
  border-left: 2px solid var(--green);
  white-space: nowrap;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 38px);
  font-weight: 800;
}

.global-nav a,
.nav-parent {
  display: grid;
  gap: 0;
  place-items: center;
  font-size: 14px;
  line-height: 1.25;
}

.global-nav small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

.nav-item {
  position: relative;
}

.nav-parent {
  position: relative;
  padding-right: 16px;
}

.dropdown-mark {
  position: absolute;
  right: 0;
  top: 50%;
  color: var(--green);
  font-size: 13px;
  transform: translateY(-50%);
}

.dropdown-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 18px);
  z-index: 50;
  display: grid;
  min-width: 196px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 35px rgba(20, 70, 45, .14);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  height: 20px;
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.4;
  white-space: nowrap;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: var(--green-soft);
  color: var(--green-dark);
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 46px;
  padding: 10px 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #06bd64, var(--green));
  color: #fff;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .55), 0 8px 20px rgba(0, 159, 88, .16);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.dark {
  background: var(--green-dark);
}

.button.light {
  color: var(--green);
  background: #fff;
  box-shadow: inset 0 0 0 2px var(--green), 0 8px 20px rgba(0, 159, 88, .08);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 24px;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: clamp(88px, 13vh, 150px) clamp(18px, 6vw, 86px);
  overflow: hidden;
  color: #fff;
  background: #153f2c;
}

.hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 66, 39, .86) 0%, rgba(0, 83, 50, .62) 38%, rgba(0, 83, 50, .08) 72%),
    url("images/hero-recruit.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 52, 30, .18));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.entry-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--green-dark);
  font-weight: 800;
}

.hero h1 {
  margin: 0 0 28px;
  font-size: clamp(38px, 6.4vw, 88px);
  line-height: 1.16;
  font-weight: 900;
  text-shadow: 0 8px 26px rgba(0, 50, 30, .24);
}

.hero-title {
  display: grid;
  gap: .04em;
}

.hero-title span {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.hero-title span:first-child {
  color: var(--yellow);
}

.hero p {
  max-width: 680px;
  margin: 0 0 32px;
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 700;
  text-shadow: 0 4px 16px rgba(0, 50, 30, .28);
}

.photo-card,
.dummy-photo {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mint);
}

.dummy-photo::before,
.photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 74, 45, .08)),
    var(--img, url("images/classroom.png"));
  background-size: cover;
  background-position: center;
}

.dummy-photo::after,
.photo-card::after {
  content: "";
  display: none;
}

.photo-1,
.photo-5,
.photo-9,
.photo-10,
.photo-20,
.photo-43,
.photo-52,
.photo-70 {
  --img: url("images/movement-therapy.png");
}

.photo-2,
.photo-6,
.photo-11,
.photo-21,
.photo-41,
.photo-51,
.photo-60,
.photo-64 {
  --img: url("images/learning-support.png");
}

.photo-3,
.photo-7,
.photo-22,
.photo-31,
.photo-44,
.photo-53,
.photo-61,
.photo-65 {
  --img: url("images/team-meeting.png");
}

.photo-4,
.photo-8,
.photo-23,
.photo-32,
.photo-42,
.photo-55,
.photo-62,
.photo-66 {
  --img: url("images/mentoring.png");
}

.photo-24,
.photo-54,
.photo-56,
.photo-63,
.photo-67 {
  --img: url("images/group-activity.png");
}

.photo-25,
.photo-57 {
  --img: url("images/classroom.png");
}

.section {
  padding: clamp(70px, 9vw, 118px) clamp(18px, 4vw, 64px);
}

.section.tint {
  background: var(--mint);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-title {
  margin-bottom: clamp(34px, 5vw, 62px);
  text-align: center;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 1;
  font-weight: 900;
}

.section-title h2::first-letter {
  color: var(--green);
}

.section-title p {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.lead {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}

.photo-card {
  min-height: 360px;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card,
.work-card,
.job-card,
.interview-card,
.message-card,
.info-table,
.form-panel {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(20, 70, 45, .08);
}

.stat-card {
  min-height: 180px;
  padding: 28px;
  text-align: center;
}

.stat-card h3 {
  margin: 0 0 18px;
  font-size: 16px;
}

.stat-number {
  color: var(--green);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
  font-weight: 900;
}

.stat-card small {
  color: var(--muted);
}

.chart {
  width: 150px;
  height: 150px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: conic-gradient(var(--green) 0 49%, var(--blue) 49% 71%, var(--orange) 71% 83%, var(--pink) 83% 95%, var(--yellow) 95% 100%);
}

.ratio-bars {
  display: grid;
  gap: 8px;
}

.bar {
  display: grid;
  grid-template-columns: 64px 1fr 48px;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
}

.bar span:nth-child(2) {
  height: 9px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--green) var(--w), #e5eee8 var(--w));
}

.student-notice {
  padding: 28px clamp(18px, 4vw, 64px) 0;
  background: #fff;
}

.student-notice-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mint);
}

.student-notice h2 {
  margin: 0 0 8px;
  color: var(--green-dark);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.35;
}

.student-notice p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.student-notice-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.facility-card {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(20, 70, 45, .08);
}

.facility-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.facility-info {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.facility-info div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.facility-info div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.facility-info dt,
.facility-info dd {
  margin: 0;
}

.facility-info dt {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.facility-info dd {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

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

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 920px;
  margin: 0 auto;
}

.guide-card,
.faq-item {
  min-height: 220px;
  padding: 26px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(20, 70, 45, .08);
}

.guide-card h3,
.faq-item h3 {
  margin: 0 0 14px;
  color: var(--green-dark);
  line-height: 1.5;
}

.guide-card p,
.faq-item p {
  margin: 0;
  color: var(--muted);
}

.guide-card .link-row {
  margin-top: 22px;
}

.compact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.compact-card {
  min-height: 170px;
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(20, 70, 45, .07);
}

.compact-card h3 {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 18px;
  line-height: 1.45;
}

.compact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.card-note {
  margin-top: 16px !important;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--green-dark) !important;
  font-size: 13px;
  font-weight: 800;
}

.work-card,
.interview-card,
.job-card {
  overflow: hidden;
}

.coming-soon-card {
  opacity: .96;
}

.coming-soon-card .dummy-photo {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(0, 159, 88, .14), rgba(45, 169, 220, .12)),
    var(--mint);
  filter: none;
}

.coming-soon-card .dummy-photo::before {
  content: "Coming Soon";
  position: relative;
  inset: auto;
  display: grid;
  place-items: center;
  width: min(68%, 260px);
  aspect-ratio: 1.9 / 1;
  border: 2px dashed rgba(0, 100, 55, .28);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  color: var(--green-dark);
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 900;
  letter-spacing: .02em;
}

.dummy-photo {
  aspect-ratio: 4 / 3;
  border-radius: 8px 8px 0 0;
}

.card-body {
  padding: 24px;
}

.label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.card-body h3 {
  margin: 0 0 14px;
  line-height: 1.55;
}

.card-body p {
  margin: 0;
  color: var(--muted);
}

.job-head {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 22px 0;
}

.facility-mark {
  width: 92px;
  min-width: 92px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.job-card .dummy-photo {
  margin: 18px 22px 0;
  border-radius: 8px;
}

.filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.filter-button {
  min-width: 176px;
}

.filter-panel {
  display: grid;
  gap: 18px;
  margin: 0 0 34px;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(20, 70, 45, .08);
}

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

.filter-grid label {
  display: grid;
  gap: 8px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.filter-panel .button {
  justify-self: start;
}

.empty-state {
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  color: var(--green-dark);
  text-align: center;
  font-weight: 900;
  box-shadow: 0 14px 35px rgba(20, 70, 45, .08);
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.cta-band a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 150px;
  padding: 40px clamp(24px, 6vw, 86px);
  color: #fff;
  background: var(--green);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 900;
}

.cta-band a:nth-child(2) {
  background: var(--green-dark);
}

.footer {
  padding: 48px clamp(18px, 4vw, 64px);
  background: #fff;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  max-width: var(--max);
  margin: 0 auto;
}

.footer img {
  width: 170px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
  color: var(--muted);
  font-weight: 700;
}

.pagetop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  line-height: 1.2;
  box-shadow: 0 14px 30px rgba(0, 100, 55, .22);
}

.page-hero {
  padding: 120px clamp(18px, 4vw, 64px) 72px;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, var(--mint) 100%);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(54px, 7vw, 96px);
  line-height: 1;
  font-weight: 900;
}

.page-hero h1::first-letter {
  color: var(--green);
}

.page-hero p {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.info-table {
  overflow: hidden;
}

.info-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-bottom: 1px solid var(--line);
}

.info-row:last-child {
  border-bottom: 0;
}

.info-row dt,
.info-row dd {
  margin: 0;
  padding: 22px 26px;
}

.info-row dt {
  background: var(--mint);
  color: var(--green-dark);
  font-weight: 900;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  align-items: start;
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(20, 70, 45, .07);
}

.time {
  color: var(--green);
  font-size: 28px;
  font-weight: 900;
}

.day-pattern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.day-pattern {
  padding: 26px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(20, 70, 45, .08);
}

.day-pattern h3 {
  margin: 0 0 12px;
  color: var(--green-dark);
}

.day-pattern p {
  margin: 0 0 20px;
  color: var(--muted);
}

.mini-timeline {
  display: grid;
  gap: 10px;
}

.mini-timeline div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: start;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.mini-timeline strong {
  color: var(--green);
  font-weight: 900;
}

.mini-timeline span {
  color: var(--green-dark);
  font-weight: 800;
}

.message-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  padding: 28px;
  margin-bottom: 28px;
}

.message-card .dummy-photo {
  aspect-ratio: 1;
  border-radius: 8px;
}

.audience-message {
  margin-bottom: 0;
}

.audience-message .dummy-photo {
  min-height: 260px;
}

.message-card .ceo-photo {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  align-self: start;
  justify-self: center;
  box-shadow: 0 14px 35px rgba(20, 70, 45, .12);
}

.ceo-message {
  align-items: start;
}

.ceo-message p {
  margin: 0 0 1.15em;
}

.ceo-message .signature {
  margin-top: 1.8em;
  font-weight: 900;
  text-align: right;
}

.form-panel {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 44px);
}

.form-grid {
  display: grid;
  gap: 20px;
}

.field {
  display: grid;
  gap: 8px;
}

label {
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

.required {
  color: var(--pink);
  font-size: 12px;
}

.plain-text {
  max-width: 860px;
  margin: 0 auto;
}

.plain-text h2 {
  margin-top: 42px;
  color: var(--green-dark);
}

.plain-text ol,
.plain-text ul {
  padding-left: 1.5em;
}

.plain-text li + li {
  margin-top: 8px;
}

.plain-text a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-item {
  min-height: auto;
}

.faq-item h3::before {
  content: "Q.";
  margin-right: 8px;
  color: var(--green);
  font-weight: 900;
}

.notice {
  padding: 18px 20px;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 700;
}

@media (max-width: 1080px) {
  .global-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .site-header.open {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .site-header.open .global-nav,
  .site-header.open .header-actions {
    position: static;
    width: 100%;
    display: grid;
    justify-items: stretch;
    padding: 20px;
    background: #fff;
  }

  .site-header.open .global-nav {
    order: 4;
    gap: 16px;
  }

  .site-header.open .header-actions {
    order: 5;
    padding-top: 0;
  }

  .site-header.open .global-nav a,
  .site-header.open .nav-parent {
    justify-items: start;
  }

  .nav-item {
    display: grid;
    gap: 10px;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    padding: 8px;
    border: 0;
    background: var(--mint);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .dropdown-menu::before {
    content: none;
  }

  .dropdown-menu a {
    padding: 10px 14px;
  }
}

@media (max-width: 820px) {
  .brand img {
    width: 128px;
  }

  .brand span {
    font-size: 14px;
  }

  .hero {
    min-height: 680px;
    padding-top: 76px;
    padding-bottom: 70px;
  }

  .split,
  .message-card {
    grid-template-columns: 1fr;
  }

  .hero-content {
    align-self: start;
  }

  .student-notice-inner {
    grid-template-columns: 1fr;
  }

  .student-notice-actions {
    justify-content: flex-start;
  }

  .stats-grid,
  .card-grid,
  .facility-grid,
  .audience-grid,
  .guide-grid,
  .compact-grid,
  .day-pattern-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .info-row,
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .filter-grid {
    grid-template-columns: 1fr;
  }

  .info-row dd {
    padding-top: 16px;
  }

  .pagetop {
    width: 62px;
    height: 62px;
    right: 14px;
    bottom: 14px;
    font-size: 13px;
  }
}
