/* ==========================================================================
   特定技能 / Human work — Corporate Landing Page
   Design width: 1440px | Content max-width: 1200px
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Reset / Base / Container
   -------------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --main: #005eaa;
  --lightblue: #3f9ce8;
  --yellow: #f6d851;
  --text: #051214;
  --purple: #657dc4;
  --light-bluegray: #f4f7f9;
  --lightblue-light: #e3f1fd;
  --bluegray-deep: #95a6b4;
  --white: #fdfeff;

  --font-base: 'Noto Sans JP', 'Lato', sans-serif;
  --font-en: 'Lato', 'Noto Sans JP', sans-serif;

  --container-max: 1200px;
  --container-padding: 120px;
  --section-padding-y: 80px;
  --section-padding-y-sm: 60px;
  --header-height: 80px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;

  --shadow-sm: 0 2px 8px rgba(5, 18, 20, 0.06);
  --shadow-md: 0 4px 20px rgba(5, 18, 20, 0.08);
  --shadow-lg: 0 8px 32px rgba(5, 18, 20, 0.1);

  --transition: 0.25s ease;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-base);
  font-weight: 400;
  line-height: 1.8;
  color: var(--text);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

a:hover {
  opacity: 0.8;
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.4;
}

.container {
  width: 100%;
  max-width: calc(var(--container-max) + var(--container-padding) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.section {
  padding-block: var(--section-padding-y);
}

/* --------------------------------------------------------------------------
   20. Button Utilities
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: background-color var(--transition), color var(--transition),
    border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn:hover {
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn:active {
  transform: translateY(0);
}

.btn--yellow {
  background-color: var(--yellow);
  color: var(--text);
  border-color: var(--yellow);
}

.btn--yellow .btn__icon {
  transition: transform var(--transition);
}

.btn--yellow:hover {
  background-color: var(--white);
  border-color: var(--yellow);
  color: var(--text);
}

.btn--yellow:hover .btn__icon {
  transform: translateX(4px);
}

.btn--yellow:hover .btn__icon--down {
  transform: translateX(4px) rotate(90deg);
}

.btn--outline {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--outline:hover {
  background-color: rgba(253, 254, 255, 0.12);
}

.btn--outline.btn--dark {
  color: var(--main);
  border-color: var(--main);
}

.btn--outline.btn--dark:hover {
  background-color: var(--lightblue-light);
}

.btn--main {
  background-color: var(--main);
  color: var(--white);
  border-color: var(--main);
}

.btn--main:hover {
  background-color: #004d8c;
  border-color: #004d8c;
}

.btn--circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  background-color: var(--yellow);
  color: var(--text);
  flex-shrink: 0;
}

.btn--circle svg,
.btn--circle .btn__icon {
  width: 20px;
  height: 20px;
}

.btn--lg {
  padding: 18px 48px;
  font-size: 1rem;
}

.btn__icon {
  display: inline-flex;
  flex-shrink: 0;
}

.btn__icon:empty {
  position: relative;
  align-items: center;
  width: 15px;
  height: 15px;
}

.btn__icon:empty::before {
  content: '';
  position: absolute;
  left: 1px;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: currentColor;
}

.btn__icon:empty::after {
  content: '';
  position: absolute;
  right: 1px;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.btn__icon--down:empty {
  transform: rotate(90deg);
}

.btn__icon--download {
  width: 31px;
  height: 26px;
}

.btn__icon--download img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* --------------------------------------------------------------------------
   6. Section Title
   -------------------------------------------------------------------------- */

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title__en {
  display: block;
  font-family: var(--font-en);
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 48px;
  text-transform: uppercase;
  color: var(--main);
  margin-bottom: 8px;
}

.section-title__line {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--main);
  margin: 0 auto 9px;
  border-radius: var(--radius-pill);
}

.section-title__jp {
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 0;
  line-height: 1.4;
}

.section-title__subtitle {
  display: block;
  margin-top: 16px;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.8;
}

.section-title--white .section-title__en {
  color: var(--yellow);
}

.section-title--white .section-title__line {
  background-color: var(--yellow);
}

.section-title--white .section-title__jp {
  color: var(--white);
}

.section-title--white .section-title__subtitle {
  color: rgba(253, 254, 255, 0.8);
}

.section-title--left {
  text-align: left;
}

.section-title--left .section-title__line {
  margin-inline: 0;
}

/* --------------------------------------------------------------------------
   2. Header
   -------------------------------------------------------------------------- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
}

.header__logo {
  flex-shrink: 0;
}

.header__logo img {
  height: 40px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 1;
  min-width: 0;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: nowrap;
}

.header__nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.04em;
  position: relative;
  padding-block: 4px;
  white-space: nowrap;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--main);
  transform: translateX(-50%);
  transition: width var(--transition);
}

.header__nav-link:hover {
  opacity: 1;
  color: var(--main);
}

.header__nav-link:hover::after {
  width: 100%;
}

.header__cta {
  flex-shrink: 0;
}

.header__cta .btn {
  padding: 10px 24px;
  font-size: 0.8125rem;
}

.header__lang {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
}

.header__lang-btn {
  padding: 6px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bluegray-deep);
  border-radius: var(--radius-sm);
  transition: background-color var(--transition), color var(--transition);
}

.header__lang-btn.is-active,
.header__lang-btn:hover {
  background-color: var(--lightblue-light);
  color: var(--main);
}

.header__nav-logo {
  display: none;
}

.header__menu-toggle {
  display: none;
  position: relative;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  padding: 4px;
  z-index: 1003;
}

.header__menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text);
  border-radius: var(--radius-pill);
  transition: transform 0.5s, opacity 0.5s, background-color 0.5s, top 0.5s, bottom 0.5s;
}

.header__mask {
  display: none;
}

/* --------------------------------------------------------------------------
   3. Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 100px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--lightblue-light) 0%, var(--white) 50%, var(--light-bluegray) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(180deg, rgba(63, 156, 232, 0.08) 0%, rgba(0, 94, 170, 0.04) 100%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 560px;
}

.hero__label {
  display: inline-block;
  padding: 6px 16px;
  margin-bottom: 20px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--main);
  background-color: var(--white);
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
}

.hero__title {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.hero__title span {
  color: var(--main);
}

.hero__text {
  font-size: 1rem;
  line-height: 2;
  color: var(--bluegray-deep);
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__visual {
  position: relative;
}

.hero__image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 94, 170, 0.15) 100%);
  pointer-events: none;
}

.hero__stats {
  display: flex;
  gap: 24px;
  margin-top: -40px;
  padding-inline: 40px;
  position: relative;
  z-index: 2;
}

.hero__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 140px;
  height: 140px;
  background-color: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  padding: 20px;
}

.hero__stat-value {
  font-family: var(--font-en);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--main);
  line-height: 1.2;
}

.hero__stat-unit {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--main);
}

.hero__stat-label {
  font-size: 0.75rem;
  color: var(--bluegray-deep);
  margin-top: 4px;
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   4. Trust Bar
   -------------------------------------------------------------------------- */

.trust-bar {
  background-color: var(--white);
  border-block: 1px solid #c9d0d5;
  padding-block: 18px;
}

.trust-bar .container {
  max-width: none;
  padding-inline: 0;
}

.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  min-height: 64px;
}

.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.trust-bar__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 52px;
  background-color: #aeb8bf;
}

.trust-bar__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  color: var(--main);
}

.trust-bar__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.trust-bar__label {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--main);
  margin-bottom: 2px;
}

.trust-bar__value {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   5. About
   -------------------------------------------------------------------------- */

.about {
  position: relative;
  min-height: 648px;
  padding-block: 108px;
  overflow: hidden;
  background-color: var(--white);
}

.about__content {
  position: relative;
  z-index: 1;
  max-width: 580px;
}

.about__text {
  font-size: 1.125rem;
  line-height: 2;
  color: var(--text);
  margin-bottom: 48px;
}

.about__text:last-child {
  margin-bottom: 0;
}

.about > .container {
  position: relative;
  z-index: 1;
}

.about__visual {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 52.4%;
  min-height: 648px;
  pointer-events: none;
}

.about__map-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: left center;
}

/* --------------------------------------------------------------------------
   7. Problem
   -------------------------------------------------------------------------- */

.problem {
  --problem-transition-height: min(6.8056vw, 196px);
  position: relative;
  padding-block: var(--section-padding-y);
  margin-bottom: var(--problem-transition-height);
  background-color: var(--light-bluegray);
}

.problem::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: var(--problem-transition-height);
  background: var(--main) url('../images/top/problem-img.webp') center / 100% 100% no-repeat;
  pointer-events: none;
}

.problem__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 32px);
  container-type: inline-size;
  /* badgeがカード上端から半分はみ出す分を確保し、見出しとの見た目余白を他セクションと同じ48pxに揃える */
  padding-top: calc(2.307 * 1.538 * 0.5 * clamp(11px, 1.833cqi, 22px));
}

.problem__card {
  /* 親幅1200px時に22px。幅に合わせて全体が比例縮小 */
  font-size: clamp(11px, 1.833cqi, 22px);
  position: relative;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.545em 1.6em 1.455em;
  box-shadow: var(--shadow-sm);
}

.problem__badge {
  /* Figma: 78px円 / 33.829px（カード基準22pxに対する比率） */
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.307em;
  height: 2.307em;
  background-color: var(--main);
  color: var(--white);
  font-family: var(--font-en);
  font-size: 1.538em;
  font-weight: 400;
  line-height: 1;
  border-radius: 50%;
}

.problem__card > img {
  display: block;
  margin: 1.09em auto 0.91em;
  width: auto;
  height: 4.545em;
  max-width: 70%;
  object-fit: contain;
}

.problem__card-title {
  font-size: 0.9em;
  font-weight: 700;
  color: var(--main);
  margin-bottom: 0.727em;
  padding-top: 0.364em;
  line-height: 1.636;
}

.problem__card-text {
  font-size: 0.795em;
  line-height: 1.9;
  color: var(--bluegray-deep);
}

/* --------------------------------------------------------------------------
   8. Strength
   -------------------------------------------------------------------------- */

.strength {
  padding-block: var(--section-padding-y);
  background-color: var(--main);
}

.strength__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 32px);
  container-type: inline-size;
}

.strength__card {
  /* 親幅1200px時に24px。幅に合わせて全体が比例縮小 */
  font-size: clamp(11px, 2cqi, 24px);
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.667em 1.667em;
  display: flex;
  flex-direction: column;
  gap: 0.833em;
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
}

.strength__card > img {
  width: auto;
  height: 6.667em;
  max-width: 80%;
  object-fit: contain;
}

.strength__card:hover {
  opacity: 1;
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.strength__card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.667em;
}

.strength__card-title {
  font-size: 1em;
  font-weight: 700;
  color: var(--main);
  line-height: 1.5;
}

.strength__card-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.667em;
  height: 1.667em;
  background-color: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--text);
}

.strength__card-text {
  font-size: 0.75em;
  line-height: 1.9;
  color: var(--bluegray-deep);
}

/* --------------------------------------------------------------------------
   9. India Talent
   -------------------------------------------------------------------------- */

.india-talent {
  padding-block: var(--section-padding-y);
  background-color: var(--white);
}

.india-talent__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.india-talent__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.india-talent__card-header {
  padding: 32px 40px;
  color: var(--white);
}

.india-talent__card-header--blue {
  background-color: var(--main);
}

.india-talent__card-header--purple {
  background-color: var(--purple);
}

.india-talent__card-title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.india-talent__card-subtitle {
  font-size: 0.875rem;
  opacity: 0.85;
}

.india-talent__card-body {
  flex: 1;
  padding: 40px;
  background-color: var(--white);
}

.india-talent__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.india-talent__list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.india-talent__check {
  position: relative;
  display: inline-block;
  width: 23px;
  height: 23px;
  background-color: var(--lightblue);
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}

.india-talent__check::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 45%;
  width: 6px;
  height: 10px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: translate(-50%, -55%) rotate(45deg);
  border-radius: 1px;
}

.india-talent__list--purple .india-talent__check {
  background-color: var(--purple);
}

/* --------------------------------------------------------------------------
   10. Benefits
   -------------------------------------------------------------------------- */

.benefits {
  padding-block: var(--section-padding-y);
  background-color: var(--white);
}

.benefits__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(15px, 2vw, 32px);
  margin-bottom: 60px;
  container-type: inline-size;
}

.benefits__card {
  /* 親幅1200px時に24px。幅に合わせて全体が比例縮小 */
  font-size: clamp(11px, 2cqi, 24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.667em;
  min-height: 0;
  padding: 1.667em;
  background-color: var(--light-bluegray);
  border: 1px solid var(--lightblue);
  border-radius: 5px;
  text-align: center;
  box-sizing: border-box;
  transition: box-shadow var(--transition);
}

.benefits__card:hover {
  box-shadow: var(--shadow-sm);
}

.benefits__card-icon {
  margin: 0;
  color: var(--main);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 5.542em;
  width: 100%;
}

.benefits__card-icon img {
  display: block;
  max-height: 6.708em;
  width: auto;
  max-width: 100%;
  height: auto;
}

.benefits__card-title {
  font-size: 1em;
  font-weight: 700;
  color: var(--main);
  margin-bottom: 0.667em;
  line-height: 1.5;
}

.benefits__card-text {
  font-size: 0.75em;
  line-height: 1.778;
  color: var(--bluegray-deep);
}

.benefits__cta {
  text-align: center;
}

/* --------------------------------------------------------------------------
   11. About Skill
   -------------------------------------------------------------------------- */

.about-skill {
  padding-block: var(--section-padding-y);
  background-color: var(--white);
}

.about-skill__types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 25px;
}

.about-skill__type-card {
  border: 2px solid var(--lightblue-light);
  border-radius: 5px;
  padding: 40px;
}

.about-skill__type-label {
  display: inline-block;
  padding: 4px 16px;
  margin-bottom: 16px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  background-color: var(--main);
  border-radius: var(--radius-pill);
}

.about-skill__type-card:nth-child(2) .about-skill__type-label {
  background-color: var(--purple);
}

.about-skill__type-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.about-skill__type-text {
  font-size: 0.875rem;
  line-height: 1.9;
  color: var(--bluegray-deep);
}

.about-skill__flow {
  margin-bottom: 48px;
}

.about-skill__flow-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
}

.about-skill__flow-step {
  flex: 1;
  position: relative;
  text-align: center;
  padding: 24px 16px;
}

.about-skill__flow-step::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 50%;
  width: 100%;
  height: 3px;
  background-color: var(--lightblue-light);
  z-index: 0;
}

.about-skill__flow-step:last-child::before {
  display: none;
}

.about-skill__flow-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  background-color: var(--main);
  color: var(--white);
  font-family: var(--font-en);
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-sm);
}

.about-skill__flow-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--main);
  line-height: 1.5;
}

.about-skill__cta {
  text-align: center;
}

/* --------------------------------------------------------------------------
   12. CTA Banner
   -------------------------------------------------------------------------- */

