/* =========================================================
   Ogawa Yohei official site
   Simple photo-led layout inspired by classic political sites
   ========================================================= */

:root {
  --navy-950: #08112d;
  --navy-900: #102052;
  --navy-800: #173275;
  --navy-700: #22489c;
  --navy-100: #e7edf8;
  --navy-50: #f4f7fc;
  --yellow-600: #d9a900;
  --yellow-500: #f6c73e;
  --yellow-100: #fff4cf;
  --green-700: #28645b;
  --red-700: #a33a32;
  --paper: #ffffff;
  --paper-warm: #fffdf6;
  --ink-900: #151922;
  --ink-700: #3f4858;
  --ink-500: #737b89;
  --line: rgba(16, 32, 82, 0.14);
  --line-soft: rgba(16, 32, 82, 0.08);
  --line-warm: rgba(246, 199, 62, 0.28);
  --font-display: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  --font-heading: "M PLUS 1p", "Noto Sans JP", sans-serif;
  --font-body: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  --wrap: 1120px;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(8, 17, 45, 0.14);
  --shadow-soft: 0 10px 28px rgba(8, 17, 45, 0.08);
  --shadow-card: 0 18px 36px rgba(8, 17, 45, 0.10);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink-900);
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: 0;
  background:
    linear-gradient(90deg, rgba(16, 32, 82, 0.018) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 32, 82, 0.014) 1px, transparent 1px),
    linear-gradient(180deg, #fffdf7 0%, #fffaf0 54%, #f8faf6 100%);
  background-size: 40px 40px, 40px 40px, auto;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--yellow-500);
  color: var(--navy-950);
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--navy-700);
}

:focus-visible {
  outline: 3px solid rgba(246, 199, 62, 0.72);
  outline-offset: 3px;
}

ul,
ol {
  list-style: none;
}

button {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 8px 12px;
  border-radius: 4px;
  background: var(--navy-900);
  color: #fff;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.anchor {
  display: block;
  height: 0;
  scroll-margin-top: 80px;
}

.page-shell {
  min-height: 100vh;
  background: rgba(255, 253, 246, 0.76);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  min-height: 70px;
  padding: 0 max(18px, calc((100vw - var(--wrap)) / 2));
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--line-soft);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72), 0 10px 26px rgba(8, 17, 45, 0.05);
  backdrop-filter: saturate(150%) blur(16px);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: var(--navy-900);
  white-space: nowrap;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brand-role {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-500);
  letter-spacing: 0.14em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  margin-left: auto;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-900);
}

.desktop-nav a {
  position: relative;
  padding: 24px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--yellow-500);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 999px;
  background: var(--navy-900);
  box-shadow: 0 10px 22px rgba(8, 17, 45, 0.20);
  transition: transform 180ms var(--ease-out), background-color 180ms ease, box-shadow 180ms ease;
}

.nav-toggle:hover {
  transform: translateY(-1px);
  background: var(--navy-800);
  box-shadow: 0 14px 28px rgba(8, 17, 45, 0.24);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: #fff;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  visibility: hidden;
  opacity: 0;
  overflow-y: auto;
  background:
    linear-gradient(135deg, rgba(246, 199, 62, 0.08), transparent 32%),
    linear-gradient(160deg, var(--navy-950) 0%, #101b49 100%);
  color: #fff;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.nav-overlay.is-open {
  visibility: visible;
  opacity: 1;
}

.nav-overlay-inner {
  width: min(100%, 520px);
  min-height: 100%;
  margin: 0 auto;
  padding: 26px 24px 40px;
}

.nav-close {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.nav-overlay-mark {
  margin: 22px 0;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--yellow-500);
}

.nav-overlay-list {
  display: grid;
  gap: 2px;
}

.nav-overlay-list a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  transition: color 180ms ease, padding-left 180ms var(--ease-out), border-color 180ms ease;
}

.nav-overlay-list a:hover {
  padding-left: 6px;
  color: var(--yellow-500);
  border-bottom-color: rgba(246, 199, 62, 0.42);
}

