  :root {
    --blue: #1E4FA3;
    --navy: #12315F;
    --ink: #2A3346;
    --pale: #EEF3FB;
    --orange: #F5A623;
    --maxw: 1080px;
  }
  * { margin:0; padding:0; box-sizing:border-box; }
  html { scroll-behavior:smooth; }
  body {
    font-family: "Noto Sans JP","Hiragino Kaku Gothic ProN","Yu Gothic Medium","Yu Gothic",sans-serif;
    color: var(--ink); background:#fff; line-height:1.9; font-size:16px;
  }
  img { max-width:100%; display:block; }
  .wrap { max-width:var(--maxw); margin:0 auto; padding:0 24px; }

  header {
    position:sticky; top:0; z-index:50; background:rgba(255,255,255,.94);
    backdrop-filter:blur(6px); border-bottom:1px solid #E3E9F4;
  }
  .nav { display:flex; align-items:center; justify-content:space-between; height:68px; }
  .nav img { height:34px; }
  .navbtns { display:flex; align-items:center; gap:12px; }
  .login {
    color:var(--blue); border:1.5px solid var(--blue); border-radius:999px;
    padding:5px 16px; font-weight:700; text-decoration:none; font-size:12.5px; white-space:nowrap;
    transition:background .15s,color .15s;
  }
  .login:hover { background:var(--blue); color:#fff; }
  .navcontact {
    background:var(--orange); color:#fff; border:1.5px solid var(--orange); border-radius:999px;
    padding:5px 16px; font-weight:700; text-decoration:none; font-size:12.5px; white-space:nowrap;
    transition:opacity .15s;
  }
  .navcontact:hover { opacity:.85; }

  .pagehead { background:var(--pale); padding:52px 0 44px; border-bottom:1px solid #DDE6F5; }
  .eyebrow {
    display:inline-flex; align-items:center; gap:10px;
    font-size:13px; font-weight:700; letter-spacing:.22em; color:var(--blue);
  }
  .eyebrow::before { content:""; width:26px; height:4px; background:var(--orange); border-radius:2px; }
  .pagehead h1 { font-size:34px; font-weight:900; color:var(--navy); margin:12px 0 14px; letter-spacing:.02em; }
  .pagehead p { max-width:760px; }
  .jumps { display:flex; flex-wrap:wrap; gap:12px; margin-top:24px; }
  .jumps a {
    background:#fff; border:1px solid #DDE6F5; border-radius:999px; padding:8px 20px;
    font-size:14px; font-weight:700; color:var(--blue); text-decoration:none;
    transition:background .15s,color .15s;
  }
  .jumps a:hover { background:var(--blue); color:#fff; }

  .glosec { padding:56px 0 20px; }
  .glosec h2 {
    font-size:24px; font-weight:900; color:var(--navy); letter-spacing:.02em;
    padding-left:16px; border-left:6px solid var(--orange); margin-bottom:28px; line-height:1.5;
  }
  .terms { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
  .term {
    background:#fff; border:1px solid #DDE6F5; border-radius:14px; padding:22px 24px;
  }
  .term h3 { font-size:17px; font-weight:900; color:var(--blue); margin-bottom:8px; line-height:1.5; }
  .term p { font-size:14.5px; line-height:1.95; }

  .glcta {
    margin:64px 0 0; background:var(--navy); color:#fff; text-align:center; padding:64px 0;
  }
  .glcta h2 { font-size:26px; font-weight:900; margin-bottom:14px; }
  .glcta p { max-width:640px; margin:0 auto 26px; color:#C9D8F0; }
  .btn {
    display:inline-block; background:var(--orange); color:#fff; font-weight:900;
    padding:15px 42px; border-radius:999px; text-decoration:none; font-size:16px;
    letter-spacing:.06em; box-shadow:0 6px 0 rgba(200,130,10,.35);
    transition:transform .15s, box-shadow .15s;
  }
  .btn:hover { transform:translateY(2px); box-shadow:0 4px 0 rgba(200,130,10,.35); }

  footer { background:var(--pale); color:#4A5A75; font-size:13px; padding:52px 0 30px; border-top:1px solid #DDE6F5; }
  .fgrid { display:grid; grid-template-columns:1.3fr 1fr 1fr 1fr 1fr 1fr; gap:28px; }
  .fbrand img { height:32px; width:auto; margin-bottom:14px; }
  .fbrand p { line-height:1.9; color:#4A5A75; }
  .fcol h4 { font-size:13px; font-weight:900; color:var(--navy); margin-bottom:12px; letter-spacing:.04em; }
  .fcol ul { list-style:none; }
  .fcol li { margin-bottom:8px; line-height:1.6; }
  .fcol a { color:#4A5A75; text-decoration:none; }
  .fcol a:hover { color:var(--blue); text-decoration:underline; }
  .fsns { display:flex; align-items:center; gap:14px; }
  .fsns img { height:22px; width:auto; display:block; }
  .fsns a { font-weight:700; color:var(--blue); text-decoration:none; }
  .fsns a:hover { text-decoration:underline; }
  .copyright { margin-top:38px; border-top:1px solid #DDE6F5; padding-top:16px; color:#7A8CA8; text-align:center; }

  @media (max-width: 860px) {
    .navbtns { gap:8px; }
    .navbtns a { padding:4px 10px; font-size:11px; }
    .terms { grid-template-columns:1fr; }
    .pagehead h1 { font-size:26px; }
    .fgrid { grid-template-columns:1fr 1fr; }
  }
