@charset "UTF-8";
/* =============================================================
   トップページ固有CSS (front-page.php専用)
   ※ ベース・ヘッダー・フッター・共通ボタンは /assets/css/common.css に移動済み
   ============================================================= */

  /* Hero             */
  /* ================ */
  .hero {
    min-height: 100vh;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  .hero__orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
  }
  .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: orbFloat 15s ease-in-out infinite;
  }
  .orb-1 {
    width: 500px; height: 500px;
    top: -100px; right: -150px;
    background: radial-gradient(circle, rgba(125, 211, 252, 0.6), transparent);
    animation-delay: 0s;
  }
  .orb-2 {
    width: 400px; height: 400px;
    bottom: -100px; left: -100px;
    background: radial-gradient(circle, rgba(224, 242, 254, 0.8), transparent);
    animation-delay: 3s;
  }
  .orb-3 {
    width: 300px; height: 300px;
    top: 40%; left: 40%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.2), transparent);
    animation-delay: 6s;
  }
  @keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
  }

  .hero__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--gutter);
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
  }
  .hero__text {
    min-width: 0;
  }
  .hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 134, 204, 0.15);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--c-blue-deep);
    margin-bottom: 40px;
    font-family: var(--f-en);
    letter-spacing: 0.1em;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
  }
  .hero__badge-dot {
    width: 8px; height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
  }

  .hero__title {
    font-family: var(--f-jp);
    font-size: clamp(36px, 5.5vw, 76px);
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 32px;
    color: var(--c-blue-dark);
    word-wrap: break-word;
  }
  .hero__title span {
    display: inline-block;
    animation: titleReveal 1s cubic-bezier(0.4, 0, 0.2, 1) both;
  }
  .hero__title span:nth-child(1) { animation-delay: 0.2s; }
  .hero__title span:nth-child(2) { animation-delay: 0.3s; }
  .hero__title span:nth-child(3) { animation-delay: 0.4s; }
  .hero__title .accent {
    background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-sky-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: var(--f-jp);
    font-style: normal;
    font-weight: 900;
  }
  @keyframes titleReveal {
    from { opacity: 0; transform: translateY(40px); filter: blur(10px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
  }

  .hero__lead {
    font-size: clamp(17px, 1.5vw, 22px);
    line-height: 2.1;
    max-width: 620px;
    color: var(--c-gray-700);
    margin-bottom: 48px;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
  }
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 32px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }
  .btn--primary {
    background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-blue-deep) 100%);
    color: var(--c-white) !important;
    box-shadow: 0 8px 28px rgba(0, 134, 204, 0.35);
  }
  .btn--primary span,
  .btn--primary .btn__arrow {
    color: var(--c-white) !important;
  }
  .btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 134, 204, 0.45);
  }
  .btn--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--c-blue-deep) 0%, var(--c-blue-dark) 100%);
    opacity: 0;
    transition: opacity 0.4s;
  }
  .btn--primary:hover::before { opacity: 1; }
  .btn--primary > * { position: relative; z-index: 2; }
  .btn--ghost {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    color: var(--c-blue-deep);
    border: 1px solid rgba(0, 134, 204, 0.2);
  }
  .btn--ghost:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(6, 89, 134, 0.15);
  }
  .btn__arrow {
    font-family: var(--f-en);
    font-size: 18px;
    font-weight: 300;
    transition: transform 0.3s;
  }
  .btn:hover .btn__arrow {
    transform: translateX(4px);
  }

  /* Hero Visual (Mirror/Glass Card) */
  .hero__visual {
    position: relative;
    width: 100%;
    max-width: 480px;
    justify-self: end;
    pointer-events: none;
  }
  .mirror-card {
    position: relative;
    aspect-ratio: 4/5;
    animation: float 8s ease-in-out infinite;
  }
  @keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
  }
  .mirror-card__glass {
    position: absolute;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    box-shadow:
      0 30px 80px rgba(6, 89, 134, 0.15),
      inset 0 1px 2px rgba(255, 255, 255, 0.8);
    overflow: hidden;
  }
  .mirror-card__glass::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), transparent);
    border-radius: 40px 40px 0 0;
    pointer-events: none;
  }
  .mirror-card__main {
    width: 80%; height: 90%;
    top: 5%; left: 10%;
    z-index: 2;
  }
  .mirror-card__sub1 {
    width: 55%; height: 45%;
    top: -5%; right: -5%;
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.3), rgba(0, 134, 204, 0.2));
    z-index: 1;
    animation: subFloat1 6s ease-in-out infinite;
  }
  .mirror-card__sub2 {
    width: 40%; height: 35%;
    bottom: 5%; left: -8%;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.25), rgba(253, 230, 138, 0.15));
    z-index: 1;
    animation: subFloat2 7s ease-in-out infinite;
  }
  @keyframes subFloat1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -15px); }
  }
  @keyframes subFloat2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-15px, 10px); }
  }
  .mirror-card__content {
    position: absolute;
    inset: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--c-blue-deep);
  }
  .mirror-card__label {
    font-family: var(--f-en);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--c-blue);
    opacity: 0.7;
  }
  .mirror-card__title {
    font-family: var(--f-jp);
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.35;
    color: var(--c-blue-deep);
    font-style: normal;
    font-weight: 700;
  }
  .mirror-card__title span {
    display: block;
    font-family: var(--f-jp);
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-top: 8px;
    opacity: 0.7;
  }
  .mirror-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .mirror-card__num {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 56px;
    line-height: 1;
    color: var(--c-blue);
  }
  .mirror-card__meta {
    text-align: right;
    font-size: 11px;
    font-family: var(--f-en);
    letter-spacing: 0.15em;
    color: var(--c-gray-700);
    line-height: 1.6;
  }

  /* Scroll indicator */
  .hero__scroll {
    position: absolute;
    bottom: 30px; left: 50%;
    transform: translateX(-50%);
    font-family: var(--f-en);
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--c-gray-700);
    writing-mode: vertical-rl;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
  }
  .hero__scroll::after {
    content: '';
    width: 1px; height: 40px;
    background: linear-gradient(180deg, var(--c-blue) 0%, transparent 100%);
    animation: scrollLine 2s ease-in-out infinite;
  }
  @keyframes scrollLine {
    0%, 100% { transform: scaleY(0.3); transform-origin: top; }
    50% { transform: scaleY(1); }
  }

  /* ================ */
  /* Section Common   */
  /* ================ */
  .section { padding: 140px 0; position: relative; }
  .section__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--gutter);
  }
  .section__head {
    margin-bottom: 72px;
    text-align: center;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }
  .section__num {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-en);
    font-size: 12px;
    letter-spacing: 0.25em;
    color: var(--c-blue);
    font-weight: 600;
    margin-bottom: 20px;
  }
  .section__num::before {
    content: '';
    width: 28px; height: 1px;
    background: var(--c-blue);
  }
  .section__title {
    font-family: var(--f-jp);
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--c-blue-dark);
    margin-bottom: 28px;
  }
  .section__title em {
    font-style: normal;
    font-family: var(--f-jp);
    font-weight: 900;
    background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-sky-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .section__lead {
    font-size: 18px;
    line-height: 2.1;
    color: var(--c-gray-700);
    max-width: 760px;
    margin: 0 auto;
  }

  /* ================ */
  /* About            */
  /* ================ */
  .about {
    background: linear-gradient(180deg, transparent, rgba(224, 242, 254, 0.4));
    position: relative;
  }
  .about__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
  }
  .about-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 40px 36px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }
  .about-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), transparent);
    border-radius: 24px 24px 0 0;
    pointer-events: none;
  }
  .about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(6, 89, 134, 0.12);
    border-color: rgba(0, 134, 204, 0.2);
  }
  .about-card__icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--c-light-blue) 0%, var(--c-sky-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
  }
  .about-card__icon::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), transparent);
  }
  .about-card__icon svg {
    width: 28px; height: 28px;
    position: relative;
    z-index: 2;
  }
  .about-card__title {
    font-family: var(--f-jp);
    font-size: 20px;
    font-weight: 700;
    color: var(--c-blue-dark);
    margin-bottom: 16px;
    line-height: 1.5;
  }
  .about-card__desc {
    font-size: 16px;
    line-height: 2;
    color: var(--c-gray-700);
  }

  /* ================ */
  /* Services         */
  /* ================ */
  .services {
    position: relative;
  }
  .services__list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
  }
  .service-row {
    display: grid;
    grid-template-columns: 120px 120px 1fr 1.6fr auto;
    gap: 36px;
    align-items: center;
    padding: 32px 0;
    border-top: 1px solid rgba(0, 134, 204, 0.15);
    transition: all 0.4s;
    position: relative;
  }
  .service-row:last-child {
    border-bottom: 1px solid rgba(0, 134, 204, 0.15);
  }
  .service-row::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(224, 242, 254, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    border-radius: 24px;
  }
  .service-row:hover::before {
    opacity: 1;
  }
  .service-row:hover .service-row__num {
    transform: scale(1.1);
    color: var(--c-blue);
  }
  .service-row:hover .service-row__title {
    color: var(--c-blue);
  }
  .service-row:hover .service-row__visual {
    transform: translateY(-4px);
  }

  /* Service Visual (abstract KAGAMI-style) */
  .service-row__visual {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(224, 242, 254, 0.6), rgba(255, 255, 255, 0.8));
    backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 24px rgba(6, 89, 134, 0.08);
  }
  .service-row__visual::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent);
    pointer-events: none;
    z-index: 2;
  }
  .service-row__visual svg {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
  }

  /* ============================== */
  /* Service Visuals (Redesigned)   */
  /* ============================== */

  /* Visual 1 - RESKILLING: 成長棒グラフ */
  .sv-shape--reskilling {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    padding: 20px 16px;
  }
  .sv-shape--reskilling .bar {
    width: 14px;
    background: linear-gradient(180deg, var(--c-sky-blue) 0%, var(--c-blue) 100%);
    border-radius: 4px 4px 0 0;
    box-shadow: 0 2px 6px rgba(0, 134, 204, 0.3);
    animation: skillGrow 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    transform-origin: bottom;
  }
  .sv-shape--reskilling .bar:nth-child(1) { height: 25%; animation-delay: 0s; --peak: 30%; }
  .sv-shape--reskilling .bar:nth-child(2) { height: 40%; animation-delay: 0.2s; --peak: 50%; }
  .sv-shape--reskilling .bar:nth-child(3) { height: 55%; animation-delay: 0.4s; --peak: 65%; }
  .sv-shape--reskilling .bar:nth-child(4) { height: 70%; animation-delay: 0.6s; --peak: 80%; }
  .sv-shape--reskilling .bar:nth-child(5) { height: 85%; animation-delay: 0.8s; --peak: 95%; }
  @keyframes skillGrow {
    0% { transform: scaleY(0.2); opacity: 0.5; }
    50% { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(0.2); opacity: 0.5; }
  }
  .sv-shape--reskilling::after {
    content: '↑';
    position: absolute;
    top: 14px; right: 14px;
    font-size: 14px;
    color: var(--c-accent);
    font-weight: 700;
    animation: arrowPulse 2s ease-in-out infinite;
  }
  @keyframes arrowPulse {
    0%, 100% { transform: translateY(0); opacity: 0.7; }
    50% { transform: translateY(-4px); opacity: 1; }
  }

  /* Visual 2 - WITHAI: PC画面に教材表示 */
  .sv-shape--withai {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .sv-shape--withai .laptop {
    position: relative;
    width: 80px;
    height: 54px;
  }
  .sv-shape--withai .laptop-screen {
    width: 80px;
    height: 52px;
    background: linear-gradient(135deg, var(--c-blue-deep) 0%, var(--c-blue) 100%);
    border-radius: 6px 6px 2px 2px;
    border: 2px solid var(--c-blue-dark);
    padding: 5px;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 134, 204, 0.3);
  }
  .sv-shape--withai .laptop-base {
    width: 92px;
    height: 4px;
    background: var(--c-blue-dark);
    margin-left: -6px;
    border-radius: 0 0 8px 8px;
  }
  .sv-shape--withai .screen-content {
    position: relative;
    height: 100%;
  }
  .sv-shape--withai .screen-line {
    height: 2px;
    background: var(--c-sky-blue);
    border-radius: 2px;
    margin-bottom: 3px;
    animation: screenFlow 2.5s ease-in-out infinite;
  }
  .sv-shape--withai .screen-line:nth-child(1) { width: 70%; animation-delay: 0s; }
  .sv-shape--withai .screen-line:nth-child(2) { width: 90%; animation-delay: 0.3s; background: var(--c-white); opacity: 0.7; }
  .sv-shape--withai .screen-line:nth-child(3) { width: 60%; animation-delay: 0.6s; background: var(--c-accent); }
  .sv-shape--withai .screen-line:nth-child(4) { width: 80%; animation-delay: 0.9s; background: var(--c-white); opacity: 0.5; }
  .sv-shape--withai .screen-line:nth-child(5) { width: 50%; animation-delay: 1.2s; background: var(--c-sky-blue); }
  @keyframes screenFlow {
    0%, 100% { opacity: 0.4; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(2px); }
  }

  /* Visual 3 - IMPLEMENTATION: AI脳ネットワーク */
  .sv-shape--implementation {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .sv-shape--implementation .ai-core {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--c-sky-blue), var(--c-blue) 60%, var(--c-blue-deep));
    box-shadow: 0 0 24px rgba(0, 134, 204, 0.6);
    position: relative;
    z-index: 3;
    animation: aiCorePulse 2s ease-in-out infinite;
  }
  @keyframes aiCorePulse {
    0%, 100% { box-shadow: 0 0 24px rgba(0, 134, 204, 0.6); transform: scale(1); }
    50% { box-shadow: 0 0 36px rgba(0, 134, 204, 0.9); transform: scale(1.1); }
  }
  .sv-shape--implementation .ai-node {
    position: absolute;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--c-blue);
    box-shadow: 0 0 10px rgba(0, 134, 204, 0.5);
    animation: nodeFloat 3s ease-in-out infinite;
  }
  .sv-shape--implementation .ai-node:nth-child(2) { top: 18%; left: 22%; animation-delay: 0s; background: var(--c-accent); }
  .sv-shape--implementation .ai-node:nth-child(3) { top: 20%; right: 20%; animation-delay: 0.5s; }
  .sv-shape--implementation .ai-node:nth-child(4) { bottom: 22%; left: 18%; animation-delay: 1s; }
  .sv-shape--implementation .ai-node:nth-child(5) { bottom: 20%; right: 22%; animation-delay: 1.5s; background: var(--c-accent); }
  .sv-shape--implementation .ai-node:nth-child(6) { top: 48%; left: 12%; animation-delay: 0.7s; width: 7px; height: 7px; }
  .sv-shape--implementation .ai-node:nth-child(7) { top: 50%; right: 10%; animation-delay: 1.2s; width: 7px; height: 7px; }
  @keyframes nodeFloat {
    0%, 100% { transform: translate(0, 0); opacity: 0.6; }
    50% { transform: translate(2px, -3px); opacity: 1; }
  }
  .sv-shape--implementation svg.ai-lines {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
  }
  .sv-shape--implementation svg.ai-lines line {
    stroke: var(--c-blue);
    stroke-width: 1;
    opacity: 0.3;
    stroke-dasharray: 3 3;
    animation: aiLineFlow 2s linear infinite;
  }
  @keyframes aiLineFlow {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -6; }
  }

  /* Visual 4 - AI ADVISORY: 相談の吹き出し対話 */
  .sv-shape--advisory {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .sv-shape--advisory .bubble {
    position: absolute;
    padding: 6px 10px;
    border-radius: 14px;
    font-family: var(--f-en);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    animation: bubbleAppear 3s ease-in-out infinite;
  }
  .sv-shape--advisory .bubble--left {
    top: 20%; left: 14%;
    background: var(--c-white);
    color: var(--c-blue-deep);
    border: 1.5px solid var(--c-blue);
    animation-delay: 0s;
  }
  .sv-shape--advisory .bubble--left::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 14px;
    width: 10px; height: 10px;
    background: var(--c-white);
    border-right: 1.5px solid var(--c-blue);
    border-bottom: 1.5px solid var(--c-blue);
    transform: rotate(45deg);
  }
  .sv-shape--advisory .bubble--right {
    bottom: 20%; right: 14%;
    background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-blue-deep) 100%);
    color: var(--c-white);
    animation-delay: 1.5s;
    box-shadow: 0 4px 12px rgba(0, 134, 204, 0.3);
  }
  .sv-shape--advisory .bubble--right::after {
    content: '';
    position: absolute;
    top: -5px; right: 14px;
    width: 10px; height: 10px;
    background: var(--c-blue-deep);
    transform: rotate(45deg);
  }
  @keyframes bubbleAppear {
    0%, 100% { transform: scale(0.95) translateY(0); opacity: 0.85; }
    50% { transform: scale(1.05) translateY(-2px); opacity: 1; }
  }
  .sv-shape--advisory .connect-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--c-accent);
    position: absolute;
    animation: connectDotPulse 1.5s ease-in-out infinite;
  }
  .sv-shape--advisory .connect-dot:nth-child(3) { top: 50%; left: 45%; animation-delay: 0s; }
  .sv-shape--advisory .connect-dot:nth-child(4) { top: 52%; left: 52%; animation-delay: 0.3s; }
  .sv-shape--advisory .connect-dot:nth-child(5) { top: 48%; left: 59%; animation-delay: 0.6s; }
  @keyframes connectDotPulse {
    0%, 100% { transform: scale(0.6); opacity: 0.4; }
    50% { transform: scale(1.2); opacity: 1; }
  }

  /* Visual 5 - DEVELOPMENT: プログラミングコード */
  .sv-shape--development {
    position: absolute;
    inset: 0;
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    font-family: var(--f-en);
    font-size: 8px;
  }
  .sv-shape--development .code-line {
    display: flex;
    align-items: center;
    gap: 4px;
    animation: codeType 4s steps(1) infinite;
    opacity: 0;
  }
  .sv-shape--development .code-line:nth-child(1) { animation-delay: 0s; }
  .sv-shape--development .code-line:nth-child(2) { animation-delay: 0.4s; padding-left: 8px; }
  .sv-shape--development .code-line:nth-child(3) { animation-delay: 0.8s; padding-left: 16px; }
  .sv-shape--development .code-line:nth-child(4) { animation-delay: 1.2s; padding-left: 8px; }
  .sv-shape--development .code-line:nth-child(5) { animation-delay: 1.6s; }
  @keyframes codeType {
    0% { opacity: 0; transform: translateX(-4px); }
    8%, 90% { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; }
  }
  .sv-shape--development .code-num {
    width: 10px;
    color: var(--c-gray-500);
    font-weight: 600;
    flex-shrink: 0;
  }
  .sv-shape--development .code-token {
    padding: 1px 3px;
    border-radius: 2px;
    font-weight: 600;
  }
  .sv-shape--development .code-token--blue { color: var(--c-blue); }
  .sv-shape--development .code-token--accent { color: #D97706; }
  .sv-shape--development .code-token--gray { color: var(--c-gray-700); }
  .sv-shape--development .code-token--green { color: #059669; }
  .sv-shape--development::after {
    content: '_';
    position: absolute;
    bottom: 18px; right: 22px;
    color: var(--c-blue);
    font-family: var(--f-en);
    font-size: 10px;
    font-weight: 700;
    animation: cursorBlink 1s steps(1) infinite;
  }
  @keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
  }

  /* Visual 6 - MEDIA: 記事カード */
  .sv-shape--media {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .sv-shape--media .article {
    position: absolute;
    width: 56px;
    background: var(--c-white);
    border: 1px solid rgba(0, 134, 204, 0.2);
    border-radius: 6px;
    padding: 6px;
    box-shadow: 0 4px 12px rgba(6, 89, 134, 0.1);
    animation: articleFloat 3s ease-in-out infinite;
  }
  .sv-shape--media .article-thumb {
    width: 100%;
    height: 16px;
    background: linear-gradient(135deg, var(--c-sky-blue), var(--c-blue));
    border-radius: 3px;
    margin-bottom: 4px;
  }
  .sv-shape--media .article-line {
    height: 2px;
    background: var(--c-gray-300);
    border-radius: 1px;
    margin-bottom: 2px;
  }
  .sv-shape--media .article-line:nth-child(2) { width: 100%; }
  .sv-shape--media .article-line:nth-child(3) { width: 70%; }
  .sv-shape--media .article:nth-child(1) {
    transform: rotate(-6deg) translate(-14px, 6px);
    animation-delay: 0s;
    z-index: 1;
  }
  .sv-shape--media .article:nth-child(2) {
    transform: rotate(0deg) translate(0, 0);
    animation-delay: 0.5s;
    z-index: 3;
  }
  .sv-shape--media .article:nth-child(2) .article-thumb {
    background: linear-gradient(135deg, var(--c-accent), #F59E0B);
  }
  .sv-shape--media .article:nth-child(3) {
    transform: rotate(6deg) translate(14px, 6px);
    animation-delay: 1s;
    z-index: 2;
  }
  @keyframes articleFloat {
    0%, 100% { transform-origin: center; translate: 0 0; }
    50% { translate: 0 -4px; }
  }
  .sv-shape--media .article:nth-child(1) {
    animation-name: articleFloat1;
  }
  .sv-shape--media .article:nth-child(3) {
    animation-name: articleFloat3;
  }
  @keyframes articleFloat1 {
    0%, 100% { transform: rotate(-6deg) translate(-14px, 6px); }
    50% { transform: rotate(-8deg) translate(-14px, 2px); }
  }
  @keyframes articleFloat3 {
    0%, 100% { transform: rotate(6deg) translate(14px, 6px); }
    50% { transform: rotate(8deg) translate(14px, 2px); }
  }

  .service-row__num {
    font-family: var(--f-en);
    font-size: 64px;
    font-weight: 300;
    color: var(--c-gray-300);
    line-height: 1;
    transition: all 0.4s;
    letter-spacing: -0.02em;
  }

  /* ================ */
  /* Mission          */
  /* ================ */
  .mission {
    padding: 180px 0;
    position: relative;
    overflow: hidden;
  }
  .mission::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 20% 20%, rgba(125, 211, 252, 0.25), transparent 50%),
      radial-gradient(ellipse at 80% 80%, rgba(251, 191, 36, 0.1), transparent 50%),
      linear-gradient(180deg, #F0F9FF 0%, #E0F2FE 100%);
    z-index: -1;
  }
  .mission__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--gutter);
    position: relative;
    z-index: 1;
  }
  .mission__head {
    text-align: center;
    margin-bottom: 80px;
  }
  .mission__label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--f-en);
    font-size: 13px;
    letter-spacing: 0.3em;
    color: var(--c-blue);
    font-weight: 600;
    margin-bottom: 32px;
  }
  .mission__label::before,
  .mission__label::after {
    content: '';
    width: 40px; height: 1px;
    background: var(--c-blue);
  }
  .mission__statement {
    font-family: var(--f-jp);
    font-size: clamp(48px, 8vw, 120px);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--c-blue-dark);
    margin-bottom: 28px;
  }
  .mission__statement em {
    font-style: normal;
    font-family: var(--f-jp);
    font-weight: 900;
    background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-sky-blue) 50%, var(--c-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
  }
  .mission__body {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .mission__text {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .mission__text p {
    font-size: 19px;
    line-height: 2.3;
    color: var(--c-gray-900);
    font-weight: 400;
  }
  .mission__text p.lead {
    font-size: 24px;
    font-weight: 700;
    line-height: 2;
    color: var(--c-blue-dark);
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(0, 134, 204, 0.2);
    text-align: center;
    margin-bottom: 8px;
  }
  .mission__text p strong {
    color: var(--c-blue);
    font-weight: 700;
  }
  .mission__text p.closing {
    font-size: 22px;
    font-weight: 700;
    color: var(--c-blue-dark);
    text-align: center;
    margin-top: 24px;
    line-height: 2.1;
  }

  /* ================ */
  /* Consortium       */
  /* ================ */
  .consortium {
    background: linear-gradient(180deg, transparent, rgba(224, 242, 254, 0.3));
  }
  .consortium__viz {
    max-width: 920px;
    margin: 40px auto 72px;
    position: relative;
    padding: 60px 40px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 16px 48px rgba(6, 89, 134, 0.08);
  }
  .consortium__viz::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 40%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent);
    pointer-events: none;
    border-radius: 40px 40px 0 0;
  }

  /* Consortium Diagram: HALUX center + 3 partners around (all equal size) */
  .consortium__diagram {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    z-index: 2;
  }
  .consortium-node {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-align: center;
    transition: all 0.4s;
    width: 32%;
    aspect-ratio: 1;
    padding: 16px;
    flex-direction: column;
    gap: 6px;
    border: 3px solid;
    box-shadow: 0 12px 32px rgba(6, 89, 134, 0.1);
    z-index: 2;
  }
  .consortium-node:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 40px rgba(6, 89, 134, 0.18);
  }
  /* HALUX center - 淡い青 */
  .consortium-node--center {
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    border-color: var(--c-blue);
    z-index: 3;
  }
  .consortium-node--center:hover {
    transform: translate(-50%, -50%) scale(1.05);
  }
  .consortium-node--center .consortium-node__en {
    color: var(--c-blue);
    font-size: clamp(20px, 2.6vw, 26px);
    letter-spacing: 0.25em;
    font-weight: 700;
  }
  .consortium-node--center .consortium-node__jp {
    color: var(--c-blue-dark);
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 900;
    line-height: 1.35;
  }
  /* AI研修領域 - 淡い紫 */
  .consortium-node--training {
    top: 0; left: 4%;
    background: linear-gradient(135deg, #EDE9FE 0%, #DDD6FE 100%);
    border-color: #A78BFA;
  }
  .consortium-node--training .consortium-node__en {
    color: #7C3AED;
    font-size: clamp(18px, 2.2vw, 22px);
    letter-spacing: 0.2em;
    font-weight: 700;
  }
  .consortium-node--training .consortium-node__jp {
    color: #5B21B6;
    font-size: clamp(15px, 1.8vw, 18px);
    font-weight: 700;
    line-height: 1.4;
  }
  /* AI開発領域 - 淡い緑 */
  .consortium-node--dev {
    top: 0; right: 4%;
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    border-color: #34D399;
  }
  .consortium-node--dev .consortium-node__en {
    color: #047857;
    font-size: clamp(18px, 2.2vw, 22px);
    letter-spacing: 0.2em;
    font-weight: 700;
  }
  .consortium-node--dev .consortium-node__jp {
    color: #065F46;
    font-size: clamp(15px, 1.8vw, 18px);
    font-weight: 700;
    line-height: 1.4;
  }
  /* 業務改善 - 淡い赤 */
  .consortium-node--ops {
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    border-color: #F87171;
  }
  .consortium-node--ops:hover {
    transform: translateX(-50%) scale(1.05);
  }
  .consortium-node--ops .consortium-node__en {
    color: #B91C1C;
    font-size: clamp(18px, 2.2vw, 22px);
    letter-spacing: 0.2em;
    font-weight: 700;
  }
  .consortium-node--ops .consortium-node__jp {
    color: #991B1B;
    font-size: clamp(15px, 1.8vw, 18px);
    font-weight: 700;
    line-height: 1.4;
  }

  /* Connection lines */
  .consortium__diagram svg.consortium__lines {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: visible;
  }
  .consortium__lines line {
    stroke-width: 2.5;
    stroke-dasharray: 6 4;
    opacity: 0.55;
    animation: consortiumFlow 2s linear infinite;
    stroke-linecap: round;
  }
  .consortium__lines line.line-training { stroke: #A78BFA; }
  .consortium__lines line.line-dev { stroke: #34D399; }
  .consortium__lines line.line-ops { stroke: #F87171; }
  @keyframes consortiumFlow {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -10; }
  }

  /* Consortium details below diagram */
  .consortium__details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
  }
  .consortium-detail {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 36px 32px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
  }
  .consortium-detail::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 45%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent);
    pointer-events: none;
  }
  .consortium-detail:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(6, 89, 134, 0.12);
  }
  .consortium-detail__label {
    font-family: var(--f-en);
    font-size: 11px;
    letter-spacing: 0.25em;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
  }
  .consortium-detail:nth-child(1) .consortium-detail__label { color: #7C3AED; }
  .consortium-detail:nth-child(1) {
    border-top: 4px solid #A78BFA;
  }
  .consortium-detail:nth-child(2) .consortium-detail__label { color: #047857; }
  .consortium-detail:nth-child(2) {
    border-top: 4px solid #34D399;
  }
  .consortium-detail:nth-child(3) .consortium-detail__label { color: #B91C1C; }
  .consortium-detail:nth-child(3) {
    border-top: 4px solid #F87171;
  }
  .consortium-detail__title {
    font-family: var(--f-jp);
    font-size: 20px;
    font-weight: 700;
    color: var(--c-blue-dark);
    margin-bottom: 16px;
    line-height: 1.5;
    position: relative;
    z-index: 2;
  }
  .consortium-detail__desc {
    font-size: 15.5px;
    line-height: 2;
    color: var(--c-gray-700);
    position: relative;
    z-index: 2;
  }
  .consortium__note {
    text-align: center;
    margin-top: 48px;
    font-size: 16px;
    color: var(--c-gray-700);
    line-height: 2;
  }
  .consortium__note strong {
    color: var(--c-blue);
    font-weight: 700;
  }
  .service-row__heading {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .service-row__en {
    font-family: var(--f-en);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--c-blue);
  }
  .service-row__title {
    font-family: var(--f-jp);
    font-size: 24px;
    font-weight: 700;
    color: var(--c-blue-dark);
    line-height: 1.5;
    transition: color 0.3s;
  }
  .service-row__desc {
    font-size: 16px;
    line-height: 2;
    color: var(--c-gray-700);
  }
  .service-row__arrow {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(224, 242, 254, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-en);
    font-size: 18px;
    color: var(--c-blue);
    transition: all 0.4s;
  }
  .service-row:hover .service-row__arrow {
    background: var(--c-blue);
    color: var(--c-white);
    transform: rotate(-45deg) scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 134, 204, 0.3);
  }
  .service-row--nolink {
    opacity: 0.7;
    cursor: default;
    pointer-events: none;
  }
  .service-row--nolink .service-row__arrow {
    background: rgba(203, 213, 225, 0.5);
    color: var(--c-gray-500);
  }
  .service-row--nolink .service-row__arrow-text {
    font-family: var(--f-en);
    font-size: 9px;
    letter-spacing: 0.15em;
  }


  /* ================ */
  /* Flow (Approach)  */
  /* ================ */
  .flow {
    background: linear-gradient(180deg, transparent, rgba(224, 242, 254, 0.6), transparent);
    position: relative;
  }
  .flow__diagram {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    margin-top: 60px;
  }
  .flow__line {
    position: absolute;
    top: 80px;
    left: 12.5%; right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--c-blue) 0%, var(--c-sky-blue) 50%, var(--c-blue) 100%);
    background-size: 20px 2px;
    background-repeat: repeat-x;
    background-image: repeating-linear-gradient(90deg, var(--c-blue) 0, var(--c-blue) 6px, transparent 6px, transparent 12px);
    z-index: 0;
    opacity: 0.5;
  }
  .flow-step {
    position: relative;
    z-index: 2;
    text-align: center;
  }
  .flow-step__circle {
    width: 160px; height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 2px solid rgba(0, 134, 204, 0.15);
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
  }
  .flow-step__circle::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 50% 50% 0 0;
    pointer-events: none;
  }
  .flow-step:hover .flow-step__circle {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 134, 204, 0.2);
    border-color: var(--c-blue);
    background: rgba(224, 242, 254, 0.8);
  }
  .flow-step__num {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 44px;
    color: var(--c-blue);
    line-height: 1;
    position: relative;
    z-index: 2;
  }
  .flow-step__step {
    font-family: var(--f-en);
    font-size: 10px;
    letter-spacing: 0.25em;
    color: var(--c-blue);
    margin-top: 4px;
    position: relative;
    z-index: 2;
  }
  .flow-step__title {
    font-family: var(--f-jp);
    font-size: 18px;
    font-weight: 700;
    color: var(--c-blue-dark);
    margin-bottom: 10px;
  }
  .flow-step__title-en {
    display: block;
    font-family: var(--f-en);
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--c-blue);
    margin-bottom: 12px;
    font-weight: 500;
  }
  .flow-step__desc {
    font-size: 15px;
    line-height: 1.9;
    color: var(--c-gray-700);
    max-width: 240px;
    margin: 0 auto;
  }

  .flow__note {
    margin: 60px auto 0;
    text-align: center;
    padding: 24px 36px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    max-width: 780px;
    font-size: 15px;
    color: var(--c-gray-700);
    border: 1px solid rgba(0, 134, 204, 0.1);
    line-height: 1.8;
  }
  .flow__note strong { color: var(--c-blue); font-weight: 600; }

  /* ================ */
  /* News             */
  /* ================ */
  .news {
    position: relative;
  }
  .news__head-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: end;
    margin-bottom: 48px;
  }
  .news__head-row .section__head {
    text-align: left;
    margin: 0;
  }
  .news__all-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 134, 204, 0.15);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-blue-deep);
    transition: all 0.3s;
  }
  .news__all-link:hover {
    background: var(--c-blue);
    color: var(--c-white);
    transform: translateY(-2px);
  }
  .news__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .news-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .news-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 40%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), transparent);
    border-radius: 24px 24px 0 0;
    pointer-events: none;
  }
  .news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(6, 89, 134, 0.1);
    border-color: rgba(0, 134, 204, 0.2);
  }
  .news-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
  }
  .news-card__date {
    font-family: var(--f-en);
    font-size: 12px;
    color: var(--c-gray-700);
    letter-spacing: 0.05em;
  }
  .news-card__cat {
    font-family: var(--f-en);
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    background: var(--c-light-blue);
    color: var(--c-blue);
    letter-spacing: 0.1em;
  }
  .news-card__cat--press { background: #FEF3C7; color: #92400E; }
  .news-card__cat--update { background: #D1FAE5; color: #065F46; }
  .news-card__title {
    font-family: var(--f-jp);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.75;
    color: var(--c-blue-dark);
    position: relative;
    z-index: 2;
  }
  .news-card__arrow {
    font-family: var(--f-en);
    font-size: 16px;
    color: var(--c-blue);
    margin-top: auto;
    transition: transform 0.3s;
    position: relative;
    z-index: 2;
  }
  .news-card:hover .news-card__arrow {
    transform: translateX(6px);
  }

  /* ================ */
  /* Recruit          */
  /* ================ */
  .recruit {
    background: linear-gradient(180deg, rgba(224, 242, 254, 0.3), transparent);
  }
  .recruit__card {
    background: linear-gradient(135deg, var(--c-blue-deep) 0%, var(--c-blue) 100%);
    border-radius: 40px;
    padding: 80px;
    color: var(--c-white);
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .recruit__card::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 70%);
    pointer-events: none;
    animation: orbFloat 20s ease-in-out infinite;
  }
  .recruit__card::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(125, 211, 252, 0.25), transparent 70%);
    pointer-events: none;
  }
  .recruit__text {
    position: relative;
    z-index: 2;
  }
  .recruit__label {
    font-family: var(--f-en);
    font-size: 12px;
    letter-spacing: 0.25em;
    color: var(--c-sky-blue);
    margin-bottom: 20px;
    font-weight: 600;
  }
  .recruit__title {
    font-family: var(--f-jp);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 24px;
  }
  .recruit__title em {
    font-style: normal;
    font-family: var(--f-jp);
    font-weight: 900;
    color: var(--c-sky-blue);
  }
  .recruit__desc {
    font-size: 17px;
    line-height: 2.1;
    color: rgba(255, 255, 255, 0.9);
  }
  .recruit__actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 2;
  }
  .recruit-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: var(--c-white);
    transition: all 0.3s;
  }
  .recruit-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(6px);
  }
  .recruit-btn__text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
  }
  .recruit-btn__text p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
  }
  .recruit-btn__arrow {
    font-family: var(--f-en);
    font-size: 22px;
  }

  /* ================ */
  /* Final CTA        */
  /* ================ */
  .final-cta {
    padding: 140px 0;
    text-align: center;
    position: relative;
  }
  .final-cta__inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 var(--gutter);
    position: relative;
    z-index: 2;
  }
  .final-cta__title {
    font-family: var(--f-jp);
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.3;
    color: var(--c-blue-dark);
    margin-bottom: 32px;
  }
  .final-cta__title em {
    font-style: normal;
    font-family: var(--f-jp);
    font-weight: 900;
    color: var(--c-blue-dark);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
  }
  .final-cta__desc {
    font-size: 18px;
    line-height: 2.1;
    color: var(--c-gray-700);
    margin-bottom: 48px;
  }

  /* ================ */
  /* Scroll Animation */
  /* ================ */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    filter: blur(6px);
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.9s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
  .reveal-stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .reveal-stagger.is-visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
  .reveal-stagger.is-visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
  .reveal-stagger.is-visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
  .reveal-stagger.is-visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }
  .reveal-stagger.is-visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }
  .reveal-stagger.is-visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.55s; }

  /* ================ */
  /* Responsive       */
  /* ================ */
  @media (max-width: 1024px) {
    .hero__inner { grid-template-columns: 1fr; gap: 40px; }
    .hero__visual { max-width: 360px; justify-self: center; opacity: 0.9; }
    .about__grid { grid-template-columns: 1fr; }
    .service-row { grid-template-columns: 100px 1fr; gap: 24px; padding: 28px 0; }
    .service-row__visual { width: 100px; height: 100px; }
    .service-row__num { grid-column: 2; font-size: 40px; margin-top: 0; }
    .service-row__heading { grid-column: 2; }
    .service-row__desc { grid-column: 1 / -1; font-size: 15px; }
    .service-row__title { font-size: 20px; }
    .service-row__arrow { grid-row: 1 / span 2; grid-column: 2; justify-self: end; width: 40px; height: 40px; }
    .flow__diagram { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .flow__line { display: none; }
    .news__grid { grid-template-columns: 1fr 1fr; }
    .recruit__card { grid-template-columns: 1fr; gap: 40px; padding: 56px 40px; }
    .site-footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .mission { padding: 120px 0; }
    .mission__body { grid-template-columns: 1fr; gap: 48px; }
    .mission__viz { position: relative; top: 0; max-width: 480px; margin: 0 auto; }
    .consortium__details { grid-template-columns: 1fr; }
    .consortium__diagram { max-width: 480px; }
  }
  @media (max-width: 768px) {
    .site-header {
      top: 8px; left: 8px; right: 8px;
      border-radius: 100px;
    }
    .site-header__inner { padding: 0 20px; height: 56px; }
    .nav { display: none; }
    .hamburger {
      display: flex;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
    }
    .hamburger span { width: 22px; height: 2px; background: var(--c-blue-deep); }

    /* Hero */
    .hero { padding: 100px 0 80px; }
    .hero__title { font-size: clamp(30px, 9vw, 46px); line-height: 1.3; }
    .hero__title br { display: none; }
    .hero__title span { display: inline; }
    .hero__lead { font-size: 15px; line-height: 1.95; }
    .hero__lead br { display: none; }
    .hero__meta-text { font-size: 12px; }

    /* Section common */
    .section { padding: 80px 0; }
    .section__title { font-size: clamp(26px, 7vw, 36px); line-height: 1.4; }
    .section__title br { display: none; }
    .section__head { margin-bottom: 48px; }
    .section__lead { font-size: 15px; line-height: 2; }

    /* Mission */
    .mission { padding: 80px 0; }
    .mission__statement { font-size: clamp(42px, 14vw, 72px); line-height: 1.25; }
    .mission__head { margin-bottom: 48px; }
    .mission__label { font-size: 11px; margin-bottom: 20px; }
    .mission__label::before,
    .mission__label::after { width: 24px; }
    .mission__text p { font-size: 15.5px; line-height: 2.05; }
    .mission__text p.lead { font-size: 18px; line-height: 1.85; padding-bottom: 20px; }
    .mission__text p.closing { font-size: 18px; line-height: 1.85; margin-top: 16px; }
    .mission__text p.closing br { display: none; }
    .mission__viz { aspect-ratio: auto; padding: 60px 24px; }

    /* About */
    .about__text-title { font-size: 24px; line-height: 1.5; }
    .about__text-title br { display: none; }
    .about__text-desc { font-size: 15px; line-height: 2; }
    .about__feature { font-size: 14px; }

    /* Services */
    .services__list { gap: 0; margin-top: 40px; }
    .service-row {
      grid-template-columns: 72px 1fr;
      gap: 16px;
      padding: 24px 0;
      align-items: start;
    }
    .service-row__visual { width: 72px; height: 72px; border-radius: 16px; }
    .service-row__num { font-size: 28px; margin: 0; line-height: 1.2; }
    .service-row__heading { gap: 4px; }
    .service-row__en { font-size: 10px; letter-spacing: 0.15em; }
    .service-row__title { font-size: 17px; line-height: 1.4; }
    .service-row__desc {
      grid-column: 1 / -1;
      font-size: 14px;
      line-height: 1.9;
      margin-top: 8px;
    }
    .service-row__arrow {
      grid-row: 1;
      grid-column: 2;
      justify-self: end;
      align-self: center;
      width: 36px; height: 36px;
      font-size: 14px;
    }
    .service-row--nolink .service-row__arrow-text { font-size: 8px; }

    /* Flow */
    .flow__diagram { grid-template-columns: 1fr; gap: 28px; padding: 0 8px; }
    .flow__line { display: none; }
    .flow-step__title { font-size: 20px; }
    .flow-step__title-en { font-size: 11px; }
    .flow-step__desc { font-size: 14px; line-height: 1.9; }
    .flow-step__circle { margin: 0 auto 20px; }
    .flow__note {
      margin: 48px 16px 0;
      padding: 20px 24px;
      font-size: 13.5px;
      line-height: 1.85;
      border-radius: 20px;
      max-width: none;
      width: auto;
    }

    /* Consortium */
    .consortium__viz { padding: 32px 16px; border-radius: 28px; }
    .consortium__diagram { max-width: 100%; }
    .consortium-node {
      padding: 8px;
      gap: 2px;
      border-width: 2px;
    }
    .consortium-node--center .consortium-node__en {
      font-size: clamp(11px, 3.5vw, 16px);
      letter-spacing: 0.15em;
    }
    .consortium-node--center .consortium-node__jp {
      font-size: clamp(9px, 2.8vw, 13px);
      line-height: 1.3;
    }
    .consortium-node--training .consortium-node__en,
    .consortium-node--dev .consortium-node__en,
    .consortium-node--ops .consortium-node__en {
      font-size: clamp(9px, 2.5vw, 12px);
      letter-spacing: 0.1em;
    }
    .consortium-node--training .consortium-node__jp,
    .consortium-node--dev .consortium-node__jp,
    .consortium-node--ops .consortium-node__jp {
      font-size: clamp(8px, 2.4vw, 11px);
      line-height: 1.35;
    }
    .consortium-detail { padding: 28px 22px; }
    .consortium-detail__title { font-size: 18px; }
    .consortium-detail__desc { font-size: 14.5px; line-height: 1.9; }
    .consortium__note { font-size: 14px; margin-top: 32px; line-height: 1.9; }
    .consortium__note br { display: none; }

    /* News */
    .news__grid { grid-template-columns: 1fr; gap: 16px; }
    .news__head-row { grid-template-columns: 1fr; gap: 24px; }
    .news-item { padding: 20px; }
    .news-item__title { font-size: 15px; }

    /* Recruit */
    .recruit__card { padding: 40px 24px; }
    .recruit__title { font-size: 24px; line-height: 1.5; }
    .recruit__title br { display: none; }
    .recruit__desc { font-size: 14px; line-height: 1.9; }

    /* Final CTA */
    .final-cta { padding: 80px 0; }
    .final-cta__title { font-size: clamp(26px, 7vw, 40px); line-height: 1.4; }
    .final-cta__title br { display: none; }
    .final-cta__desc { font-size: 15px; line-height: 2; margin-bottom: 32px; }

    /* Footer */
    .site-footer__top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
    .footer-brand__desc { font-size: 13.5px; }
    .footer-col a, .footer-col__nolink { font-size: 13.5px; }
  }
  @media (max-width: 640px) {
    :root { --gutter: 16px; }
    .section { padding: 64px 0; }
    .hero { padding: 84px 0 56px; }
    .hero__title { font-size: clamp(26px, 8.5vw, 38px); }
    .hero__lead { font-size: 14.5px; }
    .section__title { font-size: clamp(22px, 6.5vw, 30px); }
    .mission { padding: 64px 0; }
    .mission__statement { font-size: clamp(36px, 13vw, 58px); }

    .service-row {
      grid-template-columns: 60px 1fr;
      gap: 14px;
    }
    .service-row__visual { width: 60px; height: 60px; border-radius: 14px; }
    .service-row__num { font-size: 24px; }
    .service-row__title { font-size: 16px; }
    .service-row__desc { font-size: 13.5px; margin-top: 6px; }
    .service-row__arrow { width: 32px; height: 32px; font-size: 12px; }

    .flow__diagram { gap: 20px; padding: 0; }
    .flow-step { padding: 28px 20px; }
    .flow__note {
      margin: 40px 8px 0;
      padding: 18px 20px;
      font-size: 13px;
      border-radius: 16px;
