/* ===== RETHEME ink (§3-3b・2026-07-03 batch) — 原本はサーバ .bak & _server_mirror/css ===== */
@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
p,
ul,
ol,
dl,
dd,
figure,
blockquote {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

:root {
  --color-ink: #16181c;
  --color-dark: #20262e;
  --color-dark-deep: #11151b;
  --color-green: #2A3442;
  --color-green-deep: #143c73;
  --color-green-soft: #eaeff6;
  --color-surface: #f5f6f8;
  --color-line: #dbdee3;
  --color-white: #fff;
  --color-accent: #f5b500;
  --shadow-soft: 0 24px 70px rgba(15, 20, 28, 0.12);
  --shadow-card: 0 14px 36px rgba(15, 20, 28, 0.09);
}

html {
  color: var(--color-ink);
  font-size: 62.5%;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: #fff;
  color: var(--color-ink);
  font-family: "Noto Sans CJK JP", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
}

body.is-menu-open {
  overflow: hidden;
}

a {
  text-decoration: none;
}

button {
  border: 0;
}

#contents {
  min-width: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 6px;
  background: #fff;
  color: #111;
  font-weight: 700;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #f5b500;
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
.header {
  position: relative;
  z-index: 100;
  width: 100%;
  color: #000;
  background: #fff;
  font-family: inherit;
}
.header *, .header *::before, .header *::after {
  box-sizing: border-box;
}

.header__inner {
  width: 100%;
  padding: 0 50px;
}

.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__brand {
  padding-top: 0;
}

.header__logo {
  display: block;
  width: 200px;
  line-height: 0;
}

.header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.header__tagline {
  margin: 10px 0 0;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.header__utility {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__lang {
  position: relative;
  flex: 0 0 auto;
}

.header__lang-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  color: #000;
  background: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}

.header__lang-arrow {
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.header__lang.is-open .header__lang-arrow {
  transform: translateY(2px) rotate(225deg);
}

.header__lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 10;
  display: grid;
  width: 150px;
  padding: 8px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  visibility: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.header__lang.is-open .header__lang-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.header__lang-link {
  display: block;
  padding: 10px 12px;
  border-radius: 4px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
}

.header__lang-link.is-current {
  background: #f4f6f8;
  font-weight: 600;
}

.header__actions {
  position: relative;
  top: -45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: auto;
  padding: 100px 20px 20px;
  border-radius: 0 0 10px 10px;
  background: #2A3442;
}

.header__action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 32px;
  padding: 0 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}

.header__action-link img {
  display: block;
  flex: 0 0 auto;
  width: auto;
  max-height: 18px;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  margin-top: 10px;
}

.header__nav-link {
  color: #000;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
}

.header__lang-button:focus-visible, .header__lang-link:focus-visible, .header__action-link:focus-visible, .header__nav-link:focus-visible, .header__logo:focus-visible {
  outline: 2px solid #2A3442;
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .header__lang-button:hover {
    border-color: #2A3442;
  }
  .header__lang-link:hover {
    background: #f4f6f8;
  }
  .header__action-link:hover {
    opacity: 0.8;
  }
  .header__nav-link:hover {
    color: #2A3442;
  }
}
@media (max-width: 1250px) {
  .header__utility {
    gap: 20px;
  }
  .header__nav {
    gap: 22px;
  }
}
@media (max-width: 1024px) {
  .header__inner {
    padding: 0 35px;
  }
  .header__tagline {
    display: none;
  }
}
@media (max-width: 850px) {
  .header__inner {
    padding: 14px 30px;
  }
  .header__top {
    align-items: center;
    gap: 16px;
  }
  .header__brand {
    padding-top: 0;
  }
  .header__logo {
    width: 160px;
  }
  .header__utility {
    margin-left: auto;
  }
  .header__lang-button {
    width: 98px;
    height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }
  .header__lang-menu {
    width: 140px;
  }
  .header__actions, .header__nav {
    display: none;
  }
}
@media (max-width: 568px) {
  .header__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
  .header__logo {
    width: 145px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .header__lang-arrow, .header__lang-menu {
    transition: none;
  }
}
.footer {
  color: #000;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}
.footer__inner {
  box-sizing: border-box;
  margin: 100px 0;
  padding: 0 50px;
}
.footer__top {
  display: flex;
}
.footer__intro {
  display: flex;
  flex: 0 0 400px;
  flex-direction: column;
}
.footer__copy {
  display: block;
  width: 355px;
  margin: 0;
}
.footer__copy img {
  display: block;
  width: 100%;
  height: auto;
}
.footer__description {
  display: block;
  margin: 30px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
}
.footer__nav {
  width: calc(100% - 400px);
}
.footer__columns {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 24px 0 28px;
  list-style: none;
}
.footer__column {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 33.3333333333%;
  padding: 0 35px;
  gap: 10px;
}
.footer__column--center {
  border-left: 1px dotted #f4f6f8;
}
.footer__heading {
  display: flex;
  align-items: center;
  color: #000;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  text-decoration: none;
}
.footer__heading--spaced {
  margin-top: 15px;
}
.footer__heading span {
  position: relative;
  bottom: -1px;
  display: block;
  width: 17px;
  margin-left: 5px;
  border-radius: 50%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #2A3442 0%, #143c73 100%);
}
.footer__heading span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  width: 7px;
  content: "";
  transform: translate(-25%, -50%);
  clip-path: polygon(0 15%, 15% 0, 65% 50%, 15% 100%, 0 85%, 35% 50%, 0 15%);
  aspect-ratio: 1;
  background-color: #fff;
}
.footer__group {
  margin: 0;
}
.footer__summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}
.footer__summary::-webkit-details-marker {
  display: none;
}
.footer__summary::after {
  display: block;
  width: 13px;
  content: "";
  transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
  clip-path: polygon(0 45%, 45% 45%, 45% 0, 55% 0, 55% 45%, 100% 45%, 100% 55%, 55% 55%, 55% 100%, 45% 100%, 45% 55%, 0 55%);
  aspect-ratio: 1;
  background-color: #000;
}
.footer__group[open] .footer__summary::after {
  clip-path: polygon(0 45%, 100% 45%, 100% 55%, 0 55%);
}
.footer__links {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 5px 0;
  padding: 15px;
  border-radius: 5px;
  background-color: #f4f6f8;
}
.footer__nav-link {
  display: block;
  color: #000;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}
.footer__bottom {
  display: flex;
  align-items: flex-start;
  margin-top: 50px;
}
.footer__company {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
.footer__brand-row {
  display: flex;
  align-items: center;
  gap: 0 30px;
}
.footer__logo {
  display: block;
  width: 200px;
}
.footer__bess {
  display: block;
  width: 170px;
}
.footer__logo img, .footer__bess img {
  display: block;
  width: 100%;
  height: auto;
}
.footer__link {
  display: flex;
  align-items: center;
  gap: 0 5px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
}
.footer__link span {
  display: block;
  width: 15px;
  line-height: 1;
}
.footer__link img {
  display: block;
  width: 100%;
  height: auto;
}
.footer__copyright {
  margin: 0;
  color: #000;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.6;
}
.footer__copyright--mobile {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .footer__heading:hover, .footer__summary:hover, .footer__nav-link:hover, .footer__link:hover {
    color: #2A3442;
  }
  .footer__summary:hover::after {
    background-color: #2A3442;
  }
}
@media (max-width: 1350px) {
  .footer__top {
    flex-direction: column;
  }
  .footer__intro {
    flex-basis: auto;
    width: 100%;
  }
  .footer__description br {
    display: none;
  }
  .footer__nav {
    width: 100%;
    margin-top: 50px;
  }
  .footer__column {
    width: 31.6666666667%;
    padding: 0;
  }
}
@media (max-width: 1024px) {
  .footer__nav {
    margin-top: 20px;
  }
  .footer__links {
    font-size: 14px;
  }
}
@media (max-width: 850px) {
  .footer__inner {
    margin: 50px 0;
    padding: 0 30px;
  }
  .footer__intro {
    align-items: center;
  }
  .footer__copy {
    width: 300px;
  }
  .footer__description {
    max-width: 500px;
    margin: 10px auto 0;
    text-align: center;
  }
  .footer__nav {
    display: none;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }
  .footer__brand-row {
    flex-direction: column;
    align-items: center;
    gap: 20px 0;
  }
  .footer__copyright--desktop {
    display: none;
  }
  .footer__company {
    align-items: center;
    width: 100%;
    gap: 24px 0;
  }
  .footer__brand-row {
    width: 100%;
  }
  .footer__logo {
    width: 180px;
  }
  .footer__bess {
    width: 150px;
  }
  .footer__link {
    justify-content: center;
    font-size: 13px;
  }
  .footer__copyright--mobile {
    display: block;
    margin-top: 30px;
    text-align: center;
  }
}
@media (max-width: 568px) {
  .footer__inner {
    padding: 0 20px;
  }
  .footer__copy {
    width: min(100%, 300px);
  }
}

.sp-menu {
  display: none;
}
@media (max-width: 850px) {
  .sp-menu {
    display: block;
  }
}
.sp-menu__button {
  position: fixed;
  top: 20px;
  right: 18px;
  z-index: 1300;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(32, 38, 46, 0.16);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 24px rgba(17, 21, 27, 0.13);
  cursor: pointer;
  gap: 5px;
}
.sp-menu__line {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #20262e;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.sp-menu.is-open .sp-menu__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.sp-menu.is-open .sp-menu__line:nth-child(2) {
  opacity: 0;
}
.sp-menu.is-open .sp-menu__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.sp-menu__panel {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  align-items: start;
  padding: 100px 24px 40px;
  overflow-y: auto;
  background: rgba(17, 21, 27, 0.98);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.sp-menu.is-open .sp-menu__panel {
  opacity: 1;
  visibility: visible;
}
.sp-menu__nav {
  display: grid;
  width: min(100%, 520px);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.sp-menu__link {
  padding: 18px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 1.7rem;
  font-weight: 600;
}
.sp-menu__link--cta {
  margin-top: 22px;
  padding: 15px 20px;
  border: 0;
  border-radius: 999px;
  background: #2A3442;
  text-align: center;
}

.company-page {
  background: #fff;
}
.company-page__inner {
  width: min(1180px, 100% - 100px);
  margin: 0 auto;
}
.company-page__eyebrow {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: var(--color-green-deep);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  gap: 12px;
}
.company-page__eyebrow::before {
  width: 42px;
  height: 2px;
  content: "";
  background: currentColor;
}
.company-page__heading {
  color: var(--color-dark);
  font-size: clamp(3.2rem, 4.4vw, 6.2rem);
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: -0.035em;
}
.company-page__heading span {
  color: var(--color-green-deep);
}
.company-page__lead {
  max-width: 780px;
  margin-top: 24px;
  color: #4d5157;
  font-size: 1.8rem;
  line-height: 2;
}
.company-page__section {
  padding: 120px 0;
}
.company-page__section--surface {
  background: var(--color-surface);
}
.company-page__section--dark {
  background: var(--color-dark);
  color: #fff;
}
@media (max-width: 1024px) {
  .company-page__inner {
    width: min(100% - 60px, 980px);
  }
  .company-page__section {
    padding: 90px 0;
  }
}
@media (max-width: 568px) {
  .company-page__inner {
    width: calc(100% - 40px);
  }
  .company-page__eyebrow {
    margin-bottom: 14px;
    font-size: 1.15rem;
  }
  .company-page__eyebrow::before {
    width: 30px;
  }
  .company-page__heading {
    font-size: clamp(3rem, 10vw, 4.2rem);
  }
  .company-page__lead {
    margin-top: 18px;
    font-size: 1.55rem;
    line-height: 1.9;
  }
  .company-page__section {
    padding: 72px 0;
  }
}

.company-hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--color-dark-deep);
  color: #fff;
}
.company-hero__media {
  position: absolute;
  inset: 0;
}
.company-hero__media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.company-hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(13, 17, 23, 0.96) 0%, rgba(13, 17, 23, 0.82) 42%, rgba(13, 17, 23, 0.18) 76%, rgba(13, 17, 23, 0.32) 100%), linear-gradient(180deg, rgba(13, 17, 23, 0.05) 60%, rgba(13, 17, 23, 0.68) 100%);
}
.company-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}
.company-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: 680px;
  padding-top: 74px;
  padding-bottom: 82px;
}
.company-hero__content {
  max-width: 720px;
}
.company-hero__label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
  color: #a9bdd9;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  gap: 12px;
}
.company-hero__label::before {
  width: 48px;
  height: 1px;
  content: "";
  background: #658ec7;
}
.company-hero__title {
  font-size: clamp(5rem, 7.3vw, 9.4rem);
  font-weight: 650;
  line-height: 1.03;
  letter-spacing: -0.06em;
}
.company-hero__title-en {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-family: Inter, Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.22em;
}
.company-hero__lead {
  max-width: 660px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.9rem;
  line-height: 1.95;
}
.company-hero__actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 42px;
  gap: 14px;
}
.company-hero__facts {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(14, 18, 24, 0.72);
  backdrop-filter: blur(14px);
}
.company-hero__facts-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.company-hero__fact {
  min-height: 96px;
  padding: 21px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}
