:root {
  color-scheme: dark;
  --drr-canvas: #070809;
  --drr-panel: #17191c;
  --drr-segment: #303236;
  --drr-segment-selected: #202124;
  --drr-hero-top: #2f557f;
  --drr-hero-mid: #294967;
  --drr-hero-deep: #1d2a38;
  --drr-hero-night: #12171d;
  --drr-hero-black: #080a0d;
  --drr-primary: #48a9ff;
  --drr-primary-foreground: #ffffff;
  --drr-heading: #f7f9fc;
  --drr-body: #e2e6eb;
  --drr-muted: #aeb7c2;
  --drr-link: #a8d5ff;
  --drr-border: rgba(190, 215, 241, 0.22);
  --drr-card-gradient: linear-gradient(180deg, #2f557f 0%, #294967 50%, #1d2a38 66%, #12171d 83%, #080a0d 100%);
  --drr-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Hiragino Sans", "Yu Gothic", sans-serif;
  --drr-radius-card: 28px;
  --drr-radius-card-compact: 23px;
  --drr-radius-pill: 999px;
  --drr-page-gutter: 18px;
  --drr-content-width: 620px;
  font-family: var(--drr-font);
}
* { box-sizing: border-box; }
html { background: var(--drr-canvas); }
body { margin: 0; min-height: 100vh; padding: 24px var(--drr-page-gutter); color: var(--drr-heading); background: var(--drr-canvas); }
a { color: var(--drr-link); overflow-wrap: anywhere; text-underline-offset: .2em; }
button, a { -webkit-tap-highlight-color: transparent; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 18px; top: 18px; z-index: 10; padding: 10px 14px; border-radius: 12px; color: var(--drr-heading); background: var(--drr-panel); }
.drr-window { width: min(100%, var(--drr-content-width)); margin: 0 auto; }
.drr-topbar { display: grid; grid-template-columns: 44px 1fr 44px; align-items: center; gap: 12px; min-height: 61px; margin-bottom: 16px; }
.drr-close { display: grid; width: 44px; height: 44px; place-items: center; border: 0; border-radius: 50%; color: var(--drr-muted); background: transparent; text-decoration: none; cursor: pointer; }
.drr-close svg { width: 23px; height: 23px; stroke-width: 1.8; }
.drr-title { margin: 0; color: var(--drr-heading); font-size: 34px; font-weight: 500; line-height: 41px; letter-spacing: -.03em; text-align: center; }
.drr-top-spacer { width: 44px; height: 44px; }
.drr-segmented { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; width: min(100%,430px); margin: 0 auto 20px; padding: 5px; border-radius: var(--drr-radius-pill); background: var(--drr-segment); }
.drr-tab { min-height: 48px; border: 0; border-radius: var(--drr-radius-pill); color: #b8bcc1; background: transparent; font: inherit; font-size: 17px; line-height: 25px; cursor: pointer; }
.drr-tab[aria-pressed="true"] { color: var(--drr-heading); background: var(--drr-segment-selected); box-shadow: 0 5px 14px rgba(0,0,0,.24); }
.drr-hero { padding: 38px; border: 1px solid var(--drr-border); border-radius: var(--drr-radius-card); background: var(--drr-card-gradient); }
.drr-kicker { display: flex; align-items: center; gap: 10px; min-height: 23px; margin: 0 0 20px; color: var(--drr-link); font-size: 15px; font-weight: 400; line-height: 23px; letter-spacing: .03em; }
.drr-kicker svg { width: 23px; height: 23px; stroke-width: 1.8; }
.drr-card-eyebrow { display: flex; align-items: center; gap: 10px; min-height: 23px; margin: 0 0 28px; color: var(--drr-link); font-size: 13.8px; font-weight: 500; line-height: 23px; letter-spacing: .11em; }
.drr-card-eyebrow svg { width: 21px; height: 21px; stroke-width: 1.8; }
.drr-heading { margin: 0; color: var(--drr-heading); font-size: 30px; font-weight: 500; line-height: 37px; letter-spacing: -.035em; text-align: left; }
.drr-section-heading { margin: 32px 0 12px; color: var(--drr-heading); font-size: 24px; font-weight: 500; line-height: 31px; }
.drr-lead { margin: 16px 0 32px; color: var(--drr-body); font-size: 16px; font-weight: 400; line-height: 26px; text-align: left; }
.drr-rule { height: 1px; margin: 32px 0; background: var(--drr-border); }
.drr-list { display: grid; gap: 20px; margin: 0; }
.drr-list-row { display: grid; grid-template-columns: 30px 1fr; gap: 13px; align-items: start; }
.drr-list-row svg { width: 23px; height: 23px; color: var(--drr-link); stroke-width: 1.8; }
.drr-list-row p, .drr-list-row li, .drr-list-row .drr-copy { margin: 0; color: var(--drr-body); font-size: 16px; font-weight: 400; line-height: 26px; text-align: left; }
.drr-list-row strong { color: var(--drr-heading); font-size: 17px; font-weight: 500; line-height: 25px; }
.drr-numbered-list { counter-reset: legal-section; }
.drr-numbered-list .drr-list-row { counter-increment: legal-section; }
.drr-numbered-list .drr-list-row strong::before { content: counter(legal-section) '. '; color: var(--drr-link); }
.drr-list-row ul, .drr-list-row ol { display: grid; gap: 20px; margin: 12px 0 0; padding-left: 1.2rem; }
.drr-consent { margin-top: 32px; padding: 18px; border-radius: 19px; background: rgba(10,15,22,.55); }
.drr-check { display: flex; gap: 12px; align-items: flex-start; color: var(--drr-heading); font-size: 16px; line-height: 26px; cursor: pointer; }
.drr-check input { width: 21px; height: 21px; margin: 2px 0 0; accent-color: var(--drr-primary); }
.drr-primary { display: inline-grid; width: 100%; min-height: 56px; margin-top: 18px; padding: 0 24px; place-items: center; border: 0; border-radius: var(--drr-radius-pill); color: var(--drr-primary-foreground); background: var(--drr-primary); font: inherit; font-size: 17px; font-weight: 500; line-height: 25px; text-align: center; text-decoration: none; cursor: pointer; transition: filter 160ms ease, opacity 160ms ease; }
.drr-primary:disabled { opacity: .42; cursor: not-allowed; }
.drr-primary:not(:disabled):hover { filter: brightness(1.08); }
.drr-links { display: flex; flex-wrap: wrap; gap: 12px 18px; margin-top: 32px; color: var(--drr-link); font-size: 15px; line-height: 23px; }
.drr-links a { min-height: 44px; display: inline-flex; align-items: center; color: inherit; }
.drr-legal-nav { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; width: 100%; margin: 0 auto; padding: 5px; border: 1px solid var(--drr-border); border-radius: var(--drr-radius-pill); background: var(--drr-panel); }
.drr-legal-nav-top { margin-bottom: 20px; }
.drr-legal-nav-footer { margin: 0 0 20px; }
.drr-legal-nav a { display: grid; min-height: 44px; padding: 0 14px; place-items: center; border: 1px solid transparent; border-radius: var(--drr-radius-pill); color: var(--drr-link); font-size: 15px; font-weight: 400; line-height: 23px; text-align: center; text-decoration: none; }
.drr-legal-nav a:hover { border-color: var(--drr-border); color: var(--drr-heading); }
.drr-legal-nav a:focus-visible { outline: 2px solid var(--drr-primary); outline-offset: 2px; }
.drr-legal-nav a.is-current { border-color: var(--drr-primary); color: var(--drr-primary-foreground); background: var(--drr-primary); font-weight: 500; }
.drr-footer { padding: 20px 0 4px; color: var(--drr-muted); font-size: 13.8px; font-weight: 400; line-height: 23px; }
.drr-footer strong { color: var(--drr-body); font-weight: 500; }
.drr-footer a { color: var(--drr-link); }
.drr-footer p { margin: 0; }
.drr-footer p + p { margin-top: 8px; }
.drr-status { min-height: 23px; margin: 10px 0 0; color: var(--drr-link); font-size: 15px; line-height: 23px; }
.drr-en { display: none !important; }
.drr-window[data-language="en"] .drr-ja { display: none !important; }
.drr-window[data-language="en"] .drr-en { display: revert !important; }
@media (max-width: 440px) {
  body { padding: 10px var(--drr-page-gutter); }
  .drr-topbar { margin-bottom: 12px; }
  .drr-hero { padding: 28px 20px; border-radius: var(--drr-radius-card-compact); }
}
@media (max-width: 520px) {
  .drr-legal-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .drr-legal-nav a { padding: 0 10px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
