    /* ═══ ページ全体 ═══ */
    body {
      overflow-x: clip;
    }

    /* ═══ 内部ページヘッダー ═══ */
    .l-header__inner {
      filter: none !important;
    }

    /* ═══ ページ固有スタイル（company） ═══ */

    /* ページKV（gaaboo風 クリーンレイアウト） */
    .cp-kv {
      position: relative;
      background: #fff;
      padding: 80px 0 72px;
    }
    .cp-kv__inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 40px;
      width: 100%;
    }
    .cp-kv__breadcrumb {
      font-size: 0.8125rem;
      color: #888;
      margin-bottom: 24px;
    }
    .cp-kv__breadcrumb a {
      color: #0f3068;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    .cp-kv__breadcrumb a:hover {
      color: #2b7ec1;
    }
    .cp-kv__breadcrumb span {
      margin: 0 0.5em;
      color: #d1d1d6;
    }
    .cp-kv__en {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(3.5rem, 9vw, 7.5rem);
      font-weight: 900;
      color: #111;
      line-height: 1.05;
      letter-spacing: -0.02em;
    }
    .cp-kv__ja {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: clamp(1rem, 1.5vw, 1.25rem);
      font-weight: 700;
      color: #1a4a8a;
      padding-left: 15px;
    }
    .cp-kv__line {
      max-width: 1280px;
      margin: 72px auto 0;
      padding: 0 40px 0 calc(40px + 160px + clamp(24px, 3vw, 48px));
      position: relative;
      overflow: visible;
    }
    @media (max-width: 1023px) {
      .cp-kv__line {
        padding: 0 40px;
      }
    }
    .cp-kv__line::after {
      content: "";
      display: block;
      width: 100%;
      height: 0;
      border-top: 1px dashed #d1d1d6;
    }
    /* ─── 2カラムステージ ─── */
    .cp-stage {
      display: flex;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 40px;
    }
    .cp-stage__body {
      flex: 1;
      min-width: 0;
    }
    /* ステージ内のセクションはmax-width不要（親が制御） */
    .cp-stage .cp-vision-section__inner,
    .cp-stage .cp-section__inner {
      max-width: none;
      padding: 0;
    }
    .cp-stage .cp-vision-section {
      padding-left: 0;
      padding-right: 0;
    }

    /* ─── セクションナビ（左サイド） ─── */
    .cp-side-nav {
      position: sticky;
      top: 120px;
      width: 160px;
      flex-shrink: 0;
      align-self: flex-start;
      padding-top: 80px;
      margin-right: clamp(24px, 3vw, 48px);
      z-index: 10;
    }
    .cp-side-nav__label {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 600;
      color: #a0acba;
      letter-spacing: 0.05em;
      margin-bottom: 16px;
    }
    .cp-side-nav__list {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .cp-side-nav__list li {
      margin-bottom: 6px;
    }
    .cp-side-nav__link {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 500;
      color: #ccc;
      text-decoration: none;
      padding: 4px 0;
      transition: color 0.3s ease;
    }
    .cp-side-nav__link::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #d1d1d6;
      flex-shrink: 0;
      transition: background 0.3s ease, transform 0.3s ease;
    }
    .cp-side-nav__link:hover {
      color: #0f3068;
    }
    .cp-side-nav__link:hover::before {
      background: #0f3068;
    }
    .cp-side-nav__link.is-active {
      color: #333;
      font-weight: 700;
    }
    .cp-side-nav__link.is-active::before {
      background: #333;
      transform: scale(1.4);
    }
    @media (max-width: 1023px) {
      .cp-stage {
        display: block;
        padding: 0;
      }
      .cp-side-nav {
        display: none;
      }
      .cp-stage .cp-vision-section__inner,
      .cp-stage .cp-section__inner {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 40px;
      }
    }

    /* 文字出現アニメーション（虹色→黒、1文字だけネイビー残し） */
    .cp-kv__char {
      display: inline-block;
      color: var(--c);
      opacity: 0;
      transform: translateY(40px) scale(0.85);
      animation:
        kvCharPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
        kvCharColor 0.6s ease forwards;
      animation-delay:
        calc(var(--i) * 0.065s + 0.3s),
        calc(var(--i) * 0.065s + 1s);
    }
    @keyframes kvCharPop {
      0%   { opacity: 0; transform: translateY(40px) scale(0.85); }
      60%  { opacity: 1; transform: translateY(-6px) scale(1.04); }
      100% { opacity: 1; transform: translateY(0) scale(1); }
    }
    @keyframes kvCharColor {
      to { color: var(--final, #111); }
    }
    .cp-kv__ja {
      opacity: 0;
      animation: kvJaFade 0.5s ease 1s forwards;
    }
    @keyframes kvJaFade {
      to { opacity: 1; }
    }

    /* パンくず */
    .cp-breadcrumb {
      background: #f8f8f8;
      padding: 14px 0;
      font-size: 0.8125rem;
      color: #888;
      border-bottom: 1px solid #e8e8e8;
    }
    .cp-breadcrumb__inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 40px;
    }
    .cp-breadcrumb a {
      color: #0f3068;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    .cp-breadcrumb a:hover {
      color: #2b7ec1;
    }
    .cp-breadcrumb span {
      margin: 0 0.5em;
      color: #d1d1d6;
    }

    /* セクション間ボーダー */
    .cp-section-border {
      border-top: 1px dashed #d1d1d6;
      margin: 80px 0;
    }
    .cp-section-border + .cp-section {
      padding-top: 0;
    }

    /* セクション共通 */
    .cp-section {
      padding: 80px 0;
    }
    .cp-section__inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 40px;
    }
    .cp-section--gray {
      background: #f5f5f5;
      position: relative;
      z-index: 0;
    }
    .cp-section--gray::before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: -100vw;
      right: -100vw;
      background: inherit;
      z-index: -1;
    }

    /* セクション見出し — 虹色グラデーションバー付き */
    .cp-heading {
      margin-bottom: 56px;
      position: relative;
    }
    .cp-heading::before {
      content: "";
      display: block;
      width: 60px;
      height: 4px;
      border-radius: 2px;
      background: linear-gradient(90deg, #e63e1c, #f5a623, #d4c826, #2ea854, #2b7ec1, #a8d8ea);
      margin-bottom: 20px;
    }
    .cp-heading--center::before {
      margin-left: auto;
      margin-right: auto;
    }
    .cp-heading__en {
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #a0acba;
      margin-bottom: 8px;
    }
    .cp-heading__ja {
      font-size: clamp(1.375rem, 2vw, 1.75rem);
      font-weight: 700;
      color: #111111;
      line-height: 1.5;
    }
    .cp-heading__sub {
      font-size: 1.025rem;
      line-height: 1.8;
      color: #555555;
      margin-top: 16px;
    }
    .cp-heading--center {
      text-align: center;
    }

    /* ─── 企業理念（2カラムレイアウト） ─── */
    .cp-vision-section {
      padding: 80px 0 0;
      overflow: visible;
    }
    .cp-vision-section__inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 40px;
    }
    /* 見出し行 */
    .cp-vision-header {
      display: flex;
      flex-direction: column;
      margin-bottom: clamp(48px, 6vw, 80px);
    }
    .cp-vision-header__en {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      font-weight: 900;
      color: #4a9fd9;
      letter-spacing: 0.02em;
      line-height: 1;
    }
    .cp-vision-header__sub {
      font-size: clamp(0.85rem, 1.1vw, 1rem);
      color: #555;
      white-space: nowrap;
      margin-top: 8px;
    }
    /* 2カラムグリッド */
    .cp-vision-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(40px, 5vw, 80px);
      align-items: center;
    }
    .cp-vision-grid__catch {
      font-size: clamp(1.3rem, 2vw, 1.75rem);
      font-weight: 700;
      color: #111;
      line-height: 1.7;
      margin-bottom: clamp(28px, 3vw, 48px);
    }
    .cp-vision-grid__body {
      margin-bottom: 0;
    }
    .cp-vision-grid__body p {
      font-size: 1rem;
      line-height: 2;
      color: #333;
      margin-bottom: 1.2em;
    }
    .cp-vision-grid__body p:last-child {
      margin-bottom: 0;
    }
    /* 右カラム：画像段違い */
    .cp-vision-grid__images {
      position: relative;
    }
    .cp-vision-grid__img {
      margin: 0;
      overflow: hidden;
      border-radius: 8px;
    }
    .cp-vision-grid__img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .cp-vision-grid__img.--single {
      aspect-ratio: 3 / 2.5;
    }
    @media (max-width: 768px) {
      .cp-vision-header {
        flex-direction: column;
        gap: 0.5em;
      }
      .cp-vision-grid {
        grid-template-columns: 1fr;
      }
      .cp-vision-grid__img.--single {
        aspect-ratio: 4 / 3;
      }
    }

    /* ─── ご挨拶 ─── */
    #sec-message {
      padding-bottom: 0;
    }
    #sec-message .cp-vision-header {
      margin-bottom: 40px;
    }
    .cp-message__marquee {
      width: 100vw;
      margin-left: calc(-50vw + 50%);
      overflow: hidden;
      margin-top: 60px;
      white-space: nowrap;
    }
    .cp-message__marquee-text {
      display: inline-block;
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(10rem, 18vw, 20rem);
      font-weight: 900;
      color: rgba(74, 159, 217, 0.07);
      letter-spacing: 0.02em;
      line-height: 1;
      word-spacing: 0.3em;
      will-change: transform;
    }
    .cp-message__title {
      font-size: 1rem;
      font-weight: 700;
      color: #0f3068;
      line-height: 1.8;
      margin: 0 0 28px;
    }
    .cp-message__grid {
      display: grid;
      grid-template-columns: 6fr 4fr;
      gap: clamp(40px, 5vw, 72px);
      align-items: start;
    }
    .cp-message__photo {
      border-radius: 4px 32px 4px 32px;
      overflow: hidden;
      box-shadow: 0 8px 40px rgba(15,48,104,0.12);
    }
    .cp-message__photo img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.4s ease;
    }
    .cp-message__photo:hover img {
      transform: scale(1.03);
    }
    .cp-message__sign {
      margin-top: 30px;
      text-align: center;
    }
    .cp-message__sign-company {
      font-size: 0.8rem;
      color: #555;
      margin-bottom: 2px;
    }
    .cp-message__sign-en {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.85rem;
      font-weight: 400;
      color: #a0acba;
      margin-left: 8px;
      letter-spacing: 0px;
    }
    .cp-message__text {
      font-size: 14px;
      line-height: 2.1;
      color: #333333;
    }
    .cp-message__text p {
      margin: 0 0 20px;
    }
    .cp-message__text p:last-child {
      margin-bottom: 0;
    }
    .cp-message__sign-role {
      font-size: 0.85rem;
      color: #555;
      font-weight: 500;
      margin-bottom: 8px;
    }
    .cp-message__sign-name {
      font-size: 1.5rem;
      font-weight: 700;
      color: #111111;
      margin: 0;
      letter-spacing: 0.08em;
    }

    /* ─── 役員紹介 ─── */
    .cp-officers__chairman-grid {
      display: grid;
      grid-template-columns: 6fr 4fr;
      gap: clamp(40px, 5vw, 72px);
      align-items: start;
    }
    .cp-officers__chairman-message {
      font-size: 14px;
      line-height: 2.1;
      color: #333333;
    }
    .cp-officers__chairman-message p {
      margin: 0 0 20px;
    }
    .cp-officers__chairman-message p:last-child {
      margin-bottom: 0;
    }
    .cp-officers__chairman-right {
      text-align: center;
    }
    .cp-officers__chairman-photo {
      border-radius: 4px 32px 4px 32px;
      overflow: hidden;
      box-shadow: 0 8px 40px rgba(15,48,104,0.12);
      margin-bottom: 30px;
    }
    .cp-officers__chairman-photo img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.4s ease;
    }
    .cp-officers__chairman-photo:hover img {
      transform: scale(1.03);
    }
    .cp-officers__chairman-company {
      font-size: 0.8rem;
      color: #555;
      margin-bottom: 2px;
    }
    .cp-officers__chairman-role {
      font-size: 0.85rem;
      color: #555;
      font-weight: 500;
      margin-bottom: 8px;
    }
    .cp-officers__chairman-name {
      font-size: 1.5rem;
      font-weight: 700;
      color: #111111;
      margin: 0;
      letter-spacing: 0.08em;
    }
    .cp-officers__chairman-en {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.85rem;
      font-weight: 400;
      color: #a0acba;
      margin-left: 8px;
      letter-spacing: 0px;
    }
    .cp-officers__chairman-message p {
      margin: 0 0 0.7em;
    }
    .cp-officers__chairman-message p:last-child {
      margin-bottom: 0;
    }
    .cp-officers__members {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: clamp(24px, 3vw, 40px);
      margin-top: clamp(48px, 6vw, 80px);
    }
    .cp-officers__member {
      text-align: center;
    }
    .cp-officers__member:nth-child(odd) {
      margin-top: 40px;
    }
    .cp-officers__member-photo {
      border-radius: 12px;
      overflow: hidden;
      margin-bottom: 16px;
    }
    .cp-officers__member-photo img {
      width: 100%;
      height: auto;
      display: block;
    }
    .cp-officers__member-role {
      font-size: 0.75rem;
      color: #a0acba;
      margin-bottom: 4px;
      font-weight: 500;
    }
    .cp-officers__member-name {
      font-size: 1.1rem;
      font-weight: 700;
      color: #111111;
      margin: 0;
      letter-spacing: 0.05em;
    }

    /* ─── 会社概要テーブル ─── */
    .cp-profile__grid {
      display: block;
    }
    .cp-profile__card {
      background: #fff;
      border-radius: 8px;
      padding: clamp(32px, 4vw, 56px);
    }
    .cp-profile__table {
      width: 100%;
      border-collapse: collapse;
      border: none;
    }
    .cp-profile__table th,
    .cp-profile__table td {
      padding: 28px 0;
      font-size: 0.95rem;
      line-height: 1.8;
      border: none;
      border-bottom: 1px solid #e8e8e8;
      text-align: left;
      vertical-align: top;
    }
    .cp-profile__table tr:last-child th,
    .cp-profile__table tr:last-child td {
      border-bottom: none;
    }
    .cp-profile__table th {
      width: 160px;
      font-weight: 700;
      color: #111111;
      background: transparent;
      white-space: nowrap;
      border-bottom: 2px solid #0f3068;
    }
    .cp-profile__table td {
      color: #333333;
    }
    .cp-profile__images {
      display: flex;
      flex-direction: column;
      gap: 24px;
      position: sticky;
      top: 120px;
    }
    .cp-profile__image {
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(15,48,104,0.08);
    }
    .cp-profile__image img {
      width: 100%;
      display: block;
      transition: transform 0.4s ease;
    }
    .cp-profile__image:hover img {
      transform: scale(1.03);
    }
    .cp-profile__image-caption {
      font-size: 0.8rem;
      color: #a0acba;
      text-align: center;
      margin-top: 10px;
      font-weight: 500;
    }

    /* ─── 沿革タイムライン ─── */
    /* ─── 沿革 ─── */
    .cp-history {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
    }
    .cp-history__line {
      position: absolute;
      top: 46px;
      bottom: 46px;
      left: 153px;
      width: 2px;
      background: #d1d1d6;
    }
    .cp-history__item {
      display: grid;
      grid-template-columns: 120px 20px 1fr;
      gap: 0 24px;
      align-items: start;
      padding: 40px 0;
      position: relative;
    }
    .cp-history__item + .cp-history__item {
      border-top: 1px solid #eee;
    }
    .cp-history__dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #4a9fd9;
      margin-top: 6px;
      justify-self: center;
      z-index: 2;
    }
    .cp-history__year {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: #0f3068;
      line-height: 1.4;
      text-align: right;
      padding-right: 8px;
    }
    .cp-history__body {
      padding-left: 8px;
    }
    .cp-history__body p {
      font-size: 0.9rem;
      line-height: 1.9;
      color: #333;
      margin: 0;
    }

    /* ─── CTA ─── */
    .cp-cta {
      background: #0f3068;
      padding: 100px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cp-cta::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, #e63e1c, #f5a623, #d4c826, #2ea854, #2b7ec1, #a8d8ea);
    }
    .cp-cta::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.05) 0%, transparent 70%);
      pointer-events: none;
    }
    .cp-cta__title {
      font-size: clamp(1.375rem, 2vw, 1.75rem);
      font-weight: 700;
      color: #fff;
      margin: 0 0 16px;
      position: relative;
    }
    .cp-cta__text {
      font-size: 1.025rem;
      color: rgba(255,255,255,0.6);
      margin-bottom: 40px;
      line-height: 1.8;
      position: relative;
    }
    .cp-cta__buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      position: relative;
    }
    .cp-cta__btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 16px 40px;
      border-radius: 999px;
      font-size: 0.925rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    .cp-cta__btn--primary {
      background: #fff;
      color: #0f3068;
    }
    .cp-cta__btn--primary:hover {
      box-shadow: 0 8px 32px rgba(255,255,255,0.25);
      transform: translateY(-2px);
    }
    .cp-cta__btn--outline {
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255,255,255,0.4);
    }
    .cp-cta__btn--outline:hover {
      border-color: rgba(255,255,255,0.8);
      background: rgba(255,255,255,0.1);
      transform: translateY(-2px);
    }

    /* ─── スクロールアニメーション ─── */
    .cp-fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .cp-fade-in.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ─── Responsive ─── */
    @media (max-width: 1024px) {
      .cp-profile__grid {
        grid-template-columns: 1fr;
      }
      .cp-profile__images {
        position: static;
        flex-direction: row;
        gap: 16px;
      }
      .cp-history__item {
        grid-template-columns: 100px 20px 1fr;
        gap: 0 16px;
      }
      .cp-history__line { left: 110px; }
    }
    @media (max-width: 768px) {
      .cp-section { padding: 72px 0; }
      .cp-kv { padding: 120px 0 48px; }
      .cp-kv__line { margin-top: 36px; }
      .cp-message__grid {
        grid-template-columns: 1fr;
      }
      .cp-message__right {
        max-width: 400px;
      }
      .cp-officers__chairman-grid {
        grid-template-columns: 1fr;
      }
      .cp-officers__chairman-right {
        max-width: 400px;
      }
      .cp-officers__members {
        grid-template-columns: repeat(2, 1fr);
      }
      .cp-profile__table th,
      .cp-profile__table td {
        display: block;
        width: 100%;
      }
      .cp-profile__table th {
        padding-bottom: 4px;
        border-bottom: none;
      }
      .cp-profile__table td {
        padding-top: 4px;
      }
      .cp-profile__images {
        flex-direction: column;
      }
      .cp-history__item {
        grid-template-columns: 80px 16px 1fr;
        gap: 0 12px;
        padding: 28px 0;
      }
      .cp-history__line { left: 88px; }
      .cp-history__year { font-size: 1.1rem; }
      .cp-history__year { font-size: 1.2rem; }
      .cp-cta { padding: 72px 0; }
      .cp-cta__buttons {
        flex-direction: column;
        align-items: center;
      }
      .cp-message__photo {
        border-radius: 4px 20px 4px 20px;
      }
    }


