/*
Theme Name: Medilogi
Theme URI: https://example.com/
Description: Custom WordPress theme for medilogi landing page.
Version: 1.0.12
Author: medilogi
Text Domain: medilogi
*/
html,
html.wp-toolbar,
html[style] {
  scroll-behavior: smooth;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body,
body.admin-bar,
body[style] {
  margin: 0 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

#wpadminbar {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  overflow: hidden !important;
}

#ml-top,
#ml-mvv,
#ml-issues,
#ml-service,
#ml-company,
#ml-news,
#ml-recruit,
#ml-contact {
  scroll-margin-top: 96px;
}

.ml-page {
  --ml-main: #1f7f7a;
  --ml-sub: #2fa7a0;
  --ml-accent: #f25c1c;
  --ml-line: #06c755;
  --ml-text: #333;
  --ml-border: #999;
  --ml-bg: #f8f8f8;
  --ml-bg-soft: #fafafa;
  --ml-white: #fff;
  --ml-font: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --ml-page-pad: clamp(30px, 1.5625vw, 64px);
  --ml-letter: 1.8px;

  color: var(--ml-text);
  font-family: var(--ml-font);
  font-weight: 500;
  letter-spacing: var(--ml-letter);
  line-height: 1.72;
  overflow-x: clip;
  overflow-y: visible;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ml-page *,
.ml-page *::before,
.ml-page *::after {
  box-sizing: border-box;
}

.ml-page img {
  display: block;
  max-width: 100%;
  height: auto;
}

.ml-page a {
  color: inherit;
  text-decoration: none;
}

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

.ml-page p,
.ml-page h1,
.ml-page h2,
.ml-page h3 {
  margin: 0;
}

.ml-mobile-break {
  display: none;
}

.ml-page table {
  width: 100%;
  border-collapse: collapse;
}

.ml-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  background: transparent;
}

.ml-header__inner {
  display: flex;
  align-items: center;
  gap: 39px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(22px, 1.45vw, 30px) var(--ml-page-pad) 0;
}

.ml-header__logo {
  flex-shrink: 0;
  line-height: 0;
}

.ml-header__logo img {
  width: 149px;
  height: auto;
}

.ml-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(20px, 1.65vw, 32px);
}

.ml-nav a {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
  color: var(--ml-text);
}

.ml-nav a:hover {
  color: var(--ml-main);
}

@media (min-width: 768px) {
  .ml-nav ul {
    width: max-content;
    padding: 9px clamp(14px, 1.05vw, 20px);
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 10px 26px rgba(15, 76, 72, 0.13);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

  .ml-nav a {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.64);
  }
}

.ml-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 6px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.ml-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--ml-text);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ml-nav-toggle--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.ml-nav-toggle--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.ml-section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.ml-section-head__label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ml-section-head__ja {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  color: #000;
  white-space: nowrap;
}

.ml-section-head__line {
  width: 75px;
  height: 2px;
  background: var(--ml-main);
}

.ml-section-head__line--white {
  background: var(--ml-white);
}

.ml-section-head__en {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: var(--ml-letter);
  color: #000;
}

.ml-section-head__desc {
  font-size: 14px;
  line-height: 2;
  color: #000;
}

.ml-section-head--white .ml-section-head__ja,
.ml-section-head--white .ml-section-head__en,
.ml-section-head--white .ml-section-head__desc {
  color: var(--ml-white);
}

.ml-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 32px;
  border: 0;
  border-radius: 16px;
  color: var(--ml-white);
  appearance: none;
  -webkit-appearance: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  font-family: inherit;
  transition: opacity 0.2s ease, transform 0.24s ease, background-color 0.24s ease;
  white-space: nowrap;
  cursor: pointer;
}

.ml-page a.ml-btn,
.ml-page button.ml-btn {
  color: var(--ml-white);
}

.ml-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.ml-btn--orange {
  background: var(--ml-accent);
}

.ml-btn--line {
  background: var(--ml-line);
}

.ml-btn--hero {
  width: 320px;
  font-size: 18px;
}

.ml-btn--wide {
  width: 320px;
}

.ml-btn__arrow {
  display: inline-flex;
  align-items: center;
  font-size: 20px;
  line-height: 1;
  transition: transform 0.24s ease;
}

.ml-btn:hover .ml-btn__arrow {
  transform: translateX(4px);
}

.ml-btn-center {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 30px;
}

.wpcf7 .ml-contact-form {
  display: grid;
}

.wpcf7 .ml-form-row p,
.wpcf7 .ml-sub-actions p {
  margin: 0;
}

.wpcf7-submit.ml-btn {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
}

.wpcf7-spinner {
  margin: 12px 0 0 16px;
}

.ml-anim-ready [data-reveal] {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, 38px, 0);
  transition:
    opacity 0.96s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.96s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.96s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

.ml-anim-boot:not(.ml-anim-started) .ml-header__inner > *,
.ml-anim-boot:not(.ml-anim-started) .ml-sub-header__inner > *,
.ml-anim-boot:not(.ml-anim-started) .ml-hero__image,
.ml-anim-boot:not(.ml-anim-started) .ml-hero__content > *,
.ml-anim-boot:not(.ml-anim-started) .ml-sub-hero > *,
.ml-anim-boot:not(.ml-anim-started) .ml-recruit-hero__content > *,
.ml-anim-boot:not(.ml-anim-started) .ml-recruit-hero__visual {
  opacity: 0;
}

.ml-anim-ready [data-reveal='fade-left'] {
  transform: translate3d(48px, 0, 0);
}

.ml-anim-ready [data-reveal='fade-right'] {
  transform: translate3d(-48px, 0, 0);
}

.ml-anim-ready [data-reveal='fade-down'] {
  transform: translate3d(0, -28px, 0);
}

.ml-anim-ready [data-reveal='zoom'] {
  transform: translate3d(0, 24px, 0) scale(0.94);
}

.ml-anim-ready [data-reveal='hero-image'] {
  filter: blur(6px);
  transform: translate3d(22px, 0, 0) scale(1.015);
  transition-duration: 1.08s;
}

.ml-anim-ready [data-reveal='hero-copy'] {
  filter: blur(8px);
  transform: translate3d(0, 30px, 0);
  transition-duration: 0.88s;
}

.ml-anim-ready [data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.ml-anim-ready [data-reveal].is-visible.ml-btn:hover {
  transform: translateY(-2px);
}

.ml-anim-ready [data-reveal] .ml-section-head__line,
.ml-anim-ready [data-reveal] .ml-sub-hero__line {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.76s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--reveal-delay, 0ms) + 120ms);
}

.ml-anim-ready [data-reveal].is-visible .ml-section-head__line,
.ml-anim-ready [data-reveal].is-visible .ml-sub-hero__line {
  transform: scaleX(1);
}

@media (hover: hover) {
  .ml-issues__card,
  .ml-svc-card,
  .ml-service-detail,
  .ml-service-flow__list li,
  .ml-service-quality__grid div,
  .ml-contact-aside,
  .ml-sub-item {
    transition:
      transform 0.32s ease,
      border-color 0.32s ease,
      background-color 0.32s ease;
  }

  .ml-issues__card:hover,
  .ml-svc-card:hover,
  .ml-service-detail:hover,
  .ml-service-flow__list li:hover,
  .ml-service-quality__grid div:hover,
  .ml-contact-aside:hover,
  .ml-sub-item:hover {
    transform: translateY(-4px);
  }
}

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

.ml-hero {
  position: relative;
  min-height: clamp(620px, 32.3vw, 760px);
  overflow: hidden;
  background: var(--ml-bg);
}

.ml-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 531px;
  padding-top: clamp(202px, 10.75vw, 260px);
  margin-left: clamp(120px, 8.9vw, 220px);
}

.ml-hero__tagline {
  width: 100%;
  color: var(--ml-main);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: var(--ml-letter);
}

.ml-hero__heading {
  width: 100%;
  color: #000;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: var(--ml-letter);
}

.ml-hero__body {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.68;
  letter-spacing: var(--ml-letter);
  white-space: nowrap;
}

.ml-hero__image {
  position: absolute;
  top: 0;
  bottom: auto;
  right: 0;
  left: auto;
  width: 58.6vw;
  height: clamp(620px, 32.3vw, 760px);
  overflow: hidden;
  -webkit-mask-image: url("assets/img/hero-mask.svg");
  mask-image: url("assets/img/hero-mask.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.ml-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ml-mvv {
  background: var(--ml-white);
  padding: 50px var(--ml-page-pad);
}

.ml-mvv__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 310px;
}

.ml-mvv__col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 0 0 0 0;
}

.ml-mvv__col--border {
  border-right: 1px solid var(--ml-border);
  padding-right: 30px;
}

.ml-mvv__col:not(.ml-mvv__col--border) {
  padding-left: 60px;
}

.ml-mvv__label {
  color: var(--ml-main);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.ml-mvv__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.ml-mvv__quote {
  min-width: 280px;
  color: #000;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.55;
}

.ml-mvv__img {
  flex: 0 0 250px;
  width: 250px;
}

.ml-mvv__divider {
  height: 1px;
  margin: 0;
  background: var(--ml-border);
}

.ml-mvv__value {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 50px;
}

.ml-mvv__value-desc {
  color: #000;
  font-size: 16px;
  line-height: 1.8;
}

.ml-value-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.ml-value-item {
  display: flex;
  align-items: stretch;
  min-width: 0;
}

.ml-value-num {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 15px;
  color: var(--ml-sub);
  font-size: 40px;
  font-weight: 700;
  line-height: 25.6px;
}

.ml-value-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  min-width: 0;
  padding: 0 25px;
  border-left: 2px solid var(--ml-border);
}

.ml-value-body strong {
  display: block;
  color: var(--ml-text);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.ml-value-body span {
  display: block;
  color: #000;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: var(--ml-letter);
}

.ml-issues {
  background: var(--ml-bg-soft);
  padding: 50px var(--ml-page-pad);
}

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

.ml-issues__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 440px;
  padding: 50px 30px;
  background: var(--ml-white);
}

.ml-issues__img {
  width: 300px;
  height: 300px;
}

.ml-issues__img img,
.ml-svc-card__img img,
.ml-company__right img,
.ml-recruit__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ml-issues__card p {
  color: #000;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  white-space: nowrap;
}

.ml-services {
  background: var(--ml-white);
  padding: 50px var(--ml-page-pad);
}

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

.ml-svc-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  min-height: 360px;
  padding: 50px 30px;
  overflow: hidden;
  background: var(--ml-white);
}

.ml-svc-card--rev {
  flex-direction: column-reverse;
}

.ml-step {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  min-height: 66px;
}

.ml-step__badge {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  border: 2px dashed var(--ml-sub);
  border-radius: 50%;
}

.ml-step__badge::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--ml-main);
}

.ml-step__badge span {
  position: relative;
  z-index: 1;
  color: var(--ml-white);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.ml-step__line {
  flex: 1;
  min-width: 20px;
  height: 0;
  margin-left: 8px;
  border-top: 2px dotted var(--ml-sub);
}

.ml-step__arrow {
  position: relative;
  flex-shrink: 0;
  width: 11px;
  height: 14px;
  margin-left: 2px;
  color: transparent;
  font-size: 0;
  line-height: 0;
}

.ml-step__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid var(--ml-main);
  transform: translateY(-50%);
}

.ml-svc-card__body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 251px;
  min-width: 0;
}

.ml-svc-card__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 0 0 280px;
  min-width: 0;
}

.ml-svc-card__text h3 {
  color: var(--ml-main);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: var(--ml-letter);
  overflow-wrap: anywhere;
}

.ml-svc-card__text p {
  color: var(--ml-text);
  font-size: 16px;
  line-height: 1.8;
}

.ml-svc-card__img {
  flex: 0 0 250px;
  width: 250px;
  height: 250px;
}

.ml-svc-card__img img {
  object-fit: contain;
  object-position: center;
}

.ml-company {
  min-height: 1053px;
  overflow: hidden;
  background: #fff;
}

.ml-company__inner {
  position: relative;
  display: flex;
  min-height: 1053px;
  margin: 0 auto;
}

.ml-company__left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  flex: 0 0 788px;
  min-width: 0;
  padding: 50px var(--ml-page-pad);
  background: #fff;
}

.ml-company__right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 788px;
  width: auto;
  overflow: hidden;
  background: linear-gradient(89.8deg, #fff 0%, #ecf6f5 99.9%);
  clip-path: none;
}

.ml-company__right img {
  position: absolute;
  top: 0;
  left: -229px;
  width: 1536px;
  max-width: none;
  height: auto;
  object-fit: contain;
  object-position: center top;
  -webkit-mask-image: url("assets/img/company-mask.svg");
  mask-image: url("assets/img/company-mask.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: 229px 0;
  mask-position: 229px 0;
  -webkit-mask-size: 1132px 945px;
  mask-size: 1132px 945px;
}

.ml-company__right::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    116deg,
    #fff 0 14%,
    rgba(255, 255, 255, 0.8) 14.2%,
    rgba(255, 255, 255, 0.28) 30%,
    rgba(255, 255, 255, 0) 46%
  );
}