.company-hero__fact:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}
.company-hero__fact-label {
  color: #82a3d1;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.company-hero__fact-text {
  margin-top: 5px;
  font-size: 1.5rem;
  font-weight: 600;
}
@media (max-width: 1024px) {
  .company-hero {
    min-height: 660px;
  }
  .company-hero__inner {
    min-height: 660px;
    padding-bottom: 150px;
  }
  .company-hero__content {
    max-width: 630px;
  }
}
@media (max-width: 700px) {
  .company-hero {
    min-height: 700px;
  }
  .company-hero__media::after {
    background: linear-gradient(180deg, rgba(13, 17, 23, 0.4) 0%, rgba(13, 17, 23, 0.84) 48%, rgba(13, 17, 23, 0.98) 100%);
  }
  .company-hero__image {
    object-position: 64% center;
  }
  .company-hero__inner {
    align-content: end;
    min-height: 700px;
    padding-top: 100px;
    padding-bottom: 174px;
  }
  .company-hero__title {
    font-size: clamp(4.7rem, 15vw, 6.7rem);
  }
  .company-hero__lead {
    margin-top: 24px;
    font-size: 1.6rem;
  }
  .company-hero__actions {
    margin-top: 28px;
  }
  .company-hero__facts-inner {
    grid-template-columns: 1fr;
  }
  .company-hero__fact {
    display: none;
  }
  .company-hero__fact:first-child {
    display: block;
    min-height: auto;
    padding: 15px 20px;
    border: 0;
  }
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 58px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  gap: 16px;
}
.c-button::after {
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}
.c-button--primary {
  background: var(--color-green);
  color: #fff;
}
.c-button--outline {
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}
.c-button--dark {
  background: var(--color-dark);
  color: #fff;
}
.c-button--white {
  background: #fff;
  color: var(--color-dark);
}
@media (hover: hover) and (pointer: fine) {
  .c-button:hover {
    transform: translateY(-2px);
  }
  .c-button--primary:hover {
    background: #234d88;
  }
}
@media (max-width: 568px) {
  .c-button {
    width: 100%;
    min-width: 0;
    min-height: 54px;
  }
}

