
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      /* ── Brand core (preserved) ── */
      --navy:    #142440;
      --navy-l:  #1e3357;
      --navy-d:  #0d1b33;
      --teal:    #1fb4cb;
      --teal-l:  #4fd0e0;
      --teal-d:  #0e8294;
      --teal-bg: #ecf8fb;
      --teal-bg2:#f5fcfe;
      --amber:   #e8972e;
      --amber-d: #b06f14;
      --amber-bg:#fdf4e6;
      --indigo:  #5566a8;
      --indigo-bg:#eef0f8;

      /* ── Neutrals (warm, premium) ── */
      --white:   #ffffff;
      --cream:   #fbfaf8;
      --off:     #f6f8fb;
      --paper:   #f8f9fc;
      --text:    #18283f;
      --sub:     #56697f;
      --muted:   #97a4b6;
      --border:  #e7edf4;
      --border-soft: #eef2f7;
      --line:    #edf1f6;

      /* ── Layered shadows ── */
      --shadow:    rgba(20,36,64,.06);
      --shadow-sm: 0 1px 2px rgba(20,36,64,.04), 0 2px 8px rgba(20,36,64,.045);
      --shadow-md: 0 4px 14px rgba(20,36,64,.05), 0 14px 36px rgba(20,36,64,.06);
      --shadow-lg: 0 10px 30px rgba(20,36,64,.07), 0 28px 70px rgba(20,36,64,.085);
      --shadow-teal: 0 10px 30px rgba(31,180,203,.20);

      --font-en: 'Inter', sans-serif;
      --font-ja: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
      --ease: cubic-bezier(.22,1,.36,1);
    }

    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
    body { font-family: var(--font-ja); color: var(--text); line-height: 1.85; overflow-x: hidden; background: #fff; letter-spacing: .01em; }
    a { color: inherit; }
    ::selection { background: rgba(31,180,203,.18); color: var(--navy); }

    /* ── ANIMATIONS ── */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
    .reveal.visible { opacity: 1; transform: none; }
    .d1{transition-delay:.08s} .d2{transition-delay:.16s} .d3{transition-delay:.24s} .d4{transition-delay:.32s}

    /* ━━━ HEADER ━━━ */
    #header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 900;
      height: 76px; display: flex; align-items: center;
      transition: background .4s var(--ease), box-shadow .4s var(--ease), height .4s var(--ease);
    }
    #header.scrolled {
      background: rgba(255,255,255,.86);
      box-shadow: 0 1px 0 rgba(20,36,64,.06), 0 8px 30px rgba(20,36,64,.06);
      backdrop-filter: saturate(180%) blur(14px);
      height: 66px;
    }
    .header-inner { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 0 clamp(20px,5vw,56px); max-width: 1280px; margin: 0 auto; }

    .h-logo { text-decoration: none; display: inline-flex; align-items: center; }
    .h-logo img { height: 34px; width: auto; }
    .logo-white { display: block; }
    .logo-color { display: none; }
    #header.scrolled .logo-white { display: none; }
    #header.scrolled .logo-color { display: block; }

    .h-nav { display: flex; align-items: center; gap: 34px; }
    .h-nav a { color: rgba(255,255,255,.88); text-decoration: none; font-size: .83rem; letter-spacing: .03em; font-weight: 500; transition: color .25s; position: relative; }
    .h-nav a::after { content:''; position: absolute; bottom: -5px; left: 0; right: 0; height: 1.5px; background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
    .h-nav a:hover { color: #fff; }
    .h-nav a:hover::after { transform: scaleX(1); }
    #header.scrolled .h-nav a { color: var(--sub); }
    #header.scrolled .h-nav a:hover { color: var(--navy); }
    .h-nav-btn { background: var(--teal) !important; color: #fff !important; padding: 10px 24px; border-radius: 999px; font-weight: 700; font-size: .82rem; letter-spacing: .02em; box-shadow: 0 6px 18px rgba(31,180,203,.28); transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s; }
    .h-nav-btn:hover { background: var(--teal-d) !important; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(31,180,203,.36); }
    .h-nav-btn::after { display: none !important; }
    #header.scrolled .h-nav-btn { color: #fff !important; }

    /* hamburger */
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
    .hamburger span { display: block; width: 24px; height: 2px; border-radius: 2px; background: #fff; transition: all .3s var(--ease); }
    #header.scrolled .hamburger span { background: var(--navy); }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* mobile menu */
    .mobile-menu { display: none; position: fixed; inset: 0; z-index: 800; background: rgba(255,255,255,.97); padding: 96px 32px 40px; flex-direction: column; opacity: 0; transform: translateY(-8px); transition: opacity .35s var(--ease), transform .35s var(--ease); backdrop-filter: blur(16px); }
    .mobile-menu.open { opacity: 1; transform: none; }
    .mobile-menu a { display: block; padding: 18px 0; color: var(--navy); text-decoration: none; font-size: 1.05rem; font-weight: 600; border-bottom: 1px solid var(--line); transition: color .2s, padding-left .25s var(--ease); }
    .mobile-menu a:hover { color: var(--teal-d); padding-left: 6px; }
    .mobile-menu-cta { margin-top: 30px; display: block; text-align: center; background: var(--teal); color: #fff !important; padding: 16px; border-radius: 10px; font-weight: 800; font-size: 1rem; text-decoration: none; box-shadow: 0 10px 26px rgba(31,180,203,.3); border-bottom: none !important; }

    /* ━━━ HERO ━━━ */
    #hero {
      min-height: 100vh;
      background:
        radial-gradient(1200px 600px at 78% -10%, rgba(31,180,203,.14), transparent 60%),
        radial-gradient(900px 500px at 10% 110%, rgba(232,151,46,.08), transparent 55%),
        linear-gradient(165deg, #e3f6fa 0%, #f1fbfd 32%, #ffffff 66%, #f3f8ff 100%);
      display: flex; flex-direction: column; justify-content: center;
      padding: 120px 0 96px;
      position: relative; overflow: hidden;
    }
    .hero-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px,5vw,56px);
      display: grid; grid-template-columns: 1.05fr 1fr;
      gap: 64px; align-items: center;
    }
    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; padding: 0 22px; gap: 44px; }
      .hero-img-wrap { order: -1; }
    }
    .hero-blob-1 { position: absolute; top: -140px; right: -130px; width: 540px; height: 540px; border-radius: 50%; background: radial-gradient(circle, rgba(31,180,203,.16) 0%, transparent 65%); pointer-events: none; }
    .hero-blob-2 { position: absolute; bottom: -100px; left: -110px; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(232,151,46,.1) 0%, transparent 65%); pointer-events: none; }
    .hero-blob-3 { position: absolute; top: 55%; left: 22%; width: 200px; height: 200px; border-radius: 50%; background: rgba(31,180,203,.06); pointer-events: none; }

    .hero-content { position: relative; z-index: 1; }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 9px;
      background: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.9);
      border-radius: 999px; padding: 8px 20px;
      font-size: .73rem; letter-spacing: .1em; color: var(--teal-d);
      font-family: var(--font-en); font-weight: 600;
      box-shadow: var(--shadow-sm); backdrop-filter: blur(6px);
      margin-bottom: 32px;
    }
    .hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(31,180,203,.18); animation: blink 2.4s ease-in-out infinite; }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.45} }

    .hero-title {
      font-size: clamp(2rem, 3.4vw, 3.2rem);
      font-weight: 900; color: var(--navy);
      letter-spacing: -.03em; line-height: 1.3; margin-bottom: 26px;
    }
    .hero-title .hl { color: var(--teal-d); position: relative; }
    .hero-title .hl::after { content:''; position: absolute; left: 0; right: 0; bottom: .06em; height: .28em; background: linear-gradient(90deg, rgba(31,180,203,.18), rgba(31,180,203,.05)); border-radius: 3px; z-index: -1; }

    .hero-sub { font-size: clamp(.92rem, 1.7vw, 1.08rem); color: var(--sub); line-height: 2.05; margin-bottom: 42px; }

    .hero-btns { display: flex; gap: 14px; justify-content: flex-start; flex-wrap: wrap; }
    .btn-primary { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-d) 100%); color: #fff; padding: 16px 42px; border-radius: 999px; font-weight: 700; font-size: .94rem; text-decoration: none; letter-spacing: .03em; transition: transform .25s var(--ease), box-shadow .25s var(--ease); box-shadow: var(--shadow-teal); border: none; cursor: pointer; font-family: var(--font-ja); display: inline-block; }
    .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(31,180,203,.32); }
    .btn-sec { background: rgba(255,255,255,.9); color: var(--navy); border: 1.5px solid var(--border); padding: 15px 34px; border-radius: 999px; font-weight: 600; font-size: .94rem; text-decoration: none; transition: all .25s var(--ease); box-shadow: var(--shadow-sm); display: inline-block; }
    .btn-sec:hover { border-color: var(--teal); color: var(--teal-d); transform: translateY(-3px); }

    .hero-tags { display: flex; gap: 10px; justify-content: flex-start; flex-wrap: wrap; margin-top: 38px; }
    .hero-tag-chip { background: rgba(255,255,255,.78); border: 1px solid var(--border-soft); border-radius: 999px; padding: 8px 16px; font-size: .77rem; color: var(--sub); box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 7px; backdrop-filter: blur(4px); }
    .hero-tag-chip svg { color: var(--teal); flex-shrink: 0; }

    .hero-img-wrap {
      position: relative; z-index: 1; border-radius: 24px; overflow: hidden;
      box-shadow: var(--shadow-lg);
      aspect-ratio: 4/3;
    }
    .hero-img-wrap::after { content:''; position: absolute; inset: 0; border-radius: 24px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.4); pointer-events: none; }
    .hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .slideshow { position: relative; width: 100%; aspect-ratio: 4/3; overflow: hidden; border-radius: 24px; }
    .slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s var(--ease); transform: scale(1.04); }
    .slide.active { opacity: 1; transform: scale(1); transition: opacity 1s var(--ease), transform 6s ease-out; }
    .slide img { width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block; }
    .slide-dots { position: absolute; bottom: 58px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
    .dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.5); border: none; cursor: pointer; padding: 0; transition: all .35s var(--ease); }
    .dot.active { background: #fff; width: 24px; border-radius: 4px; }
    .hero-img-badge {
      position: absolute; bottom: 16px; left: 16px; z-index: 5;
      background: rgba(255,255,255,.92); border-radius: 12px; padding: 11px 17px;
      display: flex; align-items: center; gap: 9px;
      box-shadow: var(--shadow-md); font-size: .78rem; backdrop-filter: blur(6px);
    }
    .hero-img-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex-shrink: 0; box-shadow: 0 0 0 4px rgba(31,180,203,.16); }
    .hero-img-badge span { font-weight: 700; color: var(--navy); }
    .hero-img-badge small { color: var(--sub); font-size: .68rem; display: block; letter-spacing: .06em; }
    .scroll-indicator { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--muted); font-family: var(--font-en); font-size: .6rem; letter-spacing: .22em; }
    .scroll-bar { width: 1px; height: 46px; background: linear-gradient(to bottom, transparent, var(--teal)); animation: scrollAnim 2.2s ease-in-out infinite; }
    @keyframes scrollAnim { 0%,100%{opacity:.25} 50%{opacity:1} }

    /* ━━━ NAV CARDS ━━━ */
    #nav-cards { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .nav-cards-row { display: grid; grid-template-columns: repeat(4,1fr); max-width: 1200px; margin: 0 auto; }
    .nci { padding: 30px 20px; text-align: center; text-decoration: none; color: var(--sub); border-right: 1px solid var(--line); transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease); display: flex; flex-direction: column; align-items: center; gap: 11px; }
    .nci:last-child { border-right: none; }
    .nci:hover { background: var(--teal-bg2); color: var(--teal-d); }
    .nci-icon { width: 46px; height: 46px; border-radius: 14px; background: var(--teal-bg); display: flex; align-items: center; justify-content: center; color: var(--teal-d); transition: all .3s var(--ease); }
    .nci:hover .nci-icon { background: var(--teal); color: #fff; transform: translateY(-3px); box-shadow: 0 10px 22px rgba(31,180,203,.28); }
    .nci-ja { font-size: .8rem; font-weight: 700; color: var(--navy); }
    .nci-en { font-family: var(--font-en); font-size: .6rem; letter-spacing: .16em; color: var(--muted); }

    /* ━━━ SECTION COMMON ━━━ */
    .section { padding: 124px 0; }
    .section-sm { padding: 72px 0; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px,5vw,56px); }
    .sec-eyebrow { font-family: var(--font-en); font-size: .68rem; letter-spacing: .26em; color: var(--teal-d); font-weight: 700; margin-bottom: 16px; display: inline-flex; align-items: center; gap: 12px; }
    .sec-eyebrow::before { content:''; width: 26px; height: 1.5px; background: linear-gradient(90deg, var(--teal), var(--teal-l)); border-radius: 2px; }
    .sec-title { font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 900; color: var(--navy); line-height: 1.3; letter-spacing: -.02em; }
    .sec-desc { margin-top: 18px; color: var(--sub); font-size: .95rem; line-height: 2; max-width: 580px; }

    /* ━━━ PHILOSOPHY ━━━ */
    #philosophy { background: linear-gradient(180deg, var(--teal-bg2) 0%, var(--teal-bg) 100%); padding: 120px 0; position: relative; overflow: hidden; }
    #philosophy::before, #philosophy::after { content:'“'; position: absolute; font-family: Georgia, serif; color: rgba(31,180,203,.08); font-size: 22rem; line-height: 1; }
    #philosophy::before { top: -40px; left: 4%; }
    #philosophy::after { content:'”'; bottom: -150px; right: 4%; }
    .phil-inner { max-width: 800px; margin: 0 auto; padding: 0 40px; text-align: center; position: relative; z-index: 1; }
    .phil-eyebrow { font-family: var(--font-en); font-size: .7rem; letter-spacing: .26em; color: var(--teal-d); font-weight: 700; margin-bottom: 32px; }
    .phil-copy { font-size: clamp(1.18rem, 2.4vw, 1.78rem); font-weight: 400; color: var(--navy); line-height: 2.3; letter-spacing: .03em; }
    .phil-copy strong { font-weight: 700; color: var(--navy); }
    .phil-copy em { color: var(--teal-d); font-style: normal; font-weight: 700; }
    .phil-rule { width: 48px; height: 3px; border-radius: 2px; background: linear-gradient(90deg, var(--teal), var(--amber)); margin: 44px auto 0; }

    /* ━━━ STATS ━━━ */
    #stats { background: #fff; }
    .stats-row { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-md); background: #fff; }
    .stat-box { padding: 52px 20px; text-align: center; border-right: 1px solid var(--line); position: relative; transition: background .3s var(--ease); }
    .stat-box:last-child { border-right: none; }
    .stat-box:hover { background: var(--teal-bg2); }
    .stat-val { font-family: var(--font-en); font-size: clamp(2.5rem, 4.4vw, 3.5rem); font-weight: 800; color: var(--navy); line-height: 1; letter-spacing: -.04em; }
    .stat-sfx { font-size: .42em; font-weight: 700; color: var(--teal-d); margin-left: 2px; }
    .stat-en { font-family: var(--font-en); font-size: .66rem; letter-spacing: .18em; color: var(--teal-d); font-weight: 700; margin-top: 14px; }
    .stat-ja { font-size: .79rem; color: var(--muted); margin-top: 5px; }

    /* ━━━ SERVICE ━━━ */
    #service { background: var(--cream); }
    .svc-grid { margin-top: 60px; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
    .svc-card {
      background: #fff; border-radius: 22px; padding: 44px 34px;
      box-shadow: var(--shadow-sm);
      display: flex; flex-direction: column;
      transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
      border: 1px solid var(--border-soft); position: relative; overflow: hidden;
    }
    .svc-card::before { content:''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
    .svc-card:nth-child(2)::before { background: var(--amber); }
    .svc-card:nth-child(3)::before { background: var(--indigo); }
    .svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
    .svc-card:hover::before { transform: scaleX(1); }
    .svc-icon-wrap { width: 58px; height: 58px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; transition: transform .35s var(--ease); }
    .svc-card:hover .svc-icon-wrap { transform: scale(1.06) rotate(-3deg); }
    .svc-card:nth-child(1) .svc-icon-wrap { background: var(--teal-bg); color: var(--teal-d); }
    .svc-card:nth-child(2) .svc-icon-wrap { background: var(--amber-bg); color: var(--amber); }
    .svc-card:nth-child(3) .svc-icon-wrap { background: var(--indigo-bg); color: var(--indigo); }
    .svc-label { font-family: var(--font-en); font-size: .66rem; letter-spacing: .18em; color: var(--muted); font-weight: 700; margin-bottom: 10px; }
    .svc-name { font-size: 1.18rem; font-weight: 800; color: var(--navy); margin-bottom: 14px; letter-spacing: -.01em; }
    .svc-body { font-size: .87rem; color: var(--sub); line-height: 2; flex: 1; }
    .svc-list { margin-top: 22px; list-style: none; display: flex; flex-direction: column; gap: 10px; padding-top: 22px; border-top: 1px solid var(--line); }
    .svc-list li { font-size: .82rem; color: var(--sub); display: flex; gap: 9px; align-items: flex-start; line-height: 1.6; }
    .svc-list .ck { flex-shrink: 0; margin-top: 3px; }
    .svc-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 24px; font-family: var(--font-en); font-size: .74rem; letter-spacing: .08em; font-weight: 700; color: var(--teal-d); transition: gap .25s var(--ease); }
    .svc-card:hover .svc-link { gap: 11px; }

    /* ━━━ MESSAGE ━━━ */
    #message { background: #fff; }
    .msg-layout { display: grid; grid-template-columns: 1fr 1.55fr; gap: 76px; align-items: start; }
    .msg-left { position: sticky; top: 100px; }
    .msg-placeholder {
      width: 100%; aspect-ratio: 4/3;
      border-radius: 22px;
      background: linear-gradient(145deg, var(--teal-bg) 0%, #cbf0f6 100%);
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden; box-shadow: var(--shadow-md);
    }
    .msg-placeholder::after { content:''; position: absolute; bottom: 0; left: 0; right: 0; height: 50%; background: linear-gradient(to top, rgba(31,180,203,.1), transparent); }
    .msg-icon { opacity: .28; }
    .msg-name-block { margin-top: 26px; padding: 24px 26px; background: var(--off); border-radius: 16px; border: 1px solid var(--line); }
    .msg-role { font-family: var(--font-en); font-size: .64rem; letter-spacing: .16em; color: var(--teal-d); font-weight: 700; }
    .msg-name-ja { font-size: 1.4rem; font-weight: 900; color: var(--navy); margin-top: 6px; letter-spacing: .02em; }
    .msg-name-en { font-size: .78rem; color: var(--sub); margin-top: 3px; font-family: var(--font-en); letter-spacing: .08em; }

    .msg-eyebrow { margin-bottom: 12px; }
    .msg-title { margin-bottom: 34px; }
    .msg-text { font-size: .96rem; color: var(--sub); line-height: 2.25; }
    .msg-text p { margin-bottom: 1.6em; }
    .msg-text p:last-child { margin-bottom: 0; }
    .msg-text strong { color: var(--navy); font-weight: 700; }
    .msg-text em { color: var(--teal-d); font-style: normal; font-weight: 700; }

    /* ━━━ WHY ━━━ */
    #why { background: var(--off); }
    .why-layout { margin-top: 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
    .why-list { display: flex; flex-direction: column; gap: 0; }
    .why-item { display: flex; gap: 20px; padding: 28px 4px; border-bottom: 1px solid var(--border); transition: padding-left .3s var(--ease); }
    .why-item:hover { padding-left: 10px; }
    .why-item:first-child { border-top: 1px solid var(--border); }
    .why-badge { width: 40px; height: 40px; border-radius: 12px; background: var(--white); border: 1px solid var(--border); color: var(--teal-d); display: flex; align-items: center; justify-content: center; font-family: var(--font-en); font-size: .78rem; font-weight: 800; flex-shrink: 0; box-shadow: var(--shadow-sm); transition: all .3s var(--ease); }
    .why-item:hover .why-badge { background: var(--teal); color: #fff; border-color: var(--teal); box-shadow: 0 8px 18px rgba(31,180,203,.26); }
    .why-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
    .why-desc { font-size: .85rem; color: var(--sub); line-height: 1.95; }

    .why-cta {
      background: linear-gradient(160deg, var(--navy) 0%, var(--navy-l) 100%); border-radius: 24px; padding: 48px 40px;
      box-shadow: var(--shadow-lg); position: sticky; top: 100px;
      border: 1px solid rgba(255,255,255,.06); position: relative; overflow: hidden;
    }
    .why-cta::before { content:''; position: absolute; top: -70px; right: -70px; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle, rgba(31,180,203,.22), transparent 65%); }
    .why-cta-top { display: flex; align-items: center; gap: 13px; margin-bottom: 22px; position: relative; z-index: 1; }
    .why-cta-icon { width: 48px; height: 48px; border-radius: 14px; background: rgba(31,180,203,.16); display: flex; align-items: center; justify-content: center; color: var(--teal-l); }
    .why-cta-eyebrow { font-family: var(--font-en); font-size: .66rem; letter-spacing: .2em; color: var(--teal-l); font-weight: 700; }
    .why-cta-title { font-size: 1.4rem; font-weight: 800; color: #fff; line-height: 1.55; margin-bottom: 18px; position: relative; z-index: 1; letter-spacing: -.01em; }
    .why-cta-desc { font-size: .87rem; color: rgba(255,255,255,.66); line-height: 2; margin-bottom: 32px; position: relative; z-index: 1; }
    .why-cta-btn { display: block; text-align: center; background: var(--teal); color: #fff; padding: 16px; border-radius: 12px; font-weight: 700; font-size: .93rem; text-decoration: none; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s; position: relative; z-index: 1; box-shadow: 0 10px 26px rgba(31,180,203,.3); }
    .why-cta-btn:hover { background: var(--teal-l); transform: translateY(-2px); }

    /* ━━━ VOICE ━━━ */
    #voice { background: #fff; }
    .voice-grid { margin-top: 60px; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
    .voice-card { background: #fff; border-radius: 22px; padding: 36px 30px; border: 1px solid var(--border-soft); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 16px; transition: transform .35s var(--ease), box-shadow .35s var(--ease); position: relative; overflow: hidden; }
    .voice-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    .voice-accent { height: 4px; margin: -36px -30px 18px; border-radius: 22px 22px 0 0; }
    .voice-card:nth-child(1) .voice-accent { background: linear-gradient(90deg, var(--teal), var(--teal-l)); }
    .voice-card:nth-child(2) .voice-accent { background: linear-gradient(90deg, var(--amber), #f3bd6a); }
    .voice-card:nth-child(3) .voice-accent { background: linear-gradient(90deg, var(--indigo), #8a98cf); }
    .voice-q { font-size: 2.4rem; font-weight: 900; color: var(--teal); line-height: .7; font-family: Georgia, serif; opacity: .35; }
    .voice-card:nth-child(2) .voice-q { color: var(--amber); }
    .voice-card:nth-child(3) .voice-q { color: var(--indigo); }
    .voice-text { font-size: .92rem; color: var(--text); line-height: 2; flex: 1; margin-top: -8px; }
    .voice-result { font-family: var(--font-en); font-size: .7rem; font-weight: 700; color: var(--teal-d); background: var(--teal-bg); padding: 5px 12px; border-radius: 999px; display: inline-block; letter-spacing: .06em; }
    .voice-card:nth-child(2) .voice-result { color: var(--amber-d); background: var(--amber-bg); }
    .voice-card:nth-child(3) .voice-result { color: var(--indigo); background: var(--indigo-bg); }
    .voice-who strong { display: block; font-size: .83rem; color: var(--navy); font-weight: 700; margin-top: 10px; }
    .voice-who span { font-size: .76rem; color: var(--muted); }

    /* ━━━ FLOW ━━━ */
    #flow { background: linear-gradient(180deg, var(--teal-bg2), var(--teal-bg)); }
    .flow-grid { margin-top: 60px; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
    .flow-item { background: #fff; border-radius: 20px; padding: 40px 30px; box-shadow: var(--shadow-sm); position: relative; transition: transform .35s var(--ease), box-shadow .35s var(--ease); border: 1px solid var(--border-soft); }
    .flow-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
    .flow-num { width: 46px; height: 46px; border-radius: 14px; background: linear-gradient(135deg, var(--teal) 0%, var(--teal-d) 100%); display: flex; align-items: center; justify-content: center; font-family: var(--font-en); font-size: .98rem; font-weight: 800; color: #fff; margin-bottom: 18px; box-shadow: 0 8px 18px rgba(31,180,203,.26); }
    .flow-name { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 9px; }
    .flow-desc { font-size: .83rem; color: var(--sub); line-height: 1.9; }
    .flow-arr { position: absolute; top: 42px; right: -16px; z-index: 2; width: 38px; height: 38px; border-radius: 50%; background: #fff; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--teal-d); box-shadow: var(--shadow-sm); }
    .flow-item:nth-child(3n) .flow-arr { display: none; }

    /* ━━━ FAQ ━━━ */
    #faq { background: #fff; }
    .faq-wrap { max-width: 800px; margin-top: 56px; display: flex; flex-direction: column; gap: 12px; }
    .faq-item { background: var(--off); border-radius: 16px; overflow: hidden; border: 1px solid var(--border-soft); transition: box-shadow .3s var(--ease), border-color .3s var(--ease); }
    .faq-item.open { box-shadow: var(--shadow-md); border-color: var(--border); background: #fff; }
    .faq-q { padding: 22px 24px; display: flex; align-items: flex-start; gap: 15px; cursor: pointer; user-select: none; }
    .fq-q { font-family: var(--font-en); font-size: .8rem; color: var(--teal-d); font-weight: 800; letter-spacing: .06em; flex-shrink: 0; padding-top: 1px; }
    .fq-text { font-size: .92rem; font-weight: 700; color: var(--navy); flex: 1; line-height: 1.6; }
    .fq-ico { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--border); background: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--sub); transition: all .35s var(--ease); flex-shrink: 0; }
    .faq-item.open .fq-ico { background: var(--teal); border-color: var(--teal); color: #fff; transform: rotate(135deg); }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease), padding .35s; font-size: .88rem; color: var(--sub); line-height: 1.95; padding-left: calc(.8rem + 15px); }
    .faq-item.open .faq-a { max-height: 320px; padding: 0 24px 22px calc(.8rem + 15px); }

    /* ━━━ RECRUIT ━━━ */
    #recruit { background: var(--off); }
    .recruit-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
    .recruit-card { background: #fff; border-radius: 22px; padding: 42px 36px; box-shadow: var(--shadow-sm); border: 1px solid var(--border-soft); transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease); }
    .recruit-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-4px); }
    .rc-tag { display: inline-block; font-family: var(--font-en); font-size: .67rem; letter-spacing: .14em; color: var(--teal-d); background: var(--teal-bg); padding: 5px 14px; border-radius: 999px; margin-bottom: 16px; font-weight: 700; }
    .rc-title { font-size: 1.18rem; font-weight: 800; color: var(--navy); margin-bottom: 18px; letter-spacing: -.01em; }
    .rc-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
    .rc-list li { font-size: .86rem; color: var(--sub); display: flex; gap: 10px; align-items: flex-start; line-height: 1.65; }
    .recruit-foot { margin-top: 44px; text-align: center; }
    .recruit-foot p { font-size: .82rem; color: var(--muted); margin-bottom: 16px; }
    .btn-outline { display: inline-block; border: 1.5px solid var(--teal); color: var(--teal-d); padding: 14px 38px; border-radius: 999px; font-weight: 700; font-size: .9rem; text-decoration: none; transition: all .25s var(--ease); }
    .btn-outline:hover { background: var(--teal); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(31,180,203,.26); }

    /* ━━━ MAP ━━━ */
    #map { background: #fff; }
    .map-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
    .map-card { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border-soft); transition: box-shadow .3s var(--ease), transform .3s var(--ease); }
    .map-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
    .map-card iframe { width: 100%; height: 250px; border: none; display: block; filter: grayscale(.15) contrast(1.02); }
    .map-info { background: #fff; padding: 26px 28px 30px; }
    .map-tag { display: inline-block; font-family: var(--font-en); font-size: .66rem; letter-spacing: .12em; color: var(--teal-d); background: var(--teal-bg); padding: 4px 12px; border-radius: 999px; margin-bottom: 12px; font-weight: 700; }
    .map-tag-new { background: var(--amber); color: #fff !important; margin-left: 6px; }
    .map-name { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 9px; }
    .map-addr { font-size: .83rem; color: var(--sub); line-height: 1.9; }
    .map-tel { margin-top: 10px; font-size: .83rem; color: var(--sub); display: flex; align-items: center; gap: 7px; }
    .map-tel a { color: var(--navy); font-weight: 700; text-decoration: none; }
    .map-tel a:hover { color: var(--teal-d); }

    /* ━━━ CONTACT ━━━ */
    #contact { background: linear-gradient(180deg, var(--teal-bg2), var(--teal-bg)); }
    .contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 68px; align-items: start; margin-top: 60px; }
    .cl-title { font-size: 1.35rem; font-weight: 800; color: var(--navy); line-height: 1.6; margin-bottom: 16px; letter-spacing: -.01em; }
    .cl-desc { font-size: .9rem; color: var(--sub); line-height: 2; margin-bottom: 32px; }
    .cl-item { margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
    .cl-item:last-child { border-bottom: none; }
    .cl-label { font-family: var(--font-en); font-size: .64rem; letter-spacing: .16em; color: var(--teal-d); font-weight: 700; margin-bottom: 4px; }
    .cl-val { font-size: .92rem; color: var(--navy); line-height: 1.7; }
    .cl-val a { color: var(--navy); text-decoration: none; font-weight: 700; }
    .cl-val a:hover { color: var(--teal-d); }
    .cf-wrap { background: #fff; border-radius: 24px; padding: 48px 44px; box-shadow: var(--shadow-lg); border: 1px solid var(--border-soft); }
    .f-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
    .f-row { margin-bottom: 18px; }
    .f-row.full { grid-column: 1/-1; }
    .f-label { display: block; font-size: .78rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; letter-spacing: .02em; }
    .f-req { font-family: var(--font-en); font-size: .62rem; color: #fff; background: var(--amber); padding: 1px 7px; border-radius: 999px; margin-left: 7px; font-weight: 700; letter-spacing: .04em; vertical-align: middle; }
    .f-ctrl { width: 100%; border: 1.5px solid var(--border); border-radius: 11px; padding: 13px 15px; font-size: .9rem; color: var(--text); background: var(--paper); transition: border-color .25s, box-shadow .25s, background .25s; outline: none; font-family: var(--font-ja); appearance: none; }
    .f-ctrl:focus { border-color: var(--teal); background: #fff; box-shadow: 0 0 0 4px rgba(31,180,203,.13); }
    .f-ctrl::placeholder { color: var(--muted); }
    textarea.f-ctrl { height: 124px; resize: vertical; }
    select.f-ctrl { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%2397a4b6' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 38px; cursor: pointer; }
    .f-privacy { font-size: .78rem; color: var(--sub); margin-bottom: 18px; line-height: 1.8; }
    .f-privacy a { color: var(--teal-d); text-decoration: underline; }
    .f-submit { width: 100%; padding: 17px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-l) 100%); color: #fff; border: none; border-radius: 12px; font-size: .96rem; font-weight: 700; cursor: pointer; letter-spacing: .06em; transition: all .3s var(--ease); font-family: var(--font-ja); box-shadow: var(--shadow-md); }
    .f-submit:hover { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-d) 100%); transform: translateY(-2px); box-shadow: var(--shadow-teal); }
    .f-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
    .f-success { display: none; text-align: center; padding: 48px 20px; }
    .f-success.show { display: block; }
    .f-success-icon { width: 64px; height: 64px; background: linear-gradient(135deg, var(--teal), var(--teal-l)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; box-shadow: 0 12px 28px rgba(31,180,203,.32); }
    .f-success h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 10px; font-weight: 800; }
    .f-success p { font-size: .88rem; color: var(--sub); line-height: 1.9; }

    /* ━━━ FOOTER CTA ━━━ */
    .fct-band { background: linear-gradient(150deg, var(--navy-d) 0%, var(--navy) 55%, var(--navy-l) 100%); padding: 88px 0; text-align: center; position: relative; overflow: hidden; }
    .fct-band::before { content:''; position: absolute; top: -90px; right: -60px; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(31,180,203,.16) 0%, transparent 65%); }
    .fct-band::after { content:''; position: absolute; bottom: -120px; left: -60px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(232,151,46,.1) 0%, transparent 65%); }
    .fct-text { font-size: clamp(.95rem,1.8vw,1.15rem); color: rgba(255,255,255,.62); line-height: 2.1; margin-bottom: 34px; position: relative; z-index: 1; }
    .fct-text strong { color: #fff; font-size: 1.1em; }
    .fct-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
    .btn-ghost-w { border: 1.5px solid rgba(255,255,255,.3); color: rgba(255,255,255,.85); padding: 15px 34px; border-radius: 999px; font-weight: 500; font-size: .93rem; text-decoration: none; transition: all .25s var(--ease); display: inline-block; }
    .btn-ghost-w:hover { border-color: rgba(255,255,255,.7); color: #fff; transform: translateY(-2px); }

    /* ━━━ FOOTER ━━━ */
    footer { background: #07101f; color: rgba(255,255,255,.3); padding: 64px 0 30px; }
    .footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px,5vw,56px); }
    .footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 52px; }
    .footer-grid img { height: 30px; width: auto; }
    .footer-desc { margin-top: 18px; font-size: .82rem; line-height: 1.95; }
    .footer-col h5 { font-family: var(--font-en); font-size: .63rem; letter-spacing: .18em; color: rgba(255,255,255,.42); font-weight: 700; margin-bottom: 18px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
    .footer-col a { font-size: .81rem; color: rgba(255,255,255,.32); text-decoration: none; transition: color .25s, padding-left .25s var(--ease); }
    .footer-col a:hover { color: var(--teal-l); padding-left: 4px; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 26px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
    .footer-copy { font-size: .72rem; }
    .footer-sub { display: flex; gap: 18px; }
    .footer-sub a { font-size: .72rem; color: rgba(255,255,255,.28); text-decoration: none; transition: color .25s; }
    .footer-sub a:hover { color: rgba(255,255,255,.6); }

    /* ━━━ RESPONSIVE ━━━ */
    @media (max-width: 1024px) {
      .msg-layout, .why-layout, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
      .msg-left, .why-cta { position: static; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .section { padding: 96px 0; }
    }
    @media (max-width: 768px) {
      .header-inner { padding: 0 20px; }
      .h-nav { display: none; }
      .hamburger { display: flex; }
      .svc-grid, .voice-grid, .flow-grid, .recruit-grid, .map-grid { grid-template-columns: 1fr; }
      .stats-row { grid-template-columns: repeat(2,1fr); border-radius: 16px; }
      .stat-box:nth-child(2) { border-right: none; }
      .stat-box:nth-child(1), .stat-box:nth-child(2) { border-bottom: 1px solid var(--line); }
      .nav-cards-row { grid-template-columns: repeat(2,1fr); }
      .nci:nth-child(2) { border-right: none; }
      .f-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
      .footer-inner { padding: 0 20px; }
      .section { padding: 76px 0; }
      .container { padding: 0 20px; }
      .flow-arr { display: none !important; }
      #hero { padding: 100px 20px 110px; }
      #philosophy { padding: 80px 0; }
      #philosophy::before, #philosophy::after { font-size: 12rem; }
      .cf-wrap { padding: 32px 22px; }
      .why-cta { padding: 38px 28px; }
    }
    @media (max-width: 480px) {
      .hero-btns { flex-direction: column; align-items: stretch; }
      .hero-btns a { text-align: center; }
      .hero-tags { display: none; }
    }

  

    /* ━━━ MULTIPAGE ADDITIONS ━━━ */
    .h-logo img.h-logo-img { height: 34px; width: auto; display:block; }
    .footer-grid img.footer-logo { height: 30px; width: auto; }

    /* page hero (sub pages) */
    .page-hero { padding: 150px 0 72px; position: relative; overflow: hidden;
      background:
        radial-gradient(900px 460px at 82% -20%, rgba(31,180,203,.12), transparent 60%),
        linear-gradient(165deg, #eaf7fa 0%, #f4fbfd 45%, #ffffff 100%);
      border-bottom: 1px solid var(--line); }
    .page-hero .container { position: relative; z-index: 1; }
    .page-crumb { font-family: var(--font-en); font-size: .7rem; letter-spacing: .1em; color: var(--muted); margin-bottom: 18px; }
    .page-crumb a { color: var(--teal-d); text-decoration: none; }
    .page-crumb a:hover { text-decoration: underline; }
    .page-hero h1 { font-size: clamp(2rem,4vw,3rem); font-weight: 900; color: var(--navy); letter-spacing: -.025em; line-height: 1.2; }
    .page-hero .lead { margin-top: 20px; color: var(--sub); font-size: .98rem; line-height: 2.05; max-width: 620px; }

    /* info table (company) */
    .info-table { margin-top: 12px; border-top: 1px solid var(--border); }
    .info-row { display: grid; grid-template-columns: 240px 1fr; gap: 24px; padding: 24px 8px; border-bottom: 1px solid var(--border); align-items: start; }
    .info-row dt { font-size: .87rem; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 12px; }
    .info-row dt::before { content:''; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
    .info-row dd { font-size: .9rem; color: var(--sub); line-height: 1.95; }
    .info-row dd a { color: var(--navy); font-weight: 700; text-decoration: none; }
    .info-row dd a:hover { color: var(--teal-d); }
    @media (max-width:680px){ .info-row { grid-template-columns: 1fr; gap: 6px; padding: 20px 4px; } }

    /* timeline (history) */
    .timeline { margin-top: 12px; max-width: 760px; position: relative; padding-left: 36px; }
    .timeline::before { content:''; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(to bottom, var(--teal), var(--teal-bg)); }
    .tl-item { position: relative; padding: 0 0 38px; }
    .tl-item:last-child { padding-bottom: 0; }
    .tl-item::before { content:''; position: absolute; left: -34px; top: 4px; width: 20px; height: 20px; border-radius: 50%; background: #fff; border: 3px solid var(--teal); box-shadow: 0 0 0 4px var(--teal-bg); }
    .tl-year { font-family: var(--font-en); font-size: .82rem; font-weight: 800; color: var(--teal-d); letter-spacing: .04em; }
    .tl-body { font-size: .92rem; color: var(--navy); font-weight: 700; margin-top: 4px; line-height: 1.8; }
    .tl-sub { font-size: .84rem; color: var(--sub); font-weight: 400; margin-top: 4px; line-height: 1.85; }

    /* sub-section divider inside a page */
    .subsec { margin-top: 18px; }
    .subsec-head { margin-bottom: 8px; }

    /* home section CTA button (centered) */
    .sec-cta { margin-top: 48px; text-align: center; }
    .btn-mid { display: inline-flex; align-items:center; gap:8px; background: var(--navy); color:#fff; padding: 15px 40px; border-radius: 999px; font-weight: 700; font-size: .93rem; text-decoration: none; transition: all .25s var(--ease); box-shadow: var(--shadow-md); }
    .btn-mid:hover { background: linear-gradient(135deg,var(--teal),var(--teal-d)); transform: translateY(-2px); box-shadow: var(--shadow-teal); }

    /* section intro alignment helper */
    .sec-head-center { text-align: center; max-width: 640px; margin: 0 auto; }
    .sec-head-center .sec-eyebrow { justify-content: center; }
    .sec-head-center .sec-desc { margin-left: auto; margin-right: auto; }

    /* ━━━ HEADER: solid on all pages (readability) ━━━ */
    #header { background: rgba(255,255,255,.9); box-shadow: 0 1px 0 rgba(20,36,64,.05), 0 6px 24px rgba(20,36,64,.05); backdrop-filter: saturate(180%) blur(14px); }
    .h-nav a { color: var(--sub); }
    .h-nav a:hover { color: var(--navy); }
    .hamburger span { background: var(--navy); }
    .h-nav a.active { color: var(--teal-d); font-weight: 700; }
    .h-nav a.active::after { transform: scaleX(1); }

    /* ━━━ RECRUIT PAGE ━━━ */
    .recruit-intro { max-width: 780px; }
    .recruit-intro p { color: var(--sub); font-size: .98rem; line-height: 2.1; }
    .recruit-intro p strong { color: var(--navy); font-weight: 700; }
    .recruit-intro em { color: var(--teal-d); font-style: normal; font-weight: 700; }

    .perk-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
    @media(max-width:900px){ .perk-grid{ grid-template-columns:repeat(2,1fr);} }
    @media(max-width:560px){ .perk-grid{ grid-template-columns:1fr;} }
    .perk-card { background:#fff; border:1px solid var(--border-soft); border-radius:20px; padding:32px 26px; box-shadow:var(--shadow-sm); transition:transform .35s var(--ease),box-shadow .35s var(--ease); }
    .perk-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-lg);}
    .perk-icon{ width:50px;height:50px;border-radius:14px;background:var(--teal-bg);color:var(--teal-d);display:flex;align-items:center;justify-content:center;margin-bottom:18px;}
    .perk-card:nth-child(2) .perk-icon{ background:var(--amber-bg); color:var(--amber);}
    .perk-card:nth-child(3) .perk-icon{ background:var(--indigo-bg); color:var(--indigo);}
    .perk-card:nth-child(4) .perk-icon{ background:var(--teal-bg); color:var(--teal-d);}
    .perk-title{ font-size:1rem;font-weight:800;color:var(--navy);margin-bottom:8px;}
    .perk-desc{ font-size:.84rem;color:var(--sub);line-height:1.85;}

    .job-grid{ margin-top:48px; display:grid; grid-template-columns:1fr; gap:24px;}
    .job-card{ background:#fff;border:1px solid var(--border-soft);border-radius:22px;overflow:hidden;box-shadow:var(--shadow-sm);}
    .job-head{ display:flex;align-items:center;gap:16px;padding:26px 34px;border-bottom:1px solid var(--line); background:linear-gradient(120deg,var(--teal-bg2),#fff);}
    .job-tag{ font-family:var(--font-en);font-size:.66rem;letter-spacing:.14em;color:#fff;background:var(--teal);padding:5px 14px;border-radius:999px;font-weight:700;}
    .job-card:nth-child(2) .job-tag{ background:var(--amber);}
    .job-name{ font-size:1.2rem;font-weight:800;color:var(--navy);}
    .job-card .info-table{ margin:0; border-top:none; padding:6px 34px 18px;}
    .job-card .info-row{ grid-template-columns:170px 1fr; padding:18px 0;}
    .job-card .info-row:last-child{ border-bottom:none;}
    @media(max-width:680px){ .job-card .info-row{grid-template-columns:1fr; gap:6px;} .job-head{padding:20px;} .job-card .info-table{padding:6px 20px 14px;} }

    .note-confirm{ display:inline-block; font-size:.68rem; color:var(--amber-d); background:var(--amber-bg); padding:1px 8px; border-radius:999px; margin-left:6px; font-weight:700; vertical-align:middle; letter-spacing:.02em;}
    .recruit-note{ margin-top:24px; font-size:.78rem; color:var(--muted); line-height:1.8;}

    .sched-time{ font-family:var(--font-en); font-weight:800; color:var(--teal-d); font-size:.86rem; letter-spacing:.03em;}

    /* ━━━ レスポンシブ改行: スマホでは本文中の改行を無効化 ━━━ */
    @media (max-width: 768px){ br.brm{ display:none; } }

    /* ━━━ LEGAL / POLICY PAGE ━━━ */
    .policy { max-width: 820px; }
    .policy h3 { font-size: 1.06rem; font-weight: 800; color: var(--navy); margin: 40px 0 12px; letter-spacing: -.01em; }
    .policy h3:first-of-type { margin-top: 0; }
    .policy p { font-size: .92rem; color: var(--sub); line-height: 2.05; margin-bottom: 14px; }
    .policy ul, .policy ol { margin: 4px 0 18px 1.4em; }
    .policy li { font-size: .9rem; color: var(--sub); line-height: 1.95; margin-bottom: 7px; }
    .policy a { color: var(--teal-d); text-decoration: underline; }
    .policy .pol-meta { margin-top: 44px; padding-top: 20px; border-top: 1px solid var(--border); font-size: .84rem; color: var(--muted); line-height: 1.9; }