.ml-company-table {
  max-width: 700px;
  color: #000;
  font-size: 16px;
  line-height: 2;
  letter-spacing: var(--ml-letter);
}

.ml-company-table th,
.ml-company-table td {
  padding: 0 0 16px;
  border-bottom: 1px solid var(--ml-border);
  text-align: left;
  vertical-align: middle;
}

.ml-company-table tr + tr th,
.ml-company-table tr + tr td {
  padding-top: 16px;
}

.ml-company-table th {
  width: 250px;
  padding-right: 30px;
  color: var(--ml-main);
  font-weight: 700;
  white-space: nowrap;
}

.ml-company-table td {
  width: 400px;
  font-weight: 500;
}

.ml-company .ml-section-head {
  width: min(100%, 520px);
  margin-bottom: 0;
}

.ml-company .ml-section-head__desc {
  max-width: 500px;
  line-height: 2.05;
}

.ml-nr {
  background: var(--ml-white);
  padding: 50px var(--ml-page-pad);
}

.ml-nr__inner {
  display: grid;
  grid-template-columns: minmax(620px, 49.2vw) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.ml-news {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
}

.ml-news-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ml-news-link {
  display: grid;
  grid-template-columns: max-content max-content minmax(0, 1fr);
  gap: 18px 28px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ml-border);
  font-size: 16px;
  line-height: 2;
  letter-spacing: var(--ml-letter);
}

.ml-news-date,
.ml-news-cat {
  color: var(--ml-main);
  font-weight: 700;
}

.ml-news-title {
  color: #000;
}

.ml-recruit {
  display: flex;
  align-items: center;
  gap: 30px;
  min-width: 0;
  min-height: 360px;
}

.ml-recruit__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  flex-shrink: 0;
}

.ml-recruit .ml-section-head {
  margin-bottom: 0;
}

.ml-recruit__heading {
  color: #000;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: var(--ml-letter);
  white-space: nowrap;
}

.ml-recruit__img {
  flex: 0 0 480px;
  width: 480px;
  height: 480px;
}

.ml-recruit__img img {
  object-fit: contain;
  object-position: center;
}

.ml-footer {
  background: var(--ml-main);
  color: var(--ml-white);
}

.ml-footer__inner {
  display: flex;
  align-items: center;
  gap: 60px;
  min-height: 236px;
  padding: 60px var(--ml-page-pad);
}

.ml-footer__info {
  display: flex;
  align-items: center;
  flex: 0 0 400px;
  min-height: 116px;
  border-right: 1px solid rgba(255, 255, 255, 0.95);
}

.ml-footer__info .ml-section-head {
  margin-bottom: 0;
}

.ml-footer__message {
  flex-shrink: 0;
}

.ml-footer__message p {
  color: var(--ml-white);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: var(--ml-letter);
  white-space: nowrap;
}

.ml-footer__cta {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.ml-footer__cta .ml-btn {
  width: 360px;
  height: 64px;
  border-radius: 20px;
  font-size: 22px;
}

.ml-footer__copy {
  padding: 22px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--ml-white);
  font-family: 'Bebas Neue', var(--ml-font);
  font-size: 15px;
  line-height: 1;
  letter-spacing: 1.2px;
  text-align: center;
}

.ml-footer__copy small {
  font-size: inherit;
}

.ml-anim-ready .ml-footer__copy[data-reveal] {
  opacity: 1;
  transform: none;
  filter: none;
}

@media (min-width: 1921px) {
  .ml-company,
  .ml-company__inner {
    min-height: 54.84375vw;
  }

  .ml-company__left {
    flex-basis: 41.041667vw;
  }

  .ml-company__right {
    left: 41.041667vw;
  }

  .ml-company__right img {
    left: -11.927083vw;
    width: 80vw;
    -webkit-mask-position: 11.927083vw 0;
    mask-position: 11.927083vw 0;
    -webkit-mask-size: 58.958333vw 49.21875vw;
    mask-size: 58.958333vw 49.21875vw;
  }
}

