:root {
        --ink: #111111;
        --ink-2: #1b1b1b;
        --text: #4f4f4f;
        --muted: #727272;
        --line: #e1e1e1;
        --line-strong: #c9c9c9;
        --paper: #ffffff;
        --paper-2: #fcfcfc;
        --soft: #f7f7f7;
        --soft-2: #efefef;
        --dark: #0a0f18;
        --orange: #f57e35;
        --orange-soft: rgba(245, 126, 53, 0.12);
        --max: 1200px;
        --form-max: 920px;
        --gutter: 32px;
        --duration: 240ms;
        --ease: cubic-bezier(0.2, 0, 0, 1);
      }

      * { box-sizing: border-box; }

      html, body {
        max-width: 100%;
        overflow-x: hidden;
      }

      body {
        margin: 0;
        color: var(--text);
        background: var(--paper);
        font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        font-weight: 500;
        line-height: 1.75;
        letter-spacing: 0;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
      }

      a { color: inherit; text-decoration: none; }
      img { max-width: 100%; display: block; }
      h1, h2, h3, h4, p, ul, ol, dl { margin-top: 0; }
      ul, ol { padding: 0; list-style: none; }

      .nobr { display: inline; white-space: nowrap; }
      .container {
        max-width: var(--max);
        margin: 0 auto;
        padding: 0 var(--gutter);
      }

      /* ====== Header ====== */
      .site-header {
        position: sticky;
        top: 0;
        z-index: 50;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: saturate(180%) blur(10px);
        -webkit-backdrop-filter: saturate(180%) blur(10px);
        border-bottom: 1px solid var(--line);
      }

      .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        max-width: 1280px;
        margin: 0 auto;
        padding: 14px var(--gutter);
      }

      .brand { display: inline-flex; align-items: center; }
      .brand img { height: 22px; width: auto; }

      .global-nav {
        display: flex;
        align-items: stretch;
        gap: 28px;
        color: var(--ink);
      }

      .global-nav a {
        position: relative;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        padding: 6px 2px;
        color: var(--ink);
      }

      .global-nav .nav-en {
        font-size: 14px;
        font-weight: 800;
        letter-spacing: 0.08em;
        line-height: 1.15;
        text-transform: uppercase;
        transition: color var(--duration) var(--ease);
      }

      .global-nav .nav-ja {
        font-size: 10.5px;
        font-weight: 500;
        letter-spacing: 0.04em;
        line-height: 1.2;
        color: var(--muted);
        transition: color var(--duration) var(--ease);
      }

      .global-nav a::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -2px;
        width: 0;
        height: 2px;
        background: var(--orange);
        transform: translateX(-50%);
        transition: width var(--duration) var(--ease);
      }

      .global-nav a:hover::after,
      .global-nav .is-current::after { width: 100%; }

      .global-nav a:hover .nav-en,
      .global-nav .is-current .nav-en { color: var(--orange); }

      .global-nav a:hover .nav-ja { color: var(--ink); }

      .header-actions { display: flex; align-items: center; gap: 12px; }

      .header-contact {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        min-height: 52px;
        padding: 0 22px;
        background: var(--ink);
        color: #ffffff;
        transition: background var(--duration) var(--ease);
      }

      .header-contact .nav-en {
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 0.1em;
        line-height: 1.15;
        text-transform: uppercase;
      }

      .header-contact .nav-ja {
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.04em;
        line-height: 1.2;
        color: rgba(255, 255, 255, 0.78);
      }

      .header-contact:hover { background: var(--orange); }
      .header-contact:hover .nav-ja { color: rgba(255, 255, 255, 0.92); }

      .menu-toggle {
        display: none;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: 1px solid var(--line);
        cursor: pointer;
      }

      .menu-toggle span,
      .menu-toggle span::before,
      .menu-toggle span::after {
        content: "";
        display: block;
        width: 18px;
        height: 2px;
        background: var(--ink);
        position: relative;
      }
      .menu-toggle span::before { position: absolute; top: -6px; }
      .menu-toggle span::after { position: absolute; top: 6px; }

      /* ====== Shared typography ====== */
      .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        margin: 0 0 18px;
        color: var(--orange);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 0.18em;
        text-transform: uppercase;
      }

      .eyebrow::before {
        content: "";
        display: inline-block;
        width: 34px;
        height: 1px;
        background: currentColor;
      }

      /* ====== Buttons ====== */
      .button {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        min-height: 58px;
        padding: 0 26px;
        background: var(--ink);
        color: #ffffff;
        font-size: 14.5px;
        font-weight: 800;
        letter-spacing: 0.02em;
        border: 1px solid var(--ink);
        border-radius: 0;
        cursor: pointer;
        transition: background var(--duration) var(--ease), color var(--duration) var(--ease), border-color var(--duration) var(--ease);
      }

      .button .arrow { display: inline-block; transition: transform var(--duration) var(--ease); }
      .button:hover { background: var(--orange); border-color: var(--orange); }
      .button:hover .arrow { transform: translateX(3px); }

      /* ====== Hero ====== */
      .page-hero {
        position: relative;
        color: #ffffff;
        overflow: hidden;
        isolation: isolate;
      }

      .page-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url("/assets/images/recruitment/recruitment-entry-cta.png");
        background-size: cover;
        background-position: center right;
        z-index: -2;
        transform: scale(1.04);
        animation: heroZoom 16s ease-out forwards;
      }

      @keyframes heroZoom {
        from { transform: scale(1.08); }
        to { transform: scale(1.0); }
      }

      .page-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
          linear-gradient(100deg, rgba(7, 12, 22, 0.96) 0%, rgba(7, 12, 22, 0.86) 42%, rgba(7, 12, 22, 0.56) 72%, rgba(7, 12, 22, 0.82) 100%),
          linear-gradient(180deg, rgba(7, 12, 22, 0.18) 0%, rgba(7, 12, 22, 0.6) 100%);
        z-index: -1;
      }

      .page-hero-inner {
        position: relative;
        display: grid;
        grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr);
        gap: 64px;
        align-items: end;
        max-width: var(--max);
        margin: 0 auto;
        padding: 120px var(--gutter) 96px;
      }

      .page-hero-text { max-width: 660px; }

      .page-hero .eyebrow {
        color: rgba(255, 255, 255, 0.94);
        letter-spacing: 0.22em;
      }

      .page-hero h1 {
        margin: 0 0 26px;
        color: #ffffff;
        font-size: clamp(34px, 4.3vw, 56px);
        font-weight: 900;
        line-height: 1.18;
        letter-spacing: -0.005em;
        text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
      }

      .page-hero .lead {
        margin: 0;
        max-width: 580px;
        color: rgba(255, 255, 255, 0.9);
        font-size: 15.5px;
        font-weight: 500;
        line-height: 2;
      }

      .snapshot-panel {
        position: relative;
        padding: 28px 28px 24px;
        background: rgba(8, 12, 20, 0.72);
        border: 1px solid rgba(255, 255, 255, 0.16);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
      }

      .snapshot-panel::before {
        content: "";
        position: absolute;
        left: -1px;
        top: -1px;
        bottom: -1px;
        width: 3px;
        background: var(--orange);
      }

      .snapshot-panel .label {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin: 0 0 16px;
        color: #ffffff;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.18em;
        text-transform: uppercase;
      }

      .snapshot-panel .label::before {
        content: "";
        display: inline-block;
        width: 22px;
        height: 1px;
        background: var(--orange);
      }

      .snapshot-panel dl {
        display: grid;
        gap: 0;
        margin: 0;
      }

      .snapshot-panel > dl > div {
        padding: 13px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
      }
      .snapshot-panel > dl > div:first-child { padding-top: 0; border-top: 0; }
      .snapshot-panel > dl > div:last-child { padding-bottom: 0; }

      .snapshot-panel dt {
        margin: 0 0 4px;
        color: var(--orange);
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 0.16em;
        text-transform: uppercase;
      }

      .snapshot-panel dd {
        margin: 0;
        color: rgba(255, 255, 255, 0.92);
        font-size: 13.5px;
        font-weight: 700;
        line-height: 1.65;
      }

      /* ====== Sections ====== */
      .section {
        position: relative;
        padding: 110px 0;
        border-bottom: 1px solid var(--line);
      }

      .section-alt { background: var(--soft); }

      .section-head {
        display: grid;
        grid-template-columns: 0.95fr 1.05fr;
        gap: 48px;
        align-items: end;
        margin-bottom: 56px;
      }

      .section-head h2 {
        margin: 0;
        color: var(--ink);
        font-size: clamp(28px, 3.4vw, 42px);
        font-weight: 900;
        line-height: 1.26;
        letter-spacing: -0.005em;
      }

      .section-head .summary,
      .summary {
        margin: 0;
        color: var(--text);
        font-size: 15.5px;
        font-weight: 500;
        line-height: 1.95;
      }

      /* ====== Form section ====== */
      .form-section {
        position: relative;
        padding: 96px 0 110px;
        background: var(--soft);
        border-bottom: 1px solid var(--line);
      }

      .form-section::before {
        content: "";
        position: absolute;
        inset: 0 0 auto 0;
        height: 56px;
        background: linear-gradient(180deg, rgba(7, 12, 22, 0.06) 0%, rgba(7, 12, 22, 0) 100%);
        pointer-events: none;
      }

      .form-layout {
        max-width: var(--form-max);
        margin: 0 auto;
      }

      .form-intro {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
        margin-bottom: 28px;
      }

      .form-intro .eyebrow { margin: 0 0 6px; }

      .form-intro h2 {
        margin: 0;
        color: var(--ink);
        font-size: clamp(26px, 3vw, 36px);
        font-weight: 900;
        line-height: 1.3;
        letter-spacing: -0.005em;
      }

      .form-intro p {
        margin: 0;
        color: var(--text);
        font-size: 15px;
        line-height: 1.95;
      }

      .form-card {
        position: relative;
        padding: 48px 48px 44px;
        background: #ffffff;
        border: 1px solid var(--line);
        border-top: 3px solid var(--ink);
        box-shadow: 0 18px 38px rgba(17, 17, 17, 0.04);
      }

      .entry-form {
        display: grid;
        gap: 24px;
      }

      .field-group {
        margin: 0;
        padding: 0;
        border: 0;
      }

      .field-label {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: 10px;
        color: var(--ink);
        font-size: 13.5px;
        font-weight: 900;
        letter-spacing: 0.02em;
      }

      .required,
      .optional {
        display: inline-flex;
        align-items: center;
        min-height: 22px;
        padding: 0 9px;
        border: 1px solid currentColor;
        font-size: 10.5px;
        font-weight: 900;
        letter-spacing: 0.12em;
        line-height: 1;
      }

      .required { color: var(--orange); }
      .optional { color: var(--muted); }

      .entry-form input,
      .entry-form select,
      .entry-form textarea {
        width: 100%;
        min-height: 56px;
        padding: 14px 16px;
        color: var(--ink);
        background: #ffffff;
        border: 1px solid var(--line-strong);
        border-radius: 0;
        font: inherit;
        font-size: 15px;
        font-weight: 600;
        line-height: 1.6;
        transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease), background var(--duration) var(--ease);
        appearance: none;
        -webkit-appearance: none;
      }

      .entry-form textarea {
        min-height: 200px;
        resize: vertical;
        line-height: 1.85;
      }

      .entry-form input::placeholder,
      .entry-form textarea::placeholder {
        color: #a0a0a0;
        font-weight: 500;
      }

      .entry-form input:hover,
      .entry-form select:hover,
      .entry-form textarea:hover {
        border-color: var(--ink);
      }

      .entry-form input:focus,
      .entry-form select:focus,
      .entry-form textarea:focus {
        outline: none;
        border-color: var(--orange);
        box-shadow: 0 0 0 3px rgba(245, 126, 53, 0.18);
        background: #ffffff;
      }

      .entry-form input[aria-invalid="true"],
      .entry-form select[aria-invalid="true"],
      .entry-form textarea[aria-invalid="true"] {
        border-color: #c93621;
        box-shadow: 0 0 0 3px rgba(201, 54, 33, 0.14);
      }

      .field-error {
        min-height: 1.6em;
        margin: 8px 0 0;
        color: #c93621;
        font-size: 12px;
        font-weight: 800;
        line-height: 1.6;
      }

      .field-meta {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        margin: 8px 0 0;
        line-height: 1.6;
      }

      .field-meta-count {
        display: inline-flex;
        align-items: baseline;
        gap: 4px;
        color: var(--ink);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.02em;
        font-variant-numeric: tabular-nums;
        white-space: nowrap;
      }

      .field-meta-count .char-sep { color: var(--line-strong); }
      .field-meta-count .char-max { color: var(--muted); }
      .field-meta-count.is-near .char-count { color: var(--orange); }
      .field-meta-count.is-max .char-count { color: var(--orange); }

      .form-honeypot {
        position: absolute;
        left: -10000px;
        top: auto;
        width: 1px;
        height: 1px;
        overflow: hidden;
      }

      .form-alert {
        margin: 0 0 26px;
        padding: 20px 22px;
        border: 1px solid var(--line);
        border-left: 4px solid var(--orange);
        background: #ffffff;
      }

      .form-alert strong {
        display: block;
        margin-bottom: 6px;
        color: var(--ink);
        font-size: 15px;
        font-weight: 900;
      }

      .form-alert p,
      .form-alert li {
        margin: 0;
        color: var(--text);
        font-size: 13.5px;
        font-weight: 700;
        line-height: 1.8;
      }

      .form-alert ul {
        margin: 8px 0 0;
        padding: 0;
        list-style: none;
      }

      .form-alert--error {
        border-left-color: #c93621;
        background: #fffafa;
      }

      .form-alert--error strong {
        color: #c93621;
      }

      .form-alert--success {
        border-left-color: var(--orange);
        background: #fffaf5;
      }

      .select-wrap { position: relative; }

      .select-wrap::after {
        content: "";
        position: absolute;
        right: 22px;
        top: 50%;
        width: 9px;
        height: 9px;
        border-right: 2px solid var(--ink);
        border-bottom: 2px solid var(--ink);
        transform: translateY(-70%) rotate(45deg);
        pointer-events: none;
      }

      .entry-form select { padding-right: 44px; }

      .field-two {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
      }

      .checkbox-row {
        display: grid;
        grid-template-columns: 22px minmax(0, 1fr);
        gap: 14px;
        align-items: start;
        padding: 22px 24px;
        background: var(--soft);
        border: 1px solid var(--line);
      }

      .checkbox-row input[type="checkbox"] {
        width: 22px;
        height: 22px;
        min-height: 22px;
        margin: 3px 0 0;
        padding: 0;
        background: #ffffff;
        border: 1.5px solid var(--ink);
        border-radius: 0;
        accent-color: var(--orange);
        cursor: pointer;
      }

      .checkbox-row input[type="checkbox"]:checked {
        background:
          linear-gradient(45deg, transparent 50%, #ffffff 50%) 5px 10px / 5px 9px no-repeat,
          linear-gradient(-45deg, transparent 50%, #ffffff 50%) 9px 10px / 10px 9px no-repeat,
          var(--orange);
        border-color: var(--orange);
      }

      .checkbox-row input[type="checkbox"]:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(245, 126, 53, 0.22);
      }

      .checkbox-row label {
        color: var(--ink);
        font-size: 14px;
        font-weight: 800;
        line-height: 1.75;
        cursor: pointer;
      }

      .checkbox-row label .required {
        margin-left: 10px;
        vertical-align: 1px;
      }

      .submit-row {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 24px;
        align-items: center;
        margin-top: 8px;
      }

      .submit-note {
        margin: 0;
        color: var(--muted);
        font-size: 12px;
        font-weight: 700;
        line-height: 1.75;
      }

      .entry-form .button.submit {
        min-width: 220px;
        min-height: 64px;
        padding: 0 30px;
        font-size: 15px;
      }

      .confirm-panel {
        margin-top: 8px;
        padding: 30px;
        background: var(--soft);
        border: 1px solid var(--line);
        border-top: 3px solid var(--orange);
      }

      .confirm-panel[hidden] {
        display: none;
      }

      .confirm-panel h3 {
        margin: 0 0 10px;
        color: var(--ink);
        font-size: 22px;
        font-weight: 900;
        line-height: 1.4;
      }

      .confirm-panel > p {
        margin: 0 0 22px;
        color: var(--text);
        font-size: 13.5px;
        font-weight: 700;
        line-height: 1.85;
      }

      .confirm-list {
        display: grid;
        margin: 0;
        border-top: 1px solid var(--line-strong);
        background: #ffffff;
      }

      .confirm-list div {
        display: grid;
        grid-template-columns: 180px minmax(0, 1fr);
        gap: 20px;
        padding: 16px 18px;
        border-bottom: 1px solid var(--line);
      }

      .confirm-list dt {
        color: var(--muted);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 0.08em;
      }

      .confirm-list dd {
        margin: 0;
        color: var(--ink);
        font-size: 14px;
        font-weight: 800;
        line-height: 1.75;
        white-space: pre-wrap;
        overflow-wrap: anywhere;
      }

      .confirm-actions {
        display: flex;
        justify-content: flex-end;
        gap: 14px;
        margin-top: 22px;
      }

      .button.secondary {
        background: #ffffff;
        color: var(--ink);
        border-color: var(--line-strong);
      }

      .button.secondary:hover {
        background: var(--ink);
        color: #ffffff;
        border-color: var(--ink);
      }

      /* ====== Notice section (dark, Before Sending) ====== */
      .notice-section {
        padding: 110px 0;
        background:
          radial-gradient(circle at 12% 18%, rgba(245, 126, 53, 0.14), transparent 56%),
          linear-gradient(180deg, #0a0f18 0%, #11151f 100%);
        color: #ffffff;
      }

      .notice-grid {
        display: grid;
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: 56px;
        align-items: start;
      }

      .notice-copy {
        position: relative;
        padding: 8px 0 8px 28px;
        border-left: 3px solid var(--orange);
      }

      .notice-copy .eyebrow { color: rgba(255, 255, 255, 0.94); }

      .notice-copy h2 {
        margin: 0 0 18px;
        color: #ffffff;
        font-size: clamp(26px, 3.2vw, 38px);
        font-weight: 900;
        line-height: 1.28;
        letter-spacing: -0.005em;
      }

      .notice-copy p {
        margin: 0;
        max-width: 460px;
        color: rgba(255, 255, 255, 0.78);
        font-size: 14.5px;
        line-height: 1.95;
      }

      .notice-list {
        margin: 0;
        padding: 0;
        list-style: none;
        border-top: 1px solid rgba(255, 255, 255, 0.22);
      }

      .notice-list > li {
        padding: 24px 0 26px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
      }

      .notice-list strong {
        display: block;
        margin-bottom: 8px;
        color: #ffffff;
        font-size: 15.5px;
        font-weight: 900;
        letter-spacing: 0.02em;
      }

      .notice-list p {
        margin: 0;
        color: rgba(255, 255, 255, 0.72);
        font-size: 14px;
        font-weight: 500;
        line-height: 1.9;
      }

      .notice-link {
        display: inline-flex;
        align-items: center;
        gap: 14px;
        margin-top: 16px;
        min-height: 48px;
        padding: 0 20px;
        color: #ffffff;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.42);
        font-size: 13px;
        font-weight: 900;
        letter-spacing: 0.04em;
        transition: background var(--duration) var(--ease), border-color var(--duration) var(--ease), color var(--duration) var(--ease);
      }

      .notice-link .arrow {
        display: inline-block;
        color: var(--orange);
        font-size: 14px;
        transition: transform var(--duration) var(--ease), color var(--duration) var(--ease);
      }

      .notice-link:hover {
        background: var(--orange);
        border-color: var(--orange);
        color: #ffffff;
      }

      .notice-link:hover .arrow { color: #ffffff; transform: translateX(3px); }

      /* ====== Recruit Contents (5 cards) ====== */
      .route-grid {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 14px;
      }

      .route-card {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 16px;
        min-height: 200px;
        padding: 26px 22px 22px;
        background: var(--paper);
        border: 1px solid var(--line);
        color: var(--ink);
        overflow: hidden;
        transition: border-color var(--duration) var(--ease), transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
      }

      .route-card:hover {
        border-color: var(--ink);
        transform: translateY(-2px);
        box-shadow: 0 14px 32px rgba(17, 17, 17, 0.06);
      }

      .route-card .tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--orange);
        font-size: 10.5px;
        font-weight: 900;
        letter-spacing: 0.18em;
        text-transform: uppercase;
      }

      .route-card .tag::before {
        content: "";
        display: inline-block;
        width: 22px;
        height: 1px;
        background: currentColor;
      }

      .route-card h3 {
        margin: 0;
        color: var(--ink);
        font-size: 17px;
        font-weight: 900;
        line-height: 1.45;
        letter-spacing: -0.005em;
      }

      .route-card .cta {
        margin-top: auto;
        padding-top: 14px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--ink);
        font-size: 11.5px;
        font-weight: 900;
        letter-spacing: 0.06em;
        border-top: 1px solid var(--line);
      }

      .route-card .cta .arrow-circle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        border-radius: 0;
        border: 1px solid var(--line);
        color: var(--orange);
        font-size: 12px;
        line-height: 1;
        transition: background var(--duration) var(--ease), border-color var(--duration) var(--ease), color var(--duration) var(--ease), transform var(--duration) var(--ease);
      }

      .route-card:hover .cta .arrow-circle {
        background: var(--orange);
        border-color: var(--orange);
        color: #ffffff;
        transform: translateX(2px);
      }

      /* ====== Footer ====== */
      .footer {
        background: #0b0b0c;
        color: #c9c9c9;
        padding: 64px 0 32px;
      }

      .footer-top {
        display: grid;
        grid-template-columns: 1.3fr repeat(4, 1fr);
        gap: 36px;
        padding-bottom: 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      }

      .footer-brand .footer-logo {
        display: inline-flex;
        align-items: center;
        margin-bottom: 18px;
      }

      .footer-brand .footer-logo img { height: 24px; width: auto; }

      .footer-brand p {
        color: rgba(255, 255, 255, 0.6);
        font-size: 13px;
        line-height: 1.85;
      }

      .footer-col strong {
        display: block;
        margin-bottom: 14px;
        color: #ffffff;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 0.08em;
      }

      .footer-col a {
        display: block;
        margin-top: 8px;
        color: rgba(255, 255, 255, 0.62);
        font-size: 13px;
        transition: color var(--duration) var(--ease);
      }

      .footer-col a:hover { color: var(--orange); }

      .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
        padding-top: 24px;
        color: rgba(255, 255, 255, 0.4);
        font-size: 12px;
      }

      /* ====== Responsive ====== */
      @media (max-width: 1366px) {
        .section, .notice-section { padding: 96px 0; }
        .form-section { padding: 84px 0 96px; }
        .page-hero-inner { gap: 48px; padding: 112px var(--gutter) 92px; }
        .form-card { padding: 42px 40px 40px; }
        .route-card { min-height: 188px; padding: 24px 20px 20px; }
        .route-card h3 { font-size: 16px; }
      }

      @media (max-width: 1180px) {
        .page-hero-inner {
          grid-template-columns: 1fr;
          gap: 40px;
          padding: 104px var(--gutter) 80px;
          align-items: start;
        }
        .page-hero-text { max-width: 720px; }
        .snapshot-panel { max-width: 560px; }
        .section-head {
          grid-template-columns: 1fr;
          gap: 18px;
          align-items: start;
          margin-bottom: 40px;
        }
        .notice-grid { grid-template-columns: 1fr; gap: 36px; }
        .notice-copy { padding: 6px 0 6px 22px; }
        .route-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
      }

      @media (max-width: 960px) {
        :root { --gutter: 24px; }
        .global-nav,
        .header-contact { display: none; }
        .menu-toggle { display: inline-flex; }
        .section, .notice-section { padding: 80px 0; }
        .form-section { padding: 68px 0 80px; }
        .page-hero-inner { padding: 88px var(--gutter) 68px; }
        .page-hero h1 { font-size: clamp(28px, 6vw, 42px); }
        .snapshot-panel { padding: 24px 24px 20px; }
        .form-card { padding: 36px 30px 32px; }
        .form-intro h2 { font-size: 26px; }
        .route-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
        .route-card { min-height: 0; padding: 22px 20px 20px; }
      }

      @media (max-width: 720px) {
        .section, .notice-section { padding: 64px 0; }
        .form-section { padding: 52px 0 64px; }
        .page-hero-inner { padding: 72px var(--gutter) 52px; gap: 28px; }
        .page-hero h1 { font-size: 26px; line-height: 1.25; }
        .page-hero .lead { font-size: 14px; }
        .snapshot-panel { padding: 20px 20px 16px; }
        .snapshot-panel dd { font-size: 13px; }
        .form-card { padding: 28px 22px 26px; }
        .form-intro { margin-bottom: 22px; }
        .form-intro h2 { font-size: 22px; }
        .form-intro p { font-size: 14px; }
        .entry-form { gap: 22px; }
        .field-two { grid-template-columns: 1fr; gap: 22px; }
        .entry-form input,
        .entry-form select,
        .entry-form textarea {
          min-height: 52px;
          padding: 13px 14px;
          font-size: 16px;
        }
        .entry-form textarea { min-height: 170px; }
        .checkbox-row { padding: 18px 18px; gap: 12px; }
        .submit-row {
          grid-template-columns: 1fr;
          gap: 14px;
          align-items: stretch;
        }
        .entry-form .button.submit {
          width: 100%;
          min-width: 0;
        }
        .confirm-panel { padding: 24px 20px; }
        .confirm-list div {
          grid-template-columns: 1fr;
          gap: 4px;
          padding: 14px;
        }
        .confirm-actions {
          flex-direction: column-reverse;
          align-items: stretch;
        }
        .confirm-actions .button { width: 100%; }
        .notice-copy h2 { font-size: 22px; }
        .notice-list strong { font-size: 14.5px; }
        .route-grid { grid-template-columns: 1fr; }
        .route-card h3 { font-size: 17px; }
        .footer-top {
          grid-template-columns: 1fr 1fr;
          gap: 24px 28px;
        }
        .footer-brand { grid-column: 1 / -1; }
      }

      @media (max-width: 480px) {
        .footer-top { grid-template-columns: 1fr; }
        .footer-bottom { flex-direction: column; gap: 8px; }
      }

      @media (prefers-reduced-motion: reduce) {
        .page-hero::before { animation: none; transform: scale(1); }
        .entry-form input,
        .entry-form select,
        .entry-form textarea,
        .button .arrow,
        .route-card,
        .route-card .cta .arrow-circle,
        .notice-link,
        .notice-link .arrow {
          transition: none;
        }
      }