.nav-overlay-list span {
  align-self: center;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
}

.nav-overlay-cta {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

body.is-nav-open {
  overflow: hidden;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--navy-900);
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.56) inset;
  transition: transform 180ms var(--ease-out), box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(8, 17, 45, 0.18);
}

.btn-primary {
  background: linear-gradient(180deg, var(--navy-800), var(--navy-950));
  color: #fff;
}

.btn-primary:hover {
  background: var(--navy-800);
  color: #fff;
}

.btn-secondary,
.btn-ghost {
  background: #fff;
  color: var(--navy-900);
}

.btn-block {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  grid-template-areas:
    "copy photo"
    "body photo"
    "links links";
  column-gap: clamp(36px, 6vw, 88px);
  row-gap: 30px;
  width: 100%;
  min-height: calc(100vh - 70px);
  padding: clamp(42px, 6vw, 68px) max(24px, calc((100vw - var(--wrap)) / 2)) 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 229, 0.92)),
    #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 44%;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(246, 199, 62, 0.26), rgba(255, 244, 207, 0.92));
  z-index: 0;
}

.hero-copy,
.hero-body,
.hero-portrait,
.hero-links {
  position: relative;
  z-index: 1;
}

.hero-copy {
  grid-area: copy;
  align-self: end;
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 5px 12px;
  border-left: 5px solid var(--yellow-500);
  background: var(--navy-50);
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.14em;
  box-shadow: 0 8px 20px rgba(8, 17, 45, 0.06);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 58px);
  font-weight: 900;
  line-height: 1.16;
  color: var(--navy-950);
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: balance;
}

.hero-name {
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  color: var(--navy-900);
  letter-spacing: 0.08em;
}

.hero-name span {
  display: block;
  margin-top: 2px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-500);
  letter-spacing: 0.2em;
}

.hero-portrait {
  grid-area: photo;
  align-self: stretch;
  min-height: min(62vh, 560px);
  overflow: hidden;
  border-radius: 0 0 0 34px;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-portrait img {
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(1.02) contrast(1.02);
  transform: scale(1.01);
}

.hero-body {
  grid-area: body;
  max-width: 520px;
  align-self: start;
}

.hero-summary {
  margin-bottom: 26px;
  color: var(--ink-700);
  font-size: 16px;
  line-height: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-links {
  grid-area: links;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 16px;
  border: 1px solid var(--line);
  background: var(--line);
}

.hero-links a {
  display: grid;
  place-items: center;
  min-height: 66px;
  background: #fff;
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  transition: background-color 180ms ease, color 180ms ease;
}

.hero-links a:hover {
  background: var(--yellow-100);
}

/* Common sections */
.section {
  width: min(100% - 40px, var(--wrap));
  margin: 0 auto;
  padding: 74px 0;
  border-bottom: 1px solid var(--line-soft);
}

.section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.section-label,
.subsection-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
  color: var(--yellow-600);
  text-transform: uppercase;
}

.section-label::before,
.subsection-label::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  margin-right: 8px;
  vertical-align: middle;
  background: currentColor;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.28;
  color: var(--navy-950);
  text-wrap: balance;
}

.section-lead {
  max-width: 720px;
  margin-bottom: 28px;
  color: var(--ink-700);
  font-size: 16px;
}

.subsection-label {
  margin: 28px 0 14px;
}

.subsection-label-spaced {
  margin-top: 44px;
}

.toggle-section {
  margin-top: 20px;
  border-top: 2px solid var(--navy-900);
}

.toggle-section summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 16px 44px 16px 0;
  color: var(--navy-950);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  list-style: none;
  cursor: pointer;
  border-bottom: 1px solid var(--line);
  transition: color 180ms ease, background-color 180ms ease, padding-left 180ms var(--ease-out);
}

.toggle-section summary:hover {
  padding-left: 8px;
  background: linear-gradient(90deg, rgba(246, 199, 62, 0.16), transparent 58%);
  color: var(--navy-700);
}

.toggle-section summary::-webkit-details-marker {
  display: none;
}