.company-breadcrumb {
  border-bottom: 1px solid #e4e6e9;
  background: #fff;
}
.company-breadcrumb__list {
  display: flex;
  align-items: center;
  min-height: 62px;
  overflow-x: auto;
  color: #676b71;
  font-size: 1.25rem;
  white-space: nowrap;
  gap: 10px;
}
.company-breadcrumb__item + .company-breadcrumb__item::before {
  margin-right: 10px;
  color: #a9adb2;
  content: "/";
}

.company-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 88px;
}
.company-intro__copy {
  padding-left: 30px;
  border-left: 1px solid #cbd0d8;
}
.company-intro__statement {
  color: var(--color-dark);
  font-size: clamp(2.7rem, 3vw, 4.4rem);
  font-weight: 650;
  line-height: 1.55;
  letter-spacing: -0.025em;
}
.company-intro__text {
  margin-top: 26px;
  color: #50545a;
  line-height: 2.05;
}
.company-intro__media {
  position: relative;
  min-height: 460px;
}
.company-intro__image {
  width: calc(100% - 50px);
  height: 420px;
  margin-left: auto;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}
.company-intro__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 240px;
  padding: 22px 24px;
  background: var(--color-dark);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.7;
}
@media (max-width: 1024px) {
  .company-intro {
    grid-template-columns: 1fr;
    gap: 54px;
  }
  .company-intro__copy {
    padding-left: 0;
    border-left: 0;
  }
  .company-intro__media {
    min-height: 400px;
  }
  .company-intro__image {
    height: 380px;
  }
}
@media (max-width: 568px) {
  .company-intro {
    gap: 38px;
  }
  .company-intro__statement {
    font-size: 2.6rem;
  }
  .company-intro__media {
    min-height: 300px;
  }
  .company-intro__image {
    width: calc(100% - 22px);
    height: 286px;
  }
  .company-intro__caption {
    width: 190px;
    padding: 16px 18px;
    font-size: 1.15rem;
  }
}