.cta-banner {
  position: relative;
  padding-block: 80px;
  background: linear-gradient(135deg, var(--main) 0%, var(--lightblue) 100%);
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(253, 254, 255, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(253, 254, 255, 0.04) 0%, transparent 40%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 20px,
      rgba(253, 254, 255, 0.03) 20px,
      rgba(253, 254, 255, 0.03) 21px
    );
  pointer-events: none;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-banner__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}

.cta-banner__text {
  font-size: 1rem;
  color: rgba(253, 254, 255, 0.85);
  margin-bottom: 40px;
  line-height: 1.8;
}

.cta-banner__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-banner__actions .btn {
  padding: 18px 56px;
  font-size: 1rem;
}

.cta-banner__actions .btn--yellow {
  color: var(--text);
}

/* --------------------------------------------------------------------------
   13. Service
   -------------------------------------------------------------------------- */

.service {
  padding-block: var(--section-padding-y);
  background-color: var(--white);
}

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

.service__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.service__card-header {
  background-color: var(--main);
  color: var(--white);
  padding: 24px 28px;
}

.service__card-title {
  font-size: 1.125rem;
  font-weight: 700;
}

.service__card-body {
  flex: 1;
  padding: 28px;
  background-color: var(--white);
}

.service__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.service__grid-item {
  font-size: 0.8125rem;
  line-height: 1.6;
  padding: 12px;
  background-color: var(--light-bluegray);
  border-radius: var(--radius-sm);
  text-align: center;
}

.service__highlight {
  padding: 16px;
  background-color: var(--lightblue-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--main);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   14. Flow
   -------------------------------------------------------------------------- */

.flow {
  padding-block: var(--section-padding-y);
  background-color: var(--main);
}

.flow__steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 16px);
  margin-bottom: 48px;
  position: relative;
}

.flow__step {
  position: relative;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.flow__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  background-color: var(--yellow);
  color: var(--text);
  font-family: var(--font-en);
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 50%;
}

.flow__step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--main);
  margin-bottom: 12px;
}

.flow__step-text {
  font-size: 0.8125rem;
  line-height: 1.8;
  color: var(--bluegray-deep);
}

.flow__timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  padding-inline: 40px;
}

.flow__timeline-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
}

.flow__timeline-item::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: rgba(253, 254, 255, 0.3);
}

.flow__timeline-item:last-child::before {
  display: none;
}

.flow__timeline-dot {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  background-color: var(--yellow);
  border: 3px solid var(--main);
  border-radius: 50%;
  margin-bottom: 12px;
}

.flow__timeline-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}

.flow__cta {
  text-align: center;
  margin-top: 40px;
}

/* --------------------------------------------------------------------------
   15. FAQ
   -------------------------------------------------------------------------- */

.faq {
  padding-block: var(--section-padding-y);
  background-color: var(--lightblue-light);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1000px;
  margin-inline: auto;
}

.faq__item {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: none;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 28px 36px 20px;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: background-color var(--transition);
}

.faq__question:hover {
  background-color: transparent;
}

.faq__question-label {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
  line-height: 1.6;
}

.faq__q-mark {
  display: block;
  width: 1.75rem;
  height: auto;
  background: none;
  color: var(--main);
  font-family: var(--font-en);
  font-size: 1.75rem;
  font-weight: 700;
  border-radius: 0;
  flex-shrink: 0;
  line-height: 1.2;
  text-align: center;
}

.faq__icon {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  background: none;
  flex-shrink: 0;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--main);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq__icon::before {
  width: 24px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq__icon::after {
  width: 2px;
  height: 24px;
  transform: translate(-50%, -50%);
}

.faq__icon img {
  display: none;
}

.faq__item.is-open .faq__icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--text);
}

.faq__item.is-open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__answer-inner {
  overflow: hidden;
  min-height: 0;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 0 36px;
  padding-bottom: 0;
  transition: padding-bottom 0.35s ease;
}

.faq__item.is-open .faq__answer-inner {
  padding-bottom: 28px;
}

.faq__a-mark {
  display: block;
  width: 1.75rem;
  height: auto;
  background: none;
  color: var(--bluegray-deep);
  font-family: var(--font-en);
  font-size: 1.75rem;
  font-weight: 700;
  border-radius: 0;
  margin-right: 0;
  flex-shrink: 0;
  line-height: 1.2;
  text-align: center;
}

/* --------------------------------------------------------------------------
   16. News
   -------------------------------------------------------------------------- */

.news {
  padding-block: var(--section-padding-y);
  background-color: var(--white);
}

.news__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--light-bluegray);
}

.news__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--light-bluegray);
  transition: background-color var(--transition);
}

.news__item:hover {
  background-color: var(--light-bluegray);
  padding-inline: 16px;
  margin-inline: -16px;
  border-radius: var(--radius-sm);
}

.news__date {
  font-family: var(--font-en);
  font-size: 0.875rem;
  color: var(--bluegray-deep);
  flex-shrink: 0;
  min-width: 100px;
}

.news__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 7em;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  box-sizing: border-box;
  flex-shrink: 0;
  text-align: center;
}

.news__badge--info {
  background-color: var(--lightblue-light);
  color: var(--main);
}

.news__badge--press {
  background-color: var(--yellow);
  color: var(--text);
}

.news__badge--notice {
  background-color: var(--light-bluegray);
  color: var(--bluegray-deep);
}

.news__title {
  flex: 1;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.6;
}

.news__arrow {
  flex-shrink: 0;
  color: var(--main);
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
}

.news__item:hover .news__arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   17. Contact
   -------------------------------------------------------------------------- */

.contact {
  padding-block: var(--section-padding-y);
  background-color: var(--light-bluegray);
}

.section-title--contact .section-title__line {
  display: none;
}

.section-title--contact .section-title__en {
  font-size: 36px;
  line-height: 48px;
  letter-spacing: 0;
  margin-bottom: 0;
  text-transform: none;
}

.section-title--contact .section-title__jp {
  font-size: 36px;
  line-height: 48px;
  margin-top: 0;
}

.contact__lead {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  color: #222;
  text-align: center;
}

.contact__form {
  max-width: 1200px;
  margin-inline: auto;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.contact__field {
  margin-bottom: 32px;
}

.contact__field:last-of-type {
  margin-bottom: 48px;
}

.contact__label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.contact__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 24px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  background-color: var(--lightblue);
  border-radius: 45px;
}

.contact__optional {
  display: none;
}

.contact__input,
.contact__textarea,
.contact__select {
  width: 100%;
  padding: 18px 20px;
  font-size: 1rem;
  background-color: var(--white);
  border: 1px solid rgba(149, 166, 180, 0.3);
  border-radius: 5px;
  transition: border-color var(--transition), background-color var(--transition);
}

.contact__input:focus,
.contact__textarea:focus,
.contact__select:focus {
  background-color: var(--white);
  border-color: var(--lightblue);
}

.contact__textarea {
  min-height: 160px;
  resize: vertical;
}

.contact__radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.contact__radio {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.contact__radio input[type='radio'] {
  appearance: none;
  width: 28px;
  height: 28px;
  border: 2px solid var(--bluegray-deep);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: border-color var(--transition);
  background: var(--white);
}

.contact__radio input[type='radio']:checked {
  border-color: var(--main);
}

.contact__radio input[type='radio']:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background-color: var(--main);
  border-radius: 50%;
}

.contact__radio-label {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.contact__submit {
  text-align: center;
}

.contact__submit .btn {
  min-width: 226px;
  min-height: 70px;
  padding: 18px 50px 18px 50px;
  font-size: 22px;
  border-radius: 70px;
}

.contact__privacy {
  display: none;
}

/* Contact Form 7 */
.contact .wpcf7-form {
  max-width: 1200px;
  margin-inline: auto;
}

.contact .wpcf7-form-control-wrap {
  display: block;
}

.contact .wpcf7-not-valid-tip {
  margin-top: 8px;
  font-size: 14px;
  color: #c0392b;
}

.contact .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border: 1px solid rgba(149, 166, 180, 0.3);
  border-radius: 5px;
}

.contact .wpcf7 form.sent .wpcf7-response-output {
  color: var(--main);
  border-color: var(--main);
  background-color: rgba(0, 95, 171, 0.06);
}

.contact .wpcf7 form.invalid .wpcf7-response-output,
.contact .wpcf7 form.failed .wpcf7-response-output {
  color: #c0392b;
  border-color: #c0392b;
  background-color: rgba(192, 57, 43, 0.06);
}

.contact .wpcf7-spinner {
  display: none;
}

.contact__radio-group .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.contact__radio-group .wpcf7-list-item {
  margin: 0;
}

.contact__radio-group .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.contact__radio-group .wpcf7-list-item-label {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.contact__radio-group input[type='radio'] {
  appearance: none;
  width: 28px;
  height: 28px;
  border: 2px solid var(--bluegray-deep);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: border-color var(--transition);
  background: var(--white);
}

.contact__radio-group input[type='radio']:checked {
  border-color: var(--main);
}

.contact__radio-group input[type='radio']:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background-color: var(--main);
  border-radius: 50%;
}

.contact__notice {
  max-width: 1200px;
  margin-inline: auto;
  padding: 24px;
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
  color: var(--text);
  background-color: rgba(253, 219, 67, 0.25);
  border: 1px solid var(--yellow);
  border-radius: 5px;
}

/* --------------------------------------------------------------------------
   18. Phone Banner
   -------------------------------------------------------------------------- */

.phone-banner {
  background-color: var(--main);
  padding-block: 28px;
}

.phone-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
  flex-wrap: wrap;
}

.phone-banner__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.phone-banner__text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 31px;
  font-weight: 700;
  line-height: 36px;
  color: var(--white);
  letter-spacing: 0;
}

.phone-banner__icon {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
}

.phone-banner__hours {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.phone-banner__hours-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 7px;
  border: 1px solid var(--white);
  font-size: 18px;
  font-weight: 500;
}

.phone-banner__hours-value {
  font-size: 20px;
  font-weight: 500;
}

.phone-banner__divider {
  width: 2px;
  height: 76px;
  background: var(--white);
  flex-shrink: 0;
}

.phone-banner__number {
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.07em;
  line-height: 48px;
}

/* --------------------------------------------------------------------------
   19. Footer
   -------------------------------------------------------------------------- */

.footer {
  background-color: var(--white);
  color: var(--text);
  padding-top: 48px;
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr) minmax(0, 0.85fr);
  column-gap: 48px;
  align-items: start;
  padding-bottom: 48px;
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__head {
  display: flex;
  align-items: flex-end;
  min-height: 64px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(149, 166, 180, 0.5);
}

.footer__head--brand {
  min-height: 64px;
}

.footer__top {
  display: flex;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 0;
  padding-bottom: 0;
  width: 100%;
}

.footer__logos {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__logo img {
  height: 36px;
  width: auto;
  filter: none;
}

.footer__mega {
  height: 20px;
  width: auto;
  align-self: flex-end;
}

.footer__body--brand {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 32px;
}

.footer__brand {
  max-width: none;
}

.footer__desc {
  font-size: 14px;
  line-height: 28px;
  color: var(--text);
}

.footer__col-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0;
  letter-spacing: 0;
  text-align: left;
  position: relative;
  padding-bottom: 0;
  line-height: 1.4;
}

.footer__col-title::after {
  display: none;
}

.footer__col--service .footer__col-title {
  margin-bottom: 8px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer__links li {
  font-size: 14px;
  line-height: 28px;
  color: var(--text);
}

.footer__links:not(.footer__links--slash) .footer__link::before {
  content: 'ー';
  color: var(--bluegray-deep);
  margin-right: 4px;
}

.footer__link {
  font-size: 14px;
  color: var(--text);
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--main);
  opacity: 1;
}

.footer__links--slash li {
  line-height: 28px;
}

.footer__bottom {
  background: var(--bluegray-deep);
  border-top: none;
  padding-block: 12px;
}

.footer__bottom-inner {
  display: block;
}

.footer__copyright {
  font-size: 14px;
  line-height: 28px;
  color: var(--white);
  text-align: center;
}

.footer__legal {
  display: none;
}

.footer__legal-link {
  font-size: 0.75rem;
  color: rgba(253, 254, 255, 0.45);
  transition: color var(--transition);
}