.toggle-section summary::after {
  content: "+";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--yellow-600);
  font-size: 24px;
  line-height: 1;
  transition: transform 180ms var(--ease-out);
}

.toggle-section[open] summary::after {
  content: "-";
  transform: translateY(-50%) rotate(180deg);
}

.toggle-section[open] {
  padding-bottom: 4px;
}

/* News */
.news-list {
  display: grid;
  border-top: 2px solid var(--navy-900);
}

.news-list li {
  border-bottom: 1px solid var(--line);
}

.news-card {
  position: relative;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: baseline;
  padding: 18px 0;
  color: var(--ink-900);
}

.news-card-feature {
  color: var(--navy-900);
}

.news-tag {
  grid-column: 1;
  width: max-content;
  padding: 2px 8px;
  border-radius: 3px;
  background: var(--yellow-500);
  color: var(--navy-950);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 900;
}

.news-card-feature .news-date {
  grid-column: 1;
}

.news-card-feature .news-text {
  grid-column: 2;
}

.news-date {
  color: var(--ink-500);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
}

.news-text {
  font-size: 15px;
  line-height: 1.75;
}

.news-link {
  color: var(--navy-700);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 900;
}

/* Voice */
.voice-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(246, 199, 62, 0.16), transparent 44%),
    rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.voice-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.voice-topics span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid var(--line-warm);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 900;
}

.voice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

/* Reports */
.section-reports {
  padding-top: 26px;
}

.report-feature {
  margin-bottom: 14px;
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.report-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  color: var(--ink-900);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.report-card:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 72, 156, 0.32);
  box-shadow: var(--shadow-card);
}

.report-card-latest {
  grid-template-columns: 190px minmax(0, 1fr);
  min-height: 250px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(246, 199, 62, 0.18), transparent 42%),
    rgba(255, 255, 255, 0.96);
}

.report-thumb {
  overflow: hidden;
  aspect-ratio: 0.707 / 1;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--navy-50);
  box-shadow: 0 14px 24px rgba(8, 17, 45, 0.13);
}

.report-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.report-body {
  display: grid;
  gap: 8px;
}

.report-badge {
  width: max-content;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--yellow-500);
  color: var(--navy-950);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 900;
}

.report-date {
  color: var(--ink-500);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.report-card h3 {
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
}

.report-card p:not(.report-date) {
  color: var(--ink-700);
  font-size: 13px;
  line-height: 1.75;
}

.report-link {
  width: max-content;
  color: var(--navy-700);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 900;
}

.report-topics {
  display: grid;
  gap: 6px;
  margin-top: 2px;
  padding-top: 10px;
  border-top: 1px solid var(--line-soft);
}

.report-topics span {
  color: var(--yellow-600);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.report-topics li {
  color: var(--ink-700);
  font-size: 12.5px;
  line-height: 1.6;
}

.report-topics ul {
  display: grid;
  gap: 4px;
  padding-left: 1.15em;
}

/* Small content blocks */
.card-stack,
.policy-stack,
.support-stack,
.contact-quick-grid,
.history-highlight-stack {
  display: grid;
  gap: 14px;
}

.card-stack,
.policy-stack,
.support-stack,
.contact-quick-grid,
.history-highlight-stack {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-card,
.policy-card,
.profile-quick-card,
.history-highlight-card,
.support-card,
.contact-quick-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72) inset;
  transition: transform 180ms var(--ease-out), box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.mini-card:hover,
.policy-card:hover,
.profile-quick-card:hover,
.history-highlight-card:hover,
.support-card:hover,
.contact-quick-card:hover {
  transform: translateY(-2px);
  border-color: rgba(16, 32, 82, 0.22);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.mini-card,
.policy-card,
.profile-quick-card,
.history-highlight-card,
.support-card,
.contact-quick-card {
  padding: 22px;
}

.mini-card-num,
.policy-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 26px;
  margin-bottom: 12px;
  background: linear-gradient(180deg, var(--navy-800), var(--navy-950));
  color: #fff;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 900;
}

.mini-card h3,
.policy-card h3,
.product-card h3,
.pickup-card h3,
.profile-quick-card h4,
.history-highlight-card h3,
.support-card h3,
.contact-quick-card strong {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--navy-950);
  line-height: 1.35;
}

.mini-card h3,
.policy-card h3,
.product-card h3,
.support-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.mini-card p,
.policy-card p,
.product-card p,
.pickup-card p,
.profile-quick-card p,
.history-highlight-card p,
.support-card p,
.contact-quick-card p {
  color: var(--ink-700);
  font-size: 14px;
}

/* Policy */
.policy-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.policy-card {
  position: relative;
  padding-top: 26px;
}

.policy-catch {
  margin-bottom: 8px;
  color: var(--navy-700) !important;
  font-weight: 700;
}

.policy-list {
  display: grid;
  gap: 7px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}

.policy-list li {
  position: relative;
  padding-left: 16px;
  color: var(--ink-700);
  font-size: 13px;
  line-height: 1.65;
}

.policy-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--yellow-500);
}

