﻿:root {
  --navy: #11243c;
  --navy-2: #1a3555;
  --green: #2e7d5f;
  --lime: #65d93a;
  --green-soft: #eaf6ef;
  --gold-soft: #fff7e8;
  --ink: #202a33;
  --muted: #66727f;
  --line: #dfe6ea;
  --paper: #ffffff;
  --mist: #f3f8fc;
  --blue-soft: #e7f3fa;
  --cream: #faf9f5;
  --beige: #f6f1e8;
  --green-mist: #eef5ec;
  --aqua-mist: #eaf6fb;
  --red-accent: #b23a35;
  --shadow: 0 18px 50px rgba(17, 36, 60, 0.12);
  --hero-image: url("../images/origami-cranes-colorful.jpg");
  --radius: 8px;
  --radius-sm: 8px;
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: inherit;
  line-height: 1.75;
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 12px clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 230, 234, 0.78);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  min-width: 210px;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 0;
}

.brand strong {
  display: block;
  font-size: 17px;
  line-height: 1.2;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.logo {
  display: inline-flex;
  align-items: center;
  min-width: 210px;
}

.logo img {
  width: 156px;
  height: 48px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 23px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.header-cta,
.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  line-height: 1.3;
}

.header-cta,
.nav-cta,
.button.primary {
  color: #fff;
  background: var(--navy);
}

.nav-cta {
  min-height: 42px;
  padding-inline: 18px;
}

.button.secondary {
  color: var(--navy);
  background: #fff;
  border-color: var(--line);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.text-link,
.service-card a,
.job-card a {
  color: var(--green);
  font-weight: 800;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: clamp(560px, 68vh, 760px);
  display: grid;
  align-items: center;
  padding: 176px clamp(20px, 5vw, 64px) 72px;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero::before {
  background: var(--hero-image) center center / cover no-repeat;
  opacity: 1;
  filter: saturate(1.06) contrast(1.04);
  transform-origin: center;
  animation: craneDrift 22s ease-in-out infinite alternate;
}

@media (min-width: 1440px) {
  .hero::before {
    background-size: min(1650px, 92vw) auto;
    background-position: center top;
  }
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.68) 38%, rgba(255, 255, 255, 0.16) 72%, rgba(255, 255, 255, 0.04) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 44%, rgba(255, 255, 255, 0.48) 100%);
}

.hero-media {
  position: absolute;
  inset: 76px 0 0 0;
  z-index: 0;
  height: auto;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  opacity: 0.52;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: min(760px, 58vw);
  padding: 30px 0;
  animation: heroCopyIn 820ms ease both;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--green);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
  word-break: normal;
  line-break: strict;
}

h1 {
  margin: 0;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 1.08;
  letter-spacing: 0;
}

.word-line {
  display: block;
}

.no-break {
  white-space: nowrap;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.24;
}

h3 {
  color: var(--navy);
}

.lead {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: 18px;
}

.lead-lines {
  display: grid;
  gap: 4px;
}

.lead-lines span {
  display: block;
}

.hero-subtitle {
  margin: 18px 0 0;
  color: var(--navy);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 800;
  line-height: 1.45;
}

.hero .lead {
  color: var(--ink);
}

.hero-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.hero-service-tags a,
.service-nav-list a,
.job-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  color: var(--navy);
  background: var(--green-soft);
  border: 1px solid rgba(46, 125, 95, 0.18);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero .button.primary {
  color: #fff;
  background: var(--navy);
}

.hero .button.secondary {
  color: var(--navy);
  background: #fff;
  border-color: var(--line);
}