.footer__legal-link:hover {
  color: var(--white);
  opacity: 1;
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */

.u-text-center {
  text-align: center;
}

.u-text-main {
  color: var(--main);
}

.u-bg-light {
  background-color: var(--light-bluegray);
}

.u-mt-lg {
  margin-top: 48px;
}

.u-mb-lg {
  margin-bottom: 48px;
}

/* --------------------------------------------------------------------------
   Responsive — 1380px (Header — English)
   -------------------------------------------------------------------------- */

@media (min-width: 1201px) and (max-width: 1380px) {
  body.is-english.is-menu-open {
    overflow: hidden;
  }

  body.is-english.is-menu-open .header {
    background-color: transparent;
    box-shadow: none;
  }

  body.is-english .header__nav {
    display: block;
    position: fixed;
    top: 0;
    left: -300px;
    bottom: 0;
    width: 300px;
    background-color: var(--white);
    padding: 25px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: left 0.5s, opacity 0.5s, visibility 0.5s;
    z-index: 1002;
    gap: 0;
  }

  body.is-english .header__nav.is-open {
    left: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.is-english .header__nav-logo {
    display: block;
    margin-bottom: 24px;
  }

  body.is-english .header__nav-logo img {
    height: 40px;
    width: auto;
  }

  body.is-english .header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  body.is-english .header__nav-list > li {
    border-bottom: 1px solid var(--text);
  }

  body.is-english .header__nav-list > li:first-child {
    border-top: 1px solid var(--text);
  }

  body.is-english .header__nav-link {
    display: block;
    padding: 1em;
    color: var(--text);
    font-size: 0.875rem;
    white-space: normal;
    transition: background-color 0.2s;
  }

  body.is-english .header__nav-link::after {
    display: none;
  }

  body.is-english .header__nav-link:hover,
  body.is-english .header__nav-link.is-current {
    background-color: var(--light-bluegray);
    color: var(--text);
  }

  body.is-english .header__cta {
    margin-top: 24px;
  }

  body.is-english .header__cta .btn {
    width: 100%;
    justify-content: center;
  }

  body.is-english .header__lang {
    margin-left: 0;
    margin-top: 16px;
    justify-content: center;
  }

  body.is-english .header__menu-toggle {
    display: block;
    position: relative;
    gap: 0;
  }

  body.is-english .header__menu-toggle span {
    position: absolute;
    left: 1px;
    width: 30px;
    height: 2px;
    border-radius: 4px;
  }

  body.is-english .header__menu-toggle span:nth-child(1) {
    top: 5px;
  }

  body.is-english .header__menu-toggle span:nth-child(2) {
    top: 15px;
  }

  body.is-english .header__menu-toggle span:nth-child(3) {
    top: 25px;
  }

  body.is-english.is-menu-open .header__menu-toggle span {
    background-color: #fff;
  }

  body.is-english.is-menu-open .header__menu-toggle span:nth-child(1) {
    transform: translateY(10px) rotate(-315deg);
  }

  body.is-english.is-menu-open .header__menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.is-english.is-menu-open .header__menu-toggle span:nth-child(3) {
    transform: translateY(-10px) rotate(315deg);
  }

  body.is-english .header__mask {
    display: none;
  }

  body.is-english .header__mask.is-visible {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.8;
    z-index: 1001;
    cursor: pointer;
  }
}

/* --------------------------------------------------------------------------
   Responsive — 1200px (Header)
   -------------------------------------------------------------------------- */

@media (max-width: 1200px) {
  /* Header — 左からスライドするドロワー + オーバーレイ（Sample02準拠） */
  body.is-menu-open {
    overflow: hidden;
  }

  body.is-menu-open .header {
    background-color: transparent;
    box-shadow: none;
  }

  .header__nav {
    display: block;
    position: fixed;
    top: 0;
    left: -300px;
    bottom: 0;
    width: 300px;
    background-color: var(--white);
    padding: 25px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: left 0.5s, opacity 0.5s, visibility 0.5s;
    z-index: 1002;
    gap: 0;
  }

  .header__nav.is-open {
    left: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header__nav-logo {
    display: block;
    margin-bottom: 24px;
  }

  .header__nav-logo img {
    height: 40px;
    width: auto;
  }

  .header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .header__nav-list > li {
    border-bottom: 1px solid var(--text);
  }

  .header__nav-list > li:first-child {
    border-top: 1px solid var(--text);
  }

  .header__nav-link {
    display: block;
    padding: 1em;
    color: var(--text);
    font-size: 0.875rem;
    white-space: normal;
    transition: background-color 0.2s;
  }

  .header__nav-link::after {
    display: none;
  }

  .header__nav-link:hover,
  .header__nav-link.is-current {
    background-color: var(--light-bluegray);
    color: var(--text);
  }

  .header__cta {
    margin-top: 24px;
  }

  .header__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .header__lang {
    margin-left: 0;
    margin-top: 16px;
    justify-content: center;
  }

  .header__menu-toggle {
    display: block;
    position: relative;
    gap: 0;
  }

  .header__menu-toggle span {
    position: absolute;
    left: 1px;
    width: 30px;
    height: 2px;
    border-radius: 4px;
  }

  .header__menu-toggle span:nth-child(1) {
    top: 5px;
  }

  .header__menu-toggle span:nth-child(2) {
    top: 15px;
  }

  .header__menu-toggle span:nth-child(3) {
    top: 25px;
  }

  body.is-menu-open .header__menu-toggle span {
    background-color: #fff;
  }

  body.is-menu-open .header__menu-toggle span:nth-child(1) {
    transform: translateY(10px) rotate(-315deg);
  }

  body.is-menu-open .header__menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.is-menu-open .header__menu-toggle span:nth-child(3) {
    transform: translateY(-10px) rotate(315deg);
  }

  .header__mask {
    display: none;
  }

  .header__mask.is-visible {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.8;
    z-index: 1001;
    cursor: pointer;
  }
}

@media (max-width: 767px) {
  .header__nav {
    left: -280px;
    width: 280px;
  }

  .header__nav.is-open {
    left: 0;
  }
}

/* --------------------------------------------------------------------------
   Responsive — 1100px
   -------------------------------------------------------------------------- */

@media (max-width: 1100px) {
  :root {
    --container-padding: 60px;
    --section-padding-y: 60px;
  }

  .hero__inner {
    gap: 40px;
  }

  .problem__cards,
  .strength__cards,
  .benefits__cards,
  .service__cards {
    gap: 24px;
  }

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

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;
    row-gap: 12px;
  }

  .footer__column--brand {
    grid-column: 1 / -1;
  }

  .footer__head {
    min-height: 0;
  }
}

/* --------------------------------------------------------------------------
   Responsive — 768px
   -------------------------------------------------------------------------- */

@media (max-width: 768px) {
  :root {
    --container-padding: 24px;
    --section-padding-y: 48px;
    --section-padding-y-sm: 40px;
  }

  .section-title__en {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 6px;
  }

  .section-title__jp {
    font-size: 1.5rem;
  }

  .section-title {
    margin-bottom: 32px;
  }

  /* Trust Bar */
  .trust-bar {
    padding-bottom: 0;
  }

  .trust-bar__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    min-height: auto;
    border-top: 1px solid #c9d0d5;
  }

  .trust-bar__item {
    padding: 16px 12px;
    border-radius: 0;
    box-shadow: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: transparent;
  }

  .trust-bar__item:not(:last-child)::after {
    display: none;
  }

  .trust-bar__item:nth-child(odd)::after {
    display: block;
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    transform: none;
    width: 1px;
    height: auto;
    background-color: #aeb8bf;
  }

  .trust-bar__item:nth-child(-n + 2) {
    border-bottom: 1px solid #aeb8bf;
  }

  .trust-bar__label,
  .trust-bar__value {
    text-align: center;
    width: 100%;
  }

  /* About */
  .about {
    min-height: 0;
    padding-top: var(--section-padding-y);
    padding-bottom: 0;
  }

  .about__content {
    max-width: 100%;
  }

  .about__text {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .about__visual {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: calc(100% + (var(--container-padding) * 2));
    height: auto;
    min-height: 0;
    margin-top: 32px;
    margin-inline: calc(var(--container-padding) * -1);
    pointer-events: auto;
  }

  .about__map-img {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
  }

  /* Problem */
  .problem__cards {
    grid-template-columns: 1fr;
    gap: 40px;
    /* カード font-size:16px 時の badge 半分かぶり分 */
    padding-top: calc(2.307 * 1.538 * 0.5 * 16px);
  }

  .problem__card {
    font-size: 16px;
    width: 330px;
    margin-inline: auto;
  }

  .problem__card-title {
    font-size: 1.25rem;
    line-height: 1.6;
  }

  /* Strength */
  .strength__cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .strength__card {
    font-size: 16px;
    width: 330px;
    margin-inline: auto;
    padding: 40px 32px 56px;
  }

  .strength__card > img {
    height: 140px;
  }

  .strength__card-title {
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .strength__card-text {
    font-size: 0.9375rem;
  }

  .strength__card-arrow {
    width: 50px;
    height: 50px;
    right: 16px;
    bottom: 16px;
  }

  /* India Talent */
  .india-talent__card-header {
    padding: 24px 28px;
  }

  .india-talent__card-body {
    padding: 28px;
  }

  .india-talent__desc {
    min-height: 0;
  }

  /* Benefits */
  .benefits__cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefits__card {
    font-size: 16px;
    width: 430px;
    margin-inline: auto;
    gap: 28px;
    padding: 32px 24px;
  }

  .benefits__card-top {
    gap: 16px;
  }

  .benefits__card-num {
    font-size: 48px;
  }

  .benefits__card-title {
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .benefits__card-icon {
    min-height: 100px;
  }

  .benefits__card-icon img {
    max-height: 140px;
  }

  .benefits__card-text {
    font-size: 1rem;
    line-height: 1.8;
    text-align: left;
  }

  /* About Skill */
  .about-skill__types {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-skill__flow {
    padding: 20px 12px 24px;
  }

  .about-skill__flow-heading {
    font-size: 1rem;
    margin-bottom: 16px;
  }

  .about-skill__flow-steps {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: clamp(12px, 2.5vw, 20px) clamp(20px, 4vw, 32px);
  }

  .about-skill__flow-step {
    flex: unset;
    grid-column: span 2;
  }

  /* 下段2つを中央寄せ */
  .about-skill__flow-step:nth-child(4) {
    grid-column: 2 / 4;
  }

  .about-skill__flow-step:nth-child(5) {
    grid-column: 4 / 6;
  }

  /* 行末の矢印は非表示 */
  .about-skill__flow-step:nth-child(3)::after {
    display: none;
  }

  .about-skill__flow-icon {
    margin-bottom: 8px;
  }

  /* CTA Banner */
  .cta-banner {
    padding-block: 48px;
  }

  .cta-banner__title {
    font-size: 1.5rem;
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-banner__actions .btn {
    width: 100%;
  }

  /* Service */
  .service__cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  /* Flow */
  .flow__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .flow__step {
    font-size: 14px;
    min-height: 0;
    padding: 1.5em 0.75em 1.5em;
  }

  .flow__step-number {
    font-size: 2.75em;
  }

  .flow__step-icon {
    width: 5.5em;
  }

  .flow__step-title {
    font-size: 1.25em;
  }

  .flow__step-title::before {
    width: 2em;
    margin-bottom: 0.75em;
  }

  .flow__duration {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .flow__duration-label {
    font-size: 20px;
  }

  .flow__duration-value {
    font-size: 28px;
  }

  .flow__duration-value em {
    font-size: 48px;
  }

  .flow__timeline {
    flex-direction: column;
    gap: 24px;
    padding-inline: 0;
  }

  .flow__timeline-item::before {
    display: none;
  }

  /* FAQ */
  .faq__question {
    padding: 20px 20px 16px;
    font-size: 1rem;
  }

  .faq__answer {
    font-size: 0.9375rem;
  }

  .faq__answer-inner {
    padding-inline: 20px;
  }

  .faq__item.is-open .faq__answer-inner {
    padding-bottom: 20px;
  }

  .faq__q-mark,
  .faq__a-mark {
    font-size: 1.5rem;
  }

  .faq__question-label,
  .faq__answer-inner {
    gap: 14px;
  }

  /* News */
  .news__item {
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .news__title {
    width: 100%;
    order: 3;
  }

  .news__arrow {
    display: none;
  }

  /* Contact */
  .section-title--contact .section-title__en,
  .section-title--contact .section-title__jp {
    font-size: 1.75rem;
    line-height: 1.4;
  }

  .contact__lead {
    font-size: 1rem;
    line-height: 1.7;
  }

  .contact__form {
    padding: 0;
  }

  .contact__label,
  .contact__radio-label {
    font-size: 1rem;
  }

  .contact__radio-group {
    flex-direction: column;
    gap: 12px;
  }

  .contact__radio-group .wpcf7-radio {
    flex-direction: column;
    gap: 12px;
  }

  .contact__submit .btn {
    width: 100%;
    min-width: auto;
  }

  /* Phone Banner */
  .phone-banner__inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .phone-banner__text {
    font-size: 1.5rem;
    justify-content: center;
  }

  .phone-banner__hours {
    flex-wrap: wrap;
    justify-content: center;
  }

  .phone-banner__divider {
    width: 80px;
    height: 2px;
  }

  .phone-banner__number {
    font-size: 1.75rem;
    letter-spacing: 0.04em;
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .footer__column {
    gap: 16px;
  }

  .footer__head {
    min-height: 0;
    margin-top: 0;
  }

  .footer__body {
    padding-top: 0;
  }

  .footer__body--brand {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer__top {
    flex-wrap: wrap;
  }

  .footer__col-title {
    text-align: left;
  }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__legal {
    flex-direction: column;
    gap: 8px;
  }
}

/* ==========================================================================
   Figma alignment patches
   ========================================================================== */

.hero {
  /* 1440px デザイン基準で MV 全体を流体スケール */
  font-size: clamp(11px, 1.1111vw, 16px);
  background-color: var(--white);
  background-image: none;
  /* Figma: header(80) + MV(770)。テキスト+バッジをMV内で上下中央配置 */
  min-height: calc(var(--header-height) + 100vw * 770 / 1440);
  padding-top: var(--header-height);
  padding-bottom: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url('../images/top/top-mv.png');
  background-repeat: no-repeat;
  background-position: right var(--header-height);
  background-size: 100% auto;
  opacity: 0;
}

.hero > .container {
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero::before {
  display: none;
}

.hero__inner {
  display: block;
  align-items: flex-start;
}

.hero__content {
  max-width: 35em; /* Figma: 560px @16px */
}

.hero__copy {
  opacity: 0;
  transform: translateY(24px);
}

.hero__label {
  display: block;
  padding: 0;
  background: none;
  color: var(--lightblue);
  font-size: 1.125em; /* 18px */
  font-weight: 700;
  /* Figma: label高22 / 下余白34（自身のem基準） */
  line-height: calc(22 / 18);
  letter-spacing: normal;
  margin-bottom: calc(34 / 18 * 1em);
}

/* PCは1行。SPで改行するため間にスペースを入れる */
.hero__label-ja::before {
  content: ' ';
}

.hero__title {
  font-size: 4em; /* 64px */
  line-height: calc(89 / 64); /* 89px */
  letter-spacing: normal;
  /* Figma: タイトル下〜本文上 = 34px（64px基準のem） */
  margin-bottom: calc(34 / 64 * 1em);
}

/* 英語はメインコピーが長くみっちりしやすいため縮小 */
.is-english .hero__title {
  font-size: 3.3em;
}

.hero__title span {
  color: inherit;
}

.hero__text {
  font-size: 1.25em; /* 20px */
  line-height: calc(36 / 20); /* 36px */
  color: var(--text);
  font-weight: 700;
  margin-bottom: 3em;
}

.hero__stats {
  display: flex;
  gap: 0.75em;
  margin-top: 0;
  padding-inline: 0;
  opacity: 0;
  transform: translateY(24px);
}

.hero.is-hero-animated .hero__bg {
  opacity: 1;
  transition: opacity 1s ease;
}

.hero.is-hero-animated .hero__copy {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease 0.35s, transform 0.8s ease 0.35s;
}

.hero.is-hero-animated .hero__stats {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease 0.75s, transform 0.8s ease 0.75s;
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg,
  .hero__copy,
  .hero__stats {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 12em;
  height: 12em;
  flex: 0 0 auto;
  border: 0;
  border-radius: 50%;
  background: url('../images/top/hero-stat-circle.png') center / cover no-repeat;
  box-shadow: none;
  padding: 0;
  gap: 0.6875em;
}

.hero__stat-label {
  font-family: var(--font-base);
  font-size: 1.125em;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  white-space: nowrap;
  margin: 0;
}

.hero__stat-value {
  font-family: var(--font-en);
  font-size: 2.25em;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
  margin: 0;
  white-space: nowrap;
}

.hero__stat-unit {
  font-family: var(--font-base);
  font-size: 0.4444em;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.is-english .hero__stat-label {
  white-space: normal;
  line-height: 1.15;
}

.is-english .hero__stat-value {
  white-space: normal;
  flex-direction: column;
  align-items: center;
  gap: 0.15em;
  line-height: 1;
}

.is-english .hero__stat-unit {
  display: block;
  font-size: 0.38em;
  line-height: 1.1;
}

.hero__image {
  border-radius: 0 0 0 80px;
  box-shadow: none;
  max-height: 770px;
}

.hero__image img {
  aspect-ratio: 1196 / 770;
}

.hero__image::after {
  background: linear-gradient(90deg, #fff 0%, transparent 35%);
}

.problem {
  background: var(--light-bluegray);
}

.problem__card {
  text-align: center;
  position: relative;
}

.problem__card-title {
  font-weight: 500;
}

.strength__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.667em 1.667em 3em;
  gap: 1em;
}

.strength__card-title {
  color: var(--main);
  text-align: center;
}

.strength__card-arrow {
  position: absolute;
  right: 0.667em;
  bottom: 0.667em;
  width: 2.083em;
  height: 2.083em;
  border-radius: 50%;
  background: var(--yellow);
  display: grid;
  place-items: center;
}

.india-talent__desc {
  font-size: 18px;
  line-height: 28px;
  margin: 24px 0;
  min-height: 200px; 
  color: var(--text);
}

.india-talent__list {
  background: var(--light-bluegray);
  border-radius: 5px;
  padding: 32px 54px;
  gap: 10px;
}

.india-talent__list--purple {
  background: #e8edfc;
}

.india-talent__list-item {
  align-items: flex-start;
  color: var(--lightblue);
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  gap: 19px;
}

.india-talent__list--purple .india-talent__list-item {
  color: var(--purple);
}

.india-talent__note {
  margin-top: 16px;
  font-size: 14px;
  color: #aaa;
}

.india-talent__card-header {
  padding: 22px 24px;
  text-align: center;
}

.india-talent__card-title {
  font-size: 24px;
  line-height: 36px;
}

.india-talent__card-subtitle {
  font-size: 15px;
  line-height: 36px;
  opacity: 0.95;
}

.india-talent__card-body img {
  width: 100%;
  border-radius: 5px;
  aspect-ratio: 513 / 353;
  object-fit: cover;
}

.benefits__card-num {
  font-family: var(--font-en);
  font-size: 2.667em;
  font-weight: 700;
  color: var(--lightblue);
  line-height: 1;
  text-align: center;
  margin: 0;
}

.benefits__card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.917em;
  width: 100%;
}

.benefits__card-title {
  margin: 0;
  color: var(--lightblue);
  font-weight: 700;
  text-align: center;
}

.is-english .benefits__card-title {
  min-height: 3.6em;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.25;
}

.benefits__card {
  border: 1px solid var(--lightblue);
  background: var(--light-bluegray);
}

.benefits__card-line {
  display: block;
  width: 3em;
  height: 0.125em;
  background: var(--lightblue);
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}

.benefits__card-text {
  margin: 0;
  width: 100%;
  max-width: 100%;
  color: var(--text);
  text-align: left;
}

.about-skill__type-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 12px;
}

.about-skill__type-title-wrap img {
  display: block;
  flex-shrink: 0;
  width: 16px;
  height: 38px;
}

.about-skill__type-title {
  margin: 0;
  color: var(--main);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.about-skill__type-text {
  text-align: center;
  font-size: 18px;
  line-height: 26px;
}

.about-skill__flow {
  background: var(--lightblue);
  border-radius: 5px;
  padding: 28px 40px 40px;
  margin-top: 32px;
}

.about-skill__flow-heading {
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.about-skill__flow-steps {
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(16px, 2.5vw, 28px);
}

.about-skill__flow-step::before {
  display: none;
}

.about-skill__flow-step {
  --flow-icon-size: min(143px, 90cqi);
  --flow-arrow-half: calc(var(--flow-icon-size) * 18 / 143);
  --flow-arrow-width: calc(var(--flow-icon-size) * 12 / 143);
  container-type: inline-size;
  position: relative;
  padding: 0;
}

.about-skill__flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: calc(var(--flow-icon-size) / 2);
  right: calc(var(--flow-arrow-width) * -1.833);
  width: 0;
  height: 0;
  border-top: var(--flow-arrow-half) solid transparent;
  border-bottom: var(--flow-arrow-half) solid transparent;
  border-left: var(--flow-arrow-width) solid #0b5ea9;
  transform: translateY(-50%);
}

.about-skill__flow-icon {
  position: relative;
  width: var(--flow-icon-size);
  aspect-ratio: 1;
  height: auto;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 50%;
}

.about-skill__flow-icon > img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 56%;
  max-height: 51%;
}

.about-skill__flow-label {
  color: #fff;
  font-size: clamp(12px, 5cqi, 18px);
  font-weight: 700;
  text-align: center;
}

.service__card {
  border: 1px solid var(--main);
  border-radius: 5px;
  overflow: visible;
  margin-top: 40px;
  background: #fff;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.service__cards {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.service__card-header {
  background: var(--main);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 15px;
  padding: 18px 30px;
  border-radius: 5px 5px 0 0;
  position: relative;
  min-height: 94px;
  box-sizing: border-box;
}

.service__card-icon {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--main);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: -48px;
  justify-self: end;
  align-self: start;
}

.service__card-icon img {
  width: 56px;
  height: auto;
  display: block;
}

.service__card-header-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  min-width: 0;
  justify-self: center;
  grid-column: 2;
}

.service__card-title {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  color: #fff;
}

.service__card-badge {
  display: inline-block;
  margin: 0;
  border: 1px solid #fff;
  padding: 3px 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  white-space: nowrap;
}

.service__more {
  justify-self: end;
  flex-shrink: 0;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  gap: 30px;
  padding: 12px 20px 12px 40px;
  min-height: auto;
}

.service__card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  padding: 40px 50px 48px;
  background: #fff;
  border-radius: 0 0 5px 5px;
  border-top: none;
}

.service__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 49px 22px;
  width: 100%;
  max-width: 1064px;
  margin: 0;
}

.service__grid-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
}

.service__num {
  font-family: var(--font-en);
  font-size: 38px;
  font-weight: 400;
  color: var(--lightblue);
  line-height: 1;
  flex-shrink: 0;
  min-width: 44px;
  text-align: center;
      margin-top: -6px;
}

.service__item-title {
  margin: 0 0 11px;
  font-size: 22px;
  font-weight: 700;
  line-height: 24px;
  color: #000;
}

.service__item-text {
  margin: 0;
  font-size: 14px;
  line-height: 24px;
  color: #000;
}

.service__highlight {
  display: grid;
  grid-template-columns: auto minmax(0, max-content);
  justify-content: center;
  align-content: center;
  align-items: start;
  column-gap: 12px;
  width: 100%;
  max-width: 1100px;
  min-height: 80px;
  margin: 0;
  padding: 10px 24px;
  background: var(--lightblue-light);
  font-size: 26px;
  font-weight: 700;
  line-height: 36px;
  color: var(--lightblue);
  border-radius: 0;
  border-left: none;
  box-sizing: border-box;
}

.service__check-icon {
  width: 26px;
  height: 27px;
  max-width: none;
  flex-shrink: 0;
  display: block;
  margin-top: calc((36px - 27px) / 2);
  object-fit: contain;
}

.service__highlight-text {
  min-width: 0;
  text-align: left;
}

.flow__steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 16px);
  margin-bottom: 40px;
  container-type: inline-size;
}

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

@media (max-width: 768px) {
  .flow__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.flow__step {
  /* 親幅1200px・6列時の基準。幅に合わせて全体が比例縮小 */
  font-size: clamp(8px, 1.333cqi, 16px);
  background: #fff;
  border-radius: 5px;
  padding: 1.688em 0.75em 1.75em;
  text-align: center;
  min-height: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.188em;
  box-sizing: border-box;
}

.flow__step-number {
  display: block;
  background: none;
  color: var(--lightblue);
  font-family: var(--font-en);
  font-size: 2.75em;
  font-weight: 900;
  width: auto;
  height: auto;
  margin: 0;
  line-height: 1;
}

.flow__step-icon {
  position: relative;
  width: 6.688em;
  aspect-ratio: 1;
  height: auto;
  margin: 0;
  display: grid;
  place-items: center;
  background: var(--lightblue-light);
  border-radius: 50%;
  flex-shrink: 0;
}

.flow__step-icon > img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 72%;
  max-height: 52%;
  height: auto;
}

.flow__step-icon > .flow__step-circle {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
}

.flow__step-icon > img:only-child {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
}

.flow__step-title {
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
}

.flow__step-title::before {
  content: '';
  display: block;
  width: 41px;
  height: 2px;
  background: var(--lightblue);
  margin: 0 auto 19px;
}

.flow__duration {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
  margin-top: 40px;
  padding-bottom: 20px;
}

.flow__duration::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #fff;
}

.flow__duration::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: -7px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 14px solid #fff;
}

.flow__duration-label {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 2px;
}

.flow__duration-value {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-size: 39px;
  font-weight: 700;
}

.flow__duration-value img {
  display: block;
  width: 34px;
  height: 34px;
  max-width: 34px;
  max-height: 34px;
  margin-top: 20px;
  flex: 0 0 34px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
}

.flow__duration-value em {
  font-style: normal;
  font-size: 70px;
  line-height: 1;
  position: relative;
  top: 4px;
}

.cta-banner {
  background-image: linear-gradient(117deg, var(--main) 4%, var(--purple) 102%);
  position: relative;
  overflow: hidden;
  padding-block: 56px;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/common/cta-pattern.png') center / auto 150% repeat-x;
  mix-blend-mode: multiply;
  opacity: 1;
  pointer-events: none;
}

.cta-banner__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.cta-banner__text {
  font-size: 1rem;
  color: rgba(253, 254, 255, 0.9);
  margin-bottom: 32px;
  line-height: 1.8;
}

.cta-banner__actions .btn--outline {
  background: #fff;
  border: 3px solid var(--yellow);
  color: var(--text);
}

.cta-banner__actions .btn--outline:hover {
  background-color: var(--yellow);
  border-color: var(--yellow);
  color: var(--text);
}

.cta-banner__actions .btn--yellow:hover .btn__icon {
  transform: none;
}

.cta-banner__actions .btn--yellow:hover .btn__icon--down {
  transform: rotate(90deg);
}

.cta-banner__actions .btn--lg {
  min-width: 360px;
  min-height: 72px;
  font-size: 20px;
  border-radius: 85px;
}

@media (max-width: 1100px) {
  .hero__bg {
    background-position: 72% var(--header-height);
  }

  .service__card-header {
    grid-template-columns: 1fr auto 1fr;
    column-gap: 12px;
    row-gap: 16px;
    padding: 16px 20px 20px;
  }

  .service__card-icon {
    width: 88px;
    height: 88px;
    margin-top: -36px;
  }

  .service__card-icon img {
    width: 44px;
  }

  .service__card-title {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .service__card-badge {
    white-space: normal;
    font-size: 0.75rem;
  }

  .service__more {
    grid-column: 1 / -1;
    justify-self: center;
    gap: 16px;
    padding: 10px 16px 10px 24px;
    font-size: 1rem;
  }

  .service__card-body {
    padding: 28px 20px 32px;
    gap: 28px;
  }

  .service__grid {
    gap: 28px 16px;
  }

  .service__highlight {
    min-height: 0;
    padding: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .service__check-icon {
    margin-top: max(0px, calc((1.5em - 27px) / 2));
  }
}

/* 1000px以下 — MV画像の縮小を止め、1000px時点のスケールで固定 */
@media (max-width: 1000px) {
  .hero {
    --hero-bg-h: 534.722px;
    font-size: 11.11px;
    min-height: calc(var(--header-height) + var(--hero-bg-h));
    padding-top: var(--header-height);
    padding-bottom: 0;
  }

  .hero__bg {
    background-size: 1000px auto;
    background-position: 72% var(--header-height);
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__text {
    margin-bottom: 2.5em;
  }

  .hero__stats {
    flex-wrap: nowrap;
    gap: 0.6em;
    width: 100%;
  }

  .hero__stat {
    width: 11em;
    height: 11em;
    flex: 1 1 0;
    min-width: 0;
    max-width: 11em;
  }

  /* India Talent */
  .india-talent__cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .india-talent__desc {
    min-height: 0;
  }
}

/* 英語：顔とテキストの重なりが早いため、スマホMV切替を900pxから */
@media (max-width: 900px) {
  .is-english .hero {
    --hero-img-h: calc(100vw * 2034 / 1640 * 1.22);
    --hero-fade-h: 14em;
    font-size: 10px;
    height: auto;
    min-height: calc(var(--hero-img-h) + var(--header-height));
    padding-top: var(--header-height);
    padding-bottom: calc(var(--hero-fade-h) * 0.35);
    margin-bottom: calc(var(--hero-fade-h) * -0.2);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: visible;
  }

  .is-english .hero__bg {
    background-image: url('../images/top/top_mv_sp.webp');
    background-position: center var(--header-height);
    background-size: auto var(--hero-img-h);
  }

  .is-english .hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--hero-fade-h);
    background: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(255, 255, 255, 0.35) 28%,
      rgba(255, 255, 255, 0.78) 58%,
      rgba(255, 255, 255, 0.95) 82%,
      #fff 100%
    );
    pointer-events: none;
    z-index: 1;
  }

  .is-english .hero > .container {
    width: 100%;
    position: relative;
    z-index: 2;
  }

  .is-english .hero__inner {
    display: block;
  }

  .is-english .hero__content {
    max-width: 100%;
  }

  .is-english .hero__label {
    font-size: clamp(12px, 3.733vw, 14px);
    margin-bottom: 1.25em;
    line-height: 1.45;
  }

  .is-english .hero__label-en,
  .is-english .hero__label-ja {
    display: block;
  }

  .is-english .hero__label-ja::before {
    content: none;
  }

  .is-english .hero__title {
    font-size: 3.6em;
    line-height: 1.25;
    margin-bottom: 0.65em;
  }

  .is-english .hero__text {
    font-size: clamp(12px, calc(1.39vw + 7.3px), 18px);
    line-height: 1.7;
    margin-bottom: 1em;
  }

  .is-english .hero__text br {
    display: none;
  }

  .is-english .hero__stats {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: clamp(0.25rem, 1.2vw, 0.5rem);
    width: 100%;
    max-width: none;
    margin-top: 1.2em;
    margin-bottom: calc(var(--hero-fade-h) * -0.4);
    position: relative;
    z-index: 2;
  }

  .is-english .hero__stat {
    width: auto;
    height: auto;
    max-width: none;
    flex: 1 1 0;
    min-width: 0;
    aspect-ratio: 1;
    container-type: inline-size;
    container-name: hero-stat;
    font-size: clamp(6px, 2.35vw, 18px);
    padding: 0.65em 0.3em;
    gap: 0.35em;
  }

  .is-english .hero__stat-label {
    font-size: clamp(6px, 9cqi, 1.05em);
    line-height: 1.15;
    white-space: normal;
  }

  .is-english .hero__stat-value {
    font-size: clamp(10px, 19cqi, 2.2em);
    line-height: 1;
    white-space: normal;
    flex-direction: column;
    align-items: center;
    gap: 0.1em;
  }

  .is-english .hero__stat-unit {
    display: block;
    font-size: 0.42em;
    line-height: 1.1;
  }

  .is-english .trust-bar {
    position: relative;
    z-index: 0;
    padding-top: calc(4.5em);
    padding-bottom: 0;
  }
}

@media (max-width: 768px) {
  .hero {
    /* 実画像 top_mv_sp.webp は 1640×2034 */
    --hero-img-h: calc(100vw * 2034 / 1640);
    --hero-fade-h: 14em;
    font-size: 10px;
    /* 画像上端（頭上のゆとり）がヘッダーに隠れないよう、ヘッダー直下から表示 */
    height: auto;
    min-height: calc(var(--hero-img-h) + var(--header-height));
    padding-top: var(--header-height);
    padding-bottom: calc(var(--hero-fade-h) * 0.35);
    margin-bottom: calc(var(--hero-fade-h) * -0.2);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: visible;
  }

  .hero__bg {
    background-image: url('../images/top/top_mv_sp.webp');
    background-position: center var(--header-height);
    background-size: 100% auto;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--hero-fade-h);
    background: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(255, 255, 255, 0.35) 28%,
      rgba(255, 255, 255, 0.78) 58%,
      rgba(255, 255, 255, 0.95) 82%,
      #fff 100%
    );
    pointer-events: none;
    z-index: 1;
  }

  .hero > .container {
    width: 100%;
    position: relative;
    z-index: 2;
  }

  .hero__inner {
    display: block;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__label {
    /* 768以下: 最大14px。狭い画面でも12pxまでしか落とさない */
    font-size: clamp(12px, 3.733vw, 14px);
    margin-bottom: 1.25em;
    line-height: 1.45;
  }

  .hero__label-en,
  .hero__label-ja {
    display: block;
  }

  .hero__label-ja::before {
    content: none;
  }

  .hero__title {
    font-size: 3.6em;
    line-height: 1.25;
    margin-bottom: 0.85em;
  }

  .hero__text {
    /* 768で18px → 480で約14px → さらに狭い幅で縮小（意図しない折り返し防止） */
    font-size: clamp(12px, calc(1.39vw + 7.3px), 18px);
    line-height: 1.7;
    margin-bottom: 1.2em;
  }

  .hero__stats {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: clamp(0.25rem, 1.2vw, 0.5rem);
    width: 100%;
    max-width: none;
    margin-top: 1.2em;
    margin-bottom: calc(var(--hero-fade-h) * -0.4);
    position: relative;
    z-index: 2;
  }

  .hero__stat {
    width: auto;
    height: auto;
    max-width: none;
    flex: 1 1 0;
    min-width: 0;
    aspect-ratio: 1;
    container-type: inline-size;
    container-name: hero-stat;
    /* ベースはvw。縮小に追従しつつ、余白バランスを保つ */
    font-size: clamp(6px, 2.35vw, 18px);
    padding: 0.65em 0.3em;
    gap: 0.35em;
  }

  .hero__stat-label {
    /* vwフォールバック → 円幅(cqi)優先で縁との比率を維持 */
    font-size: 1.05em;
    font-size: clamp(6px, 9cqi, 1.05em);
    line-height: 1.2;
    white-space: nowrap;
  }

  .hero__stat-value {
    font-size: 2.2em;
    font-size: clamp(10px, 19cqi, 2.2em);
    line-height: 1;
  }

  .hero__stat-unit {
    font-size: 0.48em;
  }

  /* 英語スマホ調整は max-width: 900px 側で適用済み */

  .trust-bar {
    position: relative;
    z-index: 0;
    padding-top: calc(4.5em);
    padding-bottom: 0;
  }

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

  .service__item-text br {
    display: none;
  }

  .service__highlight {
    font-size: 0.9375rem;
    justify-content: start;
    text-align: left;
  }

  .service__check-icon {
    width: 1em;
    height: 1em;
    max-width: none;
    margin-top: calc((1.5em - 1em) / 2);
  }

  .service__num {
    font-size: 1.75rem;
    line-height: 1.2;
    min-width: 36px;
  }

  .service__item-title {
    font-size: 1.125rem;
  }

  .service__card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 20px 20px;
  }

  .service__card-icon {
    margin-top: -36px;
    justify-self: unset;
    align-self: center;
  }

  .service__card-header-text {
    grid-column: unset;
    justify-self: unset;
  }

  .service__more {
    width: auto;
  }

  .cta-banner__actions .btn--lg {
    min-width: 100%;
  }
}