@media (max-width: 1800px) {
  .ml-nr__inner {
    grid-template-columns: minmax(620px, 0.95fr) minmax(0, 1fr);
  }

  .ml-recruit__content {
    flex: 0 1 346px;
  }

  .ml-recruit__img {
    flex: 1 1 clamp(300px, 26vw, 480px);
    width: clamp(300px, 26vw, 480px);
    min-width: 260px;
    height: clamp(300px, 26vw, 480px);
  }

  .ml-footer__inner {
    flex-wrap: wrap;
    gap: 42px 50px;
  }

  .ml-footer__message p {
    font-size: 28px;
  }

  .ml-footer__cta {
    justify-content: flex-end;
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 1500px) {
  .ml-hero__content {
    margin-left: 8vw;
  }

  .ml-hero__image {
    top: 0;
    bottom: auto;
    right: -1px;
    left: auto;
    width: min(58.6vw, calc(100vw - 650px));
    height: 620px;
    min-height: 0;
    -webkit-mask-image: url("assets/img/hero-mask.svg");
    mask-image: url("assets/img/hero-mask.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    clip-path: none;
  }

  .ml-mvv__quote {
    font-size: 21px;
  }

  .ml-svc-card__img {
    flex-basis: 132px;
    width: 132px;
    height: 132px;
  }

  .ml-mvv__img {
    flex-basis: clamp(180px, 18vw, 230px);
    width: clamp(180px, 18vw, 230px);
  }

  .ml-svc-card__text {
    flex: 1 1 0;
  }

  .ml-svc-card__text h3 {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: var(--ml-letter);
  }

  .ml-svc-card {
    padding-right: 20px;
    padding-left: 20px;
  }

  .ml-svc-card__body {
    gap: 10px;
  }

  .ml-company__left {
    flex-basis: 720px;
  }

  .ml-company__right {
    left: 720px;
    width: auto;
  }

  .ml-nr__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 45px;
  }

  .ml-recruit__img {
    margin-left: auto;
  }

  .ml-footer__inner {
    flex-wrap: wrap;
  }

  .ml-footer__cta {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 1919px) {
  .ml-hero__content {
    margin-left: 8vw;
  }

  .ml-hero__image {
    top: 0;
    bottom: auto;
    right: -1px;
    left: auto;
    width: min(58.6vw, calc(100vw - 650px));
    height: 620px;
    min-height: 0;
    -webkit-mask-image: url("assets/img/hero-mask.svg");
    mask-image: url("assets/img/hero-mask.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    clip-path: none;
  }
}

@media (max-width: 1199px) {
  .ml-header {
    position: sticky;
    top: 0;
    background: var(--ml-bg);
  }

  .ml-header__inner {
    padding: 20px 30px;
  }

  .ml-hero {
    min-height: 560px;
  }

  .ml-hero__content {
    width: 48%;
    padding-top: 168px;
    margin-left: 30px;
  }

  .ml-hero__image {
    width: 50%;
    height: 560px;
    min-height: 0;
    top: 0;
    bottom: auto;
  }

  .ml-services__grid,
  .ml-issues__grid,
  .ml-value-list {
    grid-template-columns: 1fr;
  }

  .ml-issues__card {
    min-height: unset;
  }

  .ml-svc-card,
  .ml-svc-card--rev {
    flex-direction: column;
  }

  .ml-svc-card__body {
    justify-content: flex-start;
    gap: 24px;
  }

  .ml-svc-card__img {
    flex: 0 0 clamp(180px, 24vw, 240px);
    width: clamp(180px, 24vw, 240px);
    height: clamp(180px, 24vw, 240px);
  }

  .ml-company,
  .ml-company__inner {
    min-height: unset;
  }

  .ml-company__left {
    flex: 1 1 auto;
    max-width: 760px;
  }

  .ml-company__right {
    position: relative;
    left: auto;
    width: 42%;
    min-height: 620px;
    clip-path: none;
  }

  .ml-company__right img {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .ml-company__right::before {
    display: none;
  }

  .ml-news-link {
    grid-template-columns: max-content max-content minmax(0, 1fr);
    gap: 14px 22px;
  }

  .ml-recruit {
    align-items: flex-start;
  }

  .ml-recruit__img {
    flex-basis: 360px;
    width: 360px;
    height: 360px;
  }
}

@media (max-width: 767px) {
  .ml-header {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    z-index: 30;
    width: 76px;
    background: transparent;
  }

  .ml-header__inner {
    display: block;
    position: relative;
    width: 76px;
    min-height: 70px;
    flex-wrap: nowrap;
    gap: 0;
    padding: 15px 0 0 14px;
  }

  .ml-header__logo {
    display: none;
  }

  .ml-nav-toggle {
    display: flex;
    position: relative;
    align-items: flex-start;
    justify-content: flex-start;
    width: 42px;
    min-height: 43px;
    margin: 0;
    padding: 0;
    color: #5a4a96;
  }

  .ml-nav {
    display: none;
    position: absolute;
    top: 62px;
    left: 12px;
    width: 190px;
    order: 3;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 32px rgba(31, 127, 122, 0.16);
  }

  .ml-nav--open {
    display: block;
  }

  .ml-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: auto;
    padding: 0;
    border-top: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .ml-nav a {
    padding: 12px 0;
    border-bottom: 1px solid #e6e6e6;
    text-shadow: none;
  }

  .ml-nav-toggle::after {
    content: "menu";
    position: absolute;
    top: 24px;
    left: 0;
    color: #6b6b6b;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: var(--ml-letter);
    text-transform: lowercase;
  }

  .ml-nav-toggle span {
    width: 36px;
    height: 1px;
    background: #5a4a96;
  }

  .ml-nav-toggle span:nth-child(3) {
    display: none;
  }

  .ml-nav-toggle--open span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }

  .ml-nav-toggle--open span:nth-child(2) {
    opacity: 1;
    transform: translateY(-2px) rotate(-45deg);
  }

  .ml-mobile-break {
    display: block;
  }

  .ml-section-head {
    gap: 6px;
    margin-bottom: 24px;
  }

  .ml-section-head__ja {
    font-size: 16px;
    line-height: 1.7;
  }

  .ml-section-head__en {
    font-size: 28px;
    line-height: 1.25;
    letter-spacing: var(--ml-letter);
  }

  .ml-section-head__desc {
    font-size: 13px;
    line-height: 1.9;
  }

  .ml-btn,
  .ml-btn--hero,
  .ml-btn--wide,
  .ml-footer__cta .ml-btn {
    width: 100%;
    height: 56px;
    padding: 0 24px;
    font-size: 17px;
  }

  .ml-hero {
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: unset;
    padding-top: 0;
    background: #fff;
  }

  .ml-hero::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -90px;
    z-index: 0;
    width: 320px;
    height: 150px;
    border-radius: 55% 0 0 0;
    background: #f8f8f8;
    pointer-events: none;
  }

  .ml-hero__content {
    order: 2;
    width: 100%;
    gap: 20px;
    padding: 0 22px 78px;
    margin: -12px 0 0;
  }

  .ml-hero__tagline {
    order: 1;
    width: min(100%, 322px);
    max-width: calc(100vw - 44px);
    color: var(--ml-main);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: var(--ml-letter);
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .ml-hero__heading {
    order: 2;
    max-width: 100%;
    color: #000;
    font-size: 31px;
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: var(--ml-letter);
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .ml-hero__body {
    display: block;
    order: 3;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: var(--ml-letter);
    white-space: normal;
  }

  .ml-hero .ml-btn {
    display: inline-flex;
    order: 4;
    align-self: flex-start;
    width: 320px;
    max-width: 100%;
    margin-top: 4px;
  }

  .ml-hero__image {
    order: 1;
    position: relative;
    width: 100%;
    height: 326px;
    min-height: 0;
    margin-left: 58px;
    top: auto;
    bottom: auto;
    clip-path: none;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M0 0H100V100C96 99 92 96 88 94C82 91 76 89 68 88C62 87 58 85 54 80C50 75 47 72 42 70C36 68 32 63 30 56C28 49 28 42 25 35C22 27 18 18 12 10C8 5 4 2 0 0Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M0 0H100V100C96 99 92 96 88 94C82 91 76 89 68 88C62 87 58 85 54 80C50 75 47 72 42 70C36 68 32 63 30 56C28 49 28 42 25 35C22 27 18 18 12 10C8 5 4 2 0 0Z'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }

  .ml-hero__image img {
    object-position: center top;
  }

  .ml-page {
    overflow-x: clip;
  }

  .ml-mvv,
  .ml-issues,
  .ml-services,
  .ml-nr {
    padding: 40px 20px;
  }

  .ml-mvv__top {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .ml-mvv__col {
    padding: 24px 0;
  }

  .ml-mvv__col--border {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid var(--ml-border);
  }

  .ml-mvv__col:not(.ml-mvv__col--border) {
    padding-left: 0;
  }

  .ml-mvv__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(128px, 36vw, 156px);
    align-items: center;
    justify-content: stretch;
    gap: 16px;
  }

  .ml-mvv__quote {
    min-width: 0;
    font-size: 18px;
    line-height: 1.75;
    overflow-wrap: anywhere;
  }

  .ml-mvv__img {
    width: 100%;
    height: auto;
    justify-self: end;
  }

  .ml-mvv__value {
    padding-top: 32px;
  }

  .ml-mvv__value-desc {
    width: 100%;
    letter-spacing: var(--ml-letter);
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .ml-value-list {
    width: 100%;
    max-width: none;
    align-self: stretch;
    gap: 0;
    margin-top: 12px;
    border-top: 1px solid #d7d7d7;
  }

  .ml-value-item {
    display: grid;
    grid-template-columns: clamp(74px, 20vw, 96px) minmax(0, 1fr);
    align-items: stretch;
    width: 100%;
    min-height: 92px;
    padding: 14px clamp(8px, 3vw, 18px);
    border-bottom: 1px solid #d7d7d7;
  }

  .ml-value-num {
    justify-content: center;
    padding: 0 12px 0 0;
    font-size: clamp(38px, 10vw, 48px);
    line-height: 25.6px;
  }

  .ml-value-body {
    width: 100%;
    padding: 0 0 0 clamp(18px, 5vw, 28px);
  }

  .ml-value-body strong {
    font-size: 16px;
    line-height: 1.65;
  }

  .ml-value-body span {
    font-size: 14px;
    line-height: 1.85;
  }

  .ml-issues__grid,
  .ml-services__grid {
    gap: 16px;
  }

  .ml-issues__card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 96px;
    align-items: center;
    gap: 14px;
    min-height: unset;
    padding: 24px 18px 24px 20px;
    background: #fff;
    border-top: 1px solid #dcebea;
  }

  .ml-issues__card::before {
    color: var(--ml-sub);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: var(--ml-letter);
  }

  .ml-issues__card:nth-child(1)::before {
    content: "ISSUE 01";
  }

  .ml-issues__card:nth-child(2)::before {
    content: "ISSUE 02";
  }

  .ml-issues__card:nth-child(3)::before {
    content: "ISSUE 03";
  }

  .ml-issues__img {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 96px;
    height: 96px;
    align-self: center;
    background: #f4fbfa;
    overflow: hidden;
  }

  .ml-issues__img img {
    object-fit: contain;
    padding: 6px;
  }

  .ml-issues__card p {
    grid-column: 1;
    min-width: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.85;
    text-align: left;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: auto-phrase;
  }

  .ml-svc-card {
    min-height: unset;
    padding: 22px 16px;
  }

  .ml-step {
    min-height: 54px;
  }

  .ml-step__badge {
    width: 50px;
    height: 50px;
  }

  .ml-step__badge span {
    font-size: 18px;
  }

  .ml-step__line {
    margin-left: 8px;
  }

  .ml-step__arrow {
    width: 9px;
    height: 12px;
  }

  .ml-step__arrow::before {
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-left-width: 9px;
  }

  .ml-svc-card__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(124px, 34vw, 150px);
    align-items: center;
    gap: 16px;
    min-height: 0;
  }

  .ml-svc-card__text {
    min-width: 0;
    flex: 1 1 auto;
    gap: 10px;
  }

  .ml-svc-card__text h3 {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: var(--ml-letter);
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .ml-svc-card__text p {
    font-size: 14px;
    line-height: 1.85;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .ml-svc-card__img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    justify-self: end;
  }

  .ml-company {
    padding: 40px 20px;
  }

  .ml-company__inner {
    flex-direction: column;
    gap: 36px;
  }

  .ml-company__left {
    gap: 24px;
    padding: 0;
  }

  .ml-company .ml-section-head__desc {
    font-weight: 600;
  }

  .ml-company__right {
    position: relative;
    width: calc(100% + 40px);
    margin: 4px -20px 0;
    left: auto;
    min-height: 0;
    aspect-ratio: 1.45;
    border-radius: 0;
    background:
      linear-gradient(118deg, rgba(255, 255, 255, 0.96) 0%, rgba(236, 246, 245, 0.7) 34%, rgba(236, 246, 245, 0) 74%),
      linear-gradient(90deg, #fff 0%, #ecf6f5 100%);
    clip-path: polygon(0 7%, 100% 0, 100% 87%, 86% 100%, 0 94%);
  }

  .ml-company__right img {
    position: absolute;
    top: -4%;
    left: -8%;
    width: 116%;
    max-width: none;
    height: 116%;
    object-fit: contain;
    object-position: center;
    -webkit-mask-image: url("assets/img/company-mask.svg");
    mask-image: url("assets/img/company-mask.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center top;
    mask-position: center top;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }

  .ml-company__right::before {
    display: block;
    background: linear-gradient(
      112deg,
      rgba(255, 255, 255, 0.98) 0 10%,
      rgba(255, 255, 255, 0.62) 31%,
      rgba(255, 255, 255, 0) 60%
    );
  }

  .ml-company-table,
  .ml-company-table tbody,
  .ml-company-table tr,
  .ml-company-table th,
  .ml-company-table td {
    display: block;
    width: 100%;
  }

  .ml-company-table {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.95;
  }

  .ml-company-table tr {
    padding: 18px 0 20px;
    border-bottom: 1px solid #aeb8b6;
  }

  .ml-company-table th {
    padding: 0 0 10px;
    border-bottom: 0;
    font-weight: 700;
    white-space: normal;
  }

  .ml-company-table td {
    padding: 0;
    border-bottom: 0;
    font-weight: 600;
  }

  .ml-company-table tr + tr th,
  .ml-company-table tr + tr td {
    padding-top: 0;
  }

  .ml-nr__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .ml-news {
    min-height: unset;
  }

  .ml-news-link {
    grid-template-columns: auto auto;
    justify-content: flex-start;
    gap: 0 10px;
    font-size: 13px;
    line-height: 1.85;
  }

  .ml-news-title {
    grid-column: 1 / -1;
    font-size: 14px;
  }

  .ml-recruit {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-height: unset;
    overflow: visible;
  }

  .ml-recruit__content {
    width: 100%;
    gap: 20px;
  }

  .ml-recruit__heading {
    font-size: 22px;
    line-height: 1.6;
    margin-top: 8px;
    white-space: normal;
  }

  .ml-recruit .ml-btn {
    margin-top: 4px;
  }

  .ml-recruit__img {
    position: relative;
    flex: none;
    align-self: stretch;
    width: 100%;
    height: auto;
    margin: -16px 0 0;
    padding: 0 0 6px;
    overflow: visible;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0) 0 18px, #f4fbfa 18px 100%);
    clip-path: none;
  }

  .ml-recruit__img::before {
    content: "";
    position: absolute;
    left: -20px;
    right: -20px;
    top: 26px;
    bottom: 0;
    z-index: 0;
    background:
      linear-gradient(115deg, rgba(255, 255, 255, 0.9) 0%, rgba(236, 246, 245, 0.72) 44%, rgba(236, 246, 245, 0) 100%),
      linear-gradient(180deg, #f7fbfa 0%, #edf8f7 100%);
    transform: skewY(-2.5deg);
    transform-origin: left top;
  }

  .ml-recruit__img img {
    position: relative;
    z-index: 1;
    display: block;
    width: min(100%, 430px);
    height: auto;
    max-width: 100%;
    margin: -12px auto 0;
    transform: none;
    object-fit: contain;
    object-position: center;
  }

  .ml-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 44px 20px;
  }

  .ml-footer__info {
    flex: none;
    width: 100%;
    min-height: unset;
    padding-bottom: 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  }

  .ml-footer__message p {
    font-size: 20px;
    line-height: 1.55;
    white-space: normal;
  }

  .ml-footer__cta {
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }
}

.ml-sub-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #d9e6e4;
}

.ml-sub-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 88px;
  padding: 0 var(--ml-page-pad);
}

.ml-sub-header__logo img {
  width: 149px;
  height: auto;
}

.ml-sub-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
}

.ml-sub-nav a {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
}

.ml-sub-hero {
  padding: 96px var(--ml-page-pad) 64px;
  background: linear-gradient(100deg, #fff 0%, #f4fbfa 58%, #e7f5f3 100%);
}

.ml-sub-hero__label {
  color: var(--ml-main);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.ml-sub-hero h1 {
  margin-top: 10px;
  color: #000;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.18;
}

.ml-sub-hero p {
  max-width: 760px;
  margin-top: 22px;
  color: #000;
  font-size: 17px;
  font-weight: 500;
  line-height: 2;
}

.ml-contact-page .ml-sub-hero,
.ml-service-page .ml-sub-hero,
.ml-recruit-page .ml-sub-hero {
  padding-top: 150px;
  padding-bottom: 50px;
  background: linear-gradient(100deg, #fff 0%, #f7fbfa 62%, #edf8f6 100%);
}

.ml-contact-page .ml-sub-hero__label,
.ml-service-page .ml-sub-hero__label,
.ml-recruit-page .ml-sub-hero__label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
}

.ml-sub-hero__line {
  display: block;
  width: 75px;
  height: 2px;
  background: var(--ml-main);
}

.ml-contact-page .ml-sub-hero h1,
.ml-service-page .ml-sub-hero h1,
.ml-recruit-page .ml-sub-hero h1 {
  margin-top: 10px;
  font-size: clamp(36px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.15;
}

.ml-contact-page .ml-sub-hero p:not(.ml-sub-hero__label),
.ml-service-page .ml-sub-hero p:not(.ml-sub-hero__label),
.ml-recruit-page .ml-sub-hero p:not(.ml-sub-hero__label) {
  max-width: 760px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
}

.ml-contact-footer .ml-footer__copy {
  border-top: 0;
}

.ml-sub-section {
  padding: 64px var(--ml-page-pad);
  background: #fff;
}

.ml-sub-section--soft {
  background: #f8fbfa;
}

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

.ml-sub-item {
  padding-top: 22px;
  border-top: 2px solid #d7e7e5;
}

.ml-sub-item h2,
.ml-sub-item h3 {
  color: #000;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
}

.ml-sub-item p,
.ml-sub-list li {
  color: #000;
  font-size: 16px;
  line-height: 1.9;
}

.ml-sub-list {
  display: grid;
  gap: 16px;
}

.ml-service-kicker {
  color: var(--ml-main);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
}

.ml-service-lead {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.78fr);
  gap: clamp(48px, 5vw, 92px);
  align-items: center;
  min-height: 560px;
  overflow: hidden;
  background: linear-gradient(116deg, var(--ml-main) 0%, var(--ml-main) 57.5%, #edf8f7 57.7%, #f8fbfa 100%);
}

.ml-service-lead__text {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.ml-service-lead .ml-service-kicker {
  color: #fff;
}

.ml-service-lead__text h2,
.ml-service-detail-head h2,
.ml-service-flow__head h2,
.ml-service-quality__title h2 {
  margin-top: 10px;
  color: #000;
  font-size: clamp(28px, 2.6vw, 42px);
  font-weight: 700;
  line-height: 1.45;
}

.ml-service-lead__text h2 {
  color: #fff;
}

.ml-service-lead__text p {
  margin-top: 22px;
  color: #fff;
  font-size: 16px;
  line-height: 2;
}

.ml-service-lead__text ul {
  display: grid;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.ml-service-lead__text li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
  font-size: 15px;
  line-height: 1.8;
}

.ml-service-lead__text li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 12px;
  background: var(--ml-accent);
  vertical-align: 1px;
}

.ml-service-lead__visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  overflow: hidden;
  background: transparent;
}

.ml-service-lead__visual img {
  width: min(112%, 540px);
  object-fit: contain;
}

.ml-service-detail-section {
  padding-top: 90px;
  background: #fff;
}

.ml-service-detail-head {
  max-width: 860px;
  margin-bottom: 52px;
}

.ml-service-detail-list {
  display: grid;
  gap: 28px;
}

.ml-service-detail {
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(0, 0.85fr) minmax(360px, 0.74fr);
  gap: clamp(34px, 4vw, 72px);
  align-items: center;
  min-height: 430px;
  padding: 46px 0;
  border-top: 1px solid #aebfbc;
}

.ml-service-detail:last-child {
  border-bottom: 1px solid #b9c7c5;
}

.ml-service-detail--reverse {
  grid-template-columns: 96px minmax(360px, 0.74fr) minmax(0, 0.85fr);
}

.ml-service-detail--reverse .ml-service-detail__body {
  grid-column: 3;
}

.ml-service-detail--reverse .ml-service-detail__img {
  grid-column: 2;
  grid-row: 1;
}

.ml-service-detail__num {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border: 2px dashed var(--ml-sub);
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.ml-service-detail__num::before {
  content: "";
  position: absolute;
  inset: 5px;
  z-index: 0;
  border-radius: 50%;
  background: var(--ml-main);
}

.ml-service-detail__num {
  isolation: isolate;
}

.ml-service-detail__num::after {
  content: "";
  position: absolute;
  left: calc(100% + 8px);
  top: 50%;
  width: clamp(36px, 5vw, 72px);
  border-top: 2px dotted var(--ml-sub);
}

.ml-service-detail__num {
  text-shadow: 0 0 0 currentColor;
}

.ml-service-detail__num > * {
  position: relative;
  z-index: 1;
}

.ml-service-detail__body h3 {
  color: var(--ml-main);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 700;
  line-height: 1.45;
}

.ml-service-detail__body p {
  margin-top: 18px;
  color: #000;
  font-size: 15px;
  line-height: 2;
}

.ml-service-detail__body ul {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.ml-service-detail__body li {
  position: relative;
  padding-left: 24px;
  color: #000;
  font-size: 15px;
  line-height: 1.8;
}

.ml-service-detail__body li::before {
  content: "";
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 12px;
  height: 2px;
  background: var(--ml-accent);
}

.ml-service-detail__img {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  overflow: hidden;
  background: linear-gradient(145deg, #edf8f7 0%, #fff 100%);
  clip-path: polygon(8% 0, 100% 0, 100% 88%, 88% 100%, 0 100%, 0 12%);
}

.ml-service-detail__img img {
  width: min(92%, 380px);
  object-fit: contain;
}

.ml-service-flow {
  padding-top: 80px;
  padding-bottom: 82px;
  background: linear-gradient(180deg, #f8fbfa 0%, #fff 100%);
}

.ml-service-flow__head {
  max-width: 760px;
  margin-bottom: 36px;
}

.ml-service-flow__head p,
.ml-service-quality__title p {
  margin-top: 16px;
  color: #000;
  font-size: 15px;
  line-height: 2;
}

.ml-service-flow__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  margin: 38px 0 0;
  border-top: 1px solid #aebfbc;
  border-bottom: 1px solid #aebfbc;
}

.ml-service-flow__list::before {
  content: none;
}

.ml-service-flow__list li {
  position: relative;
  min-height: 238px;
  padding: 30px clamp(22px, 2.4vw, 34px);
  border-right: 1px solid #aebfbc;
  background: rgba(255, 255, 255, 0.66);
  text-align: left;
}

.ml-service-flow__list li::before {
  content: "";
  position: absolute;
  top: 30px;
  left: clamp(22px, 2.4vw, 34px);
  width: 34px;
  height: 2px;
  background: var(--ml-accent);
}

.ml-service-flow__list li::after {
  content: none;
}

.ml-service-flow__list li:last-child {
  border-right: 0;
}

.ml-service-flow__list span {
  display: block;
  margin-top: 24px;
  color: var(--ml-main);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.05;
}

.ml-service-flow__list h3 {
  margin-top: 26px;
  color: #000;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.ml-service-flow__list p {
  margin-top: 12px;
  color: #000;
  font-size: 14px;
  line-height: 1.9;
}

.ml-service-quality {
  display: grid;
  grid-template-columns: minmax(420px, 0.62fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  padding-top: 0;
  padding-bottom: 0;
  background: #fff;
}

.ml-service-quality__title {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 720px;
  padding: 78px 54px 0;
  overflow: hidden;
  background: var(--ml-main);
  color: #fff;
}

.ml-service-quality__title .ml-service-kicker,
.ml-service-quality__title h2,
.ml-service-quality__title p {
  color: #fff;
}

.ml-service-quality__title h2 {
  max-width: 560px;
}

.ml-service-quality__title > p:not(.ml-service-kicker) {
  max-width: 520px;
}

.ml-service-quality__visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 380px;
  margin: 30px -38px -28px 0;
  overflow: hidden;
  background: transparent;
}

.ml-service-quality__visual img {
  width: min(112%, 650px);
  max-width: none;
  object-fit: contain;
}

.ml-service-quality__grid {
  display: flex;
  align-items: center;
  padding: 72px 0 72px clamp(54px, 5vw, 92px);
}

.ml-service-quality__grid dl {
  counter-reset: quality;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  border-top: 1px solid #aebfbc;
  background: transparent;
}

.ml-service-quality__grid div {
  position: relative;
  counter-increment: quality;
  display: grid;
  grid-template-columns: 96px minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
  min-height: 136px;
  padding: 28px 0;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid #aebfbc;
  background: #fff;
}

.ml-service-quality__grid div::before {
  content: "0" counter(quality);
  display: block;
  width: auto;
  height: auto;
  margin: 0;
  background: transparent;
  color: var(--ml-main);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.ml-service-quality__grid div::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 66px;
  width: 22px;
  height: 2px;
  background: var(--ml-accent);
  transform: translateY(-50%);
}

.ml-service-quality__grid dt {
  color: var(--ml-main);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.6;
}

.ml-service-quality__grid dd {
  position: relative;
  z-index: 1;
  margin-top: 0;
  color: #000;
  font-size: 15px;
  line-height: 1.9;
}

.ml-sub-form {
  display: grid;
  gap: 22px;
  max-width: 860px;
}

.ml-form-row {
  display: grid;
  gap: 8px;
}

.ml-form-row label {
  color: var(--ml-main);
  font-size: 15px;
  font-weight: 700;
}

.ml-form-row input,
.ml-form-row select,
.ml-form-row textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid #c4d0ce;
  border-radius: 0;
  background: #fbfdfd;
  color: #000;
  font: inherit;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.ml-form-row input:focus,
.ml-form-row select:focus,
.ml-form-row textarea:focus {
  outline: 0;
  border-color: var(--ml-main);
  background: #fff;
}

.ml-form-row textarea {
  min-height: 180px;
  resize: vertical;
}

.ml-sub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ml-recruit-page {
  overflow-x: clip;
  background: #fff;
}

.ml-recruit-page h1,
.ml-recruit-page h2,
.ml-recruit-page h3,
.ml-recruit-page p,
.ml-recruit-page dd {
  overflow-wrap: anywhere;
}

.ml-recruit-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.76fr) minmax(560px, 1fr);
  align-items: center;
  min-height: 760px;
  padding: 150px var(--ml-page-pad) 80px;
  overflow: hidden;
  background: linear-gradient(105deg, #fff 0%, #fff 42%, #f4fbfa 42.2%, #edf8f7 100%);
}

.ml-recruit-hero::after {
  content: "RECRUIT";
  position: absolute;
  right: -0.08em;
  bottom: -0.18em;
  color: rgba(31, 127, 122, 0.045);
  font-family: 'Bebas Neue', var(--ml-font);
  font-size: clamp(120px, 17vw, 260px);
  line-height: 1;
  pointer-events: none;
}

.ml-recruit-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  max-width: 680px;
}

.ml-recruit-hero__eyebrow,
.ml-recruit-kicker,
.ml-recruit-section-title p {
  color: var(--ml-main);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: var(--ml-letter);
}

.ml-recruit-hero__content h1 {
  margin-top: 18px;
  color: #000;
  font-size: clamp(42px, 4.2vw, 64px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: var(--ml-letter);
}

.ml-recruit-hero__content > p:not(.ml-recruit-hero__eyebrow) {
  max-width: 520px;
  margin-top: 26px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}

.ml-recruit-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.ml-recruit-hero__actions .ml-btn {
  width: 260px;
  font-size: 20px;
}

.ml-recruit-hero__map {
  position: relative;
  z-index: 1;
  min-height: 560px;
}

.ml-recruit-map {
  position: absolute;
  top: 28px;
  right: -4vw;
  width: min(68vw, 960px);
  height: 560px;
  transform: rotate(-4deg);
}

.ml-recruit-map__road {
  position: absolute;
  border-radius: 999px;
  background: #dfe7e5;
}

.ml-recruit-map__road::after {
  content: "";
  position: absolute;
  inset: 50% 18px auto;
  height: 2px;
  background: repeating-linear-gradient(90deg, #fff 0 24px, transparent 24px 42px);
  transform: translateY(-50%);
}

.ml-recruit-map__road--main {
  left: 5%;
  bottom: 18%;
  width: 88%;
  height: 64px;
  transform: rotate(20deg);
}

.ml-recruit-map__road--cross {
  top: 18%;
  left: 45%;
  width: 52%;
  height: 50px;
  transform: rotate(68deg);
}

.ml-recruit-map__facility {
  position: absolute;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 190px;
  height: 128px;
  padding-bottom: 18px;
  border: 1px solid #cddfdd;
  background: linear-gradient(145deg, #fff 0%, #edf8f7 100%);
  box-shadow: 18px 18px 0 rgba(31, 127, 122, 0.08);
  transform: skewY(-18deg);
}

.ml-recruit-map__facility::before {
  content: "";
  position: absolute;
  top: -34px;
  left: -1px;
  right: -1px;
  height: 34px;
  border: 1px solid #cddfdd;
  border-bottom: 0;
  background: linear-gradient(135deg, #fff 0%, #dcefed 100%);
  transform: skewX(38deg);
  transform-origin: bottom left;
}

.ml-recruit-map__facility span {
  position: relative;
  z-index: 1;
  color: var(--ml-main);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: var(--ml-letter);
  transform: skewY(18deg);
}

.ml-recruit-map__facility--hospital {
  top: 70px;
  right: 210px;
}

.ml-recruit-map__facility--lab {
  top: 245px;
  right: 80px;
  width: 220px;
  height: 142px;
  background: linear-gradient(145deg, #fff 0%, #f6fbfa 100%);
}

.ml-recruit-map__facility--hub {
  left: 120px;
  bottom: 82px;
  width: 250px;
  height: 156px;
  border-color: rgba(237, 133, 18, 0.34);
  background: linear-gradient(145deg, #fff 0%, #fff4df 100%);
  box-shadow: 18px 18px 0 rgba(237, 133, 18, 0.12);
}

.ml-recruit-map__facility--hub span {
  color: #bd6b05;
}

.ml-recruit-map__vehicle,
.ml-recruit-map__box,
.ml-recruit-map__pin {
  position: absolute;
  z-index: 3;
}

.ml-recruit-map__vehicle {
  width: 72px;
  height: 34px;
  border: 3px solid #fff;
  background: var(--ml-main);
  box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12);
}

.ml-recruit-map__vehicle::before,
.ml-recruit-map__vehicle::after {
  content: "";
  position: absolute;
  bottom: -8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #253433;
}

.ml-recruit-map__vehicle::before {
  left: 10px;
}

.ml-recruit-map__vehicle::after {
  right: 10px;
}

.ml-recruit-map__vehicle--one {
  left: 44%;
  top: 48%;
  transform: rotate(20deg);
}

.ml-recruit-map__vehicle--two {
  right: 13%;
  bottom: 24%;
  background: var(--ml-accent);
  transform: rotate(20deg);
}

.ml-recruit-map__pin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--ml-main);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 16px 24px rgba(31, 127, 122, 0.18);
}

.ml-recruit-map__pin--one {
  top: 70px;
  left: 42%;
}

.ml-recruit-map__pin--two {
  right: 25%;
  bottom: 130px;
  background: var(--ml-accent);
}

.ml-recruit-map__box {
  width: 28px;
  height: 28px;
  background: #d7b86a;
  transform: rotate(45deg) skew(-8deg, -8deg);
  box-shadow: 16px 12px 0 rgba(215, 184, 106, 0.34);
}

.ml-recruit-map__box--one {
  top: 210px;
  left: 26%;
}

.ml-recruit-map__box--two {
  right: 38%;
  top: 330px;
}

.ml-recruit-map__box--three {
  right: 12%;
  top: 170px;
}

.ml-recruit-intro {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1fr);
  gap: clamp(58px, 7vw, 118px);
  align-items: center;
  padding: 118px var(--ml-page-pad);
  background: #fff;
}

.ml-recruit-intro__visual {
  display: flex;
  justify-content: center;
}

.ml-recruit-circle {
  position: relative;
  width: min(34vw, 430px);
  min-width: 340px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff5df;
}

.ml-recruit-circle::before {
  content: "";
  position: absolute;
  inset: 36px;
  border: 2px dashed rgba(31, 127, 122, 0.28);
  border-radius: 50%;
}

.ml-recruit-circle img {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 66%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

.ml-recruit-circle__item {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border: 1px solid #ebd7a2;
  border-radius: 50%;
  background: #fff;
  color: var(--ml-main);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  box-shadow: 0 12px 24px rgba(180, 150, 70, 0.12);
}

.ml-recruit-circle__item--one {
  top: 16px;
  right: 18px;
}

.ml-recruit-circle__item--two {
  right: -18px;
  bottom: 82px;
}

.ml-recruit-circle__item--three {
  left: 34%;
  bottom: -34px;
}

.ml-recruit-circle__item--four {
  left: -26px;
  bottom: 112px;
}

.ml-recruit-intro__text {
  max-width: 760px;
}

.ml-recruit-intro__text h3 {
  color: #000;
  font-size: clamp(28px, 2.4vw, 40px);
  font-weight: 700;
  line-height: 1.45;
}

.ml-recruit-intro__text p {
  margin-top: 20px;
  color: #000;
  font-size: 15px;
  line-height: 2;
}

.ml-recruit-jobs {
  position: relative;
  padding: 96px var(--ml-page-pad) 110px;
  overflow: hidden;
  background: #f7f9f8;
}

.ml-recruit-jobs::before,
.ml-recruit-feature::before {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  top: -80px;
  height: 170px;
  border-radius: 0 0 50% 50%;
  background: #fff;
}

.ml-recruit-section-title {
  position: relative;
  z-index: 1;
  margin: 0 auto 46px;
  text-align: center;
}

.ml-recruit-section-title h2,
.ml-recruit-feature__head h2,
.ml-recruit-details__text h2,
.ml-recruit-entry h2 {
  margin-top: 8px;
  color: #000;
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 700;
  line-height: 1.45;
}

.ml-recruit-job-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 24px;
}

.ml-recruit-job-card {
  min-height: 250px;
  padding: 28px 26px 30px;
  border: 1px solid #e4d2a0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(31, 127, 122, 0.07);
}

.ml-recruit-job-card span {
  color: rgba(237, 133, 18, 0.46);
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.ml-recruit-job-card h3 {
  margin-top: 26px;
  color: var(--ml-main);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
}

.ml-recruit-job-card p {
  margin-top: 14px;
  color: #000;
  font-size: 14px;
  line-height: 1.9;
}

.ml-recruit-problem {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 74px auto 0;
  text-align: center;
}

.ml-recruit-problem__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 22px;
  background: #cfdedc;
}

.ml-recruit-problem__grid div {
  min-height: 214px;
  padding: 34px 30px;
  background: #fff;
}

.ml-recruit-problem__grid h3 {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.55;
}

.ml-recruit-problem__grid p {
  margin-top: 16px;
  color: #000;
  font-size: 14px;
  line-height: 1.9;
}

.ml-recruit-feature {
  position: relative;
  padding: 104px var(--ml-page-pad);
  background: #fff;
}

.ml-recruit-feature::before {
  top: auto;
  bottom: -80px;
  z-index: 0;
  border-radius: 50% 50% 0 0;
  background: #f8fbfa;
}

.ml-recruit-feature__head {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-bottom: 34px;
}

.ml-recruit-feature__list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 34px;
}

.ml-recruit-feature__list article {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.72fr);
  gap: clamp(42px, 6vw, 98px);
  align-items: center;
  padding: 42px 0;
  border-top: 1px solid #b6c8c5;
}

.ml-recruit-feature__list article:nth-child(2) {
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 0.82fr);
}

.ml-recruit-feature__list article:nth-child(2) .ml-recruit-feature__text {
  grid-column: 2;
}

.ml-recruit-feature__list article:nth-child(2) .ml-recruit-feature__img {
  grid-column: 1;
  grid-row: 1;
}

.ml-recruit-feature__text span {
  display: block;
  color: var(--ml-accent);
  font-size: 18px;
  font-weight: 800;
}

.ml-recruit-feature__text h3 {
  margin-top: 12px;
  color: var(--ml-main);
  font-size: clamp(25px, 2vw, 34px);
  font-weight: 700;
  line-height: 1.5;
}

.ml-recruit-feature__text p {
  margin-top: 18px;
  color: #000;
  font-size: 15px;
  line-height: 2;
}

.ml-recruit-feature__img {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 330px;
  overflow: hidden;
  background: linear-gradient(145deg, #edf8f7 0%, #fff 100%);
  clip-path: polygon(8% 0, 100% 0, 100% 88%, 88% 100%, 0 100%, 0 12%);
}

.ml-recruit-feature__img img {
  width: min(86%, 390px);
  object-fit: contain;
}

.ml-recruit-numbers {
  padding: 96px var(--ml-page-pad);
  background: #f8fbfa;
}

.ml-recruit-number-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: #bfd3d0;
}

.ml-recruit-number-grid div {
  min-height: 190px;
  padding: 30px 26px;
  background: #fff;
  text-align: center;
}

.ml-recruit-number-grid span {
  display: block;
  color: var(--ml-main);
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.ml-recruit-number-grid p {
  margin-top: 20px;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

.ml-recruit-details {
  display: grid;
  grid-template-columns: minmax(320px, 0.56fr) minmax(0, 1fr);
  gap: clamp(48px, 6vw, 96px);
  padding: 100px var(--ml-page-pad);
  background: #fff;
}

.ml-recruit-details__text p:not(.ml-recruit-kicker) {
  margin-top: 18px;
  color: #000;
  font-size: 15px;
  line-height: 2;
}

.ml-recruit-detail-table {
  display: grid;
  border-top: 1px solid #b6c8c5;
}

.ml-recruit-detail-table div {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid #dbe7e5;
}

.ml-recruit-detail-table dt {
  color: var(--ml-main);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
}

.ml-recruit-detail-table dd {
  margin: 0;
  color: #000;
  font-size: 15px;
  line-height: 1.9;
}

.ml-recruit-flow {
  padding: 96px var(--ml-page-pad);
  background: linear-gradient(180deg, #fff 0%, #f8fbfa 100%);
}

.ml-recruit-flow__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid #b6c8c5;
  border-bottom: 1px solid #b6c8c5;
}

.ml-recruit-flow__list li {
  min-height: 230px;
  padding: 30px 26px;
  border-right: 1px solid #dbe7e5;
  background: rgba(255, 255, 255, 0.72);
}

.ml-recruit-flow__list li:last-child {
  border-right: 0;
}

.ml-recruit-flow__list span {
  color: var(--ml-accent);
  font-size: 18px;
  font-weight: 800;
}

.ml-recruit-flow__list h3 {
  margin-top: 28px;
  color: #000;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}

.ml-recruit-flow__list p {
  margin-top: 12px;
  color: #000;
  font-size: 14px;
  line-height: 1.9;
}

.ml-recruit-entry {
  padding: 84px var(--ml-page-pad) 88px;
  background: linear-gradient(rgba(37, 47, 45, 0.92), rgba(37, 47, 45, 0.92)), linear-gradient(135deg, #1f7f7a 0%, #263533 100%);
  color: #fff;
  text-align: center;
}

.ml-recruit-entry p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: var(--ml-letter);
}

.ml-recruit-entry h2 {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  color: #fff;
}

.ml-recruit-entry__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 780px;
  margin: 24px auto 34px;
}

.ml-recruit-entry__tags span {
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.ml-recruit-entry .ml-btn {
  width: 320px;
  max-width: 100%;
}

/* Recruit page polish pass */
.ml-recruit-page {
  --ml-letter: 0;
  --ml-recruit-ink: #122f2d;
  --ml-recruit-muted: #5c716f;
  --ml-recruit-hairline: #d8e5e3;
  --ml-recruit-panel: #f5f9f8;

  color: var(--ml-recruit-ink);
}

.ml-recruit-page .ml-header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0) 100%);
}

.ml-recruit-page .ml-nav a {
  color: var(--ml-recruit-ink);
  font-weight: 700;
}

.ml-recruit-page .ml-btn {
  height: 58px;
  border-radius: 8px;
  font-size: 18px;
  box-shadow: none;
}

.ml-recruit-page a.ml-btn--line,
.ml-recruit-page button.ml-btn--line {
  border: 1px solid rgba(31, 127, 122, 0.38);
  background: #fff;
  color: var(--ml-main);
}

.ml-recruit-page .ml-btn:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.ml-recruit-hero {
  grid-template-columns: minmax(410px, 0.72fr) minmax(640px, 1.08fr);
  min-height: 780px;
  padding-top: 138px;
  padding-bottom: 70px;
  background:
    linear-gradient(90deg, #fff 0%, #fff 33%, rgba(255, 255, 255, 0.82) 48%, rgba(245, 249, 248, 0) 66%),
    linear-gradient(180deg, #fff 0%, #f6faf9 100%);
}

.ml-recruit-hero::after {
  right: auto;
  left: 24px;
  bottom: 46px;
  color: rgba(18, 47, 45, 0.035);
  font-size: clamp(110px, 12vw, 190px);
}

.ml-recruit-hero__content {
  max-width: 600px;
}

.ml-recruit-hero__eyebrow,
.ml-recruit-kicker,
.ml-recruit-section-title p {
  color: var(--ml-main);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.ml-recruit-hero__content h1 {
  margin-top: 20px;
  color: var(--ml-recruit-ink);
  font-size: clamp(42px, 4vw, 60px);
  font-weight: 800;
  line-height: 1.28;
}

.ml-recruit-hero__content > p:not(.ml-recruit-hero__eyebrow) {
  max-width: 540px;
  color: #263b39;
  font-size: 15px;
  font-weight: 600;
  line-height: 2.05;
}

.ml-recruit-hero__visual {
  position: relative;
  z-index: 1;
  min-height: 590px;
  margin-right: calc(var(--ml-page-pad) * -1);
}

.ml-recruit-hero__visual::before {
  content: "";
  position: absolute;
  inset: 36px 0 42px 9%;
  z-index: 0;
  background: linear-gradient(145deg, rgba(31, 127, 122, 0.1), rgba(255, 255, 255, 0));
  filter: blur(22px);
}

.ml-recruit-hero__visual img {
  position: absolute;
  top: 50%;
  right: -2vw;
  z-index: 1;
  width: min(74vw, 1050px);
  max-width: none;
  transform: translateY(-50%);
  object-fit: contain;
}

.ml-recruit-intro {
  padding-top: 120px;
  padding-bottom: 130px;
}

.ml-recruit-circle {
  background: linear-gradient(145deg, #fff8e9 0%, #fff 80%);
  box-shadow: 0 34px 80px rgba(31, 127, 122, 0.08);
}

.ml-recruit-circle__item {
  border-color: rgba(31, 127, 122, 0.18);
  color: var(--ml-recruit-ink);
  box-shadow: 0 18px 48px rgba(31, 127, 122, 0.1);
}

.ml-recruit-intro__text h3,
.ml-recruit-section-title h2,
.ml-recruit-feature__head h2,
.ml-recruit-details__text h2,
.ml-recruit-entry h2 {
  color: var(--ml-recruit-ink);
  font-weight: 800;
}

.ml-recruit-intro__text p,
.ml-recruit-feature__text p,
.ml-recruit-details__text p:not(.ml-recruit-kicker),
.ml-recruit-detail-table dd,
.ml-recruit-flow__list p,
.ml-recruit-job-card p,
.ml-recruit-problem__grid p {
  color: var(--ml-recruit-muted);
  font-weight: 500;
}

.ml-recruit-jobs {
  background: linear-gradient(180deg, #f7faf9 0%, #f3f7f6 100%);
}

.ml-recruit-job-row {
  gap: 18px;
}

.ml-recruit-job-card {
  min-height: 260px;
  padding: 34px 30px;
  border-color: rgba(31, 127, 122, 0.16);
  border-radius: 8px;
  box-shadow: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.ml-recruit-job-card:hover {
  border-color: rgba(31, 127, 122, 0.42);
  transform: translateY(-3px);
}

.ml-recruit-job-card span {
  color: rgba(31, 127, 122, 0.2);
  font-size: 42px;
}

.ml-recruit-job-card h3 {
  color: var(--ml-main);
  font-size: 21px;
}

.ml-recruit-problem {
  padding: 34px 40px 42px;
  background: #fff;
  border: 1px solid var(--ml-recruit-hairline);
  border-radius: 8px;
}

.ml-recruit-problem__grid {
  background: var(--ml-recruit-hairline);
}

.ml-recruit-problem__grid div {
  background: #fff;
}

.ml-recruit-feature {
  background: #fff;
}

.ml-recruit-feature__list {
  gap: 0;
}

.ml-recruit-feature__list article {
  min-height: 420px;
  border-color: var(--ml-recruit-hairline);
}

.ml-recruit-feature__text span,
.ml-recruit-flow__list span {
  color: var(--ml-main);
}

.ml-recruit-feature__img {
  min-height: 360px;
  border: 1px solid rgba(31, 127, 122, 0.12);
  background: linear-gradient(145deg, #f2f8f7 0%, #fff 100%);
  clip-path: none;
}

.ml-recruit-feature__img img {
  width: min(80%, 360px);
}

.ml-recruit-numbers {
  background: var(--ml-recruit-panel);
}

.ml-recruit-number-grid {
  gap: 0;
  border: 1px solid var(--ml-recruit-hairline);
  background: var(--ml-recruit-hairline);
}

.ml-recruit-number-grid div {
  background: #fff;
}

.ml-recruit-number-grid span {
  color: var(--ml-recruit-ink);
  font-family: 'Bebas Neue', var(--ml-font);
  font-weight: 400;
}

.ml-recruit-number-grid .ml-count {
  min-width: 1.9em;
  transition: color 0.25s ease;
}

.ml-recruit-number-grid .ml-count--done {
  color: var(--ml-main);
}

.ml-recruit-details {
  background: #fff;
}

.ml-recruit-detail-table {
  border-color: var(--ml-recruit-hairline);
}

.ml-recruit-detail-table div {
  border-color: var(--ml-recruit-hairline);
}

.ml-recruit-flow {
  background: linear-gradient(180deg, #fff 0%, #f5f9f8 100%);
}

.ml-recruit-flow__list {
  border-color: var(--ml-recruit-hairline);
}

.ml-recruit-flow__list li {
  background: rgba(255, 255, 255, 0.86);
  border-color: var(--ml-recruit-hairline);
}

.ml-recruit-entry {
  background:
    linear-gradient(rgba(18, 47, 45, 0.92), rgba(18, 47, 45, 0.92)),
    url("assets/img/recruit-hero.png") center 46% / cover no-repeat;
}

.ml-sub-footer {
  padding: 34px var(--ml-page-pad);
  background: var(--ml-main);
  color: #fff;
  text-align: center;
}

.ml-contact-section {
  padding-top: 72px;
  padding-bottom: 88px;
  background: linear-gradient(180deg, #fff 0%, #fff 55%, #f8fbfa 55%, #f8fbfa 100%);
}

.ml-contact-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(560px, 1fr);
  gap: clamp(42px, 4vw, 76px);
  align-items: start;
}

.ml-contact-aside {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 42px 38px 34px;
  overflow: hidden;
  background: linear-gradient(138deg, #1f7f7a 0%, #258f88 53.5%, #edf8f7 53.7%, #f8fbfa 100%);
  color: #fff;
}

.ml-contact-aside::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 42%);
  pointer-events: none;
}

.ml-contact-aside__label {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
}

.ml-contact-aside h2 {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  color: #fff;
  font-size: clamp(26px, 2.1vw, 34px);
  font-weight: 700;
  line-height: 1.55;
}

.ml-contact-aside p {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
}

.ml-contact-meta {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
}

.ml-contact-meta div {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
}

.ml-contact-meta dt {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.ml-contact-meta dd {
  margin: 4px 0 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.7;
}

.ml-contact-aside img {
  position: relative;
  z-index: 1;
  width: min(86%, 460px);
  max-width: none;
  margin: 26px auto 0;
  object-fit: contain;
}

.ml-contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-content: start;
  max-width: none;
  padding-top: 8px;
}

.ml-contact-form .ml-form-row--full {
  grid-column: 1 / -1;
}

.ml-contact-form .ml-sub-actions {
  margin-top: 8px;
}

@media (min-width: 1200px) {
  .ml-contact-form {
    align-self: center;
  }
}

@media (max-width: 1199px) {
  .ml-service-lead,
  .ml-service-quality {
    grid-template-columns: 1fr;
  }

  .ml-service-quality__title {
    min-height: 0;
    padding: 58px var(--ml-page-pad) 0;
  }

  .ml-service-quality__visual {
    min-height: 300px;
    margin: 28px auto -18px;
  }

  .ml-service-quality__visual img {
    width: min(92vw, 560px);
  }

  .ml-service-quality__grid {
    padding: 46px var(--ml-page-pad) 58px;
  }

  .ml-service-quality__grid div {
    grid-template-columns: 80px minmax(150px, 0.32fr) minmax(0, 1fr);
  }

  .ml-service-lead__visual {
    min-height: 320px;
  }

  .ml-service-detail,
  .ml-service-detail--reverse {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .ml-service-detail__img,
  .ml-service-detail--reverse .ml-service-detail__img {
    grid-column: 2;
    grid-row: auto;
  }

  .ml-service-detail__num::after {
    width: 38px;
  }

  .ml-service-detail--reverse .ml-service-detail__body {
    grid-column: 2;
  }

  .ml-service-flow__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin-top: 34px;
  }

  .ml-service-flow__list::before {
    content: none;
  }

  .ml-service-flow__list li::before {
    content: "";
    position: absolute;
    top: 30px;
    left: clamp(22px, 2.4vw, 34px);
    width: 34px;
    height: 2px;
    border-top: 0;
    background: var(--ml-accent);
  }

  .ml-service-flow__list li::after {
    content: none;
  }

  .ml-service-flow__list li:nth-child(2),
  .ml-service-flow__list li:last-child {
    border-right: 0;
  }

  .ml-service-flow__list li:nth-child(-n+2) {
    border-bottom: 1px solid #b9c7c5;
  }

  .ml-contact-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .ml-contact-aside {
    min-height: 0;
  }

  .ml-contact-aside img {
    width: min(68vw, 500px);
  }

  .ml-recruit-hero,
  .ml-recruit-intro,
  .ml-recruit-details {
    grid-template-columns: 1fr;
  }

  .ml-recruit-hero {
    min-height: 0;
    padding-top: 110px;
    gap: 34px;
    background: linear-gradient(180deg, #fff 0%, #fff 45%, #f4fbfa 45.2%, #edf8f7 100%);
  }

  .ml-recruit-hero__content {
    max-width: 760px;
  }

  .ml-recruit-hero__map {
    min-height: 430px;
  }

  .ml-recruit-hero__visual {
    min-height: 470px;
    margin-right: 0;
  }

  .ml-recruit-hero__visual img {
    right: 50%;
    width: min(106vw, 900px);
    transform: translate(50%, -50%);
  }

  .ml-recruit-map {
    top: 0;
    right: 50%;
    width: min(92vw, 760px);
    height: 430px;
    transform: translateX(50%) rotate(-4deg);
  }

  .ml-recruit-map__facility {
    width: 160px;
    height: 108px;
  }

  .ml-recruit-map__facility--lab {
    width: 180px;
    height: 118px;
  }

  .ml-recruit-map__facility--hub {
    width: 205px;
    height: 130px;
  }

  .ml-recruit-job-row,
  .ml-recruit-number-grid,
  .ml-recruit-flow__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ml-recruit-feature__list article,
  .ml-recruit-feature__list article:nth-child(2) {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .ml-recruit-feature__list article:nth-child(2) .ml-recruit-feature__text,
  .ml-recruit-feature__list article:nth-child(2) .ml-recruit-feature__img {
    grid-column: auto;
    grid-row: auto;
  }

  .ml-recruit-flow__list li:nth-child(2) {
    border-right: 0;
  }

  .ml-recruit-flow__list li:nth-child(-n+2) {
    border-bottom: 1px solid #dbe7e5;
  }
}

@media (max-width: 767px) {
  .ml-sub-header__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 20px;
  }

  .ml-sub-nav ul {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .ml-contact-page .ml-sub-header {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    z-index: 60;
    width: 76px;
    background: transparent;
    border-bottom: 0;
  }

  .ml-contact-page .ml-sub-header__inner {
    display: block;
    width: 76px;
    min-height: 70px;
    padding: 15px 0 0 14px;
  }

  .ml-contact-page .ml-sub-header__logo {
    display: none;
  }

  .ml-contact-page .ml-sub-nav-toggle {
    display: flex;
  }

  .ml-contact-page .ml-sub-nav {
    display: none;
    position: absolute;
    top: 62px;
    left: 12px;
    width: 190px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 32px rgba(31, 127, 122, 0.16);
  }

  .ml-contact-page .ml-sub-nav.ml-nav--open {
    display: block;
  }

  .ml-contact-page .ml-sub-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .ml-contact-page .ml-sub-nav a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #e6e6e6;
  }

  .ml-sub-hero,
  .ml-sub-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .ml-sub-grid {
    grid-template-columns: 1fr;
  }

  .ml-sub-actions .ml-btn {
    width: 100%;
  }

  .ml-contact-section {
    padding-top: 40px;
    padding-bottom: 56px;
    background: #fff;
  }

  .ml-contact-page .ml-sub-hero,
  .ml-service-page .ml-sub-hero,
  .ml-recruit-page .ml-sub-hero {
    padding-top: 96px;
    padding-bottom: 42px;
  }

  .ml-contact-page .ml-sub-hero__label,
  .ml-service-page .ml-sub-hero__label,
  .ml-recruit-page .ml-sub-hero__label {
    font-size: 18px;
  }

  .ml-contact-page .ml-sub-hero h1,
  .ml-service-page .ml-sub-hero h1,
  .ml-recruit-page .ml-sub-hero h1 {
    font-size: 36px;
  }

  .ml-contact-page .ml-sub-hero p:not(.ml-sub-hero__label),
  .ml-service-page .ml-sub-hero p:not(.ml-sub-hero__label),
  .ml-recruit-page .ml-sub-hero p:not(.ml-sub-hero__label),
  .ml-mvv__value-desc,
  .ml-service-lead__text h2,
  .ml-service-lead__text p,
  .ml-service-lead__text li,
  .ml-service-detail-head h2,
  .ml-service-flow__head h2,
  .ml-service-quality__title h2,
  .ml-contact-aside h2,
  .ml-contact-aside p {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .ml-service-lead {
    gap: 30px;
    padding-top: 42px;
    padding-bottom: 34px;
    background: linear-gradient(150deg, var(--ml-main) 0%, var(--ml-main) 78%, #edf8f7 78.2%, #fff 100%);
  }

  .ml-service-lead,
  .ml-service-lead__text,
  .ml-service-lead__visual,
  .ml-contact-aside,
  .ml-contact-aside > *,
  .ml-service-detail-head,
  .ml-service-flow__head,
  .ml-service-quality__title {
    min-width: 0;
    max-width: 100%;
  }

  .ml-service-lead__text h2,
  .ml-service-lead__text p,
  .ml-service-lead__text li,
  .ml-service-detail-head h2,
  .ml-contact-aside h2,
  .ml-contact-aside p,
  .ml-mvv__value-desc {
    width: min(100%, calc(100vw - 40px));
  }

  .ml-contact-page .ml-sub-hero p:not(.ml-sub-hero__label),
  .ml-service-page .ml-sub-hero p:not(.ml-sub-hero__label),
  .ml-recruit-page .ml-sub-hero p:not(.ml-sub-hero__label),
  .ml-mvv__value-desc,
  .ml-service-lead__text h2,
  .ml-service-lead__text p,
  .ml-service-lead__text li,
  .ml-service-detail-head h2,
  .ml-service-flow__head h2,
  .ml-service-quality__title h2 {
    max-width: 330px;
  }

  .ml-contact-aside h2,
  .ml-contact-aside p,
  .ml-contact-meta {
    max-width: 305px;
  }

  .ml-service-lead__text h2,
  .ml-service-detail-head h2,
  .ml-service-flow__head h2,
  .ml-service-quality__title h2 {
    font-size: 26px;
    line-height: 1.55;
  }

  .ml-service-lead__text p {
    font-size: 15px;
  }

  .ml-service-lead__text ul {
    margin-top: 24px;
  }

  .ml-service-lead__visual {
    min-height: 240px;
  }

  .ml-service-lead__visual img {
    width: min(86%, 320px);
  }

  .ml-service-detail-section {
    padding-top: 52px;
  }

  .ml-service-detail-head {
    margin-bottom: 24px;
  }

  .ml-service-detail-list {
    gap: 0;
  }

  .ml-service-detail,
  .ml-service-detail--reverse {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 0;
  }

  .ml-service-detail--reverse .ml-service-detail__body,
  .ml-service-detail__img,
  .ml-service-detail--reverse .ml-service-detail__img {
    grid-column: auto;
    grid-row: auto;
  }

  .ml-service-detail__num {
    font-size: 44px;
  }

  .ml-service-detail__num {
    width: 68px;
    height: 68px;
    font-size: 22px;
  }

  .ml-service-detail__num::after {
    content: none;
  }

  .ml-service-detail__body h3 {
    font-size: 24px;
  }

  .ml-service-detail__img {
    min-height: 220px;
  }

  .ml-service-detail__img img {
    width: min(84%, 300px);
  }

  .ml-service-flow__head {
    margin-bottom: 28px;
  }

  .ml-service-flow__list {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 24px;
  }

  .ml-service-flow__list::before {
    content: none;
  }

  .ml-service-flow__list li,
  .ml-service-flow__list li:nth-child(2) {
    min-height: 0;
    padding: 24px 0 24px 72px;
    border-right: 0;
    border-bottom: 1px solid #b9c7c5;
    text-align: left;
  }

  .ml-service-flow__list li::before,
  .ml-service-flow__list li::after {
    content: none;
  }

  .ml-service-flow__list span {
    position: absolute;
    top: 24px;
    left: 0;
    margin: 0;
    font-size: 32px;
  }

  .ml-service-flow__list li:last-child {
    border-bottom: 0;
  }

  .ml-service-flow__list h3 {
    margin-top: 0;
    font-size: 21px;
  }

  .ml-service-quality {
    gap: 28px;
    padding-top: 0;
    padding-bottom: 0;
    background: #fff;
  }

  .ml-service-quality__title {
    padding: 42px 20px 0;
  }

  .ml-service-quality__visual {
    min-height: 250px;
    margin: 22px auto -12px;
  }

  .ml-service-quality__visual img {
    width: min(100%, 390px);
  }

  .ml-service-quality__grid dl {
    grid-template-columns: 1fr;
  }

  .ml-service-quality__grid div {
    grid-template-columns: 58px 1fr;
    gap: 16px 18px;
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
  }

  .ml-service-quality__grid div::before {
    font-size: 32px;
  }

  .ml-service-quality__grid div::after {
    left: 44px;
  }

  .ml-service-quality__grid dt {
    font-size: 18px;
  }

  .ml-service-quality__grid dd {
    grid-column: 2;
  }

  .ml-contact-layout {
    gap: 32px;
  }

  .ml-contact-aside {
    min-height: 0;
    padding: 32px 24px 0;
  }

  .ml-contact-aside h2 {
    font-size: 23px;
    line-height: 1.62;
  }

  .ml-contact-aside img {
    width: min(82%, 300px);
    max-width: 100%;
    margin: 20px auto 0;
  }

  .ml-contact-form {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 0;
  }

  .ml-recruit-hero {
    padding: 92px 20px 52px;
    gap: 24px;
  }

  .ml-recruit-hero::after {
    right: -0.24em;
    bottom: auto;
    top: 120px;
    font-size: 120px;
  }

  .ml-recruit-hero__content h1 {
    font-size: 34px;
    line-height: 1.42;
  }

  .ml-recruit-hero__content > p:not(.ml-recruit-hero__eyebrow) {
    font-size: 14px;
    line-height: 1.9;
  }

  .ml-recruit-hero__actions {
    gap: 12px;
    margin-top: 28px;
  }

  .ml-recruit-hero__actions .ml-btn {
    width: 100%;
    font-size: 17px;
  }

  .ml-recruit-hero__map {
    min-height: 300px;
  }

  .ml-recruit-hero__visual {
    min-height: 315px;
  }

  .ml-recruit-hero__visual::before {
    inset: 28px 0;
  }

  .ml-recruit-hero__visual img {
    right: 50%;
    width: 720px;
    transform: translate(50%, -50%);
  }

  .ml-recruit-map {
    width: 560px;
    height: 330px;
    transform: translateX(50%) scale(0.78) rotate(-4deg);
    transform-origin: top center;
  }

  .ml-recruit-intro,
  .ml-recruit-jobs,
  .ml-recruit-feature,
  .ml-recruit-numbers,
  .ml-recruit-details,
  .ml-recruit-flow,
  .ml-recruit-entry {
    padding-right: 20px;
    padding-left: 20px;
  }

  .ml-recruit-intro {
    gap: 48px;
    padding-top: 64px;
    padding-bottom: 70px;
  }

  .ml-recruit-circle {
    width: min(100%, 320px);
    min-width: 0;
  }

  .ml-recruit-circle__item {
    width: 78px;
    height: 78px;
    font-size: 11px;
  }

  .ml-recruit-circle__item--two {
    right: -4px;
  }

  .ml-recruit-circle__item--three {
    bottom: -22px;
  }

  .ml-recruit-circle__item--four {
    left: -6px;
  }

  .ml-recruit-intro__text h3,
  .ml-recruit-section-title h2,
  .ml-recruit-feature__head h2,
  .ml-recruit-details__text h2,
  .ml-recruit-entry h2 {
    font-size: 26px;
    line-height: 1.55;
  }

  .ml-recruit-jobs {
    padding-top: 72px;
    padding-bottom: 76px;
  }

  .ml-recruit-job-row,
  .ml-recruit-problem__grid,
  .ml-recruit-number-grid,
  .ml-recruit-flow__list {
    grid-template-columns: 1fr;
  }

  .ml-recruit-job-card {
    min-height: 0;
  }

  .ml-recruit-problem {
    margin-top: 44px;
  }

  .ml-recruit-feature {
    padding-top: 70px;
    padding-bottom: 74px;
  }

  .ml-recruit-feature__list article {
    padding: 28px 0;
  }

  .ml-recruit-feature__img {
    min-height: 240px;
  }

  .ml-recruit-feature__img img {
    width: min(82%, 300px);
  }

  .ml-recruit-numbers,
  .ml-recruit-details,
  .ml-recruit-flow {
    padding-top: 68px;
    padding-bottom: 70px;
  }

  .ml-recruit-detail-table div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 20px 0;
  }

  .ml-recruit-flow__list li,
  .ml-recruit-flow__list li:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #dbe7e5;
  }

  .ml-recruit-flow__list li:last-child {
    border-bottom: 0;
  }

  .ml-recruit-entry {
    padding-top: 62px;
    padding-bottom: 66px;
  }
}

/* Recruit page: align spacing and typography with the top page rules */
.ml-recruit-page {
  --ml-letter: 1.8px;
}

.ml-recruit-intro,
.ml-recruit-jobs,
.ml-recruit-feature,
.ml-recruit-numbers,
.ml-recruit-details,
.ml-recruit-flow,
.ml-recruit-entry {
  padding: 50px var(--ml-page-pad);
}

.ml-recruit-jobs::before,
.ml-recruit-feature::before {
  content: none;
}

.ml-recruit-section-title,
.ml-recruit-feature__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  max-width: none;
  margin: 0 0 30px;
  text-align: left;
}

.ml-recruit-section-title p,
.ml-recruit-feature__head .ml-recruit-kicker,
.ml-recruit-details__text .ml-recruit-kicker,
.ml-recruit-entry > p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ml-main);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: var(--ml-letter);
  text-transform: none;
}

.ml-recruit-section-title p::after,
.ml-recruit-feature__head .ml-recruit-kicker::after,
.ml-recruit-details__text .ml-recruit-kicker::after {
  content: "";
  display: block;
  width: 75px;
  height: 2px;
  background: var(--ml-main);
}

.ml-recruit-section-title h2,
.ml-recruit-feature__head h2,
.ml-recruit-details__text h2,
.ml-recruit-entry h2 {
  margin-top: 0;
  color: #000;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: var(--ml-letter);
}

.ml-recruit-intro {
  gap: 30px;
}

.ml-recruit-intro__text .ml-section-head {
  margin-bottom: 30px;
}

.ml-recruit-intro__text h3,
.ml-recruit-feature__text h3 {
  color: #000;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: var(--ml-letter);
}

.ml-recruit-intro__text p,
.ml-recruit-job-card p,
.ml-recruit-problem__grid p,
.ml-recruit-feature__text p,
.ml-recruit-details__text p:not(.ml-recruit-kicker),
.ml-recruit-detail-table dd,
.ml-recruit-flow__list p {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: var(--ml-letter);
}

.ml-recruit-job-row,
.ml-recruit-feature__list {
  gap: 30px;
}

.ml-recruit-job-card {
  min-height: 240px;
  padding: 30px;
}

.ml-recruit-job-card h3,
.ml-recruit-problem__grid h3,
.ml-recruit-flow__list h3 {
  color: #000;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: var(--ml-letter);
}

.ml-recruit-feature__list article {
  min-height: 0;
  padding: 30px 0;
}

.ml-recruit-feature__img {
  min-height: 300px;
}

.ml-recruit-numbers {
  background: var(--ml-bg-soft);
}

.ml-recruit-number-grid div {
  min-height: 180px;
  padding: 30px;
}

.ml-recruit-number-grid span {
  font-size: 36px;
  letter-spacing: var(--ml-letter);
}

.ml-recruit-number-grid p {
  color: #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: var(--ml-letter);
}

.ml-recruit-details {
  gap: 30px;
}

.ml-recruit-detail-table div {
  padding: 20px 0;
}

.ml-recruit-detail-table dt {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: var(--ml-letter);
}

.ml-recruit-flow__list li {
  min-height: 200px;
  padding: 30px;
}

.ml-recruit-entry {
  text-align: left;
}

.ml-recruit-entry h2 {
  max-width: 820px;
  margin-right: 0;
  margin-left: 0;
}

.ml-recruit-entry__tags {
  justify-content: flex-start;
  margin-right: 0;
  margin-left: 0;
}

@media (max-width: 767px) {
  .ml-recruit-intro,
  .ml-recruit-jobs,
  .ml-recruit-feature,
  .ml-recruit-numbers,
  .ml-recruit-details,
  .ml-recruit-flow,
  .ml-recruit-entry {
    padding: 40px 20px;
  }

  .ml-recruit-section-title,
  .ml-recruit-feature__head {
    gap: 6px;
    margin-bottom: 24px;
  }

  .ml-recruit-section-title p,
  .ml-recruit-feature__head .ml-recruit-kicker,
  .ml-recruit-details__text .ml-recruit-kicker,
  .ml-recruit-entry > p {
    font-size: 16px;
    line-height: 1.7;
  }

  .ml-recruit-section-title h2,
  .ml-recruit-feature__head h2,
  .ml-recruit-details__text h2,
  .ml-recruit-entry h2 {
    font-size: 28px;
    line-height: 1.25;
  }

  .ml-recruit-intro__text h3,
  .ml-recruit-feature__text h3 {
    font-size: 24px;
    line-height: 1.45;
  }

  .ml-recruit-job-card h3,
  .ml-recruit-problem__grid h3,
  .ml-recruit-flow__list h3 {
    font-size: 21px;
  }

  .ml-recruit-feature__list article {
    padding: 24px 0;
  }

  .ml-recruit-feature__img {
    min-height: 220px;
  }

  .ml-recruit-flow__list li,
  .ml-recruit-flow__list li:nth-child(2) {
    padding: 24px 0 24px 72px;
  }
}

/* Recruit data and requirements redesign */
.ml-recruit-data-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  align-items: stretch;
  gap: 34px;
  overflow: hidden;
  min-height: 360px;
  padding: 48px 52px 52px;
  border: 1px solid rgba(31, 127, 122, 0.16);
  background:
    radial-gradient(circle at 16% 18%, rgba(31, 127, 122, 0.12) 0 2px, transparent 3px),
    radial-gradient(circle at 58% 30%, rgba(242, 92, 28, 0.22) 0 2px, transparent 3px),
    linear-gradient(90deg, rgba(31, 127, 122, 0.045) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(180deg, #fff 0%, #f6fbfa 55%, #eef8f7 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.76),
    0 30px 90px rgba(31, 127, 122, 0.08);
}

.ml-recruit-data-panel::before {
  content: "";
  position: absolute;
  inset: 42px 58px auto auto;
  width: min(46vw, 720px);
  height: 196px;
  border-top: 2px dashed rgba(31, 127, 122, 0.24);
  border-right: 2px dashed rgba(31, 127, 122, 0.18);
  transform: skewX(-14deg);
  pointer-events: none;
}

.ml-recruit-data-panel::after {
  content: "";
  position: absolute;
  right: 50px;
  bottom: 36px;
  width: 180px;
  height: 86px;
  background:
    linear-gradient(90deg, transparent 0 24px, rgba(31, 127, 122, 0.1) 24px 26px, transparent 26px 54px, rgba(31, 127, 122, 0.1) 54px 56px, transparent 56px),
    linear-gradient(180deg, rgba(31, 127, 122, 0.16), rgba(31, 127, 122, 0.04));
  clip-path: polygon(0 38%, 18% 38%, 18% 18%, 62% 18%, 62% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.32;
  pointer-events: none;
}

.ml-recruit-data-panel .ml-recruit-section-title {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding-right: 12px;
}

.ml-recruit-data-panel .ml-recruit-section-title h2 {
  max-width: 8.8em;
}

.ml-recruit-data-panel .ml-recruit-number-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-self: center;
  gap: 0;
  min-height: 246px;
  overflow: hidden;
  border: 1px solid rgba(31, 127, 122, 0.18);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 80px rgba(31, 127, 122, 0.11);
}

.ml-recruit-number-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: auto;
  padding: 38px 26px 34px;
  overflow: hidden;
  border: 0;
  border-left: 1px solid rgba(31, 127, 122, 0.13);
  background: transparent;
  text-align: center;
  box-shadow: none;
}

.ml-recruit-number-card:first-child {
  border-left: 0;
}

.ml-recruit-number-card::before {
  content: "01";
  position: absolute;
  top: 22px;
  right: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(31, 127, 122, 0.2);
  background: linear-gradient(135deg, rgba(31, 127, 122, 0.08), rgba(255, 255, 255, 0));
  color: rgba(31, 127, 122, 0.55);
  font-family: 'Bebas Neue', var(--ml-font);
  font-size: 18px;
  letter-spacing: 1px;
}

.ml-recruit-number-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -44px;
  width: 136px;
  height: 136px;
  border: 1px solid rgba(31, 127, 122, 0.1);
  border-radius: 50%;
}

.ml-recruit-number-card--team::before {
  content: "02";
}

.ml-recruit-number-card--year::before {
  content: "03";
}

.ml-recruit-number-card--area::before {
  content: "04";
}

.ml-recruit-number-card span {
  position: relative;
  z-index: 1;
  color: var(--ml-main);
  font-family: 'Bebas Neue', var(--ml-font);
  font-size: 70px;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 1.8px;
}

.ml-recruit-number-card small {
  position: relative;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  margin-top: 14px;
  color: rgba(31, 127, 122, 0.62);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.ml-recruit-number-card p {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

.ml-recruit-number-card--year span {
  color: var(--ml-main);
}

.ml-recruit-number-card--area span {
  color: var(--ml-accent);
  font-family: var(--ml-font);
  font-size: 48px;
  font-weight: 800;
}

.ml-recruit-details {
  position: relative;
  align-items: start;
  column-gap: clamp(58px, 7vw, 116px);
}

.ml-recruit-details__text {
  position: sticky;
  top: 118px;
  padding-top: 18px;
}

.ml-recruit-detail-table {
  position: relative;
  gap: 0;
  padding: 22px 36px 14px 42px;
  border: 1px solid rgba(31, 127, 122, 0.16);
  background:
    linear-gradient(180deg, rgba(31, 127, 122, 0.04) 0 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(90deg, rgba(31, 127, 122, 0.05) 0 1px, transparent 1px) 0 0 / 28px 28px,
    #fff;
  box-shadow:
    -24px 38px 80px rgba(31, 127, 122, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
}

.ml-recruit-detail-table::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--ml-main), var(--ml-accent));
}

.ml-recruit-detail-table .ml-recruit-detail-row {
  position: relative;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 42px;
  min-height: 92px;
  padding: 30px 0 30px 58px;
}

.ml-recruit-detail-row::before {
  position: absolute;
  top: 28px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(31, 127, 122, 0.24);
  background: #f4fbfa;
  color: var(--ml-main);
  font-family: 'Bebas Neue', var(--ml-font);
  font-size: 18px;
  line-height: 1;
}

.ml-recruit-detail-row:nth-child(1)::before {
  content: "01";
}

.ml-recruit-detail-row:nth-child(2)::before {
  content: "02";
}

.ml-recruit-detail-row:nth-child(3)::before {
  content: "03";
}

.ml-recruit-detail-row:nth-child(4)::before {
  content: "04";
}

.ml-recruit-detail-table dt {
  color: var(--ml-main);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.9;
}

.ml-recruit-detail-table dd {
  color: #000;
  font-size: 14px;
  line-height: 2;
}

@media (max-width: 1199px) {
  .ml-recruit-data-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .ml-recruit-data-panel .ml-recruit-section-title {
    display: block;
    min-height: 0;
  }

  .ml-recruit-data-panel .ml-recruit-section-title h2 {
    max-width: none;
  }

  .ml-recruit-data-panel .ml-recruit-number-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ml-recruit-details__text {
    position: static;
  }
}

@media (max-width: 767px) {
  .ml-recruit-data-panel {
    gap: 24px;
    padding: 24px 20px;
  }

  .ml-recruit-data-panel::before,
  .ml-recruit-data-panel::after {
    opacity: 0.45;
  }

  .ml-recruit-data-panel .ml-recruit-number-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .ml-recruit-number-card {
    min-height: 168px;
    padding: 24px;
    border: 1px solid rgba(31, 127, 122, 0.16);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 48px rgba(31, 127, 122, 0.08);
  }

  .ml-recruit-number-card span {
    font-size: 48px;
  }

  .ml-recruit-number-card--area span {
    font-size: 36px;
  }

  .ml-recruit-detail-table {
    padding: 4px 22px;
  }

  .ml-recruit-detail-table .ml-recruit-detail-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0 24px 48px;
  }

  .ml-recruit-detail-row::before {
    top: 24px;
  }
}

/* Recruit data and requirements: image mockup alignment */
.ml-recruit-numbers {
  position: relative;
  overflow: hidden;
  padding-top: 58px;
  padding-bottom: 48px;
  background:
    linear-gradient(180deg, rgba(247, 252, 251, 0.96) 0%, rgba(238, 248, 247, 0.92) 100%);
}

.ml-recruit-numbers::before {
  content: "";
  position: absolute;
  inset: -72px -70px auto auto;
  width: min(58vw, 980px);
  height: 330px;
  background: url("assets/img/recruit-hero.png") right top / cover no-repeat;
  opacity: 0.72;
  pointer-events: none;
}

.ml-recruit-numbers::after {
  content: "";
  position: absolute;
  top: 42px;
  right: 42%;
  width: 260px;
  height: 120px;
  background:
    radial-gradient(circle, rgba(31, 127, 122, 0.22) 0 2px, transparent 3px) 0 0 / 16px 16px;
  opacity: 0.38;
  mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
  pointer-events: none;
}

.ml-recruit-data-panel {
  display: block;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.ml-recruit-data-panel::before,
.ml-recruit-data-panel::after {
  content: none;
}

.ml-recruit-data-panel .ml-recruit-section-title {
  display: block;
  min-height: 0;
  max-width: none;
  margin-bottom: 32px;
  padding: 0;
}

.ml-recruit-data-panel .ml-recruit-section-title h2 {
  max-width: none;
}

.ml-recruit-data-panel .ml-recruit-number-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  min-height: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.ml-recruit-number-card {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  grid-template-areas:
    "icon number"
    "icon label";
  align-items: center;
  min-height: 150px;
  padding: 30px 34px;
  border: 1px solid rgba(31, 127, 122, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88));
  text-align: left;
  box-shadow:
    0 26px 70px rgba(31, 127, 122, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(3px);
}

.ml-recruit-number-card:first-child {
  border-left: 1px solid rgba(31, 127, 122, 0.11);
}

.ml-recruit-number-card::before,
.ml-recruit-number-card::after {
  content: none;
}

.ml-recruit-card-icon {
  grid-area: icon;
  display: block;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(31, 127, 122, 0.12);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(243, 250, 249, 0.9));
  box-shadow:
    0 14px 34px rgba(31, 127, 122, 0.1),
    inset 0 0 0 8px rgba(31, 127, 122, 0.035);
}

.ml-recruit-card-icon::before,
.ml-recruit-detail-icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--ml-main);
  mask: var(--ml-icon) center / 32px 32px no-repeat;
}

.ml-recruit-card-icon--time,
.ml-recruit-detail-icon--time {
  --ml-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
}

.ml-recruit-card-icon--team,
.ml-recruit-detail-icon--role {
  --ml-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 20v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='10' cy='7' r='4'/%3E%3Cpath d='M20 20v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M17 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
}

.ml-recruit-card-icon--year,
.ml-recruit-detail-icon--welcome {
  --ml-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 2v4M16 2v4M3 10h18'/%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M8 14h.01M12 14h.01M16 14h.01M8 18h.01M12 18h.01'/%3E%3C/svg%3E");
}

.ml-recruit-card-icon--area,
.ml-recruit-detail-icon--place {
  --ml-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 12-8 12S4 15 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

.ml-recruit-number-card span {
  grid-area: number;
  color: var(--ml-main);
  font-size: 66px;
  line-height: 0.92;
}

.ml-recruit-number-card small {
  display: none;
}

.ml-recruit-number-card p {
  grid-area: label;
  margin-top: 12px;
  color: #101d1c;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}

.ml-recruit-number-card--area span {
  color: var(--ml-main);
  font-size: 44px;
}

.ml-recruit-details {
  grid-template-columns: minmax(300px, 410px) minmax(0, 1fr);
  column-gap: clamp(50px, 6vw, 96px);
  padding-top: 58px;
  padding-bottom: 58px;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(180deg, #fff 0%, #fbfdfd 100%);
}

.ml-recruit-details__text {
  position: relative;
  top: auto;
  padding-top: 16px;
}

.ml-recruit-details__text h2 {
  position: relative;
  margin-bottom: 32px;
}

.ml-recruit-details__text h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 136px;
  height: 3px;
  background: var(--ml-main);
}

.ml-recruit-details__visual {
  position: relative;
  min-height: 250px;
  margin-top: 44px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 70%, rgba(31, 127, 122, 0.08), transparent 64%),
    linear-gradient(180deg, rgba(246, 252, 251, 0.8), rgba(255, 255, 255, 0));
}

.ml-recruit-details__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/img/recruit-hero.png") 38% 76% / 660px auto no-repeat;
  opacity: 0.82;
  filter: saturate(0.96);
  mask-image: radial-gradient(ellipse at 50% 70%, #000 0 54%, transparent 76%);
}

.ml-recruit-details__visual::after {
  content: "";
  position: absolute;
  inset: auto 22px 12px 18px;
  height: 80px;
  border-bottom: 2px dashed rgba(31, 127, 122, 0.32);
  border-left: 2px dashed rgba(31, 127, 122, 0.22);
  border-radius: 0 0 0 42px;
  opacity: 0.62;
  transform: skewX(-14deg);
}

.ml-recruit-detail-table {
  display: grid;
  gap: 0;
  padding: 30px 44px;
  border: 1px solid rgba(31, 127, 122, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 28px 80px rgba(31, 127, 122, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.ml-recruit-detail-table::before {
  content: none;
}

.ml-recruit-detail-table .ml-recruit-detail-row {
  display: grid;
  grid-template-columns: 72px 190px minmax(0, 1fr);
  align-items: center;
  gap: 26px;
  min-height: 104px;
  padding: 20px 0;
  border-bottom: 1px dashed rgba(31, 127, 122, 0.2);
}

.ml-recruit-detail-table .ml-recruit-detail-row:last-child {
  border-bottom: 0;
}

.ml-recruit-detail-row::before {
  content: none !important;
}

.ml-recruit-detail-icon {
  display: block;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(31, 127, 122, 0.12);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 250, 249, 0.95));
  box-shadow:
    0 13px 32px rgba(31, 127, 122, 0.08),
    inset 0 0 0 8px rgba(31, 127, 122, 0.03);
}

.ml-recruit-detail-icon::before {
  mask-size: 28px 28px;
}

.ml-recruit-detail-table dt {
  position: relative;
  color: var(--ml-main);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.7;
}

.ml-recruit-detail-table dt::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -14px;
  width: 1px;
  height: 42px;
  background: rgba(31, 127, 122, 0.18);
  transform: translateY(-50%);
}

.ml-recruit-detail-table dd {
  color: #101d1c;
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
}

@media (max-width: 1199px) {
  .ml-recruit-numbers::before {
    width: 740px;
    opacity: 0.48;
  }

  .ml-recruit-data-panel .ml-recruit-number-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ml-recruit-details {
    grid-template-columns: 1fr;
  }

  .ml-recruit-details__visual {
    display: none;
  }

  .ml-recruit-detail-table .ml-recruit-detail-row {
    grid-template-columns: 66px 160px minmax(0, 1fr);
  }
}

@media (max-width: 767px) {
  .ml-recruit-numbers {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .ml-recruit-numbers::before {
    inset: -28px -210px auto auto;
    width: 620px;
    height: 240px;
    opacity: 0.34;
  }

  .ml-recruit-numbers::after {
    display: none;
  }

  .ml-recruit-data-panel .ml-recruit-section-title {
    margin-bottom: 24px;
  }

  .ml-recruit-data-panel .ml-recruit-number-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ml-recruit-number-card {
    grid-template-columns: 64px minmax(0, 1fr);
    min-height: 128px;
    padding: 24px;
  }

  .ml-recruit-card-icon {
    width: 54px;
    height: 54px;
  }

  .ml-recruit-number-card span {
    font-size: 52px;
  }

  .ml-recruit-number-card--area span {
    font-size: 36px;
  }

  .ml-recruit-details {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .ml-recruit-detail-table {
    padding: 20px;
  }

  .ml-recruit-detail-table .ml-recruit-detail-row {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 22px 0;
  }

  .ml-recruit-detail-icon {
    width: 48px;
    height: 48px;
  }

  .ml-recruit-detail-table dt::after {
    content: none;
  }

  .ml-recruit-detail-table dd {
    grid-column: 2;
  }
}

/* Recruit entry color rebalance */
.ml-recruit-entry {
  position: relative;
  overflow: hidden;
  padding-top: 74px;
  padding-bottom: 78px;
  background:
    radial-gradient(circle at 16% 28%, rgba(255, 255, 255, 0.22), transparent 34%),
    linear-gradient(105deg, rgba(17, 64, 61, 0.96) 0%, rgba(20, 95, 90, 0.88) 46%, rgba(237, 248, 247, 0.82) 100%);
  color: #fff;
  isolation: isolate;
}

.ml-recruit-entry::before {
  content: "";
  position: absolute;
  inset: -110px -120px -130px auto;
  width: min(64vw, 980px);
  background: url("assets/img/recruit-hero.png") right center / cover no-repeat;
  opacity: 0.34;
  filter: saturate(0.9);
  mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 78%, transparent 100%);
  pointer-events: none;
  z-index: -2;
}

.ml-recruit-entry::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 36, 34, 0.68) 0%, rgba(8, 36, 34, 0.48) 42%, rgba(8, 36, 34, 0.12) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: -1;
}

.ml-recruit-entry > p {
  color: rgba(198, 239, 235, 0.96);
}

.ml-recruit-entry h2 {
  max-width: 760px;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.18);
  text-wrap: wrap;
}

.ml-recruit-entry h2 .ml-nowrap {
  white-space: nowrap;
}

.ml-recruit-entry__tags span {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.ml-recruit-entry .ml-btn--orange {
  background: linear-gradient(135deg, #f25c1c 0%, #e94f14 100%);
  color: #fff;
  box-shadow: 0 18px 42px rgba(242, 92, 28, 0.26);
}

.ml-recruit-entry .ml-btn--orange:hover {
  box-shadow: 0 22px 52px rgba(242, 92, 28, 0.34);
}

@media (max-width: 767px) {
  .ml-recruit-entry {
    padding-top: 52px;
    padding-bottom: 56px;
    background:
      linear-gradient(180deg, rgba(12, 54, 51, 0.96) 0%, rgba(18, 88, 83, 0.92) 100%);
  }

  .ml-recruit-entry::before {
    inset: auto -220px -120px auto;
    width: 680px;
    height: 340px;
    opacity: 0.2;
  }
}

@media (min-width: 1200px) {
  .ml-hero__image {
    top: -28px;
    height: calc(clamp(620px, 32.3vw, 760px) + 28px);
  }

  .ml-hero__image img {
    object-position: center top;
  }
}

@media (min-width: 1200px) and (max-width: 1919px) {
  .ml-hero__image {
    height: 648px;
  }
}