.hero-panel {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 5vw, 64px);
  top: 106px;
  bottom: auto;
  display: grid;
  gap: 8px;
  min-width: 270px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel a {
  display: grid;
  gap: 3px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.hero-panel a:last-child {
  border-bottom: 0;
}

.hero-panel span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.hero-panel strong {
  font-size: 25px;
  line-height: 1.2;
}

.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section-band {
  background: var(--mist);
}

.section-blue {
  background: linear-gradient(180deg, var(--aqua-mist) 0%, #f0f8fc 100%);
}

.section-white {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.section-white::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 88% 20%, rgba(178, 58, 53, 0.055), transparent 12%),
    linear-gradient(118deg, transparent 0 66%, rgba(31, 122, 85, 0.1) 66.1%, transparent 66.26%),
    linear-gradient(118deg, transparent 0 74%, rgba(31, 122, 85, 0.075) 74.1%, transparent 74.26%);
  opacity: 1;
}

.section-blue > .section-inner,
.section-white > .section-inner {
  position: relative;
  z-index: 1;
}

.page-hero + .section-blue,
.page-hero + .section-white {
  padding: clamp(64px, 8vw, 104px) 0;
}

.intro,
.mvv,
.about,
.contact,
.recruit,
.services,
.jobs,
.work-style,
.homes,
.vacancy,
.top-vacancy,
.salary,
.bonus,
.detail-list,
.support-flow {
  padding: clamp(64px, 8vw, 104px) 0;
}

.top-vacancy {
  background: linear-gradient(180deg, #eaf6fb 0%, #edf8fc 100%);
}

.services {
  background:
    radial-gradient(circle at 92% 18%, rgba(178, 58, 53, 0.055), transparent 11%),
    linear-gradient(135deg, var(--green-mist) 0%, var(--beige) 100%);
}

.mvv {
  background:
    radial-gradient(circle at 88% 16%, rgba(31, 122, 85, 0.055), transparent 13%),
    linear-gradient(118deg, transparent 0 70%, rgba(17, 36, 60, 0.055) 70.1%, transparent 70.24%),
    var(--beige);
}

.mvv::before {
  display: none;
}

.recruit {
  background: linear-gradient(180deg, #eaf6fb 0%, var(--green-mist) 100%);
}

.about {
  background: #fff;
}

.contact {
  background: linear-gradient(180deg, #eaf6fb 0%, #eff8fc 100%);
}

section.section-blue,
section.section-white {
  padding-block: clamp(78px, 8vw, 120px);
}

section.section-blue + section.section-blue,
section.section-white + section.section-white,
.section-blue + .section-white,
.section-white + .section-blue {
  border-top: 0;
}

.section-blue .section-heading,
.section-white .section-heading {
  margin-top: 0;
}

.home-quick {
  padding: 40px 0;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quick-grid a,
.flow-grid article,
.culture-grid article {
  display: grid;
  gap: 8px;
  min-height: 138px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.quick-grid a {
  background: var(--mist);
}

.quick-grid span,
.flow-grid span {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.quick-grid strong {
  color: var(--navy);
  line-height: 1.5;
}

.quick-service-list {
  display: grid;
  gap: 4px;
}

.quick-service-list span {
  color: var(--navy);
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.45;
}

.mvv {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(250, 253, 255, 0.98) 100%);
}

.mvv::before,
.mvv::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mvv::before {
  display: none;
}

.mvv::after {
  background:
    linear-gradient(116deg, transparent 0 56%, rgba(190, 151, 76, 0.2) 56.1%, transparent 56.35%),
    linear-gradient(116deg, transparent 0 66%, rgba(190, 151, 76, 0.14) 66.1%, transparent 66.35%),
    linear-gradient(90deg, transparent 0 18%, rgba(190, 151, 76, 0.12) 18.1%, transparent 18.3%);
}

.mvv .section-inner {
  position: relative;
  z-index: 1;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.mvv-grid article {
  min-height: 170px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 36, 60, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(16, 36, 57, 0.06);
}

.mvv-grid span {
  display: inline-block;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.mvv-grid h3 {
  margin: 12px 0 0;
  color: var(--navy);
  font-size: clamp(22px, 2vw, 24px);
  line-height: 1.35;
}

.mvv-grid p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.85;
}

.mvv-value-list {
  display: grid;
  gap: 8px;
  max-width: none;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.65;
  text-align: left;
}

.mvv-value-list li {
  position: relative;
  padding-left: 18px;
}

.mvv-value-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
}

.vacancy-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.vacancy-heading-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  text-align: right;
}

.vacancy-phone {
  color: var(--green);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 900;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.vacancy-summary-grid article {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.vacancy-summary-grid span,
.vacancy-summary-grid small {
  color: var(--muted);
}

.vacancy-summary-grid strong {
  color: var(--navy);
  font-size: 24px;
  line-height: 1.2;
}

.vacancy-contact {
  color: var(--navy);
  font-size: 20px;
  font-weight: 800;
}

.vacancy-contact a,
.inline-tel,
.tel-link {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.vacancy-contact a {
  font-size: 24px;
}

.intro-grid,
.contact-grid,
.recruit-grid,
.about-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.page-hero {
  padding: 132px 0 72px;
  background: #fff;
}

.page-hero h1 {
  font-size: clamp(38px, 5vw, 64px);
}

.group-home-hero {
  position: relative;
  overflow: hidden;
  padding: 128px 0 110px;
  background: #fff;
}

.group-home-hero::before {
  content: "";
  position: absolute;
  inset: 76px 0 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.86) 46%, rgba(255, 255, 255, 0.58) 100%),
    url("../images/origami-cranes-colorful.jpg") center / cover no-repeat;
}

.group-home-hero .page-hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 620px);
}

.group-home-hero .page-hero-grid > img {
  display: none;
}

.group-home-hero h1 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.16;
}

.page-hero img {
  height: min(44vw, 430px);
  min-height: 280px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-detail-hero {
  position: relative;
  min-height: min(720px, 88svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 96px;
  background: #fff;
}

.service-detail-hero::before,
.service-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.service-detail-hero::before {
  background: var(--hero-image) center center / cover no-repeat;
  opacity: 1;
  filter: saturate(1.18) contrast(1.08);
  transform-origin: center;
  animation: craneDrift 24s ease-in-out infinite alternate;
}

.service-detail-hero::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.58) 42%, rgba(255, 255, 255, 0.14) 72%, rgba(255, 255, 255, 0.04) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 42%, rgba(255, 255, 255, 0.32) 100%);
}

.service-detail-hero .page-hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 760px);
}

