:root {
      --mint: #27cba3;
      --mint-deep: #0b9f7c;
      --mint-soft: #eafaf5;
      --navy: #073d54;
      --ink: #10232b;
      --muted: #65757d;
      --line: #dce9e5;
      --warm: #fff9ed;
      --white: #fff;
      --shadow: 0 24px 80px rgba(8, 60, 75, .12);
      --radius-lg: 32px;
      --radius-md: 22px;
      --container: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: #fff;
      font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", system-ui, -apple-system, sans-serif;
      line-height: 1.75;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    body.menu-open { overflow: hidden; }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button, input { font: inherit; }
    button { cursor: pointer; }

    .container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
    .eyebrow {
      margin: 0 0 14px;
      color: var(--mint-deep);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .2em;
      text-transform: uppercase;
    }
    .section-title {
      margin: 0;
      font-size: clamp(30px, 4vw, 52px);
      line-height: 1.25;
      letter-spacing: -.04em;
    }
    .section-lead {
      max-width: 700px;
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 16px;
    }
    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 30px;
      margin-bottom: 42px;
    }
    .section { padding: 110px 0; }
    .pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border-radius: 999px;
      padding: 8px 13px;
      background: var(--mint-soft);
      color: var(--mint-deep);
      font-size: 12px;
      font-weight: 800;
    }
    .pill::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: currentColor;
      box-shadow: 0 0 0 4px rgba(39, 203, 163, .14);
    }
    .btn {
      display: inline-flex;
      min-height: 52px;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 0;
      border-radius: 999px;
      padding: 0 26px;
      font-weight: 800;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--mint), #16b98c);
      box-shadow: 0 12px 28px rgba(39, 203, 163, .28);
    }
    .btn-dark {
      color: #fff;
      background: var(--navy);
      box-shadow: 0 12px 28px rgba(7, 61, 84, .18);
    }
    .btn-outline {
      color: var(--navy);
      background: rgba(255,255,255,.74);
      border: 1px solid rgba(7,61,84,.16);
    }
    .arrow { font-size: 18px; line-height: 1; }

    .preview-ribbon {
      position: fixed;
      z-index: 100;
      right: 18px;
      bottom: 18px;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 9px 14px;
      border: 1px solid rgba(255,255,255,.5);
      border-radius: 999px;
      color: #fff;
      background: rgba(7,61,84,.86);
      backdrop-filter: blur(12px);
      font-size: 11px;
      font-weight: 800;
      box-shadow: 0 10px 30px rgba(0,0,0,.16);
    }

    /* Header */
    .site-header {
      position: fixed;
      z-index: 90;
      inset: 0 0 auto;
      transition: background .25s ease, box-shadow .25s ease;
    }
    .site-header.scrolled {
      background: rgba(255,255,255,.9);
      backdrop-filter: blur(16px);
      box-shadow: 0 1px 0 rgba(7,61,84,.09);
    }
    .header-inner {
      height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }
    .brand {
      display: flex;
      align-items: center;
      min-width: 154px;
    }
    .brand img { width: 134px; height: auto; }
    .desktop-nav { display: flex; align-items: center; gap: 28px; }
    .desktop-nav a {
      position: relative;
      padding: 12px 0;
      color: #40545d;
      font-size: 13px;
      font-weight: 700;
    }
    .desktop-nav a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 100%;
      bottom: 6px;
      height: 2px;
      background: var(--mint);
      transition: right .25s ease;
    }
    .desktop-nav a:hover::after { right: 0; }
    .header-actions { display: flex; align-items: center; gap: 10px; }
    .header-actions .btn { min-height: 44px; padding-inline: 19px; font-size: 13px; }
    .menu-button {
      display: none;
      width: 45px;
      height: 45px;
      border: 0;
      border-radius: 50%;
      background: #fff;
      box-shadow: 0 8px 24px rgba(7,61,84,.12);
    }
    .menu-button span,
    .menu-button::before,
    .menu-button::after {
      content: "";
      display: block;
      width: 20px;
      height: 2px;
      margin: 5px auto;
      background: var(--navy);
      transition: transform .2s ease, opacity .2s ease;
    }
    .menu-open .menu-button span { opacity: 0; }
    .menu-open .menu-button::before { transform: translateY(7px) rotate(45deg); }
    .menu-open .menu-button::after { transform: translateY(-7px) rotate(-45deg); }
    .mobile-panel {
      position: fixed;
      z-index: 80;
      inset: 0;
      display: grid;
      align-content: center;
      padding: 100px 30px 40px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-12px);
      background: rgba(247,253,251,.98);
      transition: .25s ease;
    }
    .menu-open .mobile-panel { opacity: 1; visibility: visible; transform: none; }
    .mobile-panel nav { display: grid; gap: 5px; }
    .mobile-panel nav a {
      padding: 16px 0;
      border-bottom: 1px solid var(--line);
      color: var(--navy);
      font-size: 22px;
      font-weight: 900;
    }
    .mobile-panel .btn { margin-top: 30px; }

    /* Hero */
    .hero {
      position: relative;
      min-height: 780px;
      display: grid;
      align-items: center;
      padding: 145px 0 90px;
      background:
        radial-gradient(circle at 84% 10%, rgba(39,203,163,.2), transparent 26%),
        radial-gradient(circle at 15% 88%, rgba(7,61,84,.08), transparent 28%),
        linear-gradient(180deg, #f4fffb 0%, #fff 88%);
      overflow: hidden;
    }
    .hero::before {
      content: "";
      position: absolute;
      top: 130px;
      left: -180px;
      width: 520px;
      height: 520px;
      border: 1px solid rgba(39,203,163,.16);
      border-radius: 50%;
      box-shadow: 0 0 0 80px rgba(39,203,163,.035), 0 0 0 160px rgba(39,203,163,.025);
    }
    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.08fr .92fr;
      align-items: center;
      gap: clamp(50px, 7vw, 100px);
    }
    .hero-copy h1 {
      margin: 20px 0 26px;
      font-size: clamp(46px, 6.2vw, 82px);
      line-height: 1.09;
      letter-spacing: -.065em;
    }
    .hero-copy h1 span {
      position: relative;
      color: var(--mint-deep);
      white-space: nowrap;
    }
    .hero-copy h1 span::after {
      content: "";
      position: absolute;
      left: .04em;
      right: -.02em;
      bottom: .04em;
      height: .15em;
      border-radius: 999px;
      background: rgba(39,203,163,.22);
      transform: rotate(-1.5deg);
      z-index: -1;
    }
    .hero-lead {
      max-width: 630px;
      margin: 0;
      color: #53686f;
      font-size: clamp(16px, 1.7vw, 19px);
    }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
    .hero-note {
      display: flex;
      flex-wrap: wrap;
      gap: 22px;
      margin-top: 28px;
      color: #6d7f85;
      font-size: 12px;
      font-weight: 700;
    }
    .hero-note span { display: inline-flex; align-items: center; gap: 7px; }
    .hero-note span::before { content: "✓"; color: var(--mint-deep); font-weight: 900; }

    .hero-visual {
      position: relative;
      min-height: 540px;
    }
    .visual-orb {
      position: absolute;
      inset: 50% auto auto 50%;
      width: min(460px, 90vw);
      aspect-ratio: 1;
      transform: translate(-50%, -50%);
      border-radius: 48% 52% 58% 42% / 47% 42% 58% 53%;
      background: linear-gradient(145deg, #dffff4, #b7f3df);
      animation: morph 9s ease-in-out infinite alternate;
    }
    @keyframes morph {
      to { border-radius: 58% 42% 45% 55% / 55% 58% 42% 45%; transform: translate(-50%, -50%) rotate(4deg); }
    }
    .phone {
      position: absolute;
      z-index: 3;
      top: 48%;
      left: 50%;
      width: 265px;
      height: 510px;
      padding: 13px;
      transform: translate(-50%, -50%) rotate(-3deg);
      border-radius: 38px;
      background: #0c2732;
      box-shadow: 0 36px 75px rgba(6,49,64,.28);
    }
    .phone::before {
      content: "";
      position: absolute;
      z-index: 5;
      top: 8px;
      left: 50%;
      width: 76px;
      height: 22px;
      transform: translateX(-50%);
      border-radius: 0 0 14px 14px;
      background: #0c2732;
    }
    .phone-screen {
      height: 100%;
      overflow: hidden;
      border-radius: 29px;
      background: #f7fbfa;
    }
    .phone-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 62px;
      padding: 22px 16px 8px;
      color: #fff;
      background: linear-gradient(135deg, var(--mint), #0fae83);
    }
    .phone-logo { font-size: 13px; font-weight: 900; letter-spacing: -.04em; }
    .phone-avatar { width: 25px; height: 25px; border-radius: 50%; background: rgba(255,255,255,.72); }
    .phone-body { padding: 15px 13px; }
    .phone-search { height: 34px; border-radius: 12px; background: #fff; box-shadow: 0 4px 14px rgba(7,61,84,.06); }
    .phone-tabs { display: flex; gap: 5px; margin: 12px 0; }
    .phone-tabs span { flex: 1; height: 23px; border-radius: 999px; background: #e5efec; }
    .phone-tabs span:first-child { background: var(--mint); }
    .mini-job {
      margin-top: 9px;
      padding: 11px;
      border-radius: 15px;
      background: #fff;
      box-shadow: 0 7px 20px rgba(7,61,84,.075);
    }
    .mini-thumb { height: 72px; border-radius: 10px; background: linear-gradient(135deg, #ffe4b4, #fff2d8); }
    .mini-thumb.green { background: linear-gradient(135deg, #bdf3dd, #eafaf5); }
    .mini-lines { padding-top: 9px; }
    .mini-lines i { display: block; height: 5px; border-radius: 9px; background: #dce8e5; margin-top: 5px; }
    .mini-lines i:first-child { width: 72%; height: 7px; background: #9eb0b6; }

    .float-card {
      position: absolute;
      z-index: 4;
      min-width: 178px;
      padding: 16px 18px;
      border: 1px solid rgba(255,255,255,.85);
      border-radius: 18px;
      background: rgba(255,255,255,.88);
      backdrop-filter: blur(14px);
      box-shadow: 0 18px 50px rgba(7,61,84,.14);
      animation: float 4.5s ease-in-out infinite;
    }
    .float-card strong { display: block; color: var(--navy); font-size: 15px; }
    .float-card small { color: var(--muted); font-size: 11px; }
    .float-card .icon {
      display: grid;
      place-items: center;
      width: 36px;
      height: 36px;
      margin-bottom: 9px;
      border-radius: 12px;
      background: var(--mint-soft);
      font-size: 18px;
    }
    .float-a { top: 70px; right: -12px; }
    .float-b { left: -12px; bottom: 74px; animation-delay: -1.6s; }
    .float-c { right: 15px; bottom: 20px; animation-delay: -2.8s; }
    @keyframes float { 50% { transform: translateY(-10px); } }

    .trust-strip {
      position: relative;
      z-index: 4;
      margin-top: -45px;
    }
    .trust-inner {
      display: grid;
      grid-template-columns: 1.2fr repeat(3, 1fr);
      border: 1px solid rgba(7,61,84,.08);
      border-radius: 24px;
      background: rgba(255,255,255,.93);
      box-shadow: var(--shadow);
      overflow: hidden;
    }
    .trust-copy, .stat { padding: 28px 30px; }
    .trust-copy { background: var(--navy); color: #fff; }
    .trust-copy strong { display: block; font-size: 17px; }
    .trust-copy span { color: rgba(255,255,255,.66); font-size: 12px; }
    .stat { border-left: 1px solid var(--line); }
    .stat strong { display: block; color: var(--mint-deep); font-size: 34px; line-height: 1.2; }
    .stat span { color: var(--muted); font-size: 12px; }

    /* Category */
    .category-section { background: #f4fbf8; }
    .category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .category-card {
      position: relative;
      min-height: 325px;
      padding: 34px;
      overflow: hidden;
      border: 1px solid rgba(7,61,84,.08);
      border-radius: var(--radius-lg);
      background: #fff;
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .category-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
    .category-no { color: var(--mint); font-size: 13px; font-weight: 900; letter-spacing: .12em; }
    .category-card h3 { margin: 22px 0 12px; color: var(--navy); font-size: 30px; line-height: 1.25; }
    .category-card p { margin: 0; color: var(--muted); font-size: 14px; }
    .category-card .circle {
      position: absolute;
      right: -48px;
      bottom: -58px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: var(--mint-soft);
      transition: transform .35s ease;
    }
    .category-card:hover .circle { transform: scale(1.12); }
    .category-card .symbol {
      position: absolute;
      z-index: 2;
      right: 28px;
      bottom: 24px;
      font-size: 54px;
      filter: grayscale(.2);
    }
    .category-card:nth-child(2) .circle { background: #fff4d9; }
    .category-card:nth-child(3) .circle { background: #e8eefc; }

    /* Jobs */
    .filter-row { display: flex; flex-wrap: wrap; gap: 8px; }
    .filter-btn {
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 10px 16px;
      color: #52666e;
      background: #fff;
      font-size: 12px;
      font-weight: 800;
      transition: .2s ease;
    }
    .filter-btn:hover, .filter-btn.active { border-color: var(--navy); color: #fff; background: var(--navy); }
    .job-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .job-card {
      display: flex;
      flex-direction: column;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 26px;
      background: #fff;
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .job-card[hidden] { display: none; }
    .job-card:hover { transform: translateY(-7px); box-shadow: 0 24px 60px rgba(7,61,84,.12); }
    .job-image {
      position: relative;
      height: 190px;
      display: grid;
      place-items: center;
      overflow: hidden;
      background: linear-gradient(135deg, #ffe3af, #fff8ea);
    }
    .job-card:nth-child(2) .job-image { background: linear-gradient(135deg, #c9f5e4, #ecfbf5); }
    .job-card:nth-child(3) .job-image { background: linear-gradient(135deg, #d8e4ff, #f3f6ff); }
    .job-card:nth-child(4) .job-image { background: linear-gradient(135deg, #ffdce5, #fff1f5); }
    .job-card:nth-child(5) .job-image { background: linear-gradient(135deg, #e5dafc, #f6f2ff); }
    .job-card:nth-child(6) .job-image { background: linear-gradient(135deg, #d8edf4, #f2fbff); }
    .job-image::before, .job-image::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      background: rgba(255,255,255,.55);
    }
    .job-image::before { width: 135px; height: 135px; left: -25px; bottom: -55px; }
    .job-image::after { width: 82px; height: 82px; right: -18px; top: -22px; }
    .job-emoji { position: relative; z-index: 2; font-size: 70px; transform: rotate(-4deg); }
    .job-image .badge {
      position: absolute;
      z-index: 3;
      top: 15px;
      left: 15px;
      padding: 7px 11px;
      border-radius: 999px;
      color: var(--navy);
      background: rgba(255,255,255,.9);
      font-size: 11px;
      font-weight: 900;
      box-shadow: 0 8px 22px rgba(7,61,84,.08);
    }
    .job-content { display: flex; flex: 1; flex-direction: column; padding: 22px; }
    .job-meta { display: flex; gap: 6px; flex-wrap: wrap; }
    .job-meta span { padding: 5px 9px; border-radius: 999px; background: var(--mint-soft); color: var(--mint-deep); font-size: 10px; font-weight: 800; }
    .job-content h3 { margin: 15px 0 9px; color: var(--navy); font-size: 18px; line-height: 1.5; }
    .job-content p { margin: 0; color: var(--muted); font-size: 13px; }
    .job-foot { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: auto; padding-top: 22px; }
    .job-place { color: #52666e; font-size: 11px; font-weight: 700; }
    .job-link { color: var(--mint-deep); font-size: 12px; font-weight: 900; }

    /* Process */
    .process-section { position: relative; overflow: hidden; color: #fff; background: var(--navy); }
    .process-section::before {
      content: "";
      position: absolute;
      right: -230px;
      top: -230px;
      width: 600px;
      height: 600px;
      border: 90px solid rgba(39,203,163,.09);
      border-radius: 50%;
    }
    .process-section .eyebrow { color: #6ff0cd; }
    .process-section .section-lead { color: rgba(255,255,255,.62); }
    .process-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .process-card { padding: 28px 0 0; border-top: 1px solid rgba(255,255,255,.2); }
    .step-no { color: #6ff0cd; font-size: 14px; font-weight: 900; letter-spacing: .16em; }
    .process-card h3 { margin: 42px 0 14px; font-size: 24px; }
    .process-card p { margin: 0; color: rgba(255,255,255,.62); font-size: 14px; }
    .process-icon {
      display: grid;
      place-items: center;
      width: 58px;
      height: 58px;
      margin-top: 26px;
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 18px;
      background: rgba(255,255,255,.07);
      font-size: 25px;
    }

    /* Story / partners */
    .story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
    .story-visual {
      position: relative;
      min-height: 510px;
      border-radius: 36px;
      background: linear-gradient(145deg, #e6faf3, #c8f2e4);
      overflow: hidden;
    }
    .story-visual::before {
      content: "";
      position: absolute;
      width: 370px;
      height: 370px;
      left: -120px;
      top: -100px;
      border-radius: 50%;
      background: rgba(255,255,255,.45);
    }
    .story-visual::after {
      content: "";
      position: absolute;
      width: 220px;
      height: 220px;
      right: -60px;
      bottom: -40px;
      border-radius: 50%;
      background: rgba(7,61,84,.08);
    }
    .story-people {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      font-size: 155px;
      filter: drop-shadow(0 22px 24px rgba(7,61,84,.14));
    }
    .story-label {
      position: absolute;
      z-index: 3;
      left: 28px;
      bottom: 28px;
      width: calc(100% - 56px);
      padding: 18px 20px;
      border-radius: 20px;
      background: rgba(255,255,255,.88);
      backdrop-filter: blur(12px);
      box-shadow: 0 14px 38px rgba(7,61,84,.1);
    }
    .story-label strong { display: block; color: var(--navy); }
    .story-label span { color: var(--muted); font-size: 12px; }
    .quote {
      margin: 30px 0;
      padding: 26px 28px;
      border-left: 4px solid var(--mint);
      border-radius: 0 20px 20px 0;
      background: var(--mint-soft);
      color: var(--navy);
      font-size: 17px;
      font-weight: 800;
    }
    .check-list { display: grid; gap: 13px; margin: 28px 0 0; padding: 0; list-style: none; }
    .check-list li { position: relative; padding-left: 31px; color: #53686f; font-size: 14px; }
    .check-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 1px;
      display: grid;
      place-items: center;
      width: 21px;
      height: 21px;
      border-radius: 50%;
      color: #fff;
      background: var(--mint);
      font-size: 11px;
      font-weight: 900;
    }

    .partner-section { padding-top: 0; }
    .logo-row {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line);
      border-radius: 24px;
      overflow: hidden;
    }
    .logo-box {
      display: grid;
      place-items: center;
      min-height: 120px;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      color: #91a1a6;
      background: #fff;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .12em;
    }
    .logo-box:nth-child(even) { background: #fbfdfc; }

    /* News */
    .news-section { background: var(--warm); }
    .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .news-card {
      padding: 28px;
      border: 1px solid rgba(93,74,28,.1);
      border-radius: 24px;
      background: rgba(255,255,255,.8);
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .news-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(79,59,14,.09); }
    .news-top { display: flex; align-items: center; gap: 10px; color: #9b8250; font-size: 11px; font-weight: 800; }
    .news-cat { padding: 4px 8px; border-radius: 999px; background: #ffedc8; color: #8f6815; }
    .news-card h3 { margin: 18px 0 10px; color: var(--navy); font-size: 18px; line-height: 1.55; }
    .news-card p { margin: 0; color: var(--muted); font-size: 13px; }
    .news-card .job-link { display: inline-block; margin-top: 22px; }

    /* CTA */
    .cta-section { padding: 95px 0; }
    .cta-box {
      position: relative;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 40px;
      padding: 58px 64px;
      overflow: hidden;
      border-radius: 36px;
      color: #fff;
      background: linear-gradient(135deg, #15bd91 0%, #27cba3 55%, #62dbbb 100%);
      box-shadow: 0 28px 80px rgba(39,203,163,.28);
    }
    .cta-box::before, .cta-box::after {
      content: "";
      position: absolute;
      border: 2px solid rgba(255,255,255,.18);
      border-radius: 50%;
    }
    .cta-box::before { width: 300px; height: 300px; right: -80px; top: -120px; }
    .cta-box::after { width: 170px; height: 170px; left: 48%; bottom: -120px; }
    .cta-copy, .cta-actions { position: relative; z-index: 2; }
    .cta-copy h2 { margin: 0 0 12px; font-size: clamp(30px, 4vw, 48px); line-height: 1.3; letter-spacing: -.04em; }
    .cta-copy p { margin: 0; color: rgba(255,255,255,.76); }
    .cta-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
    .cta-actions .btn { background: #fff; color: var(--mint-deep); }
    .cta-actions .btn:last-child { border: 1px solid rgba(255,255,255,.6); color: #fff; background: transparent; }

    /* Footer */
    .footer { padding: 70px 0 30px; color: rgba(255,255,255,.72); background: #082f3f; }
    .footer-grid { display: grid; grid-template-columns: 1.25fr repeat(3, .75fr); gap: 48px; }
    .footer-brand img { width: 155px; filter: brightness(0) invert(1); opacity: .92; }
    .footer-brand p { max-width: 360px; margin: 20px 0 0; color: rgba(255,255,255,.52); font-size: 13px; }
    .footer h3 { margin: 0 0 17px; color: #fff; font-size: 13px; }
    .footer-links { display: grid; gap: 9px; }
    .footer-links a { color: rgba(255,255,255,.56); font-size: 12px; }
    .footer-links a:hover { color: #fff; }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      margin-top: 56px;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,.1);
      color: rgba(255,255,255,.34);
      font-size: 11px;
    }

    /* Reveal */
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.is-visible { opacity: 1; transform: none; }

    @media (max-width: 980px) {
      .desktop-nav, .header-actions .btn-outline { display: none; }
      .menu-button { display: block; }
      .hero-grid { grid-template-columns: 1fr; }
      .hero { padding-top: 130px; }
      .hero-copy { text-align: center; }
      .hero-copy .pill { margin-inline: auto; }
      .hero-lead { margin-inline: auto; }
      .hero-actions, .hero-note { justify-content: center; }
      .hero-visual { min-height: 525px; }
      .trust-inner { grid-template-columns: repeat(3, 1fr); }
      .trust-copy { grid-column: 1 / -1; text-align: center; }
      .category-grid, .job-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
      .story-grid { grid-template-columns: 1fr; }
      .story-visual { min-height: 440px; }
      .logo-row { grid-template-columns: repeat(3, 1fr); }
      .cta-box { grid-template-columns: 1fr; text-align: center; }
      .cta-actions { justify-content: center; }
      .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
      .footer-grid > div:last-child { display: none; }
    }

    @media (max-width: 680px) {
      .container { width: min(calc(100% - 28px), var(--container)); }
      .section { padding: 78px 0; }
      .section-head { align-items: flex-start; flex-direction: column; margin-bottom: 30px; }
      .header-inner { height: 70px; }
      .brand img { width: 116px; }
      .header-actions .btn-primary { display: none; }
      .hero { min-height: auto; padding: 112px 0 72px; }
      .hero-copy h1 { font-size: 47px; }
      .hero-copy h1 span { white-space: normal; }
      .hero-lead br { display: none; }
      .hero-actions { display: grid; }
      .hero-actions .btn { width: 100%; }
      .hero-note { gap: 9px 16px; }
      .hero-visual { min-height: 450px; margin-top: 10px; }
      .visual-orb { width: 350px; }
      .phone { width: 218px; height: 420px; }
      .float-card { min-width: 145px; padding: 13px 14px; }
      .float-a { top: 20px; right: -8px; }
      .float-b { left: -4px; bottom: 70px; }
      .float-c { display: none; }
      .trust-strip { margin-top: -18px; }
      .trust-inner { grid-template-columns: 1fr; }
      .trust-copy, .stat { padding: 20px 22px; text-align: center; }
      .stat { border-left: 0; border-top: 1px solid var(--line); }
      .category-grid, .job-grid, .news-grid, .process-grid { grid-template-columns: 1fr; }
      .category-card { min-height: 285px; }
      .filter-row { width: 100%; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; scrollbar-width: none; }
      .filter-btn { white-space: nowrap; }
      .process-card h3 { margin-top: 25px; }
      .story-grid { gap: 38px; }
      .story-visual { min-height: 390px; }
      .story-people { font-size: 115px; }
      .logo-row { grid-template-columns: repeat(2, 1fr); }
      .logo-box { min-height: 92px; }
      .cta-section { padding: 65px 0; }
      .cta-box { padding: 43px 22px; border-radius: 28px; }
      .cta-actions { display: grid; }
      .footer { padding-top: 50px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 24px; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-grid > div:last-child { display: block; }
      .footer-bottom { align-items: flex-start; flex-direction: column; }
      .preview-ribbon { right: 10px; bottom: 10px; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
      .reveal { opacity: 1; transform: none; }
    }

/* WordPress dynamic pages */
body.admin-bar .site-header { top: 32px; }
.preview-ribbon { display:none !important; }
.site-main-inner { padding: 140px 0 90px; min-height: 70vh; }
.page-hero { padding: 150px 0 72px; background: linear-gradient(180deg,#f4fffb 0%,#fff 100%); }
.page-hero h1 { margin: 12px 0 0; font-size: clamp(40px,6vw,72px); line-height:1.12; letter-spacing:-.055em; }
.page-hero p { max-width:720px; color:var(--muted); }
.content-wrap { width:min(calc(100% - 40px),900px); margin-inline:auto; }
.entry-content { font-size:16px; }
.entry-content h2 { margin-top:2.3em; font-size:clamp(27px,4vw,40px); line-height:1.35; }
.entry-content h3 { margin-top:2em; font-size:24px; }
.entry-content a { color:var(--mint-deep); text-decoration:underline; text-underline-offset:3px; }
.entry-content img { border-radius:24px; }
.archive-toolbar { display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:18px; margin-bottom:32px; }
.archive-toolbar form { display:flex; flex-wrap:wrap; gap:10px; }
.archive-toolbar select,.archive-toolbar input,.hiyaku-form input,.hiyaku-form textarea { border:1px solid var(--line); border-radius:14px; background:#fff; padding:12px 14px; min-height:46px; }
.pagination { display:flex; justify-content:center; gap:8px; margin-top:48px; }
.pagination .page-numbers { display:grid; place-items:center; min-width:42px; height:42px; border-radius:50%; border:1px solid var(--line); }
.pagination .current { color:#fff; background:var(--navy); border-color:var(--navy); }
.single-grid { display:grid; grid-template-columns:minmax(0,1fr) 320px; gap:56px; align-items:start; }
.single-side { position:sticky; top:110px; padding:24px; border:1px solid var(--line); border-radius:24px; background:#fff; box-shadow:0 18px 50px rgba(8,60,75,.08); }
.single-side dl { margin:0 0 22px; }
.single-side dt { margin-top:14px; color:var(--muted); font-size:12px; font-weight:800; }
.single-side dd { margin:3px 0 0; font-weight:800; }
.partner-card { display:flex; min-height:180px; align-items:center; justify-content:center; padding:26px; border:1px solid var(--line); border-radius:22px; background:#fff; transition:.2s ease; }
.partner-card:hover { transform:translateY(-3px); box-shadow:0 18px 40px rgba(8,60,75,.1); }
.partner-card img { max-height:80px; width:auto; }
.partner-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.hiyaku-form { display:grid; gap:18px; padding:28px; border:1px solid var(--line); border-radius:26px; background:#fff; box-shadow:var(--shadow); }
.hiyaku-form label { display:grid; gap:8px; font-weight:800; }
.hiyaku-form textarea { min-height:180px; resize:vertical; }
.notice-box { padding:18px 20px; border-radius:16px; background:var(--mint-soft); color:var(--navy); }
.notice-box.error { background:#fff0f0; color:#8b2525; }
.application-complete { text-align:center; padding:50px 28px; border:1px solid var(--line); border-radius:30px; background:#fff; box-shadow:var(--shadow); }
.empty-state { padding:50px 25px; text-align:center; border:1px dashed var(--line); border-radius:22px; color:var(--muted); }
.hiyaku-block-editor-note { padding:16px; border:1px dashed #9ab; background:#f7fffc; }
.screen-reader-text { position:absolute!important; width:1px!important; height:1px!important; padding:0!important; margin:-1px!important; overflow:hidden!important; clip:rect(0,0,0,0)!important; white-space:nowrap!important; border:0!important; }
@media(max-width:900px){ body.admin-bar .site-header{top:46px}.single-grid{grid-template-columns:1fr}.single-side{position:static}.partner-grid{grid-template-columns:repeat(2,1fr)} }
@media(max-width:600px){ .partner-grid{grid-template-columns:1fr}.site-main-inner{padding-top:110px}.page-hero{padding-top:125px} }

/* v0.9.1: WordPress menu markup */
.desktop-menu,.mobile-menu,.footer-menu{list-style:none;margin:0;padding:0}.desktop-menu{display:flex;align-items:center;gap:28px}.mobile-menu,.footer-menu{display:grid;gap:9px}.desktop-menu li,.mobile-menu li,.footer-menu li{margin:0;padding:0}.fixed-page-content{min-height:50vh}

/* v0.9.2: LINE authentication gate for every opportunity detail */
.btn-line{background:#06c755;color:#fff;border-color:#06c755}.btn-line:hover{color:#fff;opacity:.88;transform:translateY(-1px)}
.job-login-main{min-height:calc(100vh - 80px);display:grid;place-items:center;padding:145px 20px 90px;background:#fff}
.job-login-gate{width:min(100%,720px);display:flex;flex-direction:column;align-items:center;text-align:center;padding:54px 24px}
.job-login-gate.compact{padding:50px 24px}
.job-login-lock{width:88px;height:88px;display:grid;place-items:center;margin-bottom:30px;border-radius:50%;background:#ebf9f5;color:#52c9a0}
.job-login-lock svg{width:44px;height:44px}
.job-login-gate h1{margin:0 0 16px;color:var(--navy);font-size:clamp(27px,4vw,38px);line-height:1.35;letter-spacing:-.035em}
.job-login-description{margin:0 0 34px;color:var(--muted);font-size:15px;line-height:1.9}
.job-login-button{display:inline-flex;align-items:center;justify-content:center;gap:12px;min-width:238px;padding:15px 28px;border-radius:999px;font-weight:800}
.line-mark{display:grid;place-items:center;width:28px;height:28px;border-radius:50%;background:#fff;color:#06c755;font-size:7px;font-weight:900;letter-spacing:-.04em}
.job-login-back{margin-top:27px;color:#a4adb2;font-size:14px}.job-login-back:hover{color:var(--navy)}
.member-header{display:flex;align-items:center;gap:10px}.member-avatar{width:34px;height:34px;border-radius:50%;object-fit:cover}.member-name{max-width:130px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:var(--muted);font-size:13px}.member-logout{padding:7px 11px;border:1px solid var(--line);border-radius:999px;color:var(--muted);font-size:11px}.member-logout:hover{color:var(--navy);border-color:#b8c8c5}
@media(max-width:767px){.member-name{display:none}.job-login-main{padding-top:115px}.job-login-gate{padding-inline:8px}.job-login-lock{width:78px;height:78px}.job-login-gate h1{font-size:26px}.job-login-button{width:min(100%,280px)}}