/* Product and pickup */
.product-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: center;
  border-top: 2px solid var(--navy-900);
  padding-top: 24px;
  transition: transform 180ms var(--ease-out);
}

.product-image,
.pickup-image,
.profile-image {
  overflow: hidden;
  background: var(--navy-50);
}

.product-image img,
.pickup-image img,
.profile-image img {
  transition: transform 360ms var(--ease-out), filter 360ms ease;
}

.product-card:hover img,
.pickup-card:hover img,
.profile-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.03);
}

.product-image {
  border-radius: var(--radius);
}

.product-tag,
.pickup-source,
.support-tag {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--yellow-600);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 10px;
  font-size: 28px;
}

.product-points {
  display: grid;
  gap: 6px;
  margin-top: 16px;
}

.product-points li {
  color: var(--ink-700);
  font-size: 13px;
}

.product-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--navy-700);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 900;
}

.pickup-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pickup-card {
  display: grid;
  grid-template-rows: 180px 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72) inset;
  transition: transform 180ms var(--ease-out), box-shadow 180ms ease, border-color 180ms ease;
}

.pickup-image img {
  height: 100%;
  object-fit: cover;
}

.pickup-body {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px;
}

.pickup-card h3 {
  font-size: 18px;
}

.pickup-link {
  align-self: end;
  margin-top: 4px;
  color: var(--navy-700);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 900;
}

.sns-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.sns-quick-card {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.sns-quick-card small,
.contact-quick-card small {
  display: block;
  margin-bottom: 6px;
  color: var(--yellow-600);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.sns-quick-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
  color: var(--navy-900);
}

.sns-quick-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-500);
  font-size: 12px;
  word-break: break-word;
}

.sns-quick-card p {
  color: var(--ink-700);
  font-size: 12px;
  line-height: 1.65;
}

.sns-icon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sns-icon-link {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.74) inset, 0 8px 18px rgba(8, 17, 45, 0.06);
  transition: transform 180ms var(--ease-out), background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.sns-icon-link:hover {
  transform: translateY(-2px);
  background: var(--navy-900);
  color: #fff;
  box-shadow: 0 14px 26px rgba(8, 17, 45, 0.14);
}

.sns-icon-link span {
  line-height: 1;
}

.sns-line {
  width: 58px;
  border-radius: 999px;
  color: #168a46;
}

/* Profile */
.profile-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  grid-template-areas:
    "image name"
    "image kana"
    "image badges";
  column-gap: 28px;
  align-items: end;
  margin-bottom: 22px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--navy-900);
}

.profile-image {
  grid-area: image;
  height: 340px;
  border-radius: var(--radius);
}