.service-detail-hero .page-hero-grid > img {
  display: none;
}

.service-index-hero::before {
  opacity: 0.88;
}

.recruit-hero {
  position: relative;
  min-height: min(720px, 88svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 96px;
  background: #fff;
}

.recruit-hero::before,
.recruit-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.recruit-hero::before {
  background: var(--hero-image) center center / cover no-repeat;
  opacity: 1;
  filter: saturate(1.08) contrast(1.05);
  transform-origin: center;
  animation: craneDrift 24s ease-in-out infinite alternate;
}

.recruit-hero::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.62) 36%, rgba(255, 255, 255, 0.12) 72%, rgba(255, 255, 255, 0.02) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0) 42%, rgba(255, 255, 255, 0.46) 100%);
}

.recruit-hero .page-hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 760px);
}

.recruit-hero .page-hero-grid > img {
  display: none;
}

.service-hero-copy,
.recruit-hero-copy {
  max-width: min(100%, 760px);
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(17, 36, 60, 0.08);
  backdrop-filter: blur(5px);
  animation: heroCopyIn 820ms ease both;
}

.hero-phone-card {
  display: inline-grid;
  gap: 4px;
  min-width: min(100%, 360px);
  margin-top: 26px;
  padding: 20px 24px;
  color: #fff;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-phone-card span {
  font-size: 14px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.82);
}

