    /* ═══ CTA Footer 見出し ═══ */
    .c-cta_footer__link .cp-vision-header {
      display: flex;
      flex-direction: column;
      position: relative;
      z-index: 2;
      margin-bottom: 16px;
      padding-top: 1.2em;
    }
    .c-cta_footer__link .cp-vision-header::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 60px;
      height: 4px;
      border-radius: 2px;
      background: linear-gradient(90deg, #e63e1c, #f5a623, #d4c826, #2ea854, #2b7ec1, #a8d8ea);
    }
    .c-cta_footer__link .cp-vision-header__en {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      font-weight: 900;
      color: #fff;
      letter-spacing: 0.02em;
      line-height: 1;
    }
    .c-cta_footer__link .cp-vision-header__sub {
      font-size: clamp(0.85rem, 1.1vw, 1rem);
      color: rgba(255,255,255,0.7);
      margin-top: 8px;
    }

    /* ═══ ベース背景 ═══ */
    body {
      background-color: #fff !important;
    }

    /* ═══ 共通ヘッダーデザイン — BLUEDGE風 ═══ */
    :root { --header-height: 100px; }
    .l-header {
      height: 100px !important;
      background: #fff !important;
      box-shadow: none !important;
      transition: background 0.3s, box-shadow 0.3s;
    }
    .l-header__navi {
      margin-left: auto !important;
      gap: min(1.2vw + 10px, 30px) !important;
      padding: 0 min(1.4vw + 12px, 35px) !important;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
      background: transparent !important;
      height: 50px;
      align-items: center;
    }
    .l-header__navi__link {
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .l-header__navi__link a {
      font-size: 14px;
      white-space: nowrap;
      color: #333;
      transition: color 0.3s;
    }
    .l-header__navi__link a:hover { color: #4a9fd9; }
    .nav-plus {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 20px; height: 20px;
      border: none; background: transparent;
      cursor: pointer;
      font-family: 'Montserrat', sans-serif;
      font-size: 16px; font-weight: 400;
      color: #999; padding: 0; line-height: 1;
      transition: color 0.2s, transform 0.3s;
      flex-shrink: 0;
    }
    .nav-plus:hover { color: #4a9fd9; }
    .nav-plus.is-open { transform: rotate(45deg); color: #4a9fd9; }
    /* CTAボタン — 角丸レクタングル */
    .l-header__language a.header-cta {
      display: inline-flex !important;
      align-items: center;
      gap: 0.5em;
      height: 48px;
      padding: 0 1.8em !important;
      background: #0f3068 !important;
      color: #fff !important;
      border-radius: 999px !important;
      font-size: 12px !important;
      font-weight: 600 !important;
      text-decoration: none !important;
      white-space: nowrap;
      box-shadow: 0 2px 8px rgba(11,42,92,0.3);
      transition: opacity 0.3s;
    }
    .l-header__language a.header-cta:hover {
      opacity: 0.85;
    }
    .l-header__language a.header-cta .cta-arrow {
      display: inline-block;
      width: 18px;
      height: 18px;
      background: #fff;
      border-radius: 50%;
      position: relative;
      flex-shrink: 0;
    }
    .l-header__language a.header-cta .cta-arrow::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 6px;
      height: 6px;
      border-top: 2px solid #0f3068;
      border-right: 2px solid #0f3068;
      transform: translate(-60%, -50%) rotate(45deg);
    }

    /* ═══ プライマリーボタン ═══ */
    .c-button-primary .button,
    .c-button-primary a,
    .c-button-primary button {
      background: transparent !important;
      border: none !important;
      border-radius: 0 !important;
      color: #4a9fd9 !important;
      padding: 0 !important;
      min-width: auto !important;
      gap: 0 !important;
      position: relative;
    }
    .c-button-primary .button .text,
    .c-button-primary a .text,
    .c-button-primary button .text {
      font-size: 1.125rem !important;
      font-weight: 500;
      letter-spacing: 0.05em;
      position: relative;
      z-index: 1;
      padding-right: 1em;
    }
    .c-button-primary .button .text::after,
    .c-button-primary a .text::after,
    .c-button-primary button .text::after {
      content: "";
      display: inline-block;
      width: 50px;
      height: 1px;
      background: #4a9fd9;
      vertical-align: middle;
      margin-left: 1em;
    }
    .c-button-primary .button .icon,
    .c-button-primary a .icon,
    .c-button-primary button .icon {
      width: 52px !important;
      height: 52px !important;
      background: transparent !important;
      border: 2px solid #4a9fd9 !important;
      border-radius: 50% !important;
      color: #4a9fd9 !important;
      position: relative;
    }
    .c-button-primary .button .icon::before,
    .c-button-primary a .icon::before,
    .c-button-primary button .icon::before {
      display: none !important;
    }
    .c-button-primary .button .icon svg,
    .c-button-primary a .icon svg,
    .c-button-primary button .icon svg {
      color: #4a9fd9 !important;
      fill: #4a9fd9 !important;
    }
    .c-button-primary .button .icon img,
    .c-button-primary a .icon img,
    .c-button-primary button .icon img {
      filter: none !important;
    }
    /* ホバー */
    .c-button-primary .button:hover,
    .c-button-primary a:hover,
    .c-button-primary button:hover {
      background: transparent !important;
      color: #4a9fd9 !important;
      opacity: 1;
    }
    .c-button-primary a .text::after,
    .c-button-primary button .text::after {
      transition: width 0.3s ease;
    }
    .c-button-primary a:hover .text::after,
    .c-button-primary button:hover .text::after {
      width: 80px;
    }
    .c-button-primary .button:hover .icon,
    .c-button-primary a:hover .icon,
    .c-button-primary button:hover .icon {
      background: #4a9fd9 !important;
      border-color: #4a9fd9 !important;
      color: #fff !important;
    }
    .c-button-primary a:hover .icon svg,
    .c-button-primary button:hover .icon svg {
      color: #fff !important;
      fill: #fff !important;
    }
    /* -white バリアント */
    .c-button-primary.-white a {
      color: #fff !important;
    }
    .c-button-primary.-white a .text::after {
      background: #fff;
    }
    .c-button-primary.-white a .icon {
      border-color: #fff !important;
      color: #fff !important;
    }
    .c-button-primary.-white a .icon svg {
      color: #fff !important;
      fill: #fff !important;
    }
    .c-button-primary.-white a:hover {
      background: transparent !important;
      color: #fff !important;
    }
    .c-button-primary.-white a:hover .icon {
      background: #fff !important;
      border-color: #fff !important;
      color: #4a9fd9 !important;
    }
    .c-button-primary.-white a:hover .icon svg {
      color: #4a9fd9 !important;
      fill: #4a9fd9 !important;
    }

    /* ═══ 見出し — 虹色グラデーションボーダー ═══ */
    .c-heading-primary {
      position: relative;
      padding-top: 1.2em !important;
    }
    .c-heading-primary::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 60px;
      height: 4px;
      border-radius: 2px;
      background: linear-gradient(90deg, #e63e1c, #f5a623, #d4c826, #2ea854, #2b7ec1, #a8d8ea);
    }
    .c-heading-primary.-white::before {
      background: linear-gradient(90deg, #e63e1c, #f5a623, #d4c826, #2ea854, #2b7ec1, #a8d8ea);
    }
    .c-heading-primary__detail::before {
      display: none !important;
    }
    .c-heading-primary__detail {
      padding-left: 0 !important;
    }


    /* ═══ CTA Footer ═══ */
    .c-cta_footer__link {
      position: relative;
    }
    .cta-overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.45);
      z-index: 1;
      pointer-events: none;
    }
    .c-cta_footer__link .c-heading-primary {
      position: relative;
      z-index: 2;
    }
    .c-cta_footer__link .c-button-primary {
      display: flex !important;
      justify-content: flex-end !important;
      width: 100%;
      position: relative;
      z-index: 2;
    }
    .c-cta_footer__link > a {
      display: flex !important;
      flex-direction: column !important;
      align-items: stretch !important;
    }
    .c-cta_footer__link > a > p {
      position: relative;
      z-index: 2;
    }
    .c-cta_footer__link .c-button-primary span {
      display: flex;
      align-items: center;
    }
    .c-cta_footer__link .c-button-primary .cta-btn-inner {
      display: flex;
      align-items: center;
      color: #fff !important;
    }
    .c-cta_footer__link .c-button-primary a,
    .c-cta_footer__link .c-button-primary span {
      color: #fff !important;
    }
    .c-cta_footer__link .c-button-primary .text::after {
      background: #fff !important;
      width: 80px !important;
    }
    .c-cta_footer__link .c-button-primary .icon {
      border-color: #fff !important;
      background: transparent !important;
    }
    .c-cta_footer__link .c-button-primary .icon svg {
      color: #fff !important;
      fill: #fff !important;
    }
    .c-cta_footer__link > a > .icon {
      display: none !important;
    }


    /* ═══ ヘッダー常時固定 ═══ */
    .is-down .l-header {
      transform: translateY(0) !important;
    }

    /* （ロゴ切替は header.php で共通制御） */

    /* ═══ ナビパネル（ATSUGI風） ═══ */
    .l-header__navi__mega,
    .l-header__navi__mega::before,
    .js-mega_content {
      display: none !important;
    }
    .l-header.is-act {
      background: transparent !important;
    }
    .l-header.is-act .l-header__navi {
      box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
    }
    .l-header.is-act .header-logo--white { opacity: 0; transform: translateY(-4px); }
    .l-header.is-act .header-logo--black { opacity: 1; transform: translateY(0); }
    .l-header.is-act .l-header__navi__link a { color: #333; }
    .l-header.is-act .nav-plus { color: #999; }
    .l-header__navi__link[data-nav-panel].is-panel-active > a {
      color: #4a9fd9 !important;
    }
    .l-header__navi__link[data-nav-panel].is-panel-active > a::after {
      display: none;
    }
    /* ── Nav Dropdown Card Overlay (transparent, click-to-close) ── */
    .l-headerNavPanel__layer {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: transparent;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      z-index: 8003;
    }
    .l-headerNavPanel__layer.is-active {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }
    /* ── Compact card dropdown container (A-pattern only) ── */
    .l-headerNavPanel__container:has(.nav-dropdown) {
      position: fixed;
      top: 80px;
      left: 0;
      width: auto;
      background: transparent;
      padding-top: 8px;
      transform: none;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.25s ease, visibility 0.25s ease;
      z-index: 8004;
      pointer-events: none;
      box-shadow: none;
    }
    .l-headerNavPanel__container:has(.nav-dropdown).is-active {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: none;
      box-shadow: none;
    }
    /* ── Card grid ── */
    .nav-dropdown {
      display: flex;
      gap: 14px;
      padding: 20px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    }
    .nav-dropdown__card {
      position: relative;
      display: block;
      width: 220px;
      height: 155px;
      border-radius: 10px;
      overflow: hidden;
      text-decoration: none;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                  box-shadow 0.35s ease;
    }
    .nav-dropdown__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 28px rgba(0,0,0,0.18);
    }
    .nav-dropdown__card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: brightness(0.85);
      transition: filter 0.4s ease, transform 0.5s ease;
    }
    .nav-dropdown__card:hover img {
      filter: brightness(0.95);
      transform: scale(1.06);
    }
    .nav-dropdown__card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 65%;
      background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
      pointer-events: none;
      transition: opacity 0.35s ease;
    }
    .nav-dropdown__card:hover::after {
      opacity: 0.8;
    }
    .nav-dropdown__label {
      position: absolute;
      bottom: 14px;
      left: 14px;
      right: 14px;
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      z-index: 1;
      display: flex;
      align-items: center;
      gap: 8px;
      letter-spacing: 0.02em;
    }
    .nav-dropdown__arrow {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      background: #4a9fd9;
      border-radius: 5px;
      margin-left: auto;
      flex-shrink: 0;
      color: #fff;
      overflow: hidden;
    }
    .nav-dropdown__arrow svg {
      flex-shrink: 0;
      transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .nav-dropdown__card:hover .nav-dropdown__arrow svg {
      animation: arrowSlide 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    }
    @keyframes arrowSlide {
      0%   { transform: translateX(0); }
      40%  { transform: translateX(14px); opacity: 0; }
      41%  { transform: translateX(-14px); opacity: 0; }
      100% { transform: translateX(0); opacity: 1; }
    }

    /* ═══ Header logo scroll switch (shared) ═══ */
  .header-logo-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    max-height: 46px;
  }
  .header-logo {
    max-height: 46px;
    width: auto;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .header-logo--black {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(4px);
  }
  .header-logo--white {
    opacity: 1;
    transform: translateY(0);
  }
  body.logo-scrolled .header-logo--white {
    opacity: 0;
    transform: translateY(-4px);
  }
  body.logo-scrolled .header-logo--black {
    opacity: 1;
    transform: translateY(0);
  }

    /* ═══ Footer utility classes ═══ */
    .footer-text-white { color: #fff; font-size: 1.025rem; margin-top: 0.5em; position: relative; z-index: 1; }
    .footer-relative-z2 { position: relative; z-index: 2; }
    .footer-fw500 { font-weight: 500; }
    .footer-centered-text { max-width: 600px; margin: 0 auto; }
    .footer-fw700 { font-weight: 700; }

    /* ═══ パターン切替ボタン（全ページ共通） ═══ */
    .skip-loading #loading-screen {
      display: none !important;
    }
    .fixed-pattern-switch {
      position: fixed;
      bottom: 24px;
      left: 24px;
      z-index: 9999;
      display: flex;
      align-items: center;
      gap: 6px;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(8px);
      padding: 8px 14px;
      border-radius: 999px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    }
    .fixed-pattern-switch__label {
      font-family: 'Montserrat', sans-serif;
      font-size: 10px;
      font-weight: 600;
      color: #666;
      letter-spacing: 0.05em;
      margin-right: 2px;
    }
    .pattern-btn {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.2s;
      color: #999;
      background: #f0f0f0;
    }
    .pattern-btn.is-current {
      background: #0f3068;
      color: #fff;
    }
    .pattern-btn:not(.is-current):hover {
      background: #ddd;
      color: #333;
    }

    /* ═══ 共通KV（gaaboo風テキストアニメーション） ═══ */
    .cs-kv { position: relative; background: #fff; padding: 80px 0 72px; }
    .cs-kv__inner {
      width: min(90.2040816327vw + 36.7346938776px, 1480px);
      margin: 0 auto;
      padding: 0 min(1.6326530612vw + 13.8775510204px, 40px);
    }
    .cs-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; }
    .cs-kv__ja { font-family: 'Noto Sans JP', sans-serif; font-size: clamp(1rem, 1.5vw, 1.25rem); font-weight: 700; color: #555; padding-left: 15px; opacity: 0; animation: kvJaFade 0.5s ease 1s forwards; }
    .cs-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); } }
    @keyframes kvJaFade { to { opacity: 1; } }
    @media (max-width: 768px) {
      .cs-kv { padding: 120px 0 48px; }
      .cs-kv__inner { padding: 0 20px; }
    }

    /* ═══ 共通レイアウトシステム ═══ */
    /*
     * 統一ルール:
     *   コンテナ幅: min(90.2040816327vw + 36.7346938776px, 1480px)
     *   パディング: min(1.6326530612vw + 13.8775510204px, 40px)
     *   ブレークポイント: 1024px / 768px
     */
    .ns-container {
      width: min(90.2040816327vw + 36.7346938776px, 1480px);
      margin: 0 auto;
      padding: 0 min(1.6326530612vw + 13.8775510204px, 40px);
      box-sizing: border-box;
    }
    .ns-section {
      padding: 80px 0;
    }
    @media (max-width: 1024px) {
      .ns-container { width: 100%; padding-left: 20px; padding-right: 20px; }
    }
    @media (max-width: 768px) {
      .ns-section { padding: 50px 0; }
    }

    /* ═══ CTA フッター共通（画像フル幅、テキストをセクション幅に揃え） ═══ */
    .c-cta_footer .c-cta_footer__link:first-child > a {
      padding-left: calc((100vw - min(90.2040816327vw + 36.7346938776px, 1480px)) / 2 + min(1.6326530612vw + 13.8775510204px, 40px)) !important;
    }
    .c-cta_footer .c-cta_footer__link:last-child > a {
      padding-right: calc((100vw - min(90.2040816327vw + 36.7346938776px, 1480px)) / 2 + min(1.6326530612vw + 13.8775510204px, 40px)) !important;
    }