@media (max-width: 630px) {
  .about-skill__flow-steps {
    column-gap: 28px;
  }

  .about-skill__flow-step {
    --flow-icon-size: min(100px, 68cqi);
  }
}

@media (max-width: 480px) {
  .problem__card,
  .strength__card,
  .benefits__card {
    width: 100%;
  }

  .about-skill__flow-steps {
    column-gap: 20px;
  }

  .about-skill__flow-step {
    --flow-icon-size: min(88px, 64cqi);
  }

  .hero {
    --hero-fade-h: 12em;
    font-size: 10px;
    padding-bottom: calc(var(--hero-fade-h) * 0.3);
    margin-bottom: calc(var(--hero-fade-h) * -0.18);
  }

  .hero__label {
    margin-bottom: 0.85em;
  }

  .hero__title {
    font-size: 3.4em;
    margin-bottom: 0.8em;
  }

  .hero__text {
    margin-bottom: 1em;
  }

  .trust-bar {
    padding-top: 3.5em;
    padding-bottom: 0;
  }
}

/* ===== About page (私たちについて) ===== */

.header__nav-link.is-current {
  color: var(--main);
}

.header__nav-link.is-current::after {
  width: 100%;
}

.section-title__jp--lightblue {
  color: var(--lightblue);
}

/* Page Hero */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-height) + 48px);
  padding-bottom: 56px;
  background-color: var(--lightblue-light);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('../images/common/cta-pattern.png') center / cover no-repeat;
  mix-blend-mode: multiply;
  opacity: 0.35;
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 20px;
  font-family: var(--font-en);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--lightblue);
}