.hero-phone-card strong {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.split-heading {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading p:last-child,
.intro-grid > p,
.contact-grid p,
.recruit-copy p,
.about-grid p,
.detail-block p {
  color: var(--muted);
  font-size: 16px;
}

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

.flow-grid article {
  background: var(--gold-soft);
}

.flow-grid h3,
.culture-grid h3,
.company-grid h3 {
  margin: 0;
  font-size: 22px;
}

.flow-grid p,
.culture-grid p,
.company-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.company-grid {
  margin-top: 34px;
}

.company-grid article,
.bonus-box {
  padding: 24px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.photo-placeholder,
.photo-placeholder-grid div {
  display: grid;
  place-items: center;
  min-height: 180px;
  color: var(--muted);
  background:
    linear-gradient(135deg, rgba(17, 36, 60, 0.08) 25%, transparent 25%) 0 0 / 18px 18px,
    #fff;
  border: 1px dashed rgba(17, 36, 60, 0.28);
  border-radius: var(--radius);
  text-align: center;
  font-weight: 800;
}

.photo-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.service-nav {
  position: sticky;
  top: 76px;
  z-index: 10;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.service-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-list,
.job-grid,
.home-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.job-card,
.home-card,
.vacancy-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 250px;
  box-shadow: 0 16px 42px rgba(17, 36, 60, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card::after {
  content: none;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--red-accent);
  box-shadow: 0 0 0 8px rgba(178, 58, 53, 0.08);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 122, 85, 0.28);
  box-shadow: 0 24px 58px rgba(17, 36, 60, 0.12);
}

.services .service-card {
  grid-template-columns: 1fr;
  min-height: 300px;
  background:
    linear-gradient(128deg, transparent 0 68%, rgba(31, 122, 85, 0.08) 68.1%, transparent 68.3%),
    #fff;
}

.services .service-card > img {
  display: none;
}

.service-card.featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  min-height: 360px;
}

.service-card > div,
.job-card,
.home-card > div,
.vacancy-card {
  padding: 28px;
}

.service-kicker,
.job-card span {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.service-card h3,
.job-card h3,
.home-card h3,
.vacancy-card h3 {
  margin: 8px 0 10px;
  font-size: 23px;
  line-height: 1.32;
}

.service-index-grid .service-card h3 {
  margin: 10px 0 12px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.18;
}

.service-index-grid .service-card > div > p:first-child {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.5;
}

.service-index-grid .service-card > div > p:not(:first-child) {
  font-size: 16px;
  line-height: 1.9;
}

.service-card p,
.job-card p,
.home-card p,
.vacancy-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.service-brand-label {
  display: inline-flex;
  margin: 0 0 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
}

.service-tags {
  display: none;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.service-tags span {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.service-card a,
.job-card a {
  display: inline-flex;
  margin-top: 20px;
}

.services .service-card:nth-child(2) { transition-delay: 0.04s; }
.services .service-card:nth-child(3) { transition-delay: 0.08s; }
.services .service-card:nth-child(4) { transition-delay: 0.12s; }
.services .service-card:nth-child(5) { transition-delay: 0.16s; }

.services .service-card:nth-child(1) { --card-accent: #1f7a55; }
.services .service-card:nth-child(2) { --card-accent: #b69250; }
.services .service-card:nth-child(3) { --card-accent: #2f8f88; }
.services .service-card:nth-child(4) { --card-accent: #b69250; }
.services .service-card:nth-child(5) { --card-accent: #6f9d3d; }

.services .service-card::after {
  content: none;
}

.recruit-photo {
  min-height: 280px;
  height: clamp(280px, 28vw, 360px);
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.recruit-photo img,
img.recruit-photo {
  object-fit: cover;
}

.recruit-photo img {
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.recruit-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}

.recruit-points span,
.status-pill {
  padding: 8px 12px;
  color: var(--navy);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
}

.recruit-points span {
  background: #fff;
  border: 1px solid rgba(17, 36, 60, 0.12);
  box-shadow: 0 8px 20px rgba(17, 36, 60, 0.05);
}

.status-pill {
  background: var(--green-soft);
}

.detail-block {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: clamp(24px, 5vw, 56px);
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.feature-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 15px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-list strong {
  color: var(--navy);
}

.feature-list span {
  color: var(--muted);
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.usage-flow,
.service-checks {
  margin-top: 24px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.usage-flow h3,
.service-checks h3 {
  margin: 0 0 16px;
  font-size: 20px;
  line-height: 1.35;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.flow-steps li {
  display: grid;
  align-content: start;
  gap: 5px;
  min-height: 126px;
  padding: 15px;
  background: var(--mist);
  border: 1px solid rgba(223, 230, 234, 0.72);
  border-radius: var(--radius);
}

.flow-steps span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.flow-steps strong {
  color: var(--navy);
  line-height: 1.35;
}

.flow-steps small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.flow-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.service-checks ul {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-checks li {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  color: var(--navy);
  background: var(--green-soft);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.service-checks li span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.detail-block:first-child {
  border-top: 0;
}

.number {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fff;
  background: var(--navy);
  border-radius: 50%;
  font-weight: 800;
}

.job-card {
  min-height: 260px;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.job-card .job-meta span {
  color: var(--navy);
}

.home-card {
  display: grid;
  grid-template-columns: 220px 1fr;
}

.home-card img {
  min-height: 260px;
}

.home-card .button {
  margin-top: 14px;
}

.home-spec {
  display: grid;
  gap: 5px;
  margin-top: 10px;
  margin-bottom: 4px;
}

.vacancy-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 128px;
  grid-template-areas:
    "overview photo"
    "meta meta"
    "info info"
    "action action";
  gap: 14px;
  align-items: start;
}

.vacancy-overview {
  grid-area: overview;
  min-width: 0;
}

.vacancy-photo {
  grid-area: photo;
  justify-self: end;
  width: 128px;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.vacancy-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vacancy-meta {
  grid-area: meta;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
  justify-content: space-between;
}

.vacancy-meta span:last-child {
  margin-left: auto;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}

.mini-info {
  grid-area: info;
  display: grid;
  gap: 8px;
  margin: 0;
}

.vacancy-card > .button {
  grid-area: action;
}

.vacancy-card h3,
.vacancy-card p,
.vacancy-meta span,
.mini-info dd {
  overflow-wrap: break-word;
  word-break: normal;
  line-break: strict;
}

.mini-info div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
}

.mini-info dt {
  font-size: 13px;
}

.mini-info dd {
  font-size: 14px;
}

.mini-info dd .tel-link {
  font-size: 17px;
}

.vacancy-count {
  color: var(--navy);
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

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

.info-list,
.about-text dl {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.about .info-list {
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.96);
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(15, 36, 56, 0.06);
}

.map-button {
  margin-top: 24px;
}

.info-list div,
.about-text dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(17, 36, 60, 0.08);
}

dt {
  color: var(--navy);
  font-weight: 800;
}

dd {
  margin: 0;
  color: var(--muted);
}

.business-lines {
  display: grid;
  gap: 4px;
}

.business-lines span {
  display: block;
}

.contact-grid {
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.75fr);
  gap: clamp(32px, 4.5vw, 56px);
  align-items: start;
}

.contact .contact-grid h2 {
  white-space: nowrap;
  font-size: clamp(28px, 2.4vw, 34px);
}

.phone-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.phone-list a {
  display: grid;
  gap: 2px;
  padding: 18px 20px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.phone-list span {
  color: var(--muted);
  font-size: 13px;
}

.phone-list strong {
  color: var(--navy);
  font-size: 24px;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 38px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.salary-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.salary-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  font-size: 14px;
}

.salary-table th,
.salary-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.salary-table thead th {
  color: #fff;
  background: var(--navy);
}

.salary-table tbody th {
  width: 150px;
  color: var(--navy);
}

.salary-table td {
  color: var(--muted);
}

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

.salary-table a {
  color: var(--green);
  font-weight: 800;
  white-space: nowrap;
}

.bonus-box {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
  background: #fff;
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

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

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.site-footer {
  padding: 64px 0;
  color: #fff;
  background: var(--navy);
}

.site-footer > div,
.site-footer > nav {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.site-footer > nav {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.mobile-cta {
  display: none;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-inner p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 16px;
  font-weight: 800;
}

.footer-inner strong {
  font-size: 17px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card,
.vacancy-card,
.home-card,
.job-card,
.recruit-job-card,
.recruit-summary-grid article,
.mvv-grid article,
.company-grid article,
.service-target-card,
.service-detail-card,
.service-flow-list li,
.service-check-box,
.service-contact-list {
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.service-card:hover,
.vacancy-card:hover,
.home-card:hover,
.job-card:hover,
.recruit-job-card:hover,
.recruit-summary-grid article:hover,
.service-target-card:hover,
.service-detail-card:hover,
.service-flow-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(17, 36, 60, 0.1);
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateX(-22px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes craneDrift {
  from {
    transform: scale(1.01) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.035) translate3d(-10px, 8px, 0);
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: grid;
    gap: 5px;
    justify-self: end;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
  }

  .nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--navy);
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    justify-content: start;
    flex-direction: column;
    gap: 10px;
    padding: 16px 0 6px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    min-height: auto;
    display: grid;
    align-items: stretch;
    gap: 30px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.78) 54%, rgba(255, 255, 255, 0.68) 100%);
  }

  .hero-media {
    position: absolute;
    inset: 70px 0 0 0;
    height: auto;
  }

  .hero-content {
    max-width: none;
  }

  .group-home-hero {
    padding: 112px 0 72px;
  }

  .group-home-hero::before {
    inset: 70px 0 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 62%, rgba(255, 255, 255, 0.68) 100%),
      url("../images/origami-cranes-colorful.jpg") center / cover no-repeat;
  }

  .group-home-hero .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .group-home-hero h1 {
    font-size: clamp(34px, 8vw, 54px);
  }

  .service-detail-hero {
    min-height: auto;
    padding: 116px 0 72px;
  }

  .service-detail-hero::before {
    background-size: cover;
    background-position: center top;
    opacity: 0.92;
  }

  .recruit-hero {
    min-height: auto;
    padding: 116px 0 72px;
  }

  .recruit-hero::before {
    background-size: cover;
    background-position: center top;
    opacity: 0.92;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 34px;
    max-width: 340px;
  }

  .intro-grid,
  .contact-grid,
  .recruit-grid,
  .about-grid,
  .page-hero-grid,
  .service-card.featured,
  .detail-block {
    grid-template-columns: 1fr;
  }

  .contact .contact-grid h2 {
    white-space: normal;
  }

  .contact-form {
    margin-top: 0;
  }

  .service-list,
  .job-grid,
  .home-grid,
  .quick-grid,
  .mvv-grid,
  .flow-grid,
  .culture-grid,
  .company-grid,
  .vacancy-summary-grid,
  .photo-placeholder-grid,
  .bonus-box,
  .flow-steps,
  .recruit-summary-grid,
  .recruit-job-list,
  .recruit-detail-grid,
  .recruit-detail-layout {
    grid-template-columns: 1fr;
  }

  .service-checks ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    grid-template-columns: 150px 1fr;
  }

  .home-card {
    grid-template-columns: 1fr;
  }

  .split-heading {
    align-items: start;
    flex-direction: column;
  }

  .vacancy-heading-contact {
    align-items: flex-start;
    text-align: left;
  }

  .recruit-apply-panel {
    position: static;
  }

  .recruit-entry-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-nav {
    top: 70px;
  }
}

@media (max-width: 620px) {
  section.section-blue,
  section.section-white {
    padding-block: clamp(58px, 14vw, 82px);
  }

  section.section-blue + section.section-blue,
  section.section-white + section.section-white,
  .section-blue + .section-white,
  .section-white + .section-blue {
    border-top-width: 0;
  }

  body {
    padding-bottom: 78px;
  }

  .site-header {
    min-height: 70px;
    padding: 10px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .logo {
    min-width: 0;
  }

  .logo img {
    width: 138px;
    height: 42px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 760px;
    padding: 112px 20px 40px;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    height: 260px;
  }

  h1 {
    font-size: 42px;
  }

  .lead {
    font-size: 16px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .group-home-hero h1 {
    font-size: 34px;
  }

  .hero-actions,
  .button-row,
  .button {
    width: 100%;
  }

  .section-inner {
    width: min(100% - 32px, 1120px);
  }

  .service-card,
  .service-card.featured {
    grid-template-columns: 1fr;
  }

  .service-card img,
  .home-card img {
    height: 220px;
  }

  .page-hero img {
    height: 260px;
    min-height: 0;
  }

  .service-card > div,
  .job-card,
  .home-card > div,
  .vacancy-card,
  .contact-form,
  .usage-flow,
  .service-checks,
  .recruit-job-card,
  .recruit-block,
  .recruit-apply-panel,
  .recruit-entry-box {
    padding: 22px;
  }

  .recruit-job-card {
    min-height: auto;
    grid-template-rows: auto;
  }

  .job-income-mini strong {
    min-height: 0;
  }

  .income-card ul li,
  .salary-line,
  .salary-line span,
  .salary-line strong,
  .salary-line em,
  .recruit-entry-box p {
    white-space: normal;
  }

  .recruit-hero-copy h1 {
    max-width: 100%;
  }

  .recruit-summary-grid,
  .recruit-job-list,
  .job-income-mini,
  .income-grid,
  .benefit-list-large {
    grid-template-columns: 1fr;
  }

  .job-requirements div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .salary-line {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .recruit-job-card .button,
  .recruit-entry-box .button-row,
  .recruit-entry-box .button-row .button {
    width: 100%;
  }

  .vacancy-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "overview"
      "meta"
      "info"
      "action";
  }

  .vacancy-photo {
    justify-self: stretch;
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .vacancy-meta {
    align-items: flex-start;
  }

  .vacancy-meta span:last-child {
    margin-left: 0;
  }

  .recruit-photo {
    min-height: 320px;
  }

  .recruit-photo img {
    min-height: 320px;
  }

  .info-list div,
  .about-text dl div,
  .feature-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-checks ul {
    grid-template-columns: 1fr;
  }

  .mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 46px rgba(9, 31, 54, 0.24);
    backdrop-filter: blur(14px);
  }

  .mobile-cta a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-cta-phone {
    background: var(--navy);
    color: #fff;
  }

  .mobile-cta-contact {
    background: var(--green-soft);
    color: var(--navy);
    border: 1px solid rgba(37, 128, 96, 0.22);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .service-card,
  .vacancy-card,
  .home-card,
  .job-card,
  .recruit-job-card,
  .recruit-summary-grid article,
  .mvv-grid article,
  .company-grid article,
  .service-target-card,
  .service-detail-card,
  .service-flow-list li,
  .service-check-box,
  .service-contact-list {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero::before,
  .service-detail-hero::before,
  .recruit-hero::before,
  .hero-content,
  .service-hero-copy,
  .recruit-hero-copy {
    animation: none;
  }
}

/* WordPress theme helpers */
.site-nav li,
.site-footer li {
  list-style: none;
  display: contents;
}

.breadcrumbs {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
}

.breadcrumbs ol {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
  color: var(--muted);
  font-size: 0.88rem;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: var(--line-strong);
}

.breadcrumbs a {
  color: var(--green);
  text-decoration: none;
  font-weight: 700;
}

.content-body {
  max-width: 920px;
  color: var(--muted);
  line-height: 2;
}

.content-body h2,
.content-body h3 {
  color: var(--navy);
  line-height: 1.45;
}

.content-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.story-grid {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.number-badge {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
}

.job-grid,
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-cards a {
  display: block;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  color: var(--navy);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.contact-cards a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(17, 36, 60, 0.08);
}

.contact-cards span {
  display: block;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 6px;
}

.contact-cards small {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.contact-cards strong,
.large-contact a {
  color: var(--green);
  font-size: clamp(22px, 2.1vw, 28px);
  line-height: 1.2;
}

.detail-photo-main {
  margin: 0 0 32px;
}

.detail-photo-main img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

/* Recruit pages */
.recruit-hero-copy {
  max-width: 760px;
}

.recruit-hero-copy h1 {
  max-width: 13em;
}

.recruit-hero-copy p {
  max-width: 700px;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 2;
}

.recruit-top-section {
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(64px, 8vw, 104px);
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.recruit-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0 48px;
}

.recruit-summary-grid article,
.recruit-job-card,
.recruit-block,
.recruit-apply-panel,
.recruit-entry-box {
  border: 1px solid rgba(17, 36, 60, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(17, 36, 60, 0.06);
}

.recruit-summary-grid article {
  padding: 22px;
}

.recruit-summary-grid.compact {
  margin: 22px 0 0;
}

.recruit-summary-grid span,
.recruit-job-card-header span,
.income-card span {
  display: inline-block;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.recruit-summary-grid h3,
.recruit-job-card h4 {
  margin: 10px 0;
  color: var(--navy);
  line-height: 1.5;
}

.recruit-summary-grid p,
.recruit-job-card p,
.recruit-block p,
.recruit-apply-panel p,
.recruit-entry-box p {
  color: var(--muted);
  line-height: 1.9;
}

.recruit-job-section + .recruit-job-section {
  margin-top: 52px;
}

.recruit-job-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.recruit-job-heading h3 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2rem);
  color: var(--navy);
}

.recruit-job-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.recruit-job-list-six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.recruit-job-card {
  display: grid;
  grid-template-rows: minmax(138px, auto) auto 48px;
  gap: 18px;
  padding: clamp(22px, 3vw, 30px);
  min-height: 370px;
}

.recruit-job-card h4 {
  font-size: clamp(1.18rem, 1.65vw, 1.45rem);
}

.recruit-job-card .button {
  align-self: end;
  justify-self: start;
  width: 168px;
  min-height: 46px;
  justify-content: center;
}

.job-income-mini,
.income-grid {
  display: grid;
  gap: 12px;
}

.job-income-mini {
  grid-template-columns: 1fr;
}

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

.job-income-mini div,
.income-card {
  min-width: 0;
  padding: 16px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(17, 36, 60, 0.1);
}

.job-income-mini strong,
.income-card strong {
  display: block;
  margin-top: 6px;
  color: var(--navy);
  font-size: clamp(1rem, 1.12vw, 1.28rem);
  line-height: 1.25;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}

.job-income-mini strong {
  min-height: 0;
}

.recruit-detail-grid,
.recruit-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.recruit-detail-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.recruit-detail-main {
  display: grid;
  gap: 24px;
}

.recruit-block {
  padding: clamp(24px, 4vw, 40px);
}

.recruit-block h2,
.recruit-entry-box h2,
.recruit-apply-panel h2 {
  margin: 8px 0 18px;
  color: var(--navy);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.45;
}

.check-list,
.benefit-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.benefit-list li,
.benefit-list span {
  position: relative;
  padding: 12px 14px 12px 38px;
  border-radius: 10px;
  background: rgba(232, 246, 239, 0.78);
  color: var(--navy);
  font-weight: 800;
  line-height: 1.6;
}

.check-list li::before,
.benefit-list li::before,
.benefit-list span::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 1.35em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
}

.benefit-list-large {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.job-requirements {
  display: grid;
  gap: 10px;
  margin: 0;
}

.job-requirements div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.job-requirements dt {
  color: var(--navy);
  font-weight: 900;
}

.job-requirements dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.recruit-income-block {
  background: linear-gradient(135deg, rgba(232, 246, 239, 0.96), rgba(235, 245, 252, 0.94));
}

.income-card-feature {
  border-color: rgba(37, 128, 96, 0.28);
  background: #fff;
}

.income-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  line-height: 1.7;
}

.recruit-income-block .income-grid {
  grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.7fr);
}

.income-card ul li {
  white-space: nowrap;
  font-size: clamp(0.86rem, 1vw, 0.98rem);
}

.income-card ul.salary-breakdown {
  gap: 10px;
}

.salary-line {
  display: grid;
  grid-template-columns: minmax(9em, max-content) max-content minmax(0, 1fr);
  align-items: baseline;
  column-gap: 12px;
  white-space: nowrap;
}

.salary-line span,
.salary-line strong,
.salary-line em {
  display: inline;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.86rem, 1vw, 0.98rem);
  line-height: 1.7;
}

.salary-line strong {
  font-weight: 900;
  color: var(--navy);
}

.salary-line em {
  font-style: normal;
}

.recruit-entry-box p {
  white-space: nowrap;
}

.benefit-list span {
  white-space: pre-line;
}

.recruit-entry-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 4vw, 36px);
}

.recruit-apply-panel {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
  padding: 24px;
}

.recruit-apply-panel .button {
  width: 100%;
  justify-content: center;
}

.recruit-apply-panel dl {
  display: grid;
  gap: 12px;
  margin: 12px 0 0;
}

.recruit-apply-panel dl div {
  display: grid;
  gap: 4px;
}

.recruit-apply-panel dt {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.recruit-apply-panel dd {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
  overflow-wrap: anywhere;
}

@media (max-width: 920px) {
  .recruit-summary-grid,
  .recruit-job-list,
  .recruit-detail-grid,
  .recruit-detail-layout {
    grid-template-columns: 1fr;
  }

  .recruit-apply-panel {
    position: static;
  }

  .recruit-entry-box,
  .split-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .recruit-hero-copy h1 {
    max-width: 100%;
  }

  .recruit-summary-grid,
  .recruit-job-list,
  .job-income-mini,
  .income-grid,
  .benefit-list-large {
    grid-template-columns: 1fr;
  }

  .recruit-job-card,
  .recruit-block,
  .recruit-apply-panel,
  .recruit-entry-box {
    padding: 22px;
  }

  .job-requirements div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .income-card ul li,
  .salary-line,
  .salary-line span,
  .salary-line strong,
  .salary-line em,
  .recruit-entry-box p {
    white-space: normal;
  }

  .salary-line {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .recruit-job-card .button,
  .recruit-entry-box .button-row,
  .recruit-entry-box .button-row .button {
    width: 100%;
  }
}

/* Recruit job list: desktop 3 columns x 2 rows, tablet 2 columns, phone 1 column. */
.recruit-job-list-six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 920px) {
  .recruit-job-list-six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .recruit-job-list-six {
    grid-template-columns: 1fr;
  }
}

.service-hero-copy {
  max-width: 720px;
}

.service-hero-copy p {
  max-width: 680px;
}

.service-detail-section {
  padding: clamp(64px, 8vw, 104px) 0;
}

.service-story-section .story-grid {
  align-items: start;
}

.service-story-panel {
  display: grid;
  gap: 16px;
  max-width: 920px;
}

.service-story-panel h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.2;
}

.service-story-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
}

.service-detail-section .section-heading {
  margin-bottom: 28px;
}

.service-target-grid,
.service-support-grid {
  display: grid;
  gap: 16px;
}

.service-target-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-target-card,
.service-detail-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}

.service-target-card {
  display: grid;
  align-items: center;
  min-height: 86px;
  padding: 18px;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.55;
}

.service-detail-card {
  padding: 24px;
}

.service-detail-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.35;
}

.service-detail-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.service-info-grid,
.home-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
}

.service-info-card {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(17, 36, 60, 0.06);
}

.service-info-card h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
}

.service-info-card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.9;
}

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

.home-list-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 38px rgba(17, 36, 60, 0.06);
}

.home-list-photo,
.home-main-photo {
  display: grid;
  place-items: center;
  min-height: 260px;
  margin: 0;
  color: var(--muted);
  background:
    linear-gradient(rgba(255,255,255,0.72), rgba(255,255,255,0.72)),
    url("../images/origami-cranes-colorful.jpg") center / cover;
  font-weight: 900;
  text-align: center;
}

.home-list-photo img,
.home-main-photo img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.home-list-body {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
}

.home-list-body h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
}

.home-list-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.status-pill {
  justify-self: start;
  padding: 7px 12px;
  color: var(--green);
  background: #e9f8f0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.status-pill.is-full {
  color: var(--navy);
  background: #eef3f8;
}

.mini-info-list,
.fee-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.mini-info-list div,
.fee-list div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.mini-info-list dt,
.fee-list dt {
  color: var(--navy);
  font-weight: 900;
}

.mini-info-list dd,
.fee-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-gallery-grid .photo-placeholder,
.map-placeholder {
  min-height: 160px;
  background:
    linear-gradient(rgba(255,255,255,0.76), rgba(255,255,255,0.76)),
    url("../images/origami-cranes-colorful.jpg") center / cover;
}

.service-flow-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: service-flow;
}

.service-flow-list li {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--mist);
}

.service-flow-list span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.service-flow-list strong {
  color: var(--navy);
  font-size: 19px;
  line-height: 1.35;
}

.service-flow-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-check-box {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}

.service-check-box h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 21px;
}

.service-check-box ul {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-check-box li {
  display: grid;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: #f3faf7;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.service-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-faq-card {
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(17, 36, 60, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(17, 36, 60, 0.05);
}

.service-faq-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
}

.service-faq-card h3::before {
  content: "Q";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-right: 8px;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  vertical-align: middle;
}

.service-faq-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.service-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.service-contact-grid h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.2;
}

.service-contact-grid p {
  color: var(--muted);
  line-height: 1.9;
}

.service-contact-list {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.service-contact-list div {
  padding-inline: 20px;
}

@media (max-width: 1100px) {
  .service-target-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-support-grid,
  .service-flow-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-list-grid,
  .home-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-list-card {
    grid-template-columns: 1fr;
  }

  .service-faq-grid {
    grid-template-columns: 1fr;
  }

  .service-check-box ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-target-grid,
  .service-support-grid,
  .service-flow-list,
  .service-faq-grid,
  .service-info-grid,
  .home-detail-grid,
  .home-list-grid,
  .home-gallery-grid,
  .service-check-box ul,
  .service-contact-grid {
    grid-template-columns: 1fr;
  }

  .service-target-card,
  .service-detail-card,
  .service-flow-list li,
  .service-check-box {
    padding: 18px;
  }

  .service-flow-list li {
    min-height: auto;
  }

  .home-list-body,
  .service-info-card {
    padding: 20px;
  }

  .mini-info-list div,
  .fee-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.pagination,
.nav-links {
  display: flex;
  gap: 10px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.page-numbers {
  display: inline-flex;
  min-width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  color: var(--navy);
}

.page-numbers.current {
  background: var(--navy);
  color: #fff;
}

@media (max-width: 720px) {
  .story-grid,
  .job-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .number-badge {
    width: 48px;
    height: 48px;
  }
}