.company-profile {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 80px;
}
.company-profile__aside {
  position: sticky;
  top: 30px;
  align-self: start;
}
.company-profile__table {
  border-top: 1px solid #bdc2c9;
}
.company-profile__row {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  border-bottom: 1px solid #d6dadf;
}
.company-profile__term, .company-profile__description {
  padding: 22px 20px;
}
.company-profile__term {
  color: #434850;
  font-size: 1.35rem;
  font-weight: 700;
}
.company-profile__description {
  color: #20242a;
  font-size: 1.5rem;
}
@media (max-width: 1024px) {
  .company-profile {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .company-profile__aside {
    position: static;
  }
}
@media (max-width: 568px) {
  .company-profile__row {
    grid-template-columns: 1fr;
  }
  .company-profile__term {
    padding: 16px 16px 4px;
  }
  .company-profile__description {
    padding: 2px 16px 17px;
  }
}

.company-business__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 54px;
  gap: 40px;
}
.company-business__summary {
  max-width: 460px;
  color: #5b5f65;
  line-height: 1.95;
}
.company-business__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
}
.company-business__card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: 3px;
  background: #20262e;
  color: #fff;
  box-shadow: var(--shadow-card);
}
.company-business__card:nth-child(1), .company-business__card:nth-child(4) {
  grid-column: span 7;
}
.company-business__card:nth-child(2), .company-business__card:nth-child(3) {
  grid-column: span 5;
}
.company-business__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.company-business__card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(14, 18, 24, 0.02) 12%, rgba(14, 18, 24, 0.88) 100%);
}
.company-business__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 38px;
}
.company-business__number {
  color: #789ed4;
  font-family: Inter, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.company-business__title {
  margin-top: 9px;
  font-size: 2.7rem;
  font-weight: 650;
  line-height: 1.4;
}
.company-business__text {
  max-width: 560px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.4rem;
  line-height: 1.8;
}
@media (hover: hover) and (pointer: fine) {
  .company-business__card:hover .company-business__image {
    transform: scale(1.035);
  }
}
@media (max-width: 1024px) {
  .company-business__header {
    display: block;
  }
  .company-business__summary {
    margin-top: 24px;
  }
  .company-business__card, .company-business__card:nth-child(n) {
    grid-column: span 6;
  }
}
@media (max-width: 700px) {
  .company-business__grid {
    grid-template-columns: 1fr;
  }
  .company-business__card, .company-business__card:nth-child(n) {
    grid-column: auto;
    min-height: 360px;
  }
  .company-business__content {
    padding: 28px 24px;
  }
  .company-business__title {
    font-size: 2.25rem;
  }
}

.company-flow__heading {
  color: #fff;
}
.company-flow__intro {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: end;
  margin-bottom: 64px;
  gap: 70px;
}
.company-flow__text {
  color: rgba(255, 255, 255, 0.72);
  line-height: 2;
}
.company-flow__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.company-flow__step {
  position: relative;
  min-height: 270px;
  padding: 38px 28px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}
.company-flow__step:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}
.company-flow__step::before {
  position: absolute;
  top: -7px;
  left: 26px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  content: "";
  background: #5886c7;
  box-shadow: 0 0 0 7px rgba(88, 134, 199, 0.15);
}
.company-flow__number {
  color: #6f97d0;
  font-family: Inter, Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.company-flow__title {
  margin-top: 16px;
  font-size: 2rem;
  font-weight: 650;
}
.company-flow__description {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.35rem;
  line-height: 1.85;
}
.company-flow__note {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 1.2rem;
}
@media (max-width: 1024px) {
  .company-flow__intro {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .company-flow__steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .company-flow__step:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }
}
@media (max-width: 568px) {
  .company-flow__steps {
    grid-template-columns: 1fr;
  }
  .company-flow__step {
    min-height: auto;
    padding: 34px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }
}

.company-history {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 82px;
}
.company-history__visual {
  position: relative;
  min-height: 500px;
}
.company-history__image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}
.company-history__badge {
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 210px;
  padding: 24px;
  background: var(--color-green-deep);
  color: #fff;
}
.company-history__badge-en {
  display: block;
  font-family: Inter, Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.company-history__badge-ja {
  display: block;
  margin-top: 7px;
  font-size: 1.8rem;
  font-weight: 650;
}
.company-history__timeline {
  margin-top: 42px;
  border-left: 1px solid #bec3cb;
}
.company-history__item {
  position: relative;
  padding: 0 0 34px 34px;
}
.company-history__item::before {
  position: absolute;
  top: 8px;
  left: -6px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--color-green-deep);
  border-radius: 50%;
  content: "";
  background: #fff;
}
.company-history__phase {
  color: var(--color-green-deep);
  font-family: Inter, Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.company-history__title {
  margin-top: 5px;
  color: var(--color-dark);
  font-size: 2rem;
  font-weight: 650;
}
.company-history__text {
  margin-top: 8px;
  color: #5d6167;
  font-size: 1.4rem;
  line-height: 1.85;
}
@media (max-width: 1024px) {
  .company-history {
    grid-template-columns: 1fr;
    gap: 58px;
  }
  .company-history__visual {
    min-height: 430px;
  }
  .company-history__image {
    height: 400px;
  }
}
@media (max-width: 568px) {
  .company-history__visual {
    min-height: 320px;
  }
  .company-history__image {
    height: 290px;
  }
  .company-history__badge {
    right: 0;
    width: 170px;
    padding: 17px;
  }
  .company-history__timeline {
    margin-top: 32px;
  }
}

.company-links__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
  gap: 24px;
}
.company-links__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: 34px;
  border: 1px solid #d8dce1;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.company-links__tag {
  color: var(--color-green-deep);
  font-family: Inter, Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.company-links__title {
  margin-top: 18px;
  color: var(--color-dark);
  font-size: 2.35rem;
  font-weight: 650;
}
.company-links__text {
  margin-top: 13px;
  color: #60656b;
  font-size: 1.35rem;
  line-height: 1.8;
}
.company-links__arrow {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-top: auto;
  margin-left: auto;
  border-radius: 50%;
  background: var(--color-dark);
  color: #fff;
}
.company-links__arrow::before {
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}
@media (hover: hover) and (pointer: fine) {
  .company-links__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
  }
}
@media (max-width: 1024px) {
  .company-links__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .company-links__grid {
    grid-template-columns: 1fr;
  }
  .company-links__card {
    min-height: 230px;
    padding: 28px 24px;
  }
}