.is-english .page-hero__label {
  display: none;
}

.page-hero__label::before {
  content: '';
  display: block;
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--yellow);
}

.page-hero__title {
  font-size: 3.1875rem;
  font-weight: 700;
  color: var(--main);
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin-bottom: 16px;
}

.page-hero__tagline {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.page-hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--bluegray-deep);
}

.page-hero__breadcrumb a {
  color: var(--main);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-hero__breadcrumb a:hover {
  opacity: 0.8;
}

.page-hero__breadcrumb span[aria-current='page'] {
  color: var(--text);
}

/* Mission */
.mission {
  background-color: var(--white);
}

.mission__rows {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.mission__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 50px;
  align-items: center;
}

.mission__row--reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
}

.mission__row--reverse .mission__image {
  order: 2;
}

.mission__row--reverse .mission__content {
  order: 1;
}

.mission__image {
  overflow: hidden;
  min-width: 0;
  width: 100%;
}

.mission__image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 549 / 360;
  object-fit: cover;
}

.mission__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  max-width: 601px;
}

.mission__title {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--main);
  line-height: 36px;
  letter-spacing: 0;
  margin-bottom: 20px;
}

.mission .section-title__en {
  color: var(--lightblue);
}

.mission .section-title__line {
  background-color: var(--lightblue);
}

.mission__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 29px;
  color: #000;
}

.mission__text + .mission__text {
  margin-top: 10px;
}

/* Structure */
.structure {
  background-color: var(--light-bluegray);
}

.structure .section-title__subtitle {
  font-size: 1.25rem;
  color: var(--text);
}

.structure__overview {
  background-color: var(--white);
  border: 1px solid var(--bluegray-deep);
  border-radius: 5px;
  padding: 40px 48px;
  margin-bottom: 48px;
}

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

.structure__logo {
  width: auto;
  height: 32px;
  margin: 0 auto 8px;
}

.structure__logo-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--main);
}

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

.structure__stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background-color: var(--lightblue-light);
  border-radius: var(--radius-sm);
}

.structure__stat img {
  flex-shrink: 0;
  width: 51px;
  height: auto;
  object-fit: contain;
}

.structure__stat-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

.structure__stat-value {
  font-family: var(--font-en);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--main);
  line-height: 1.2;
}

.structure__stat-value span {
  font-family: var(--font-base);
  font-size: 1rem;
  margin-left: 2px;
}

.structure__stat-value--sm {
  font-family: var(--font-base);
  font-size: 1rem;
  font-weight: 700;
  color: var(--main);
}

.structure__cards {
  display: grid;
  grid-template-columns: minmax(0, 500px) auto minmax(0, 500px);
  justify-content: center;
  gap: 16px;
  align-items: center;
}

.structure__card {
  background-color: var(--white);
  border: 1px solid #aaa;
  border-radius: 5px;
  overflow: hidden;
  min-height: 370px;
  height: 100%;
}

.structure__card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 18px 24px;
  background-color: var(--main);
  color: var(--white);
  text-align: center;
}

.structure__card-header--purple {
  background-color: var(--purple);
}

.structure__flag {
  width: 45px;
  height: 30px;
  object-fit: cover;
  flex-shrink: 0;
}

.structure__card-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.structure__card-name {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: -8px;
}

.structure__card-role {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
}

.structure__list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 40px 40px 36px;
}

.structure__list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  color: #000;
}

.structure__check {
  position: relative;
  display: inline-block;
  width: 23px;
  height: 23px;
  flex-shrink: 0;
  background-color: var(--yellow);
  border-radius: 50%;
}

.structure__check::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 4px;
  width: 6px;
  height: 11px;
  border-right: 2.5px solid var(--white);
  border-bottom: 2.5px solid var(--white);
  transform: rotate(45deg);
}

.structure__list--purple li {
  color: var(--purple);
}

.structure__bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  width: auto;
}

.structure__bridge-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 165px;
  height: 165px;
  background-color: var(--lightblue-light);
  border-radius: 50%;
  text-align: center;
  flex-shrink: 0;
  order: 2;
}

.structure__bridge-icon {
  display: block;
  width: 87px;
  height: auto;
  object-fit: contain;
}

.structure__bridge-label {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

.structure__bridge-arrow {
  display: block;
  width: 80px;
  height: 2px;
  background-color: var(--lightblue);
  position: relative;
}

.structure__bridge-arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  transform: translateY(-50%);
}

/* PC: 上に → / 下に ← */
.structure__bridge-arrow--right {
  order: 1;
}

.structure__bridge-arrow--left {
  order: 3;
}

/* 左矢印：日本 ← */
.structure__bridge-arrow--left::after {
  left: 0;
  right: auto;
  border-left: none;
  border-right: 10px solid var(--lightblue);
}

/* 右矢印：インド → */
.structure__bridge-arrow--right::after {
  right: 0;
  left: auto;
  border-right: none;
  border-left: 10px solid var(--lightblue);
}

/* Company */
.company {
  background-color: var(--white);
}

.company__list {
  max-width: 1080px;
  margin-inline: auto;
}

.company__row {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 50px;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--main);
}

.company__row:first-child {
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.company__row--start {
  align-items: flex-start;
}

.company__row dt {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--main);
  line-height: 1.4;
}

.company__row dd {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  color: #000;
}

.company__bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.company__bullets p {
  line-height: 1.4;
}

/* Offices */
.offices {
  background-color: var(--white);
}

.offices__subtitle {
  margin-top: 8px;
  font-size: 1.25rem;
  font-weight: 400;
  color: #00315e;
  line-height: 2.25rem;
}

.offices__regions {
  display: flex;
  flex-direction: column;
}

.offices__regions > .offices__region + .offices__region,
.offices__regions > .offices__region-row {
  margin-top: 39px;
}

.offices__region-row {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.offices__region-row .offices__region {
  width: 350px;
  flex-shrink: 0;
}

.offices__region-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 24px;
  color: var(--main);
  margin-bottom: 0;
  padding-left: 19px;
  border-left: 5px solid var(--main);
}

.offices__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: stretch;
  padding-top: 19px;
}

.offices__card {
  width: 350px;
  background-color: var(--light-bluegray);
  border-radius: 5px;
  padding: 19px;
  display: flex;
  flex-direction: column;
}

.offices__card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.offices__badge {
  display: inline-block;
  padding: 2px 10px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--white);
  background-color: #00315e;
  border-radius: 1px;
  line-height: 1.4;
}

.offices__card-name {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 24px;
  color: #101828;
  margin-bottom: 10px;
}

.offices__card-head .offices__card-name {
  margin-bottom: 0;
}

.offices__zip {
  font-size: 1rem;
  line-height: 19px;
  color: #6a7282;
  margin-bottom: 5px;
}

.offices__address {
  font-size: 1rem;
  line-height: 23px;
  color: #4a5565;
  margin-bottom: 10px;
}

.offices__access {
  font-size: 0.875rem;
  line-height: 19px;
  color: #6a7282;
  margin-bottom: 0;
}

.offices__map-link {
  margin-top: auto;
  padding-top: 40px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 19px;
  color: var(--main);
  text-decoration: none;
}

.offices__map-link:hover {
  opacity: 0.8;
}

/* About page contact submit */
.contact__submit .btn--yellow {
  min-width: 226px;
  min-height: 70px;
  padding: 18px 50px;
  font-size: 22px;
  border-radius: 70px;
}

/* About page responsive — 1100px */
@media (max-width: 1100px) {
  .page-hero__title {
    font-size: 2.5rem;
  }

  .mission__row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 32px;
  }

  .mission__row--reverse {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }

  .mission__content {
    max-width: none;
  }

  .structure__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .structure__cards {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .structure__card {
    max-width: 500px;
    width: 100%;
    justify-self: center;
    min-height: 0;
  }

  .structure__bridge {
    flex-direction: row;
    justify-content: center;
    width: auto;
    order: 2;
  }

  .structure__bridge-circle {
    order: 0;
  }

  .structure__bridge-arrow--left,
  .structure__bridge-arrow--right {
    order: 0;
    width: 2px;
    height: 60px;
  }

  /* スマホ: 横並びのまま、左↑ / 右↓ */
  .structure__bridge-arrow--left::after {
    left: 50%;
    right: auto;
    top: 0;
    bottom: auto;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid var(--lightblue);
    border-top: none;
  }

  .structure__bridge-arrow--right::after {
    left: 50%;
    right: auto;
    top: auto;
    bottom: 0;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid var(--lightblue);
    border-bottom: none;
  }

  .structure__card--india {
    order: 3;
  }

  .offices__cards {
    gap: 12px;
  }

  .offices__card {
    width: calc(50% - 6px);
  }

  .offices__region-row .offices__region {
    width: calc(50% - 6px);
  }

  .offices__region-row .offices__card {
    width: 100%;
  }

  .offices__region-row {
    flex-wrap: wrap;
  }
}

/* About page responsive — 1000px */
@media (max-width: 1000px) {
  .mission__rows {
    gap: 48px;
  }

  .mission__row,
  .mission__row--reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mission__row--reverse .mission__image,
  .mission__row--reverse .mission__content {
    order: unset;
  }
}

/* About page responsive — 768px */
@media (max-width: 768px) {
  .page-hero {
    padding-top: calc(var(--header-height) + 32px);
    padding-bottom: 40px;
  }

  .page-hero__title {
    font-size: 2rem;
  }

  .page-hero__tagline {
    font-size: 1rem;
  }

  .mission__title {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .mission__text {
    line-height: 1.8;
  }

  .structure__overview {
    padding: 24px 20px;
  }

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

  .structure__stat {
    padding: 14px 16px;
  }

  .structure__list {
    padding: 28px 20px 32px;
  }

  .structure__list li {
    font-size: 1rem;
    align-items: flex-start;
  }

  .structure__card-name {
    font-size: 1.25rem;
    margin-bottom: 0;
  }

  .structure__bridge-circle {
    width: 120px;
    height: 120px;
  }

  .structure__bridge-icon {
    width: 64px;
  }

  .structure__bridge-label {
    font-size: 0.9375rem;
  }

  .company__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }

  .company__row:first-child {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }

  .company__row dt,
  .company__row dd {
    font-size: 1rem;
  }

  .offices__card,
  .offices__region-row .offices__region {
    width: 100%;
  }

  .offices__map-link {
    padding-top: 24px;
  }

  .contact__submit .btn--yellow {
    width: 100%;
    min-width: auto;
  }
}

