/* ===== 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 {
  margin: 0;
}

img, svg {
  max-width: 100%;
}

button, input, textarea, select {
  font: inherit;
}

a {
  color: inherit;
}

:root {
  --color-ink: #20262e;
  --color-ink-soft: #48515b;
  --color-green: #2A3442;
  --color-green-dark: #16181C;
  --color-mint: #edf1f6;
  --color-gold: #f5b500;
  --color-paper: #ffffff;
  --color-surface: #f5f6f8;
  --color-line: #dce0e5;
  --font-ja: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --font-en: "Arial", sans-serif;
}

html {
  color: var(--color-ink);
  background: var(--color-paper);
  font-family: var(--font-ja);
}

body {
  min-width: 320px;
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body, button {
  font-family: var(--font-ja);
}

body img {
  display: block;
}

#wrapper {
  overflow: clip;
}

#contents {
  min-height: 100vh;
}

main {
  display: block;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 16px;
  transform: translateY(-140%);
  border-radius: 6px;
  background: #fff;
  color: #000;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1180px, 100% - 80px);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 120px 0;
}

.section--compact {
  padding: 88px 0;
}

.section__eyebrow {
  margin: 0 0 14px;
  color: var(--color-green);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section__title {
  max-width: 880px;
  margin: 0;
  font-size: clamp(34px, 4.3vw, 64px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.section__lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--color-ink-soft);
  font-size: 18px;
  line-height: 2;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button::after {
  content: "→";
  font-size: 18px;
}

.button--primary {
  background: var(--color-gold);
  color: #16181c;
  box-shadow: 0 14px 30px rgba(245, 181, 0, 0.24);
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button--outline {
  border-color: var(--color-green);
  background: #fff;
  color: var(--color-green-dark);
}

.button:focus-visible, summary:focus-visible, a:focus-visible, button:focus-visible {
  outline: 3px solid #f5b500;
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-2px);
  }
  .button--primary:hover {
    box-shadow: 0 18px 34px rgba(245, 181, 0, 0.33);
  }
}
.breadcrumb {
  padding: 16px 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: #fff;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #666a70;
  font-size: 12px;
}

.breadcrumb__item:not(:last-child)::after {
  margin-left: 9px;
  content: "/";
  color: #9a9ea3;
}

.breadcrumb__link {
  text-decoration: none;
}

.review-note {
  margin-top: 26px;
  padding: 15px 18px;
  border-left: 4px solid var(--color-gold);
  background: #fff8dc;
  color: #5a4a17;
  font-size: 12px;
  line-height: 1.7;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sp-menu-button {
  display: none;
}

.sp-menu {
  display: none;
}

@media (max-width: 850px) {
  .container {
    width: min(100% - 40px, 720px);
  }
  .section {
    padding: 84px 0;
  }
  .section--compact {
    padding: 68px 0;
  }
  .section__title {
    font-size: clamp(32px, 9.2vw, 48px);
  }
  .section__lead {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.9;
  }
  .sp-menu-button {
    position: fixed;
    top: 21px;
    right: 18px;
    z-index: 1200;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 11px;
    border: 0;
    border-radius: 50%;
    background: #20262e;
    place-content: center;
    gap: 5px;
  }
  .sp-menu-button span {
    display: block;
    width: 21px;
    height: 2px;
    background: #fff;
  }
  .sp-menu {
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: block;
    visibility: hidden;
    background: rgba(13, 16, 20, 0.62);
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }
  .sp-menu.is-open {
    visibility: visible;
    opacity: 1;
  }
  .sp-menu__panel {
    width: min(88vw, 390px);
    height: 100%;
    margin-left: auto;
    padding: 24px;
    transform: translateX(100%);
    background: #fff;
    transition: transform 0.25s ease;
  }
  .sp-menu.is-open .sp-menu__panel {
    transform: translateX(0);
  }
  .sp-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--color-line);
  }
  .sp-menu__label {
    font-family: var(--font-en);
    font-weight: 700;
    letter-spacing: 0.15em;
  }
  .sp-menu__close {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #f2f3f4;
    font-size: 25px;
  }
  .sp-menu__nav {
    display: grid;
    margin-top: 20px;
  }
  .sp-menu__nav a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--color-line);
    font-weight: 700;
    text-decoration: none;
  }
  html.is-menu-open {
    overflow: hidden;
  }
}
@media (max-width: 568px) {
  .container {
    width: calc(100% - 32px);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
.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);
  }
}

.co-message {
  --company-navy: #20262e;
  --company-charcoal: #151a20;
}
.co-message__hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--company-navy);
  color: #fff;
}
.co-message__hero-media {
  position: absolute;
  inset: 0 0 0 42%;
}
.co-message__hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, var(--company-navy) 0%, rgba(32, 38, 46, 0.92) 14%, rgba(32, 38, 46, 0.2) 70%, rgba(32, 38, 46, 0.08) 100%);
}
.co-message__hero-media picture, .co-message__hero-media img {
  width: 100%;
  height: 100%;
}
.co-message__hero-media img {
  object-fit: cover;
  object-position: 60% center;
  filter: saturate(0.78) contrast(1.02);
}
.co-message__hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 760px;
  padding-top: 84px;
  padding-bottom: 90px;
}
.co-message__hero-copy {
  width: min(690px, 62%);
}
.co-message__hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: #d8dee7;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.13em;
}
.co-message__hero-kicker::before {
  width: 42px;
  height: 1px;
  content: "";
  background: #7b95b9;
}
.co-message__hero-title {
  margin: 0;
  font-size: clamp(46px, 5.8vw, 82px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.13;
}
.co-message__hero-title span {
  display: block;
  margin-bottom: 12px;
  color: #9eb0ca;
  font-family: var(--font-en);
  font-size: 0.22em;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.co-message__hero-lead {
  max-width: 610px;
  margin: 30px 0 0;
  color: #edf0f3;
  font-size: 18px;
  line-height: 2;
}
.co-message__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}
.co-message__hero-audience {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}
.co-message__hero-audience li {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #d9dce1;
  font-size: 12px;
}
.co-message__hero-index {
  position: absolute;
  right: 42px;
  bottom: 34px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}
.co-message__intro {
  background: #fff;
}
.co-message__intro-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 100px;
  align-items: start;
}
.co-message__intro-label {
  position: sticky;
  top: 30px;
}
.co-message__intro-label strong {
  display: block;
  font-family: var(--font-en);
  font-size: 78px;
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 1;
}
.co-message__intro-label span {
  display: block;
  margin-top: 14px;
  color: var(--color-green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.co-message__question-list {
  display: grid;
  gap: 16px;
  margin-top: 46px;
}
.co-message__question {
  position: relative;
  padding: 30px 34px 30px 88px;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(26, 34, 46, 0.06);
}
.co-message__question-num {
  position: absolute;
  top: 25px;
  left: 28px;
  color: var(--color-green);
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
}
.co-message__question h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.55;
}
.co-message__question p {
  margin: 12px 0 0;
  color: var(--color-ink-soft);
  font-size: 14px;
  line-height: 1.85;
}
.co-message__message {
  overflow: hidden;
  background: var(--color-surface);
}
.co-message__message-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
  gap: 88px;
  align-items: stretch;
}
.co-message__message-media {
  position: relative;
  min-height: 760px;
  border-radius: 0 42px 0 42px;
  overflow: hidden;
}
.co-message__message-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
}
.co-message__message-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(15, 40, 76, 0.4));
}
.co-message__message-caption {
  position: absolute;
  right: 22px;
  bottom: 24px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #343940;
  font-size: 11px;
}
.co-message__message-copy {
  padding: 30px 0 12px;
}
.co-message__quote {
  margin: 34px 0 38px;
  color: var(--company-navy);
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.48;
}
.co-message__body {
  display: grid;
  gap: 20px;
  color: #3c4046;
  font-size: 16px;
  line-height: 2.1;
}
.co-message__body p {
  margin: 0;
}
.co-message__signature {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid #cfd3d8;
}
.co-message__signature-role {
  color: #696d73;
  font-size: 12px;
}
.co-message__signature-name {
  margin-top: 5px;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.co-message__signature-en {
  color: #88918c;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.13em;
}
.co-message__principles {
  background: var(--company-navy);
  color: #fff;
}
.co-message__principles-head {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 70px;
  align-items: end;
}
.co-message__principles .section__eyebrow {
  color: #91a6c3;
}
.co-message__principles .section__lead {
  margin: 0;
  color: #cdd1d6;
}
.co-message__principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 58px;
}
.co-message__principle {
  min-height: 460px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
}
.co-message__principle-num {
  color: #869cbc;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.co-message__principle h3 {
  margin: 56px 0 0;
  font-size: 31px;
  line-height: 1.35;
}
.co-message__principle h3 small {
  display: block;
  margin-bottom: 12px;
  color: #989da5;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.co-message__principle p {
  margin: 24px 0 0;
  color: #cbcfd4;
  font-size: 14px;
  line-height: 1.9;
}
.co-message__principle-line {
  display: block;
  width: 52px;
  height: 2px;
  margin-top: 38px;
  background: var(--color-gold);
}
.co-message__impact {
  background: #fff;
}
.co-message__impact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr);
  gap: 78px;
  align-items: center;
}
.co-message__impact-photo {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border-radius: 32px 0 32px 0;
}
.co-message__impact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.co-message__impact-card {
  margin: -80px 0 0 -60px;
  padding: 38px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 26px 64px rgba(20, 30, 43, 0.15);
}
.co-message__impact-card h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.55;
}
.co-message__impact-card p {
  margin: 15px 0 0;
  color: var(--color-ink-soft);
  font-size: 14px;
}
.co-message__flow {
  display: grid;
  gap: 12px;
  margin-top: 42px;
}
.co-message__flow-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 14px;
  background: var(--color-surface);
}
.co-message__flow-item b {
  color: var(--color-green);
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.12em;
}
.co-message__flow-item span {
  font-weight: 700;
}
.co-message__flow-arrow {
  text-align: center;
  color: #8e96a0;
  line-height: 1;
}
.co-message__business {
  background: linear-gradient(180deg, #edf1f6 0%, #fff 100%);
}
.co-message__business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 54px;
}
.co-message__business-card {
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(26, 34, 46, 0.08);
}
.co-message__business-media {
  height: 240px;
  overflow: hidden;
}
.co-message__business-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.co-message__business-body {
  padding: 28px 28px 30px;
}
.co-message__business-tag {
  margin: 0;
  color: var(--color-green);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.co-message__business-card h3 {
  margin: 13px 0 0;
  font-size: 22px;
  line-height: 1.45;
}
.co-message__business-card p {
  margin: 15px 0 0;
  color: var(--color-ink-soft);
  font-size: 14px;
  line-height: 1.85;
}
.co-message__business-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  color: var(--color-green-dark);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.co-message__business-link::after {
  content: "→";
}
@media (hover: hover) and (pointer: fine) {
  .co-message__business-card:hover img {
    transform: scale(1.035);
  }
}
.co-message__stance {
  background: #fff;
}
.co-message__stance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.co-message__stance-media {
  min-height: 580px;
  overflow: hidden;
  border-radius: 0 34px 0 34px;
}
.co-message__stance-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.co-message__stance-list {
  display: grid;
  gap: 14px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: stance;
}
.co-message__stance-list li {
  position: relative;
  padding: 22px 20px 22px 70px;
  border-bottom: 1px solid var(--color-line);
  counter-increment: stance;
}
.co-message__stance-list li::before {
  position: absolute;
  top: 22px;
  left: 6px;
  content: "0" counter(stance);
  color: var(--color-green);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.co-message__stance-list strong {
  display: block;
  font-size: 17px;
}
.co-message__stance-list span {
  display: block;
  margin-top: 7px;
  color: var(--color-ink-soft);
  font-size: 13px;
}
.co-message__mid-cta {
  position: relative;
  overflow: hidden;
  background: var(--color-green-dark);
  color: #fff;
}
.co-message__mid-cta::after {
  position: absolute;
  top: -180px;
  right: -130px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.025), 0 0 0 160px rgba(255, 255, 255, 0.02);
}
.co-message__mid-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.co-message__mid-cta-copy {
  max-width: 720px;
}
.co-message__mid-cta h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.45;
}
.co-message__mid-cta p {
  margin: 18px 0 0;
  color: #d5dce5;
}
.co-message__faq {
  background: var(--color-surface);
}
.co-message__faq-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 80px;
  align-items: start;
}
.co-message__faq-head {
  position: sticky;
  top: 30px;
}
.co-message__faq-list {
  display: grid;
  gap: 12px;
}
.co-message__faq-item {
  border: 1px solid var(--color-line);
  border-radius: 16px;
  background: #fff;
}
.co-message__faq-question {
  position: relative;
  padding: 25px 65px 25px 66px;
  font-weight: 700;
  line-height: 1.7;
  cursor: pointer;
  list-style: none;
}
.co-message__faq-question::-webkit-details-marker {
  display: none;
}
.co-message__faq-question::before {
  position: absolute;
  top: 23px;
  left: 25px;
  content: "Q";
  color: var(--color-green);
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
}
.co-message__faq-question::after {
  position: absolute;
  top: 29px;
  right: 25px;
  width: 14px;
  height: 14px;
  content: "+";
  color: var(--color-green);
  font-size: 22px;
  line-height: 14px;
}
.co-message__faq-item[open] .co-message__faq-question::after {
  content: "−";
}
.co-message__faq-answer {
  padding: 0 30px 26px 66px;
  color: var(--color-ink-soft);
  font-size: 14px;
  line-height: 1.9;
}
.co-message__faq-answer p {
  margin: 0;
}
.co-message__final-cta {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  color: #fff;
}
.co-message__final-cta-media {
  position: absolute;
  inset: 0;
}
.co-message__final-cta-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(22, 27, 34, 0.96) 0%, rgba(22, 27, 34, 0.82) 48%, rgba(22, 27, 34, 0.34) 100%);
}
.co-message__final-cta-media picture, .co-message__final-cta-media img {
  width: 100%;
  height: 100%;
}
.co-message__final-cta-media img {
  object-fit: cover;
  object-position: center;
}
.co-message__final-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 640px;
}
.co-message__final-cta-copy {
  max-width: 700px;
}
.co-message__final-cta h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.3;
}
.co-message__final-cta p {
  max-width: 600px;
  margin: 24px 0 0;
  color: #e3e5e8;
  font-size: 17px;
  line-height: 1.9;
}
.co-message__final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
@media (max-width: 1024px) {
  .co-message__hero-media {
    inset-left: 34%;
  }
  .co-message__hero-copy {
    width: 68%;
  }
  .co-message__intro-grid, .co-message__principles-head, .co-message__impact-layout, .co-message__stance-grid {
    gap: 50px;
  }
  .co-message__message-grid {
    gap: 50px;
  }
  .co-message__faq-layout {
    grid-template-columns: 290px 1fr;
    gap: 50px;
  }
}
@media (max-width: 850px) {
  .co-message__hero {
    min-height: 820px;
  }
  .co-message__hero-media {
    inset: 0;
  }
  .co-message__hero-media::after {
    background: linear-gradient(180deg, rgba(32, 38, 46, 0.18) 0%, rgba(32, 38, 46, 0.78) 42%, rgba(32, 38, 46, 0.98) 77%, var(--company-navy) 100%);
  }
  .co-message__hero-inner {
    align-items: flex-end;
    min-height: 820px;
    padding-top: 280px;
    padding-bottom: 70px;
  }
  .co-message__hero-copy {
    width: 100%;
  }
  .co-message__hero-title {
    font-size: clamp(42px, 12.6vw, 66px);
  }
  .co-message__hero-lead {
    font-size: 16px;
  }
  .co-message__hero-index {
    display: none;
  }
  .co-message__intro-grid, .co-message__message-grid, .co-message__principles-head, .co-message__impact-layout, .co-message__stance-grid, .co-message__faq-layout {
    grid-template-columns: 1fr;
  }
  .co-message__intro-grid {
    gap: 34px;
  }
  .co-message__intro-label, .co-message__faq-head {
    position: static;
  }
  .co-message__intro-label strong {
    font-size: 58px;
  }
  .co-message__message-grid {
    gap: 44px;
  }
  .co-message__message-media {
    min-height: 560px;
  }
  .co-message__message-copy {
    padding: 0;
  }
  .co-message__principle-grid {
    grid-template-columns: 1fr;
  }
  .co-message__principle {
    min-height: auto;
  }
  .co-message__principle h3 {
    margin-top: 35px;
  }
  .co-message__impact-layout {
    gap: 30px;
  }
  .co-message__impact-photo {
    min-height: 460px;
  }
  .co-message__impact-card {
    margin: -50px 18px 0;
    position: relative;
  }
  .co-message__business-grid {
    grid-template-columns: 1fr;
  }
  .co-message__business-media {
    height: 310px;
  }
  .co-message__stance-grid {
    gap: 38px;
  }
  .co-message__stance-media {
    min-height: 430px;
    order: 2;
  }
  .co-message__mid-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }
  .co-message__faq-layout {
    gap: 36px;
  }
  .co-message__final-cta {
    min-height: 620px;
  }
  .co-message__final-cta-media::after {
    background: linear-gradient(180deg, rgba(22, 27, 34, 0.25), rgba(22, 27, 34, 0.95) 65%);
  }
  .co-message__final-cta-inner {
    align-items: flex-end;
    min-height: 620px;
    padding-bottom: 70px;
  }
}
@media (max-width: 568px) {
  .co-message__hero {
    min-height: 760px;
  }
  .co-message__hero-inner {
    min-height: 760px;
    padding-top: 250px;
    padding-bottom: 48px;
  }
  .co-message__hero-kicker {
    font-size: 11px;
  }
  .co-message__hero-title {
    font-size: 42px;
  }
  .co-message__hero-actions, .co-message__final-cta-actions {
    display: grid;
  }
  .co-message__hero-actions .button, .co-message__final-cta-actions .button {
    width: 100%;
  }
  .co-message__question {
    padding: 24px 22px 24px 66px;
  }
  .co-message__question-num {
    top: 22px;
    left: 22px;
  }
  .co-message__message-media {
    min-height: 470px;
    border-radius: 0 24px 0 24px;
  }
  .co-message__quote {
    font-size: 30px;
  }
  .co-message__signature {
    align-items: flex-start;
    flex-direction: column;
  }
  .co-message__principle {
    padding: 28px;
  }
  .co-message__impact-photo {
    min-height: 360px;
  }
  .co-message__impact-card {
    margin: -34px 10px 0;
    padding: 26px;
  }
  .co-message__flow-item {
    grid-template-columns: 58px 1fr;
    padding: 15px;
  }
  .co-message__business-media {
    height: 230px;
  }
  .co-message__stance-media {
    min-height: 340px;
  }
  .co-message__faq-question {
    padding: 22px 52px 22px 55px;
    font-size: 14px;
  }
  .co-message__faq-question::before {
    top: 21px;
    left: 20px;
  }
  .co-message__faq-question::after {
    top: 26px;
    right: 20px;
  }
  .co-message__faq-answer {
    padding: 0 20px 22px 55px;
  }
  .co-message__final-cta h2 {
    font-size: 38px;
  }
}

.co-message__hero-media img {
  object-position: 54% center;
}
.co-message__message-media img {
  object-position: 50% center;
}
.co-message__impact-photo img {
  object-position: 48% center;
}
.co-message__business-card:nth-child(1) .co-message__business-media img {
  object-position: 48% center;
}
.co-message__business-card:nth-child(2) .co-message__business-media img {
  object-position: 52% center;
}
.co-message__business-card:nth-child(3) .co-message__business-media img {
  object-position: 50% 44%;
}
.co-message__stance-media img {
  object-position: 50% 48%;
}
.co-message__final-cta-media img {
  object-position: 58% center;
}
@media (max-width: 850px) {
  .co-message__hero-media img {
    object-position: 58% top;
  }
  .co-message__message-media img {
    object-position: 52% center;
  }
  .co-message__final-cta-media img {
    object-position: 62% center;
  }
}

*,
*::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#co-message img[src][src$="/img/contents/company/about/message/message.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/1900}
body#co-message :is(div,figure,picture):has(> img[src$="/img/contents/company/about/message/message.jpg"]),body#co-message :is(div,figure,picture):has(> picture > img[src$="/img/contents/company/about/message/message.jpg"]){min-height:0;height:auto;aspect-ratio:auto}
body#co-message picture:has(> img[src$="/img/contents/company/about/message/message.jpg"]){position:static;display:block;height:auto;min-height:0}
body#co-message img[src][src$="/img/contents/company/about/message/vision.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:1800/1200}
body#co-message :is(div,figure,picture):has(> img[src$="/img/contents/company/about/message/vision.jpg"]),body#co-message :is(div,figure,picture):has(> picture > img[src$="/img/contents/company/about/message/vision.jpg"]){min-height:0;height:auto;aspect-ratio:auto}
body#co-message picture:has(> img[src$="/img/contents/company/about/message/vision.jpg"]){position:static;display:block;height:auto;min-height:0}
body#co-message img[src][src$="/img/contents/company/about/message/business-bess.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:1800/1200}
body#co-message :is(div,figure,picture):has(> img[src$="/img/contents/company/about/message/business-bess.jpg"]),body#co-message :is(div,figure,picture):has(> picture > img[src$="/img/contents/company/about/message/business-bess.jpg"]){min-height:0;height:auto;aspect-ratio:auto}
body#co-message picture:has(> img[src$="/img/contents/company/about/message/business-bess.jpg"]){position:static;display:block;height:auto;min-height:0}
body#co-message img[src][src$="/img/contents/company/about/message/business-land.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:1800/1200}
body#co-message :is(div,figure,picture):has(> img[src$="/img/contents/company/about/message/business-land.jpg"]),body#co-message :is(div,figure,picture):has(> picture > img[src$="/img/contents/company/about/message/business-land.jpg"]){min-height:0;height:auto;aspect-ratio:auto}
body#co-message picture:has(> img[src$="/img/contents/company/about/message/business-land.jpg"]){position:static;display:block;height:auto;min-height:0}
body#co-message img[src][src$="/img/contents/company/about/message/business-dialogue.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:1800/1200}
body#co-message :is(div,figure,picture):has(> img[src$="/img/contents/company/about/message/business-dialogue.jpg"]),body#co-message :is(div,figure,picture):has(> picture > img[src$="/img/contents/company/about/message/business-dialogue.jpg"]){min-height:0;height:auto;aspect-ratio:auto}
body#co-message picture:has(> img[src$="/img/contents/company/about/message/business-dialogue.jpg"]){position:static;display:block;height:auto;min-height:0}
body#co-message img[src][src$="/img/contents/company/about/message/mission.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:1800/1200}
body#co-message :is(div,figure,picture):has(> img[src$="/img/contents/company/about/message/mission.jpg"]),body#co-message :is(div,figure,picture):has(> picture > img[src$="/img/contents/company/about/message/mission.jpg"]){min-height:0;height:auto;aspect-ratio:auto}
body#co-message picture:has(> img[src$="/img/contents/company/about/message/mission.jpg"]){position:static;display:block;height:auto;min-height:0}
main figure:has(img[src$="/img/contents/company/about/message/message.jpg"])::after,main figure:has(img[src$="/img/contents/company/about/message/vision.jpg"])::after,main figure:has(img[src$="/img/contents/company/about/message/business-bess.jpg"])::after,main figure:has(img[src$="/img/contents/company/about/message/business-land.jpg"])::after,main figure:has(img[src$="/img/contents/company/about/message/business-dialogue.jpg"])::after,main figure:has(img[src$="/img/contents/company/about/message/mission.jpg"])::after{content:none}
main figure:has(img[src$="/img/contents/company/about/message/message.jpg"]) figcaption,main figure:has(img[src$="/img/contents/company/about/message/vision.jpg"]) figcaption,main figure:has(img[src$="/img/contents/company/about/message/business-bess.jpg"]) figcaption,main figure:has(img[src$="/img/contents/company/about/message/business-land.jpg"]) figcaption,main figure:has(img[src$="/img/contents/company/about/message/business-dialogue.jpg"]) figcaption,main figure:has(img[src$="/img/contents/company/about/message/mission.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#co-message .section { padding: 96px 0; }
body#co-message .section--compact { padding: 64px 0; }

/* ---- セクション見出し（eyebrow=テーマ色・h2=25px明朝） ---- */
body#co-message .section__eyebrow { margin-bottom: 16px; color: var(--u-theme); font-size: 13px; letter-spacing: 0.28em; }
body#co-message .section__eyebrow::after { background: var(--u-theme); }
body#co-message .section__title { font-size: 25px; font-weight: 700; line-height: 1.5; letter-spacing: 0.03em; }
body#co-message .section__lead { margin-top: 24px; color: var(--u-sub); font-size: 18px; line-height: 1.9; }

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