.company-faq {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 82px;
}
.company-faq__list {
  border-top: 1px solid #cbd0d6;
}
.company-faq__item {
  border-bottom: 1px solid #cbd0d6;
}
.company-faq__question {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 24px;
  align-items: center;
  min-height: 92px;
  padding: 20px 10px;
  color: var(--color-dark);
  font-size: 1.55rem;
  font-weight: 650;
  cursor: pointer;
  gap: 14px;
}
.company-faq__question::-webkit-details-marker {
  display: none;
}
.company-faq__qmark {
  color: var(--color-green-deep);
  font-family: Inter, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
}
.company-faq__icon {
  position: relative;
  width: 18px;
  height: 18px;
}
.company-faq__icon::before, .company-faq__icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  content: "";
  background: #535860;
  transform: translate(-50%, -50%);
}
.company-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.2s ease;
}
.company-faq__item[open] .company-faq__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.company-faq__answer {
  padding: 0 48px 28px;
  color: #565b61;
  font-size: 1.4rem;
  line-height: 1.95;
}
@media (max-width: 1024px) {
  .company-faq {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 568px) {
  .company-faq__question {
    grid-template-columns: 28px minmax(0, 1fr) 20px;
    min-height: 82px;
    padding: 18px 4px;
    font-size: 1.4rem;
    gap: 10px;
  }
  .company-faq__answer {
    padding: 0 34px 24px;
    font-size: 1.3rem;
  }
}

.company-cta {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--color-dark-deep);
  color: #fff;
}
.company-cta__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
}
.company-cta::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(12, 16, 21, 0.95) 0%, rgba(12, 16, 21, 0.64) 58%, rgba(12, 16, 21, 0.4) 100%);
}
.company-cta__inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: 520px;
  padding-top: 80px;
  padding-bottom: 80px;
}
.company-cta__content {
  max-width: 750px;
}
.company-cta__eyebrow {
  color: #8caedd;
  font-family: Inter, Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.company-cta__title {
  margin-top: 18px;
  font-size: clamp(3.6rem, 5vw, 6.4rem);
  font-weight: 650;
  line-height: 1.32;
  letter-spacing: -0.035em;
}
.company-cta__text {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.95;
}
.company-cta__actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 36px;
  gap: 14px;
}
@media (max-width: 568px) {
  .company-cta {
    min-height: 540px;
  }
  .company-cta::after {
    background: rgba(12, 16, 21, 0.78);
  }
  .company-cta__inner {
    min-height: 540px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
p,
ul,
ol,
dl,
dd,
figure,
blockquote {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

button,
input,
textarea,
select {
  font: inherit;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
html {
  color: #282d33;
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
}

body {
  min-width: 320px;
  color: #282d33;
  background: #fff;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

body.is-menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button {
  color: inherit;
}

::selection {
  color: #fff;
  background: #183f76;
}

.header {
  position: relative;
  z-index: 100;
  width: 100%;
  color: #000;
  background: #fff;
  font-family: inherit;
}
.header *, .header *::before, .header *::after {
  box-sizing: border-box;
}

.header__inner {
  width: 100%;
  padding: 0 50px;
}

.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__brand {
  padding-top: 0;
}

.header__logo {
  display: block;
  width: 200px;
  line-height: 0;
}

.header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.header__tagline {
  margin: 10px 0 0;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.header__utility {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__lang {
  position: relative;
  flex: 0 0 auto;
}

.header__lang-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  color: #000;
  background: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}

.header__lang-arrow {
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.header__lang.is-open .header__lang-arrow {
  transform: translateY(2px) rotate(225deg);
}

.header__lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 10;
  display: grid;
  width: 150px;
  padding: 8px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  visibility: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.header__lang.is-open .header__lang-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.header__lang-link {
  display: block;
  padding: 10px 12px;
  border-radius: 4px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
}

.header__lang-link.is-current {
  background: #f4f6f8;
  font-weight: 600;
}

.header__actions {
  position: relative;
  top: -45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: auto;
  padding: 100px 20px 20px;
  border-radius: 0 0 10px 10px;
  background: #2A3442;
}

.header__action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 32px;
  padding: 0 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}

.header__action-link img {
  display: block;
  flex: 0 0 auto;
  width: auto;
  max-height: 18px;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  margin-top: 10px;
}

.header__nav-link {
  color: #000;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
}

.header__lang-button:focus-visible, .header__lang-link:focus-visible, .header__action-link:focus-visible, .header__nav-link:focus-visible, .header__logo:focus-visible {
  outline: 2px solid #2A3442;
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .header__lang-button:hover {
    border-color: #2A3442;
  }
  .header__lang-link:hover {
    background: #f4f6f8;
  }
  .header__action-link:hover {
    opacity: 0.8;
  }
  .header__nav-link:hover {
    color: #2A3442;
  }
}
@media (max-width: 1250px) {
  .header__utility {
    gap: 20px;
  }
  .header__nav {
    gap: 22px;
  }
}
@media (max-width: 1024px) {
  .header__inner {
    padding: 0 35px;
  }
  .header__tagline {
    display: none;
  }
}
@media (max-width: 850px) {
  .header__inner {
    padding: 14px 30px;
  }
  .header__top {
    align-items: center;
    gap: 16px;
  }
  .header__brand {
    padding-top: 0;
  }
  .header__logo {
    width: 160px;
  }
  .header__utility {
    margin-left: auto;
  }
  .header__lang-button {
    width: 98px;
    height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }
  .header__lang-menu {
    width: 140px;
  }
  .header__actions, .header__nav {
    display: none;
  }
}
@media (max-width: 568px) {
  .header__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
  .header__logo {
    width: 145px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .header__lang-arrow, .header__lang-menu {
    transition: none;
  }
}
.sp-menu {
  display: none;
}

@media (max-width: 850px) {
  .sp-menu {
    position: fixed;
    top: 22px;
    right: 20px;
    z-index: 300;
    display: block;
  }
  .sp-menu__button {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: #2A3442;
    box-shadow: 0 10px 30px rgba(16, 21, 27, 0.07);
    cursor: pointer;
  }
  .sp-menu__line {
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .sp-menu__panel {
    position: fixed;
    inset: 0;
    visibility: hidden;
    padding: 104px 24px 40px;
    background: rgba(16, 25, 38, 0.98);
    opacity: 0;
    overflow-y: auto;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }
  .sp-menu__nav {
    display: grid;
    gap: 8px;
    width: min(100%, 520px);
    margin: 0 auto;
  }
  .sp-menu__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 12px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
  }
  .sp-menu__link::after {
    content: "→";
  }
  .sp-menu__link--cta {
    justify-content: center;
    margin-top: 20px;
    border: 1px solid #fff;
    border-radius: 999px;
    background: #2A3442;
  }
  .sp-menu__link--cta::after {
    display: none;
  }
  .sp-menu.is-open .sp-menu__panel {
    visibility: visible;
    opacity: 1;
  }
  .sp-menu.is-open .sp-menu__line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .sp-menu.is-open .sp-menu__line:nth-child(2) {
    opacity: 0;
  }
  .sp-menu.is-open .sp-menu__line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}
.footer {
  color: #000;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}
.footer__inner {
  box-sizing: border-box;
  margin: 100px 0;
  padding: 0 50px;
}
.footer__top {
  display: flex;
}
.footer__intro {
  display: flex;
  flex: 0 0 400px;
  flex-direction: column;
}
.footer__copy {
  display: block;
  width: 355px;
  margin: 0;
}
.footer__copy img {
  display: block;
  width: 100%;
  height: auto;
}
.footer__description {
  display: block;
  margin: 30px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
}
.footer__nav {
  width: calc(100% - 400px);
}
.footer__columns {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 24px 0 28px;
  list-style: none;
}
.footer__column {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 33.3333333333%;
  padding: 0 35px;
  gap: 10px;
}
.footer__column--center {
  border-left: 1px dotted #f4f6f8;
}
.footer__heading {
  display: flex;
  align-items: center;
  color: #000;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  text-decoration: none;
}
.footer__heading--spaced {
  margin-top: 15px;
}
.footer__heading span {
  position: relative;
  bottom: -1px;
  display: block;
  width: 17px;
  margin-left: 5px;
  border-radius: 50%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #2A3442 0%, #729cd7 100%);
}
.footer__heading span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  width: 7px;
  content: "";
  transform: translate(-25%, -50%);
  clip-path: polygon(0 15%, 15% 0, 65% 50%, 15% 100%, 0 85%, 35% 50%, 0 15%);
  aspect-ratio: 1;
  background-color: #fff;
}
.footer__group {
  margin: 0;
}
.footer__summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}
.footer__summary::-webkit-details-marker {
  display: none;
}
.footer__summary::after {
  display: block;
  width: 13px;
  content: "";
  transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
  clip-path: polygon(0 45%, 45% 45%, 45% 0, 55% 0, 55% 45%, 100% 45%, 100% 55%, 55% 55%, 55% 100%, 45% 100%, 45% 55%, 0 55%);
  aspect-ratio: 1;
  background-color: #000;
}
.footer__group[open] .footer__summary::after {
  clip-path: polygon(0 45%, 100% 45%, 100% 55%, 0 55%);
}
.footer__links {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 5px 0;
  padding: 15px;
  border-radius: 5px;
  background-color: #f4f6f8;
}
.footer__nav-link {
  display: block;
  color: #000;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}
.footer__bottom {
  display: flex;
  align-items: flex-start;
  margin-top: 50px;
}
.footer__company {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
.footer__brand-row {
  display: flex;
  align-items: center;
  gap: 0 30px;
}
.footer__logo {
  display: block;
  width: 200px;
}
.footer__bess {
  display: block;
  width: 170px;
}
.footer__logo img, .footer__bess img {
  display: block;
  width: 100%;
  height: auto;
}
.footer__link {
  display: flex;
  align-items: center;
  gap: 0 5px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
}
.footer__link span {
  display: block;
  width: 15px;
  line-height: 1;
}
.footer__link img {
  display: block;
  width: 100%;
  height: auto;
}
.footer__copyright {
  margin: 0;
  color: #000;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.6;
}
.footer__copyright--mobile {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .footer__heading:hover, .footer__summary:hover, .footer__nav-link:hover, .footer__link:hover {
    color: #2A3442;
  }
  .footer__summary:hover::after {
    background-color: #2A3442;
  }
}
@media (max-width: 1350px) {
  .footer__top {
    flex-direction: column;
  }
  .footer__intro {
    flex-basis: auto;
    width: 100%;
  }
  .footer__description br {
    display: none;
  }
  .footer__nav {
    width: 100%;
    margin-top: 50px;
  }
  .footer__column {
    width: 31.6666666667%;
    padding: 0;
  }
}
@media (max-width: 1024px) {
  .footer__nav {
    margin-top: 20px;
  }
  .footer__links {
    font-size: 14px;
  }
}
@media (max-width: 850px) {
  .footer__inner {
    margin: 50px 0;
    padding: 0 30px;
  }
  .footer__intro {
    align-items: center;
  }
  .footer__copy {
    width: 300px;
  }
  .footer__description {
    max-width: 500px;
    margin: 10px auto 0;
    text-align: center;
  }
  .footer__nav {
    display: none;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }
  .footer__brand-row {
    flex-direction: column;
    align-items: center;
    gap: 20px 0;
  }
  .footer__copyright--desktop {
    display: none;
  }
  .footer__company {
    align-items: center;
    width: 100%;
    gap: 24px 0;
  }
  .footer__brand-row {
    width: 100%;
  }
  .footer__logo {
    width: 180px;
  }
  .footer__bess {
    width: 150px;
  }
  .footer__link {
    justify-content: center;
    font-size: 13px;
  }
  .footer__copyright--mobile {
    display: block;
    margin-top: 30px;
    text-align: center;
  }
}
@media (max-width: 568px) {
  .footer__inner {
    padding: 0 20px;
  }
  .footer__copy {
    width: min(100%, 300px);
  }
}

/* ===== PHOTO HARMONY + POSTER GRAMMAR（§5-5/§8・2026-07-03） ===== */
main img { filter: saturate(0.78); }
main figure { position: relative; }
main figure::after { content:""; position:absolute; inset:0; background:#2A3442; opacity:0.14; mix-blend-mode:color; pointer-events:none; }
main h1, main h2, main h3, main [class*="__title"] { font-family:'Yu Mincho','Hiragino Mincho ProN','MS Mincho',serif; font-weight:700; letter-spacing:0.03em; }
main [class*="__eyebrow"], main [class*="__en"], main [class*="__label"] { font-family:'Barlow',Arial,sans-serif; font-weight:700; letter-spacing:0.28em; text-transform:uppercase; }
main [class*="__eyebrow"]::after, main [class*="__label"]::after { content:""; display:inline-block; vertical-align:middle; width:34px; height:2px; margin-left:14px; background:#E3B94F; }
main [class*="__number"] { font-family:'Barlow',Arial,sans-serif; letter-spacing:0.02em; }
@media (hover:hover) and (pointer:fine) { main [class*="card"]:hover { transform:translateY(-4px); transition:transform .25s ease; } }
@media (prefers-reduced-motion:reduce) { main [class*="card"]:hover { transform:none; } main img { transition:none; } }


/* ===== BATCHC LP図解表示型オーバーライド（image-design-system v1.1 §7-2）2026-07-03 =====
   図解スロット限定（:has/src指定）: contain・height:auto・原寸比率契約・写真調和フィルタ/ベール解除・caption下置き。
   写真スロット（ヒーロー/CTA帯/背景型/記事サムネ）は不変更。 ===== */
body#company img[src][src$="/img/contents/company/consultation.jpg"]{width:100%;height:auto;min-height:0;max-height:none;position:static;object-fit:contain;object-position:center;filter:none;mix-blend-mode:normal;aspect-ratio:1600/900}
body#company :is(div,figure,picture):has(> img[src$="/img/contents/company/consultation.jpg"]),body#company :is(div,figure,picture):has(> picture > img[src$="/img/contents/company/consultation.jpg"]){min-height:0;height:auto;aspect-ratio:auto}
body#company picture:has(> img[src$="/img/contents/company/consultation.jpg"]){position:static;display:block;height:auto;min-height:0}
main figure:has(img[src$="/img/contents/company/consultation.jpg"])::after{content:none}
main figure:has(img[src$="/img/contents/company/consultation.jpg"]) figcaption{position:static;margin:12px 0 0;padding:0;color:#5A6270;background:none;font-size:12px;right:auto;bottom:auto;left:auto;top:auto;width:auto}

/* ===== UPLIFT batch6 news ink (uplift_20260704) — 下層格上げ指示書 2026-07-04 ===== */
:root {
  --u-theme: #2A3442;
  --u-deep: #16181C;
  --u-tint: #F4F6F8;
  --u-silver: #A8B4C4;
  --u-gold: #F5B500;
  --u-ink: #16181C;
  --u-sub: #5A6270;
  --u-border: #E2E5E8;
}

/* ---- セクション余白リズム（96px） ---- */
body#company .company-page__section { padding: 96px 0; }
body#company .company-page__section--surface { background: var(--u-tint); }
body#company .company-page__section--dark { background: linear-gradient(160deg, var(--u-theme) 0%, var(--u-deep) 100%); }

/* ---- ヒーロー（インク〜#16181Cグラデ＋白明朝31px＋eyebrowアニメ） ---- */
body#company .company-hero { min-height: 620px; background: var(--u-deep); }
body#company .company-hero__inner { min-height: 620px; }
body#company .company-hero__media::after { background: linear-gradient(100deg, rgba(22, 24, 28, 0.96) 0%, rgba(42, 52, 66, 0.86) 45%, rgba(42, 52, 66, 0.30) 100%); }
body#company .company-hero__label { margin-bottom: 20px; color: var(--u-silver); font-size: 13px; letter-spacing: 0.28em; }
body#company .company-hero__label::before { width: 40px; height: 2px; background: var(--u-silver); }
body#company .company-hero__label::after { content: none; }
body#company .company-hero__title { font-size: 31px; font-weight: 700; line-height: 1.5; letter-spacing: 0.03em; }
body#company .company-hero__title-en { margin-top: 14px; color: var(--u-silver); font-size: 13px; letter-spacing: 0.28em; }
body#company .company-hero__title-en::after { content: none; }
body#company .company-hero__lead { margin-top: 24px; color: #D5DBE4; font-size: 18px; line-height: 1.9; }
body#company .company-hero__actions { margin-top: 32px; }
body#company .company-hero__facts { background: rgba(22, 24, 28, 0.72); }
body#company .company-hero__fact-label { color: var(--u-silver); font-size: 11px; }
body#company .company-hero__fact-label::after { content: none; }
body#company .company-hero__fact-text { font-size: 15px; }
@keyframes u58-fade {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
body#company .company-hero__label,
body#company .company-hero__title,
body#company .company-hero__lead,
body#company .company-hero__actions { animation: u58-fade 0.6s ease both; }
body#company .company-hero__title { animation-delay: 0.12s; }
body#company .company-hero__lead { animation-delay: 0.24s; }
body#company .company-hero__actions { animation-delay: 0.36s; }
@media (prefers-reduced-motion: reduce) {
  body#company .company-hero__label,
  body#company .company-hero__title,
  body#company .company-hero__lead,
  body#company .company-hero__actions { animation: none; }
}
@media (max-width: 700px) {
  body#company .company-hero__media::after { background: linear-gradient(180deg, rgba(22, 24, 28, 0.42) 0%, rgba(22, 24, 28, 0.86) 48%, rgba(22, 24, 28, 0.98) 100%); }
}

/* ---- ボタン（金CTA・radius999） ---- */
body#company .c-button { min-height: 56px; padding: 0 32px; border-radius: 999px; font-size: 16px; }
body#company .c-button--primary { background: var(--u-gold); color: var(--u-ink); }
body#company .c-button:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
@media (hover: hover) and (pointer: fine) {
  body#company .c-button--primary:hover { background: var(--u-gold); filter: brightness(0.92); box-shadow: 0 18px 34px rgba(245, 181, 0, 0.36); }
}

/* ---- セクション見出し（eyebrow=テーマ色・h2=25px明朝） ---- */
body#company .company-page__eyebrow { margin-bottom: 16px; color: var(--u-theme); font-size: 13px; letter-spacing: 0.28em; }
body#company .company-page__eyebrow::before { width: 40px; height: 2px; }
body#company .company-page__eyebrow::after { content: none; }
body#company .company-page__section--dark .company-page__eyebrow { color: var(--u-silver); }
body#company .company-page__heading { color: var(--u-ink); font-size: 25px; line-height: 1.5; letter-spacing: 0.03em; }
body#company .company-page__heading span { color: var(--u-theme); }
body#company .company-flow__heading { color: #fff; }
body#company .company-page__lead { margin-top: 16px; color: var(--u-sub); font-size: 18px; line-height: 1.9; }

/* ---- イントロ ---- */
body#company .company-intro__copy { border-left-color: var(--u-border); }
body#company .company-intro__statement { color: var(--u-ink); font-size: 25px; line-height: 1.6; letter-spacing: 0.03em; }
body#company .company-intro__text { margin-top: 24px; color: var(--u-sub); font-size: 16px; line-height: 2; }
body#company .company-intro__caption { background: var(--u-theme); font-size: 12px; }

/* ---- 会社情報表（罫線の品格） ---- */
body#company .company-profile__table { border-top: 2px solid var(--u-theme); }
body#company .company-profile__row { border-bottom: 1px solid var(--u-border); }
body#company .company-profile__term { color: var(--u-ink); font-size: 13px; }
body#company .company-profile__description { color: var(--u-ink); font-size: 15px; }
body#company .company-profile__description a { color: var(--u-theme); text-decoration: underline; text-underline-offset: 3px; }
body#company .company-profile__description a:hover { color: var(--u-deep); }

/* ---- 事業領域カード（radius12・番号=Barlow） ---- */
body#company .company-business__summary { color: var(--u-sub); font-size: 16px; }
body#company .company-business__card { border-radius: 12px; }
body#company .company-business__number { color: var(--u-silver); font-size: 12px; }
body#company .company-business__title { font-size: 20px; }
body#company .company-business__text { color: rgba(255, 255, 255, 0.82); font-size: 14px; }

/* ---- 検討フロー（濃色バンド） ---- */
body#company .company-flow__text { color: rgba(255, 255, 255, 0.8); font-size: 16px; }
body#company .company-flow__number { color: var(--u-silver); font-size: 12px; }
body#company .company-flow__step::before { background: var(--u-silver); box-shadow: 0 0 0 7px rgba(168, 180, 196, 0.15); }
body#company .company-flow__title { font-size: 20px; }
body#company .company-flow__description { color: rgba(255, 255, 255, 0.72); font-size: 14px; }
body#company .company-flow__note { color: rgba(255, 255, 255, 0.6); font-size: 12px; }

/* ---- 沿革（タイムライン罫線・バッジ） ---- */
body#company .company-history__badge { background: var(--u-theme); }
body#company .company-history__badge-en { color: var(--u-silver); font-size: 11px; }
body#company .company-history__badge-en::after { content: none; }
body#company .company-history__badge-ja { font-size: 18px; }
body#company .company-history__timeline { border-left-color: var(--u-border); }
body#company .company-history__item::before { border-color: var(--u-theme); }
body#company .company-history__phase { color: var(--u-theme); font-size: 12px; }
body#company .company-history__title { color: var(--u-ink); font-size: 20px; }
body#company .company-history__text { color: var(--u-sub); font-size: 14px; }

/* ---- 関連リンクカード ---- */
body#company .company-links__card { border-color: var(--u-border); border-radius: 12px; box-shadow: 0 12px 32px rgba(22, 24, 28, 0.06); }
body#company .company-links__tag { color: var(--u-theme); font-family: "Barlow", Arial, sans-serif; font-size: 11px; letter-spacing: 0.28em; }
body#company .company-links__title { color: var(--u-ink); font-size: 20px; }
body#company .company-links__text { color: var(--u-sub); font-size: 14px; }
body#company .company-links__arrow { background: var(--u-theme); }

/* ---- FAQ ---- */
body#company .company-faq__list { border-top-color: var(--u-border); }
body#company .company-faq__item { border-bottom-color: var(--u-border); }
body#company .company-faq__question { color: var(--u-ink); font-size: 16px; }
body#company .company-faq__qmark { color: var(--u-theme); font-size: 20px; }
body#company .company-faq__answer { color: var(--u-sub); font-size: 14px; }
body#company .company-faq__question:focus-visible { outline: 2px solid var(--u-deep); outline-offset: 3px; }

/* ---- 最終CTA（締めバンド×金CTA） ---- */
body#company .company-cta::after { background: linear-gradient(100deg, rgba(22, 24, 28, 0.95) 0%, rgba(42, 52, 66, 0.8) 52%, rgba(42, 52, 66, 0.35) 100%); }
body#company .company-cta__eyebrow { color: var(--u-silver); font-size: 13px; }
body#company .company-cta__eyebrow::after { background: var(--u-silver); }
body#company .company-cta__title { font-size: 31px; line-height: 1.5; letter-spacing: 0.03em; }
body#company .company-cta__text { color: rgba(255, 255, 255, 0.85); font-size: 18px; line-height: 1.9; }
@media (max-width: 568px) {
  body#company .company-cta::after { background: rgba(22, 24, 28, 0.85); }
}

/* ---- 〜900px：セクション48px ---- */
@media (max-width: 900px) {
  body#company .company-page__section { padding: 48px 0; }
  body#company .company-hero,
  body#company .company-hero__inner { min-height: 560px; }
}

/* ===== HEADER GREEN UNIFY addon (uplift_20260704 option) — headercolor_20260704決定の横展開。
   company は配備時に各ページのbody idへ置換。ヘッダー構造は不変更・配色のみ緑固定 ===== */
body#company .header__actions { background: #1E8A58; }
body#company .sp-menu__button { background: #0F4C30; box-shadow: 0 10px 28px rgba(15, 76, 48, 0.28); }
body#company .sp-menu__panel { background: rgba(15, 76, 48, 0.98); }
body#company .header__lang-link.is-current { background: #EDF6F1; }
body#company .header__lang-button:focus-visible,
body#company .header__lang-link:focus-visible,
body#company .header__action-link:focus-visible,
body#company .header__nav-link:focus-visible,
body#company .header__logo:focus-visible { outline-color: #1E8A58; }
@media (hover: hover) and (pointer: fine) {
  body#company .header__lang-button:hover { border-color: #1E8A58; }
  body#company .header__lang-link:hover { background: #EDF6F1; }
  body#company .header__nav-link:hover { color: #1E8A58; }
}