/* About page responsive — 660px */
@media (max-width: 660px) {
  .structure__stats {
    grid-template-columns: 1fr;
  }
}

/* ===== Sub page hero (共通) ===== */

.page-hero--start {
  padding-top: calc(var(--header-height) + 95px);
  padding-bottom: 0;
  min-height: calc(350px + var(--header-height));
}

.page-hero--start::before {
  opacity: 0.7;
}

.page-hero--start::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--light-bluegray) 0%, rgba(227, 241, 253, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.page-hero--start > .container {
  position: relative;
  z-index: 2;
}

.page-hero--start .page-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  text-align: left;
  padding-bottom: 0;
  min-height: calc(350px - 95px);
}

.page-hero--start .page-hero__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.page-hero--start .page-hero__label {
  gap: 7px;
  margin-bottom: 0;
  font-size: 1.25rem;
}

.page-hero--start .page-hero__title {
  margin-bottom: 0;
  font-size: 3.1875rem;
}

/* ===== 404 ===== */

.page-hero--404 {
  padding-top: calc(var(--header-height) + 72px);
  min-height: calc(300px + var(--header-height));
}

.page-hero--404 .page-hero__inner {
  justify-content: flex-start;
  gap: 28px;
  min-height: 0;
  padding-bottom: 48px;
}

.page-hero--404 .page-hero__heading {
  gap: 16px;
}

.error404__code {
  margin: 0;
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--main);
}

.page-hero--404 .page-hero__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--text);
}

.error404__breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--bluegray-deep);
}

.error404__breadcrumb a {
  color: var(--bluegray-deep);
  transition: color var(--transition);
}

.error404__breadcrumb a:hover {
  color: var(--main);
  opacity: 1;
}

.error404__body {
  padding-block: 48px;
}

.error404__text {
  margin: 0;
  text-align: center;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
}

@media (max-width: 768px) {
  .error404__code {
    font-size: 1.25rem;
  }

  .page-hero--404 .page-hero__title {
    font-size: 1.75rem;
  }

  .error404__body {
    padding-block: 48px;
  }
}

.page-hero--start .page-hero__tagline {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 0;
  max-width: none;
  color: #000;
}

.page-hero__breadcrumb--bar {
  position: relative;
  z-index: 2;
  display: block;
  border-top: 1px solid #e5e9ec;
  border-bottom: 1px solid #e5e9ec;
  padding: 15px 0;
  margin-top: 0;
  background: #fff;
}

.page-hero__breadcrumb--bar .container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-hero__breadcrumb--bar a {
  color: var(--bluegray-deep);
  text-decoration: none;
}

.page-hero__breadcrumb--bar a:hover {
  color: var(--main);
  text-decoration: underline;
}

.page-hero__breadcrumb--bar span[aria-current='page'] {
  color: #000;
}

@media (max-width: 1024px) {
  .page-hero--start {
    padding-top: calc(var(--header-height) + 64px);
    min-height: auto;
  }

  .page-hero--start .page-hero__inner {
    min-height: auto;
    padding-bottom: 48px;
  }

  .page-hero--start .page-hero__title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .page-hero--start {
    padding-top: calc(var(--header-height) + 40px);
  }

  .page-hero--start .page-hero__inner {
    gap: 20px;
    padding-bottom: 40px;
  }

  .page-hero--start .page-hero__title {
    font-size: 2rem;
  }

  .page-hero--start .page-hero__tagline {
    font-size: 1rem;
  }

  .page-hero--start .page-hero__label {
    font-size: 1rem;
  }
}

/* ===== Skill page (特定技能とは) ===== */

.skill-overview {
  background: var(--white);
  padding-bottom: 48px;
}

.skill-overview__lead {
  max-width: 999px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.125rem;
  line-height: 2;
  color: var(--text);
}

.skill-compare-wrap {
  background: var(--light-bluegray);
}

.skill-compare,
.skill-diff {
  background: transparent;
}

.skill-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.skill-table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
  border: 1px solid var(--bluegray-deep);
  border-top: none;
  border-left: none;
  table-layout: fixed;
}

.skill-table th,
.skill-table td {
  border: 1px solid var(--bluegray-deep);
  padding: 24px 16px;
  text-align: center;
  vertical-align: middle;
  font-size: 1.25rem;
  line-height: 1.4;
}

.skill-table th.skill-table__corner {
  width: 220px;
  background: transparent;
  border: none;
}

.skill-table thead th.skill-table__corner + th {
  border-left: none;
}

.skill-table thead th:not(.skill-table__corner) {
  border-top: 1px solid var(--bluegray-deep);
}

.skill-table__head {
  color: var(--white);
  font-weight: 700;
  height: 80px;
  padding: 0 16px;
}

.skill-table__head-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.skill-table__head-inner img {
  flex-shrink: 0;
  width: 16px;
  height: auto;
}

.skill-table__head--main {
  background: var(--main);
}

.skill-table__head--light {
  background: var(--lightblue);
}

.skill-table tbody th {
  width: 220px;
  background: var(--white);
  color: var(--text);
  font-weight: 600;
}

.skill-table tbody td {
  background: var(--lightblue-light);
  color: var(--main);
  font-weight: 700;
}

.skill-table__cell--light {
  color: var(--lightblue) !important;
}

.skill-table--types,
.skill-table--diff {
  min-width: 1200px;
  max-width: 1200px;
  margin-inline: auto;
}

.skill-table--types .skill-table__head,
.skill-table--diff .skill-table__head {
  height: 80px;
  font-size: 1.25rem;
  line-height: 24px;
}

.skill-table--types tbody th,
.skill-table--diff tbody th {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 24px;
  min-height: 80px;
  padding: 28px 16px;
}

.skill-table--types tbody td,
.skill-table--diff tbody td {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 24px;
  min-height: 80px;
  padding: 28px 16px;
  background: var(--lightblue-light);
}

.skill-table--types .skill-table__corner {
  width: 18.333%;
}

.skill-table--types thead th:nth-child(2) {
  width: 49.917%;
}

.skill-table--types thead th:nth-child(3) {
  width: 31.667%;
}

.skill-table--diff .skill-table__corner,
.skill-table--diff tbody th {
  width: 22.75%;
}

.skill-table--diff thead th:nth-child(2),
.skill-table--diff thead th:nth-child(3) {
  width: 38.625%;
}

.skill-point {
  position: relative;
  margin-top: 80px;
  padding: 56px 36px 40px;
  background: var(--white);
  border: 3px solid var(--yellow);
  border-radius: 5px;
  text-align: center;
}

.skill-point__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 214px;
  height: 56px;
  padding: 0 32px;
  background: var(--yellow);
  border-radius: 55px;
  color: var(--white);
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1;
}

.skill-point__text {
  font-size: 1.23rem;
  font-weight: 700;
  line-height: 2;
  color: var(--text);
}

.skill-process__panel {
  background: var(--lightblue-light);
  border-radius: 10px;
  padding: 62px 0 0;
  overflow: hidden;
}

.skill-process__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 932px;
  margin: 0 auto;
  padding: 0 24px;
  list-style: none;
}

.skill-process__item {
  display: flex;
  align-items: center;
  gap: 51px;
  width: 100%;
  min-height: 159px;
  padding: 23px 71px;
  background: var(--white);
  border-radius: 10px;
}

.skill-process__icon-wrap {
  position: relative;
  flex-shrink: 0;
  width: 114px;
  height: 114px;
}

.skill-process__circle {
  position: absolute;
  inset: 0;
  width: 114px;
  height: 114px;
  object-fit: contain;
}

.skill-process__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 70%;
  max-height: 55%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.skill-process__num {
  position: absolute;
  top: 2px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: var(--main);
  border-radius: 50%;
  color: var(--white);
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  z-index: 1;
}

.skill-process__body {
  flex: 1;
  min-width: 0;
}

.skill-process__title {
  margin-bottom: 5px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--main);
}

.skill-process__text {
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--text);
}

.skill-process__arrow {
  display: flex;
  justify-content: center;
  padding: 12px 0;
  list-style: none;
}

.skill-process__arrow img {
  width: 81px;
  height: 18px;
  transform: scaleY(-1);
}

.skill-process__duration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 64px;
  min-height: 159px;
  padding: 24px 24px 22px;
  background: var(--lightblue);
}

.skill-process__duration-label {
  margin: 0;
  padding-bottom: 1px;
  color: var(--white);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
}

.skill-process__duration-value {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-size: 2.4375rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.skill-process__duration-value img {
  width: 34px;
  height: 56px;
  flex-shrink: 0;
  object-fit: contain;
  position: relative;
  top: 5px;
}

.skill-process__duration-value span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
}

.skill-process__duration-value em {
  font-style: normal;
  font-size: 4.375rem;
  line-height: 52px;
  padding-bottom: 18px;
}

.skill-req__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
  row-gap: 226px;
  max-width: 1200px;
  margin: 0 auto;
}

.skill-req__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 254px;
  /* Figmaのカード内余白に合わせて、左右を広めに確保 */
  padding: 30px 50px;
  background: var(--white);
  border: 2px solid var(--main);
  border-radius: 10px;
  text-align: center;
  z-index: 2;
}

.skill-req__icon {
  width: auto;
  height: auto;
  max-height: 90px;
  object-fit: contain; /* 念のため保険 */
}

.skill-req__title {
  font-size: 1.6875rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--main);
}

.skill-req__text {
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--text);
}

.skill-req__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(849px, 72%);
  min-height: 384px;
  padding: 40px 48px;
  background: var(--main);
  border: 8px solid var(--white);
  border-radius: 10px;
  text-align: center;
}

.skill-req__center-logo {
  display: inline-flex;
  align-items: flex-end;
  gap: 10px;
  padding: 10px 31px;
  background: var(--white);
}

.skill-req__center-logo img {
  width: 238px;
  height: auto;
}

.skill-req__center-logo span {
  color: var(--main);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  padding-bottom: 3px;
}

.skill-req__center-text {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
}

@media (min-width: 769px) {
  .is-english .skill-req__grid {
    row-gap: 280px;
    margin-top: 64px;
  }

  .is-english .skill-req__card:nth-child(1),
  .is-english .skill-req__card:nth-child(2) {
    transform: translateY(-16px);
  }

  .is-english .skill-req__card:nth-child(3),
  .is-english .skill-req__card:nth-child(4) {
    transform: translateY(16px);
  }
}

.faq--skill {
  background: var(--lightblue-light);
}

@media (max-width: 1024px) {
  .skill-process__item {
    gap: 28px;
    padding: 20px 28px;
  }

  .skill-process__duration {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-height: 0;
    padding: 28px 24px 16px;
  }

  .skill-process__duration-label {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 0;
  }

  .skill-process__duration-value {
    align-items: flex-end;
    font-size: 2rem;
    margin-bottom: 0;
    position: relative;
    top: -7px;
  }

  .skill-process__duration-value img {
    margin-top: 0;
    align-self: flex-end;
    position: relative;
    top: -1px;
  }

  .skill-process__duration-value span {
    display: inline-flex;
    align-items: flex-end;
    gap: 5px;
    line-height: 1;
  }

  .skill-process__duration-value em {
    font-size: 3.5rem;
    line-height: 1;
    padding-bottom: 0;
  }

  .skill-req__grid {
    column-gap: 40px;
    row-gap: 160px;
  }

  .skill-req__card {
    padding: 24px 60px;
  }

  .skill-req__center {
    width: min(720px, 94%);
    min-height: 320px;
    padding: 28px 24px;
  }

  .skill-req__center-logo img {
    width: 180px;
  }
}

@media (max-width: 900px) and (min-width: 769px) {
  .skill-req__grid {
    row-gap: 180px;
  }

  .skill-req__card:nth-child(3),
  .skill-req__card:nth-child(4) {
    margin-top: 32px;
  }
}

@media (max-width: 768px) {
  .skill-overview__lead {
    font-size: 1rem;
    text-align: left;
  }

  .skill-overview__lead br {
    display: none;
  }

  .skill-point {
    margin-top: 56px;
    padding: 48px 20px 28px;
  }

  .skill-point__badge {
    min-width: 160px;
    height: 48px;
    font-size: 1.25rem;
  }

  .skill-point__text {
    font-size: 1rem;
    line-height: 1.8;
  }

  .skill-point__text br {
    display: none;
  }

  .skill-process__panel {
    padding-top: 32px;
  }

  .skill-process__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 20px;
  }

  .skill-process__duration {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-height: 0;
    padding: 32px 20px;
    text-align: center;
  }

  .skill-process__duration-label {
    font-size: 1.25rem;
  }

  .skill-process__duration-value {
    font-size: 1.75rem;
    margin-bottom: 0;
    top: 0;
  }

  .skill-process__duration-value img {
    width: 28px;
    height: 46px;
    top: 0;
  }

  .skill-process__duration-value em {
    font-size: 3rem;
    line-height: 1;
    padding-bottom: 0;
  }

  .skill-req__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .skill-req__card {
    padding: 24px 20px;
    min-height: auto;
  }

  .skill-req__icon {
    max-height: 80px;
  }

  .skill-req__center {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    order: -1;
    min-height: 0;
    margin-top: 0;
    margin-bottom: 8px;
    padding-block: 40px;
    padding-inline: 20px;
    border-width: 2px;
    box-shadow: none;
    border-radius: 10px;
  }

  .skill-req__center-logo {
    flex-wrap: wrap;
    justify-content: center;
    padding: 8px 16px;
  }

  .skill-req__center-logo img {
    width: 160px;
  }

  .skill-req__center-text {
    font-size: 1rem;
  }

  .skill-req__center-text br,
  .skill-req__text br,
  .skill-process__text br {
    display: none;
  }

  .skill-table th,
  .skill-table td {
    font-size: 0.9375rem;
    padding: 16px 10px;
  }
}

/* ===== India page (インド人材とは) ===== */

.india-page-wrap {
  background: var(--light-bluegray);
  padding-bottom: 80px;
}

.india-lead {
  padding-top: 64px;
  padding-bottom: 48px;
  background: transparent;
}

.india-lead__text {
  max-width: 538px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.125rem;
  line-height: 2;
  color: var(--text);
}

.india-block {
  padding-bottom: 60px;
}

.india-card {
  background: var(--white);
  border: 1px solid var(--lightblue);
  border-radius: 5px;
  overflow: hidden;
}

.india-card:has(.india-card__header--purple) {
  border-color: #aaa;
}

.india-card__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 125px;
  padding: 24px;
  text-align: center;
  color: var(--white);
  box-sizing: border-box;
}

.india-card__header--blue {
  background: var(--lightblue);
}

.india-card__header--purple {
  background: var(--purple);
}

.india-card__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 2px;
}

.india-card__subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 36px;
}

.india-card__body {
  padding: 54px 52px 56px;
}

.india-card__main {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 47px;
  align-items: stretch;
  margin-bottom: 50px;
}

.india-card__visual {
  width: 500px;
  max-width: 100%;
}

.india-card__visual:not(.india-card__visual--stack) {
  height: 100%;
  min-height: 645px;
}