/* ---- ヒーロー（インク〜#16181Cグラデ＋白明朝31px＋eyebrowアニメ） ---- */
body#co-message .co-message__hero { min-height: 620px; background: var(--u-theme); }
body#co-message .co-message__hero-inner { min-height: 620px; }
body#co-message .co-message__hero-media::after { background: linear-gradient(90deg, #2A3442 0%, rgba(42, 52, 66, 0.92) 14%, rgba(42, 52, 66, 0.3) 70%, rgba(22, 24, 28, 0.2) 100%); }
body#co-message .co-message__hero-kicker { display: block; margin: 0 0 20px; color: var(--u-silver); font-family: "Barlow", Arial, sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; }
body#co-message .co-message__hero-kicker::before { display: block; width: 40px; height: 2px; margin-bottom: 14px; background: var(--u-silver); }
body#co-message .co-message__hero-title { font-size: 31px; line-height: 1.5; letter-spacing: 0.03em; }
body#co-message .co-message__hero-title span { margin-bottom: 14px; color: var(--u-silver); font-family: "Barlow", Arial, sans-serif; font-size: 13px; letter-spacing: 0.28em; }
body#co-message .co-message__hero-lead { margin-top: 24px; color: #D5DBE4; font-size: 18px; line-height: 1.9; }
body#co-message .co-message__hero-actions { margin-top: 32px; }
body#co-message .co-message__hero-audience li { border-color: rgba(168, 180, 196, 0.45); border-radius: 999px; background: rgba(22, 24, 28, 0.35); color: #D5DBE4; font-size: 12px; }
body#co-message .co-message__hero-index { font-size: 12px; }
@keyframes u59-fade {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
body#co-message .co-message__hero-kicker,
body#co-message .co-message__hero-title,
body#co-message .co-message__hero-lead,
body#co-message .co-message__hero-actions,
body#co-message .co-message__hero-audience { animation: u59-fade 0.6s ease both; }
body#co-message .co-message__hero-title { animation-delay: 0.12s; }
body#co-message .co-message__hero-lead { animation-delay: 0.24s; }
body#co-message .co-message__hero-actions { animation-delay: 0.36s; }
body#co-message .co-message__hero-audience { animation-delay: 0.48s; }
@media (prefers-reduced-motion: reduce) {
  body#co-message .co-message__hero-kicker,
  body#co-message .co-message__hero-title,
  body#co-message .co-message__hero-lead,
  body#co-message .co-message__hero-actions,
  body#co-message .co-message__hero-audience { animation: none; }
}
@media (max-width: 850px) {
  body#co-message .co-message__hero,
  body#co-message .co-message__hero-inner { min-height: 620px; }
  body#co-message .co-message__hero-inner { padding-top: 220px; padding-bottom: 56px; }
  body#co-message .co-message__hero-media::after { background: linear-gradient(180deg, rgba(42, 52, 66, 0.24) 0%, rgba(42, 52, 66, 0.8) 42%, rgba(42, 52, 66, 0.98) 77%, #2A3442 100%); }
}

/* ---- イントロ（WHY） ---- */
body#co-message .co-message__intro-label strong { color: var(--u-border); font-family: "Barlow", Arial, sans-serif; }
body#co-message .co-message__intro-label::after { content: none; }
body#co-message .co-message__intro-label span { color: var(--u-theme); font-size: 13px; }
body#co-message .co-message__question { border-color: var(--u-border); border-radius: 12px; box-shadow: 0 12px 32px rgba(22, 24, 28, 0.06); }
body#co-message .co-message__question-num { color: var(--u-theme); font-family: "Barlow", Arial, sans-serif; font-size: 18px; }
body#co-message .co-message__question h3 { font-size: 20px; }
body#co-message .co-message__question p { color: var(--u-sub); font-size: 14px; }

/* ---- 代表メッセージ（明朝の引用・署名の品格） ---- */
body#co-message .co-message__message { background: var(--u-tint); }
body#co-message .co-message__message-media { overflow: hidden; border-radius: 12px; }
body#co-message .co-message__quote { margin: 32px 0; padding-left: 24px; border-left: 2px solid var(--u-theme); color: var(--u-theme); font-family: "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif; font-size: 25px; font-weight: 700; letter-spacing: 0.06em; line-height: 1.7; }
body#co-message .co-message__body { color: #3A4048; font-size: 16px; line-height: 2.1; }
body#co-message .co-message__signature { margin-top: 32px; padding-top: 24px; border-top-color: var(--u-border); }
body#co-message .co-message__signature-role { color: var(--u-sub); font-size: 12px; }
body#co-message .co-message__signature-name { font-family: "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif; font-size: 20px; letter-spacing: 0.12em; }
body#co-message .co-message__signature-en { color: var(--u-silver); font-family: "Barlow", Arial, sans-serif; font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; }
body#co-message .co-message__signature-en::after { content: none; }

/* ---- Vision/Mission/Value（濃色バンド） ---- */
body#co-message .co-message__principles { background: linear-gradient(160deg, var(--u-theme) 0%, var(--u-deep) 100%); }
body#co-message .co-message__principles .section__eyebrow { color: var(--u-silver); }
body#co-message .co-message__principles .section__eyebrow::after { background: var(--u-silver); }
body#co-message .co-message__principles .section__lead { color: rgba(255, 255, 255, 0.82); }
body#co-message .co-message__principle { min-height: 0; border-color: rgba(255, 255, 255, 0.16); border-radius: 12px; }
body#co-message .co-message__principle-num { color: var(--u-silver); font-size: 13px; }
body#co-message .co-message__principle h3 { margin-top: 32px; font-size: 20px; line-height: 1.6; }
body#co-message .co-message__principle h3 small { color: var(--u-silver); font-size: 12px; letter-spacing: 0.28em; }
body#co-message .co-message__principle p { color: rgba(255, 255, 255, 0.8); font-size: 14px; }
body#co-message .co-message__principle-line { margin-top: 24px; background: var(--u-silver); }

/* ---- 社会価値（フロー・カード） ---- */
body#co-message .co-message__impact-photo { border-radius: 12px; }
body#co-message .co-message__impact-card { margin: 24px 0 0; border: 1px solid var(--u-border); border-radius: 12px; box-shadow: 0 24px 64px rgba(22, 24, 28, 0.14); }
body#co-message .co-message__impact-card h3 { font-size: 20px; }
body#co-message .co-message__impact-card p { color: var(--u-sub); font-size: 14px; }
body#co-message .co-message__flow-item { border-radius: 12px; background: var(--u-tint); }
body#co-message .co-message__flow-item b { color: var(--u-theme); font-family: "Barlow", Arial, sans-serif; font-size: 12px; letter-spacing: 0.12em; }
body#co-message .co-message__flow-arrow { color: var(--u-silver); }
@media (max-width: 568px) {
  body#co-message .co-message__flow-item { grid-template-columns: 72px 1fr; }
  body#co-message .co-message__flow-item b { letter-spacing: 0.04em; white-space: nowrap; }
}

/* ---- 事業接点カード ---- */
body#co-message .co-message__business { background: linear-gradient(180deg, var(--u-tint) 0%, #fff 100%); }
body#co-message .co-message__business-card { border: 1px solid var(--u-border); border-radius: 12px; box-shadow: 0 12px 32px rgba(22, 24, 28, 0.06); }
body#co-message .co-message__business-tag { color: var(--u-theme); font-family: "Barlow", Arial, sans-serif; font-size: 11px; letter-spacing: 0.28em; }
body#co-message .co-message__business-card h3 { font-size: 20px; }
body#co-message .co-message__business-card p { color: var(--u-sub); font-size: 14px; }
body#co-message .co-message__business-link { color: var(--u-theme); font-size: 13px; }
body#co-message .co-message__business-link:hover { color: var(--u-deep); }

/* ---- スタンス ---- */
body#co-message .co-message__stance-media { border-radius: 12px; }
body#co-message .co-message__stance-list li { border-bottom-color: var(--u-border); }
body#co-message .co-message__stance-list li::before { color: var(--u-theme); font-family: "Barlow", Arial, sans-serif; }
body#co-message .co-message__stance-list strong { font-size: 16px; }
body#co-message .co-message__stance-list span { color: var(--u-sub); font-size: 13px; }

/* ---- 中間CTA（締めバンド1） ---- */
body#co-message .co-message__mid-cta { background: var(--u-deep); }
body#co-message .co-message__mid-cta h2 { font-size: 25px; line-height: 1.6; letter-spacing: 0.03em; }
body#co-message .co-message__mid-cta p { color: rgba(255, 255, 255, 0.82); font-size: 16px; }

/* ---- FAQ ---- */
body#co-message .co-message__faq { background: var(--u-tint); }
body#co-message .co-message__faq-item { border-color: var(--u-border); border-radius: 12px; }
body#co-message .co-message__faq-question { font-size: 16px; }
body#co-message .co-message__faq-question::before { color: var(--u-theme); }
body#co-message .co-message__faq-question::after { color: var(--u-theme); }
body#co-message .co-message__faq-answer { color: var(--u-sub); font-size: 14px; }

/* ---- 最終CTA（締めバンド2×金CTA） ---- */
body#co-message .co-message__final-cta { min-height: 560px; }
body#co-message .co-message__final-cta-inner { min-height: 560px; }
body#co-message .co-message__final-cta-media::after { background: linear-gradient(100deg, rgba(22, 24, 28, 0.96) 0%, rgba(42, 52, 66, 0.82) 48%, rgba(42, 52, 66, 0.32) 100%); }
body#co-message .co-message__final-cta .section__eyebrow { color: var(--u-silver); }
body#co-message .co-message__final-cta .section__eyebrow::after { background: var(--u-silver); }
body#co-message .co-message__final-cta h2 { font-size: 31px; line-height: 1.5; letter-spacing: 0.03em; }
body#co-message .co-message__final-cta p { color: #D5DBE4; font-size: 18px; line-height: 1.9; }
@media (max-width: 850px) {
  body#co-message .co-message__final-cta-media::after { background: linear-gradient(180deg, rgba(22, 24, 28, 0.3) 0%, rgba(22, 24, 28, 0.95) 65%); }
}

/* ---- 〜900px：セクション48px ---- */
@media (max-width: 900px) {
  body#co-message .section { padding: 48px 0; }
  body#co-message .section--compact { padding: 48px 0; }
}

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