.profile-image img {
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.profile-name {
  grid-area: name;
  align-self: end;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 900;
  color: var(--navy-950);
  letter-spacing: 0.08em;
}

.profile-kana {
  grid-area: kana;
  color: var(--ink-500);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.profile-badges {
  grid-area: badges;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: start;
  margin-top: 12px;
}

.profile-role {
  padding: 5px 10px;
  background: var(--navy-900);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 900;
}

.profile-role-party {
  background: var(--yellow-500);
  color: var(--navy-950);
}

.profile-quick-stack,
.history-highlight-stack {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 22px;
}

.profile-quick-value {
  margin-bottom: 8px;
  color: var(--yellow-600);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
}

.profile-quick-card h4,
.history-highlight-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.profile-message {
  margin: 22px 0;
  padding: 24px;
  border-left: 5px solid var(--yellow-500);
  background:
    linear-gradient(90deg, rgba(246, 199, 62, 0.13), transparent 38%),
    #fff;
  color: var(--ink-700);
  font-size: 15px;
  box-shadow: var(--shadow-soft);
}

.profile-list {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  border-top: 1px solid var(--line);
}

.profile-list dt,
.profile-list dd {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.profile-list dt {
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.profile-list dd {
  color: var(--ink-700);
  font-size: 14px;
}

.timeline {
  border-top: 2px solid var(--navy-900);
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-year {
  color: var(--yellow-600);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 900;
}

.timeline-body h4 {
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  color: var(--navy-950);
}

.timeline-body p {
  color: var(--ink-700);
  font-size: 14px;
}

.timeline-item.highlight {
  background: linear-gradient(90deg, var(--yellow-100), transparent 60%);
}

/* Support and contact */
.section-support {
  border-bottom: 0;
}

.support-card {
  display: block;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.support-card:hover,
.contact-quick-card:hover,
.pickup-card:hover,
.product-card:hover {
  transform: translateY(-2px);
}

.contact-quick-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 22px;
}

.support-contact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-quick-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.sns-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sns-link {
  padding: 9px 14px;
  border: 1px solid var(--navy-900);
  border-radius: 4px;
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.82);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms var(--ease-out);
}

.sns-link:hover {
  transform: translateY(-1px);
  background: var(--navy-900);
  color: #fff;
}

/* Footer */
.site-footer {
  padding: 58px max(20px, calc((100vw - var(--wrap)) / 2)) 110px;
  background:
    linear-gradient(135deg, rgba(246, 199, 62, 0.10), transparent 34%),
    linear-gradient(180deg, #08112d 0%, #050b22 100%);
  color: rgba(255, 255, 255, 0.78);
}

.footer-mark {
  color: var(--yellow-500);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.28em;
}

.footer-name {
  margin-top: 8px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.footer-role,
.footer-catch,
.footer-copy {
  font-size: 13px;
}

.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.footer-dpfp-logo {
  width: 150px;
}

.footer-block {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-block h3 {
  margin-bottom: 12px;
  color: var(--yellow-500);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.footer-block ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.footer-block a,
.footer-office a,
.footer-legal a {
  color: rgba(255, 255, 255, 0.86);
}

.footer-office {
  font-style: normal;
  font-size: 13px;
  line-height: 1.9;
}

.footer-office .muted {
  color: rgba(255, 255, 255, 0.48);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.footer-copy {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.48);
}

/* Bottom mobile actions */
.mobile-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 45;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(8, 17, 45, 0.16);
}

.mobile-cta-link {
  display: grid;
  place-items: center;
  min-height: 52px;
  border-right: 1px solid var(--line-soft);
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-weight: 900;
}

.mobile-cta-link:last-child {
  border-right: 0;
}

.mobile-cta-link span {
  font-size: 12px;
  line-height: 1.2;
}

.mobile-cta-link small {
  color: var(--ink-500);
  font-size: 9px;
  line-height: 1.2;
}

.mobile-cta-accent {
  background: var(--yellow-500);
}

/* Other pages */
.page-subhero,
.legal-page {
  width: min(100% - 40px, 860px);
  margin: 0 auto;
  padding: 70px 0;
}

.page-subhero-layout,
.legal-page .container {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.page-eyebrow,
.legal-sub {
  color: var(--yellow-600);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.page-title,
.legal-page h1 {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.25;
  color: var(--navy-950);
}

.page-lead,
.legal-page p,
.legal-page li {
  margin-top: 14px;
  color: var(--ink-700);
}

.legal-page h2 {
  margin-top: 28px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--navy-950);
}

.legal-page ul {
  padding-left: 1.2em;
  list-style: disc;
}

.back-link {
  display: inline-block;
  margin-top: 26px;
  color: var(--navy-700);
  font-weight: 900;
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header {
    min-height: 60px;
    padding: 0 16px;
  }

  .brand-name {
    font-size: 18px;
  }

  .brand-role {
    font-size: 11px;
  }

  .hero {
    display: block;
    min-height: 0;
    padding: 0;
    background:
      linear-gradient(180deg, rgba(8, 17, 45, 0.16) 0%, rgba(8, 17, 45, 0.40) 56%, rgba(8, 17, 45, 0.78) 100%),
      url("images/hero-portrait.jpg") center 18% / cover no-repeat;
    color: #fff;
  }

  .hero::before {
    display: none;
  }

  .hero-copy {
    min-height: min(66vh, 480px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 104px 20px 24px;
  }

  .hero-eyebrow {
    width: max-content;
    margin-bottom: 12px;
    border-left-color: var(--yellow-500);
    background: rgba(255, 255, 255, 0.88);
    color: var(--navy-900);
    font-size: 12px;
  }

  .hero-title {
    max-width: 340px;
    color: #fff;
    font-size: clamp(31px, 9vw, 42px);
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.26);
  }

  .hero-name {
    margin-top: 10px;
    color: #fff;
    font-size: 21px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.24);
  }

  .hero-name span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 11px;
  }

  .hero-portrait {
    display: none;
  }

  .hero-body {
    max-width: none;
    padding: 14px 20px 18px;
    background: var(--navy-950);
  }

  .hero-summary {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    line-height: 1.7;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions .btn {
    border-color: rgba(255, 255, 255, 0.34);
  }

  .hero .btn-secondary {
    background: transparent;
    color: #fff;
  }

  .hero-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    background: var(--navy-950);
  }

  .hero-links a {
    min-height: 48px;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
    background: var(--navy-950);
    color: #fff;
    font-size: 12px;
  }

  .hero-links li:last-child a {
    border-right: 0;
  }

  .section {
    width: min(100% - 36px, 680px);
    padding: 38px 0;
  }

  .section-head {
    gap: 4px;
    margin-bottom: 16px;
  }

  .section-label,
  .subsection-label {
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .section-title {
    font-size: 27px;
    line-height: 1.22;
  }

  .section-lead {
    margin-bottom: 18px;
    font-size: 13px;
    line-height: 1.75;
  }

  .subsection-label {
    margin: 20px 0 10px;
  }

  .subsection-label-spaced {
    margin-top: 28px;
  }

  .toggle-section {
    margin-top: 14px;
  }

  .toggle-section summary {
    min-height: 48px;
    padding: 12px 40px 12px 0;
    font-size: 13px;
  }

  .news-card {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 12px 0;
  }

  .news-date,
  .news-link {
    font-size: 11px;
  }

  .news-text {
    font-size: 13px;
    line-height: 1.6;
  }

  .card-stack,
  .report-grid,
  .policy-stack,
  .support-stack,
  .contact-quick-grid,
  .profile-quick-stack,
  .history-highlight-stack,
  .pickup-stack,
  .sns-quick-grid {
    grid-template-columns: 1fr;
  }

  .voice-panel {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

  .voice-topics {
    gap: 6px;
  }

  .voice-topics span {
    min-height: 27px;
    padding: 0 9px;
    font-size: 11px;
  }

  .voice-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: stretch;
  }

  .section-reports {
    padding-top: 18px;
  }

  .report-feature {
    margin-bottom: 10px;
  }

  .report-card,
  .report-card-latest {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 12px;
    min-height: 0;
    padding: 12px;
  }

  .report-thumb {
    border-radius: 5px;
    box-shadow: 0 10px 18px rgba(8, 17, 45, 0.12);
  }

  .report-body {
    gap: 5px;
  }

  .report-badge {
    padding: 3px 8px;
    font-size: 10px;
  }

  .report-date,
  .report-link {
    font-size: 11px;
  }

  .report-card h3 {
    font-size: 16px;
  }

  .report-card p:not(.report-date) {
    font-size: 12px;
    line-height: 1.55;
  }

  .report-topics {
    padding-top: 8px;
  }

  .report-topics li {
    font-size: 11.5px;
    line-height: 1.5;
  }

  .news-tag,
  .news-card-feature .news-date,
  .news-card-feature .news-text {
    grid-column: auto;
  }

  .mini-card,
  .policy-card,
  .profile-quick-card,
  .history-highlight-card,
  .support-card,
  .contact-quick-card {
    padding: 16px;
  }

  .card-stack {
    gap: 8px;
  }

  .mini-card {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 8px 12px;
    padding: 13px 0;
    border-width: 0 0 1px;
    border-radius: 0;
    background: transparent;
  }

  .mini-card .mini-card-num {
    grid-row: span 2;
    margin: 0;
  }

  .mini-card h3,
  .policy-card h3,
  .product-card h3,
  .support-card h3 {
    margin-bottom: 6px;
    font-size: 17px;
  }

  .mini-card p,
  .policy-card p,
  .product-card p,
  .pickup-card p,
  .profile-quick-card p,
  .history-highlight-card p,
  .support-card p,
  .contact-quick-card p {
    font-size: 12.5px;
    line-height: 1.6;
  }

  .mini-card-num,
  .policy-num {
    min-width: 30px;
    height: 22px;
    margin-bottom: 8px;
    font-size: 10px;
  }

  .product-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pickup-card {
    grid-template-columns: 112px 1fr;
    grid-template-rows: auto;
  }

  .pickup-image {
    height: 100%;
  }

  .profile-card {
    grid-template-columns: 124px minmax(0, 1fr);
    grid-template-areas:
      "image name"
      "image kana"
      "badges badges";
    gap: 8px 16px;
    align-items: center;
  }

  .profile-image {
    height: 130px;
  }

  .profile-name {
    font-size: 24px;
  }

  .profile-kana {
    font-size: 11px;
  }

  .profile-badges {
    margin-top: 6px;
    gap: 6px;
  }

  .profile-role {
    padding: 4px 8px;
    font-size: 10.5px;
  }

  .profile-quick-value {
    margin-bottom: 4px;
    font-size: 18px;
  }

  .profile-quick-card h4,
  .history-highlight-card h3 {
    margin-bottom: 4px;
    font-size: 16px;
  }

  .profile-message {
    margin: 16px 0;
    padding: 16px;
    font-size: 13px;
    line-height: 1.75;
  }

  .profile-list dt,
  .profile-list dd {
    padding: 10px 0;
  }

  .profile-list dt {
    font-size: 10.5px;
  }

  .profile-list dd {
    font-size: 12.5px;
    line-height: 1.65;
  }

  .profile-list,
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .timeline-item {
    gap: 6px;
    padding: 14px 0;
  }

  .timeline-year {
    font-size: 12px;
  }

  .timeline-body h4 {
    font-size: 16px;
  }

  .timeline-body p {
    font-size: 12.5px;
    line-height: 1.6;
  }

  .mobile-cta {
    display: grid;
  }

  .site-footer {
    padding-bottom: 92px;
  }
}

@media (max-width: 420px) {
  body {
    font-size: 14px;
  }

  .hero-copy {
    min-height: 405px;
    padding-top: 86px;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .voice-actions {
    grid-template-columns: 1fr;
  }

  .section {
    width: min(100% - 28px, 680px);
    padding: 32px 0;
  }

  .section-title {
    font-size: 25px;
  }

  .pickup-card {
    grid-template-columns: 96px 1fr;
  }

  .pickup-body {
    padding: 14px;
  }

  .pickup-card h3 {
    font-size: 16px;
  }

  .pickup-card p {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