.india-card__visual img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  object-fit: cover;
  display: block;
}

.india-card__visual:not(.india-card__visual--stack) img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.india-card__visual--stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: auto;
  align-self: start;
}

.india-card__visual-main {
  width: 100%;
  height: 100%;
  aspect-ratio: 500 / 645;
  object-fit: cover;
  border-radius: 5px;
}

.india-card__content {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.india-card__section + .india-card__section {
  margin-top: 36px;
}

.india-card__section:last-of-type {
  padding-bottom: 36px;
}

.india-card__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 24px;
  color: #000;
}

.india-card__heading img {
  width: 18px;
  height: 22px;
  flex-shrink: 0;
}

.india-card__text {
  font-size: 1.125rem;
  line-height: 28px;
  color: #000;
}

.india-check-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
  margin-top: auto;
  padding: 32px 54px;
  min-height: 193px;
  border-radius: 5px;
  list-style: none;
  box-sizing: border-box;
}

.india-check-box--blue {
  background: var(--light-bluegray);
}

.india-check-box--purple {
  background: #e8edfc;
  gap: 24px;
}

.india-check-box li {
  display: flex;
  align-items: flex-end;
  gap: 19px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 24px;
}

.india-check-box--blue li {
  color: var(--lightblue);
}

.india-check-box--purple li {
  color: var(--purple);
}

.india-check-box img {
  width: 23px;
  height: 23px;
  flex-shrink: 0;
}

.india-curriculum {
  padding: 39px 40px 40px;
  background: var(--lightblue-light);
  border: 2px solid var(--lightblue);
  border-radius: 5px;
  margin-bottom: 50px;
  min-height: 271px;
  box-sizing: border-box;
  overflow: hidden;
}

.india-curriculum__title {
  margin-bottom: 34px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 24px;
  color: var(--lightblue);
}

.india-curriculum__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: clamp(42px, 4vw, 56px);
  row-gap: 36px;
  width: 100%;
  max-width: 968px;
  margin-inline: auto;
  padding-top: 22px;
  list-style: none;
}

.india-curriculum__step {
  position: relative;
  width: 100%;
  max-width: 200px;
  min-height: 100px;
  margin-top: 0;
  margin-inline: auto;
  padding: 29px 12px 16px;
  background: var(--white);
  border: 1px solid var(--lightblue);
  border-radius: 5px;
  text-align: center;
  box-sizing: border-box;
  justify-self: center;
}

.india-curriculum__step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(100% + clamp(7px, 2vw, 14px));
  transform: translateY(-50%);
  width: 28px;
  height: 15px;
  background: url('../images/talent/india-curriculum-arrow.svg') no-repeat center / contain;
  pointer-events: none;
}

.india-curriculum__num {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--main);
  border-radius: 50%;
  color: var(--white);
  font-family: var(--font-en);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 24px;
}

.india-curriculum__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--main);
  line-height: 24px;
}

.india-curriculum__desc {
  margin-top: 3px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--bluegray-deep);
  line-height: 24px;
}

@media (max-width: 1280px) {
  .india-curriculum__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: calc(200px * 2 + 56px);
  }

  .india-curriculum__step:nth-child(2)::after {
    content: none;
  }
}

.india-photos {
  display: flex;
  gap: 43px;
  flex-wrap: wrap;
}

.india-photos__item {
  width: 335px;
  max-width: 100%;
}

.india-photos__item img {
  width: 100%;
  aspect-ratio: 335 / 200;
  object-fit: cover;
  border-radius: 5px;
  display: block;
}

.india-photos__item figcaption {
  margin-top: 7px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 28px;
  color: #000;
}

.india-photos__item--mait {
  width: 335px;
  max-width: 100%;
}

.india-card:has(.india-card__header--purple) .india-card__main {
  margin-bottom: 57px;
}

.india-card:has(.india-card__header--purple) .india-card__visual:not(.india-card__visual--stack) {
  min-height: 645px;
}

.india-card:has(.india-card__header--blue) .india-card__visual:not(.india-card__visual--stack) {
  min-height: 641px;
}

.india-benefits {
  background: var(--main);
}

.india-benefits .section-title__en {
  color: var(--white);
}

.india-benefits .section-title__line {
  background-color: var(--white);
}

.india-benefits .section-title__jp {
  color: var(--white);
}

.india-benefits__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(15px, 2vw, 32px);
  container-type: inline-size;
}

.india-benefits__card {
  /* 親幅1200px時に24px。幅に合わせて全体が比例縮小 */
  font-size: clamp(11px, 2cqi, 24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.917em;
  min-height: auto;
  padding: 1.667em 1.25em;
  background: var(--white);
  text-align: center;
}

.india-benefits__num {
  font-family: var(--font-en);
  font-size: 2.667em;
  font-weight: 700;
  line-height: 1;
  color: var(--lightblue);
}

.india-benefits__title {
  font-size: 1em;
  font-weight: 700;
  line-height: 1.5;
  color: var(--lightblue);
}

.india-benefits__illust {
  width: auto;
  max-width: 80%;
  height: 5.833em;
  object-fit: contain;
}

.india-benefits__line {
  display: block;
  width: 3em;
  height: 0.125em;
  background: var(--lightblue);
}

.india-benefits__text {
  font-size: 0.75em;
  line-height: 1.78;
  color: var(--text);
  text-align: left;
}

.india-why-table {
  min-width: 960px;
  max-width: 1200px;
  margin-inline: auto;
}

.india-why-table .skill-table__corner,
.india-why-table tbody th {
  width: 22.75%;
}

.india-why-table thead th:not(.skill-table__corner) {
  width: 19.3%;
}

.india-why-table__head {
  background: var(--light-bluegray);
  color: var(--bluegray-deep);
  font-weight: 700;
  height: 80px;
}

.india-why-table tbody td {
  background: var(--white);
  color: var(--bluegray-deep);
  font-weight: 700;
}

.india-why-table__highlight {
  background: var(--lightblue-light) !important;
  color: var(--main) !important;
}

.india-why-table small {
  font-size: 0.8em;
  font-weight: 500;
}

@media (max-width: 1280px) {
  .india-card__main {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
  }

  .india-card__visual {
    width: 100%;
    max-width: none;
    margin-inline: auto;
  }

  .india-card__visual:not(.india-card__visual--stack),
  .india-card:has(.india-card__header--blue) .india-card__visual:not(.india-card__visual--stack),
  .india-card:has(.india-card__header--purple) .india-card__visual:not(.india-card__visual--stack) {
    min-height: 0;
    height: auto;
  }

  .india-card__visual:not(.india-card__visual--stack) img {
    height: auto;
    object-fit: contain;
  }

  .india-card__content {
    min-height: 0;
  }

  .india-card__content .india-check-box {
    margin-top: 0;
  }
}

@media (max-width: 1024px) {
  .india-card__body {
    padding: 32px 24px 40px;
  }

  .india-card__section:last-of-type {
    padding-bottom: 36px;
  }

  .india-card__title {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .india-card__subtitle {
    font-size: 1.125rem;
    line-height: 1.5;
  }
}

@media (max-width: 768px) {
  .india-lead__text br,
  .india-card__text br,
  .india-benefits__title br,
  .skill-point__text br {
    display: none;
  }

  .india-benefits__cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .india-benefits__card {
    font-size: 16px;
    padding: 32px 24px;
  }

  .india-benefits__title {
    font-size: 1.25rem;
  }

  .india-benefits__illust {
    height: 120px;
  }

  .india-benefits__text {
    font-size: 1rem;
  }

  .india-check-box {
    padding: 24px 20px;
  }

  .india-curriculum__steps {
    grid-template-columns: minmax(0, 200px);
    max-width: 200px;
    row-gap: 42px;
    padding-bottom: 8px;
  }

  .india-curriculum__step:nth-child(2)::after {
    content: '';
  }

  .india-curriculum__step:not(:last-child)::after {
    top: calc(100% + 13px);
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }

  .india-photos {
    gap: 24px;
  }

  .india-photos__item {
    width: 100%;
  }
}

/* ===== Service page (サービス・ご利用の流れ) ===== */

.service--page .service__card {
  overflow: visible;
}

.service--page .service__card-header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 94px;
  min-height: 94px;
  overflow: visible;
  padding: 0 30px;
  box-sizing: border-box;
}

.service--page .service__card-header-center {
  display: flex;
  align-items: center;
  gap: 15px;
  transform: translateX(calc((110px + 15px) / -2));
}

.service--page .service__card-icon {
  flex-shrink: 0;
  margin: 0;
  align-self: center;
  justify-self: unset;
  grid-column: unset;
  grid-row: unset;
  z-index: 1;
}

.service--page .service__card-header-text {
  flex: unset;
  grid-column: unset;
  justify-self: unset;
}

@media (max-width: 768px) {
  .service--page .service__card-header {
    height: auto;
    min-height: 72px;
    padding: 0 20px 20px;
    flex-direction: column;
  }

  .service--page .service__card-header-center {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transform: none;
  }

  .service--page .service__card-icon {
    margin-top: -36px;
  }
}

.svc-cost {
  background: var(--light-bluegray, #f4f7f9);
}

.svc-cost__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}

.svc-cost__card {
  border-radius: 5px;
  overflow: hidden;
  background: var(--white);
}

.svc-cost__card--blue {
  border: 2px solid var(--lightblue);
}

.svc-cost__card--purple {
  border: 2px solid var(--purple);
}

.svc-cost__header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 66px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.svc-cost__card--blue .svc-cost__header {
  background: var(--lightblue);
}

.svc-cost__card--purple .svc-cost__header {
  background: var(--purple);
}

.svc-cost__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 44px 40px 48px;
  text-align: center;
}

.svc-cost__icon {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.svc-cost__card--blue .svc-cost__icon {
  background: var(--lightblue-light, #e3f1fd);
}

.svc-cost__card--purple .svc-cost__icon {
  background: #e8edfc;
}

.svc-cost__icon img {
  width: auto;
  height: auto;
  max-width: 94px;
  max-height: 83px;
  object-fit: contain;
}

.svc-cost__label {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 24px;
}

.svc-cost__card--blue .svc-cost__label {
  color: var(--lightblue);
}

.svc-cost__card--purple .svc-cost__label {
  color: var(--purple);
}

.svc-cost__line {
  display: block;
  width: 72px;
  height: 3px;
  margin-bottom: 28px;
}

.svc-cost__card--blue .svc-cost__line {
  background: var(--lightblue);
}

.svc-cost__card--purple .svc-cost__line {
  background: var(--purple);
}

.svc-cost__text {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.85;
  color: var(--text);
  margin: 0;
}

.svc-cost__note {
  margin: 48px 0 0;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--text);
}

.flow--page .flow__cta {
  display: none;
}

.flow--page .section-title--white .section-title__en {
  color: var(--white);
  font-size: 1.625rem;
  line-height: 48px;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.flow--page .section-title--white .section-title__line {
  width: 30px;
  background-color: var(--white);
  margin-bottom: 9px;
}

.flow--page .section-title--white .section-title__jp {
  font-size: 2.25rem;
}

.flow--page .section-title--white .section-title__subtitle {
  margin-top: 3px;
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--white);
}

.flow--page .flow__steps {
  margin-top: 32px;
}

.flow--page .flow__duration {
  margin-top: 48px;
}

@media (max-width: 1024px) {
  .flow__duration {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .flow__duration-label {
    font-size: 24px;
    text-align: center;
  }

  .flow__duration-value {
    align-items: flex-end;
    font-size: 32px;
    margin-bottom: 10px;
    position: relative;
    top: -7px;
  }

  .flow__duration-value img {
    width: 34px;
    height: 34px;
    max-width: 34px;
    max-height: 34px;
    margin-top: 0;
    flex: 0 0 34px;
    align-self: flex-end;
    position: relative;
    top: 3px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
  }

  .flow__duration-value span {
    display: inline-flex;
    align-items: flex-end;
    gap: 5px;
    line-height: 1;
  }

  .flow__duration-value em {
    font-size: 56px;
    line-height: 1;
  }
}

/* 英語：1024〜1100付近で横並びが折り返して崩れるため、早めに縦積みへ */
@media (max-width: 1100px) {
  .is-english .flow__duration {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .is-english .flow__duration-label {
    font-size: 24px;
    text-align: center;
  }

  .is-english .flow__duration-value {
    align-items: flex-end;
    font-size: 28px;
    margin-bottom: 10px;
    position: relative;
    top: -7px;
  }

  .is-english .flow__duration-value img {
    margin-top: 0;
    align-self: flex-end;
    position: relative;
    top: 3px;
  }

  .is-english .flow__duration-value span {
    display: inline-flex;
    align-items: flex-end;
    gap: 5px;
    line-height: 1;
    white-space: nowrap;
  }

  .is-english .flow__duration-value em {
    font-size: 48px;
    line-height: 1;
  }
}

/* 英語：1101〜1160付近は横並びを維持しつつ文字を縮小 */
@media (max-width: 1160px) and (min-width: 1101px) {
  .is-english .flow__duration {
    gap: 12px;
  }

  .is-english .flow__duration-label {
    font-size: 22px;
  }

  .is-english .flow__duration-value {
    font-size: 26px;
  }

  .is-english .flow__duration-value span {
    white-space: nowrap;
  }

  .is-english .flow__duration-value em {
    font-size: 44px;
  }
}

.svc-steps {
  background: var(--white);
}

.svc-steps__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

.svc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.svc-step__panel {
  width: 100%;
  background: var(--light-bluegray, #f4f7f9);
  padding: 40px 48px;
  box-sizing: border-box;
}

.svc-step__head {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-bottom: 33px;
}

.svc-step__num {
  font-family: var(--font-en);
  font-size: 3.125rem;
  font-weight: 700;
  color: var(--main);
  line-height: 1;
  flex-shrink: 0;
}

.svc-step__divider {
  width: 2px;
  height: 95px;
  background: var(--main);
  flex-shrink: 0;
  align-self: center;
}

.svc-step__content {
  flex: 1;
  min-width: 0;
}

.svc-step__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}

.svc-step__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.2;
}

.svc-step__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--lightblue);
  border-radius: 70px;
  padding: 5px 13px 7px;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--lightblue);
  white-space: nowrap;
  line-height: 1;
}

.svc-step__badge img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-top: 2px;
}

.svc-step__text {
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--text);
  margin: 0;
}

.svc-step__roles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.svc-step__role {
  border-radius: 5px;
  overflow: hidden;
  background: var(--white);
  min-height: 121px;
}

.svc-step__role--client {
  border: 2px solid var(--lightblue);
}

.svc-step__role--us {
  border: 2px solid var(--main);
}

.svc-step__role-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 43px;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.svc-step__role--client .svc-step__role-label {
  background: var(--lightblue);
}

.svc-step__role--us .svc-step__role-label {
  background: var(--main);
}

.svc-step__role-label img {
  width: 24px;
  height: 27px;
  object-fit: contain;
}

.svc-step__role-text {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  margin: 0;
  padding: 12px 16px;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  line-height: 1.3;
}

.svc-step__arrow {
  width: 81px;
  height: 18px;
  object-fit: contain;
  transform: scaleY(-1);
}

@media (max-width: 1024px) {
  .svc-cost__cards {
    grid-template-columns: 1fr;
    max-width: 586px;
    margin-inline: auto;
  }

  .svc-step__head {
    gap: 20px;
  }

  .svc-step__num {
    font-size: 2.5rem;
  }

  .svc-step__divider {
    height: 72px;
  }

  .svc-step__title {
    font-size: 1.5rem;
  }

  .svc-step__panel {
    padding: 32px 24px;
  }
}

@media (max-width: 768px) {
  .svc-cost__body {
    padding: 32px 24px 40px;
  }

  .svc-cost__label {
    font-size: 1.5rem;
  }

  .svc-cost__text {
    font-size: 1rem;
  }

  .svc-cost__text br,
  .svc-step__text br {
    display: none;
  }

  .svc-cost__note {
    font-size: 0.9375rem;
    text-align: left;
  }

  .svc-step__head {
    flex-direction: column;
    gap: 16px;
  }

  .svc-step__divider {
    width: 60px;
    height: 2px;
    align-self: center;
  }

  .svc-step__roles {
    grid-template-columns: 1fr;
  }

  .svc-step__title-row {
    justify-content: center;
    flex-direction: column;
    gap: 12px;
  }

  .svc-step__badge {
    font-size: 0.9375rem;
  }

  .svc-step__role-text {
    font-size: 1.125rem;
  }
}

/* ===== News page (お知らせ一覧) ===== */

.page-hero--news {
  min-height: calc(280px + var(--header-height));
}

.page-hero--news .page-hero__inner {
  gap: 8px;
  min-height: calc(280px - 95px);
}

.news--page {
  padding-top: 72px;
  padding-bottom: 80px;
}

.news--page .news__list {
  border-top: 1px solid #e5e9ec;
}

.news--page .news__item {
  gap: 23px;
  padding: 27px 0;
  border-bottom: 1px solid #e5e9ec;
  text-decoration: none;
}

.news--page .news__item:hover {
  background-color: transparent;
  padding-inline: 0;
  margin-inline: 0;
  border-radius: 0;
}

.news--page .news__item:hover .news__title {
  color: var(--main);
}

.news--page .news__date {
  font-family: var(--font-base);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 24px;
  color: #aaa;
  min-width: 102px;
}

.news--page .news__item-body {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  min-width: 0;
}

.news--page .news__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 7.5em;
  min-width: 0;
  padding: 4px 17px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  border-radius: 30px;
  box-sizing: border-box;
  flex-shrink: 0;
  text-align: center;
}

.news__badge--oshirase {
  background-color: var(--lightblue);
  color: #fff;
}

.news__badge--column {
  background-color: var(--purple);
  color: #fff;
}

.news--page .news__title {
  flex: 1;
  min-width: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 24px;
  color: #000;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 71px;
}

.pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--main);
  border-radius: 70px;
  background: transparent;
  color: var(--main);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-sizing: border-box;
  transition: background-color var(--transition), color var(--transition);
}

.pagination__item:hover {
  background-color: var(--lightblue-light);
}

.pagination__item.is-current {
  background-color: var(--main);
  border-color: var(--main);
  color: var(--white);
  pointer-events: none;
}

@media (max-width: 768px) {
  .news--page {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .news--page .news__item {
    flex-wrap: wrap;
    gap: 10px 16px;
    padding: 20px 0;
  }

  .news--page .news__date {
    font-size: 0.9375rem;
    min-width: auto;
  }

  .news--page .news__item-body {
    flex: 1 1 100%;
    flex-wrap: wrap;
    gap: 10px 12px;
  }

  .news--page .news__title {
    flex: 1 1 auto;
    font-size: 1rem;
    line-height: 1.5;
  }

  .pagination {
    margin-top: 40px;
    gap: 6px;
  }

  .pagination__item {
    width: 40px;
    height: 40px;
    font-size: 1.125rem;
  }
}

/* ===== News detail page (お知らせ詳細) ===== */

.news-article {
  padding-top: 72px;
  padding-bottom: 80px;
  background: var(--white);
}

.news-article__header {
  padding-bottom: 28px;
  margin-bottom: 40px;
  border-bottom: 1px solid #e5e9ec;
}

.news-article__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.news-article__date {
  font-size: 1.25rem;
  line-height: 24px;
  color: #000;
}

.news-article__title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
}

.news-article__body {
  max-width: 1200px;
}

.news-article__body > * + * {
  margin-top: 40px;
}

.news-article__body p {
  font-size: 1rem;
  line-height: 2;
  color: #000;
}

.news-article__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1200 / 503;
  background: rgba(238, 238, 238, 0.93);
  color: #aaa;
  font-size: 0.9375rem;
  line-height: 36px;
}

.news-article__body h2 {
  margin: 48px 0 0;
  padding: 20px;
  background: var(--main);
  border-left: 2px solid var(--main);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.news-article__body h2 + * {
  margin-top: 40px;
}

.news-article__body h3 {
  margin: 48px 0 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--main);
  color: var(--main);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.news-article__body h3 + * {
  margin-top: 24px;
}

.news-article__body ul,
.news-article__body ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.news-article__body ul li,
.news-article__body ol li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1rem;
  line-height: 2;
  color: #000;
}

.news-article__body ul li::before {
  content: '';
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  margin-top: 14px;
  border-radius: 50%;
  background: #000;
}

.news-article__body ol {
  counter-reset: news-ol;
}

.news-article__body ol li {
  counter-increment: news-ol;
}

.news-article__body ol li::before {
  content: counter(news-ol) '.';
  flex-shrink: 0;
  width: 14px;
  color: var(--main);
  font-size: 1rem;
  line-height: 2;
}

.news-article__table {
  width: 100%;
  margin-top: 40px;
  border-collapse: collapse;
  border-top: 1px solid #b4b4b4;
}

.news-article__table th,
.news-article__table td {
  padding: 10px 20px;
  border-bottom: 1px solid #b4b4b4;
  text-align: left;
  vertical-align: middle;
}

.news-article__table th {
  width: 100px;
  padding: 10px;
  border-right: 1px solid #b4b4b4;
  color: #151528;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.news-article__table td {
  color: #000;
  font-size: 1rem;
  line-height: 1.6;
}

.news-article__nav {
  display: grid;
  grid-template-columns: 50px 1fr 50px;
  align-items: center;
  gap: 24px;
  margin-top: 72px;
}

.news-article__nav-btn {
  display: block;
  width: 50px;
  height: 50px;
  transition: opacity var(--transition);
}

.news-article__nav-btn:hover {
  opacity: 0.85;
}

.news-article__nav-btn img {
  width: 100%;
  height: 100%;
  display: block;
}

.news-article__nav-btn--prev img {
  transform: scaleX(-1);
}

.news-article__nav-back {
  justify-self: center;
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  text-decoration: none;
}

.news-article__nav-back:hover {
  color: var(--main);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 768px) {
  .news-article {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .news-article__title {
    font-size: 1.5rem;
  }

  .news-article__date {
    font-size: 1rem;
  }

  .news-article__body > * + * {
    margin-top: 28px;
  }

  .news-article__body h2 {
    margin-top: 36px;
    padding: 16px;
    font-size: 1.125rem;
  }

  .news-article__body h3 {
    margin-top: 36px;
    font-size: 1.0625rem;
  }

  .news-article__table th,
  .news-article__table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .news-article__table th {
    border-right: none;
    border-bottom: none;
    background: var(--light-bluegray);
    text-align: left;
  }

  .news-article__nav {
    margin-top: 48px;
    gap: 16px;
  }

  .news-article__nav-back {
    font-size: 0.9375rem;
  }
}

/* ==========================================================================
   Responsive overrides (after Figma patches)
   Figma alignment patches が先行 @media を上書きするため、ここで再適用する
   ========================================================================== */

@media (max-width: 1200px) {
  .header__nav-link:hover,
  .header__nav-link.is-current {
    color: var(--text);
  }
}

@media (max-width: 1100px) {
  .service__cards {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .strength__card {
    padding: 40px 32px 56px;
  }

  .strength__card-arrow {
    width: 50px;
    height: 50px;
    right: 16px;
    bottom: 16px;
  }

  .india-talent__card-header {
    padding: 24px 28px;
  }

  .india-talent__desc {
    min-height: 0;
  }

  .benefits__card-top {
    gap: 16px;
  }

  .benefits__card-num {
    font-size: 48px;
  }

  .about-skill__flow {
    padding: 20px 12px 24px;
  }

  .about-skill__flow-heading {
    font-size: 1rem;
    margin-bottom: 16px;
  }

  .about-skill__flow-steps {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: clamp(12px, 2.5vw, 20px) clamp(20px, 4vw, 32px);
  }

  .about-skill__flow-step {
    flex: unset;
    grid-column: span 2;
  }

  .about-skill__flow-step:nth-child(4) {
    grid-column: 2 / 4;
  }

  .about-skill__flow-step:nth-child(5) {
    grid-column: 4 / 6;
  }

  .about-skill__flow-step:nth-child(3)::after {
    display: none;
  }

  .cta-banner {
    padding-block: 48px;
  }

  .cta-banner__title {
    font-size: 1.5rem;
  }

  .service__cards {
    gap: 24px;
  }

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

  .flow__step {
    font-size: 14px;
    padding: 1.5em 0.75em 1.5em;
  }

  .flow__step-icon {
    width: 5.5em;
  }

  .flow__step-title::before {
    width: 2em;
    margin-bottom: 0.75em;
  }

  .flow__duration {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .flow__duration-label {
    font-size: 20px;
  }

  .flow__duration-value {
    font-size: 28px;
  }

  .flow__duration-value em {
    font-size: 48px;
  }
}

/* --------------------------------------------------------------------------
   Scroll Reveal
   -------------------------------------------------------------------------- */

.js-reveal {
  opacity: 0;
  transform: translateY(28px);
}

.js-reveal.is-revealed {
  animation: js-reveal-in 0.8s ease both;
}

.js-reveal-stagger {
  opacity: 0;
  transform: translateY(28px);
}

.js-reveal-stagger.is-revealed {
  animation: js-reveal-in 0.8s ease both;
  animation-delay: var(--reveal-delay, 0s);
}

@keyframes js-reveal-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal,
  .js-reveal.is-revealed,
  .js-reveal-stagger,
  .js-reveal-stagger.is-revealed {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ==========================================================================
   Mobile layout fixes (JP/EN)
   ========================================================================== */

@media (max-width: 768px) {
  /* 1) JP：MV画像がテキストと被らないよう、画像を少し高く */
  .hero {
    /* 実画像 ratio: top_mv_sp.webp (1640×2034) */
    --hero-img-h: calc(100vw * 2034 / 1640 * 1.12);
  }

  /* 2) TOP about__text：強制改行を消して「、」直後での折返しを防止 */
  .about__text br {
    display: none;
  }

  /* 3) india-talent：スマホの左右パディングを縮める */
  .india-talent__list {
    padding: 20px;
  }

  /* 5) about-skill：スマホで中央揃え */
  .about-skill__type-title {
    text-align: center;
  }

  /* 6) about-skill CTA：長い文言を見切れず改行表示 */
  .about-skill__cta .btn {
    white-space: normal;
    flex-wrap: wrap;
    line-height: 1.4;
    padding-inline: 20px;
  }

  /* 英語：FLOW duration が折り返して崩れるため縮小 */
  .is-english .flow__duration-value {
    font-size: 20px;
  }

  .is-english .flow__duration-value em {
    font-size: 36px;
  }
}

/* ===== 2026.08 外国人材リニューアル追加分 ===== */

/* page-hero: キャッチ＋補足文（talentページのみで使用） */
.page-hero__tagline--tight {
  margin-bottom: 14px;
}
.page-hero__tagline-sub {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.95;
  color: var(--text);
  max-width: 660px;
  margin: 0 0 48px;
}

/* talent リード文 */
.india-lead__catch {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  margin: 0 0 28px;
  color: var(--text);
}
.india-lead__body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 0.9375rem;
  line-height: 2.1;
  letter-spacing: 0.02em;
  color: var(--text);
}

/* talent 製造カード: 全幅写真＋2カラム＋全幅チェックリスト */
.india-hero-photo {
  margin: 0 0 44px;
}
.india-hero-photo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: 50% 40%;
  border-radius: 5px;
  display: block;
}
.india-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
  align-items: start;
}
.india-two-col .india-card__section {
  margin: 0;
  padding: 0;
}
.india-two-col .india-card__text {
  font-size: 0.9375rem;
  line-height: 2.05;
  letter-spacing: 0.02em;
}
.india-check-box--fullrow {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 72px;
  min-height: 0;
  padding: 26px 32px;
}
.india-check-box--fullrow li {
  align-items: center;
  margin: 0;
}

/* 比較表: 4カ国を同格に、判読性を確保 */
.india-why-table__head {
  background: var(--main);
  color: var(--white);
}
.india-why-table tbody td {
  color: var(--text);
  font-weight: 500;
}
.india-why-table tbody td small {
  color: #7d8b96;
  font-weight: 400;
}

/* ポイント枠 */
.skill-point__catch {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 0 0 20px;
}
.skill-point__body {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2.05;
  letter-spacing: 0.02em;
  text-align: left;
  margin: 0 0 14px;
}
.skill-point__body:last-child {
  margin-bottom: 0;
}

/* トップ 人材カード（.india-talent__card--renewal にスコープ。英語版トップには影響しない） */
.india-talent__card--renewal .india-talent__card-body {
  display: flex;
  flex-direction: column;
}
.india-talent__photos {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.india-talent__photos img {
  width: 100%;
  height: 172px;
  object-fit: cover;
  border-radius: 5px;
  display: block;
}
.india-talent__photos img:first-child {
  object-position: 50% 32%;
}
.india-talent__photos img:last-child {
  object-position: 50% 42%;
}
.india-talent__photo-cover {
  width: 100%;
  height: auto;
  aspect-ratio: 513 / 353;
  object-fit: cover;
  object-position: 50% 40%;
  border-radius: 5px;
  display: block;
}
.india-talent__card--renewal .india-talent__desc {
  font-size: 0.9375rem;
  line-height: 2.05;
  letter-spacing: 0.02em;
  color: var(--text);
  min-height: 0;
  margin: 0;
}
.india-talent__card--renewal .india-talent__photos + .india-talent__desc,
.india-talent__card--renewal .india-talent__photo-cover + .india-talent__desc {
  margin-top: 24px;
}
.india-talent__card--renewal .india-talent__desc + .india-talent__desc {
  margin-top: 14px;
}
.india-talent__card--renewal .india-talent__desc:last-of-type {
  margin-bottom: 24px;
}
/* チェックリストは両カードの下端に揃え、box内は上下均等のパディング */
.india-talent__card--renewal .india-talent__list {
  margin-top: auto;
  padding: 28px 46px;
  gap: 14px;
}

@media (max-width: 900px) {
  .india-two-col {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .india-hero-photo img {
    height: 240px;
  }
  .india-lead__catch {
    font-size: 1.25rem;
  }
  .india-check-box--fullrow {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* ===== 2026.08 追加修正: 連携図見出しの重なり解消 ===== */
.structure__card-name {
  margin-bottom: 4px;
}
