
:root {
  --jaspa-red: #d90b18;
  --jaspa-red-dark: #b9000c;
  --navy: #12385d;
  --navy-deep: #092641;
  --blue: #1c5a91;
  --sky: #eef6fc;
  --sky-strong: #dfeef9;
  --white: #fff;
  --text: #1e2731;
  --text-sub: #35424f;
  --text-muted: #42505e;
  --line: #d7e0e8;
  --shadow: 0 18px 42px rgba(21, 54, 84, .11);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 9999; background: #fff; padding: 10px 14px; border-radius: 6px; box-shadow: var(--shadow); }
.skip-link:focus { top: 16px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(19,56,93,.1);
  backdrop-filter: blur(10px);
}
.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.site-logo { display: flex; align-items: center; flex: 0 0 auto; }
.site-logo img { display: block; width: clamp(286px, 26vw, 410px); max-height: 55px; object-fit: contain; object-position: left center; }
.global-nav { margin-left: auto; }
.global-nav ul { list-style: none; display: flex; align-items: center; gap: clamp(19px, 2vw, 31px); margin: 0; padding: 0; }
.global-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #273746;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: .025em;
  white-space: nowrap;
}
.global-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 2px;
  background: var(--jaspa-red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}
.global-nav a:hover::after, .global-nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-member-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid #c8d5e0;
  border-radius: 999px;
  color: #22384d;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  transition: .2s ease;
}
.header-member-link:hover { border-color: var(--jaspa-red); color: var(--jaspa-red); }
.nav-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 50%; background: #eef4f8; padding: 0; }
.nav-toggle span { display:block; width:21px; height:2px; background:var(--navy); margin:5px auto; transition:.2s; }

/* Hero */
.hero {
  position: relative;
  min-height: clamp(420px, 38vw, 540px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #dceefa;
}
.hero-media { position: absolute; inset: 0; }
.hero-media picture, .hero-media img { width:100%; height:100%; display:block; }
.hero-media img { object-fit: cover; object-position: center center; }
.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.92) 29%, rgba(255,255,255,.55) 46%, rgba(255,255,255,.05) 68%),
    linear-gradient(0deg, rgba(9,38,65,.18), rgba(9,38,65,0) 40%);
}
.hero-inner { position: relative; z-index: 2; display: flex; align-items: center; }
.hero-copy { width: min(850px, 72%); padding: 34px 0 28px; }
.hero-kicker { margin:0 0 12px; color:var(--jaspa-red); font-size:15px; font-weight:500; letter-spacing:.18em; text-transform:uppercase; }
.hero h1 { margin:0; color:var(--navy-deep); font-size:clamp(37px, 3.25vw, 47px); line-height:1.38; font-weight:600; letter-spacing:.005em; }
.hero h1 span, .hero-lead span { display:block; white-space:nowrap; }
.sp-break { display:none !important; }
.hero-lead { margin:17px 0 0; color:#263644; font-size:clamp(17px, 1.34vw, 20px); line-height:1.9; font-weight:400; }
.hero-actions { display:flex; flex-wrap:wrap; align-items:center; gap:13px; margin-top:20px; }
.button {
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  min-height:52px; padding:0 24px;
  border:1px solid transparent; border-radius:999px;
  font-size:16px; font-weight:400; letter-spacing:.025em;
  transition:transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color:#fff; background:var(--jaspa-red); box-shadow:0 10px 24px rgba(217,11,24,.2); }
.button-primary:hover { background:var(--jaspa-red-dark); }
.button-white { color:var(--navy); background:rgba(255,255,255,.94); border-color:#cbd9e5; }
.button-white:hover { border-color:var(--navy); }
.button-arrow::after { content:"→"; font-size:1.1em; }
.hero-stats { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:0; width:min(860px,100%); margin-top:22px; padding:15px 20px; border-top:1px solid rgba(18,56,93,.18); background:rgba(255,255,255,.38); border-radius:18px; backdrop-filter: blur(4px); }
.hero-stat { padding:0 18px; border-left:1px solid rgba(18,56,93,.18); font-weight:400; }
.hero-stat:first-child { padding-left:0; border-left:0; }
.hero-stat-value { display:block; color:var(--navy-deep); font-size:clamp(27px,2.2vw,35px); line-height:1.25; font-weight:400; letter-spacing:.015em; white-space:nowrap; }
.hero-stat-value .accent { color:var(--jaspa-red); }
.hero-stat-label { display:block; margin-top:8px; color:#2f4051; font-size:14px; line-height:1.55; font-weight:500; }

/* Shared sections */
.section { padding: 94px 0; }
.section-alt { background: #f4f8fb; }
.section-dark { background: var(--navy-deep); color:#fff; }
.section-head { display:grid; grid-template-columns:minmax(0,.75fr) minmax(0,1.25fr); gap:70px; align-items:end; margin-bottom:48px; }
.eyebrow { margin:0 0 10px; color:var(--jaspa-red); font-size:14px; font-weight:500; letter-spacing:.17em; text-transform:uppercase; }
.section-title { margin:0; color:var(--navy-deep); font-size:clamp(30px,3vw,44px); line-height:1.35; font-weight:600; letter-spacing:.01em; }
.section-intro { margin:0; color:var(--text-sub); font-size:18px; line-height:1.95; }
.section-dark .section-title, .section-dark .eyebrow { color:#fff; }
.section-dark .section-intro { color:#d4dee7; }
.section-actions { margin-top:32px; }

/* Intro / mission */
.intro-grid { display:grid; grid-template-columns:1.08fr .92fr; gap:72px; align-items:center; }
.intro-copy h2 { margin:0 0 25px; color:var(--navy-deep); font-size:clamp(30px,3vw,44px); line-height:1.45; font-weight:600; }
.intro-copy p { margin:0 0 17px; color:var(--text-sub); font-size:17px; }
.intro-panel { position:relative; padding:42px; border-radius:var(--radius); background:linear-gradient(145deg,#f5fbff,#e6f2fa); border:1px solid #d5e6f2; overflow:hidden; }
.intro-panel::after { content:"JASPA"; position:absolute; right:-15px; bottom:-38px; color:rgba(18,56,93,.055); font-size:106px; font-weight:700; letter-spacing:.03em; }
.intro-panel strong { display:block; color:var(--jaspa-red); font-size:16px; font-weight:500; letter-spacing:.08em; }
.intro-panel p { position:relative; z-index:1; margin:15px 0 0; color:var(--navy-deep); font-size:24px; line-height:1.65; font-weight:500; }

/* Topic cards */
.topic-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; }
.topic-card { min-height:280px; padding:28px 28px 28px; border-radius:var(--radius); background:#fff; border:1px solid #dbe4eb; box-shadow:0 10px 30px rgba(17,50,80,.055); transition:transform .22s ease, box-shadow .22s ease; }
.topic-card:hover { transform:translateY(-5px); box-shadow:var(--shadow); }
.topic-no { display:block; color:var(--jaspa-red); font-size:14px; font-weight:500; letter-spacing:.15em; }
.topic-card h3 { margin:15px 0 14px; color:var(--navy-deep); font-size:21px; line-height:1.5; font-weight:550; }
.topic-card p { margin:0; color:#394857; font-size:17px; line-height:1.85; }

/* Activity */
.activity-layout { display:grid; grid-template-columns:minmax(0,1.4fr) minmax(280px,.6fr); gap:55px; align-items:start; }
.activity-list { border-top:1px solid var(--line); }
.activity-item { display:grid; grid-template-columns:116px 1fr auto; gap:24px; align-items:center; padding:25px 0; border-bottom:1px solid var(--line); }
.activity-date { color:#536170; font-size:14px; }
.activity-title { color:var(--navy-deep); font-size:18px; line-height:1.55; font-weight:500; }
.activity-tag { color:var(--jaspa-red); border:1px solid #efb8bd; border-radius:999px; padding:4px 12px; font-size:12px; white-space:nowrap; }
.activity-side { padding:32px; border-radius:var(--radius); background:#fff; box-shadow:var(--shadow); border:1px solid #dbe5ed; }
.activity-side h3 { margin:0 0 15px; color:var(--navy-deep); font-size:22px; font-weight:550; }
.activity-side p { margin:0; color:var(--text-sub); font-size:16px; }
.activity-side .big { display:block; margin-top:18px; color:var(--jaspa-red); font-size:32px; font-weight:400; }

/* CTA */
.cta-band { position:relative; overflow:hidden; background:linear-gradient(120deg,#102f4e,#184f7d); color:#fff; }
.cta-band::after { content:""; position:absolute; width:410px; height:410px; border-radius:50%; border:1px solid rgba(255,255,255,.14); right:-120px; top:-180px; box-shadow:0 0 0 80px rgba(255,255,255,.025),0 0 0 160px rgba(255,255,255,.018); }
.cta-inner { position:relative; z-index:1; min-height:310px; display:flex; align-items:center; justify-content:space-between; gap:55px; }
.cta-copy { max-width:730px; }
.cta-copy h2 { margin:0 0 13px; font-size:clamp(26px,2.25vw,34px); line-height:1.45; font-weight:550; white-space:nowrap; }
.cta-copy p { margin:0; color:#d9e4ec; font-size:17px; }
.cta-actions { display:flex; flex-wrap:wrap; gap:12px; }

/* Interior hero / breadcrumbs */
.page-hero { padding:74px 0 66px; background:linear-gradient(140deg,#f5faff 0%,#e8f3fb 68%,#f9fcff 100%); border-bottom:1px solid #d9e6ef; }
.breadcrumbs { display:flex; flex-wrap:wrap; align-items:center; gap:8px; margin-bottom:25px; color:#5a6876; font-size:13px; }
.breadcrumbs span { color:#8b98a4; }
.page-hero h1 { margin:0; color:var(--navy-deep); font-size:clamp(35px,4vw,52px); line-height:1.3; font-weight:600; }
.page-hero p { max-width:760px; margin:18px 0 0; color:#334353; font-size:18px; }

/* Generic content */
.content-narrow { width:min(100%,860px); margin-inline:auto; }
.prose h2 { margin:58px 0 20px; padding-bottom:12px; color:var(--navy-deep); font-size:28px; line-height:1.45; font-weight:600; border-bottom:2px solid #dce9f2; }
.prose h2:first-child { margin-top:0; }
.prose h3 { margin:35px 0 12px; color:var(--navy); font-size:21px; font-weight:550; }
.prose p, .prose li { color:var(--text-sub); font-size:17px; }
.prose ul, .prose ol { padding-left:1.35em; }
.prose table { width:100%; border-collapse:collapse; margin:26px 0; }
.prose th, .prose td { padding:15px 17px; border:1px solid var(--line); text-align:left; vertical-align:top; }
.prose th { width:25%; background:#f3f7fa; color:var(--navy-deep); font-weight:550; }

/* About */
.value-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.value-card { padding:30px; border:1px solid var(--line); border-radius:var(--radius); background:#fff; }
.value-card .num { color:var(--jaspa-red); font-size:14px; letter-spacing:.15em; }
.value-card h3 { margin:10px 0 12px; color:var(--navy-deep); font-size:22px; font-weight:550; }
.value-card p { margin:0; color:var(--text-sub); font-size:16px; }
.timeline { position:relative; margin:45px 0 0; padding-left:32px; }
.timeline::before { content:""; position:absolute; left:7px; top:7px; bottom:7px; width:1px; background:#c9d8e4; }
.timeline-item { position:relative; padding:0 0 33px 25px; }
.timeline-item::before { content:""; position:absolute; left:-31px; top:8px; width:13px; height:13px; border-radius:50%; background:var(--jaspa-red); box-shadow:0 0 0 6px #fff,0 0 0 7px #e0b4b8; }
.timeline-year { color:var(--jaspa-red); font-size:18px; font-weight:500; }
.timeline-item p { margin:6px 0 0; color:var(--text-sub); font-size:17px; }

/* Members */
.member-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px; }
.member-card { padding:27px 28px; border:1px solid var(--line); border-radius:15px; background:#fff; }
.member-card h2, .member-card h3 { margin:0; color:var(--navy-deep); font-size:20px; font-weight:550; line-height:1.5; }
.member-card p { margin:10px 0 0; color:#536170; font-size:15px; }
.member-card a { display:inline-block; margin-top:12px; color:var(--blue); font-size:14px; text-decoration:underline; text-underline-offset:3px; }
.observer-table-wrap { overflow-x:auto; border-top:2px solid var(--navy-deep); }
.observer-table { width:100%; table-layout:fixed; border-collapse:collapse; background:#fff; }
.observer-table td { width:33.333%; padding:16px 18px; border-right:1px solid var(--line); border-bottom:1px solid var(--line); color:#354554; font-size:15px; line-height:1.6; vertical-align:middle; }
.observer-table td:last-child { border-right:0; }
.observer-table tbody tr:hover { background:rgba(238,246,252,.55); }
.observer-table td.is-empty { background:#fafcfd; }

/* Activities page */
.report-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:24px; }
.report-card { display:flex; flex-direction:column; min-height:310px; padding:30px; border:1px solid var(--line); border-radius:var(--radius); background:#fff; }
.report-meta { display:flex; align-items:center; gap:10px; color:#5b6976; font-size:13px; }
.report-card h2 { margin:17px 0 12px; color:var(--navy-deep); font-size:23px; font-weight:550; line-height:1.55; }
.report-card p { margin:0; color:var(--text-sub); font-size:16px; }
.report-card .more { margin-top:auto; padding-top:22px; color:var(--jaspa-red); font-size:14px; }

/* Membership */
.plan-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:24px; }
.plan-card { padding:34px; border:1px solid var(--line); border-radius:var(--radius); background:#fff; }
.plan-card h2 { margin:0; color:var(--navy-deep); font-size:24px; font-weight:550; }
.plan-card .plan-sub { margin:9px 0 19px; color:var(--jaspa-red); font-size:14px; }
.plan-card p, .plan-card li { color:var(--text-sub); font-size:16px; }
.plan-card ul { padding-left:1.25em; }
.info-table { width:100%; border-collapse:collapse; }
.info-table th, .info-table td { padding:18px 20px; border-bottom:1px solid var(--line); text-align:left; vertical-align:top; }
.info-table th { width:200px; color:var(--navy-deep); background:#f5f8fb; font-weight:550; }
.bylaws details { border-bottom:1px solid var(--line); }
.bylaws summary { list-style:none; padding:20px 6px; color:var(--navy-deep); font-size:18px; font-weight:500; cursor:pointer; }
.bylaws summary::-webkit-details-marker { display:none; }
.bylaws summary::after { content:"＋"; float:right; color:var(--jaspa-red); }
.bylaws details[open] summary::after { content:"－"; }
.bylaws .detail-body { padding:0 7px 22px; color:var(--text-sub); font-size:16px; }

/* Contact */
.contact-layout { display:grid; grid-template-columns:minmax(0,1.25fr) minmax(280px,.75fr); gap:50px; align-items:start; }
.form-panel { padding:38px; border:1px solid var(--line); border-radius:var(--radius); background:#fff; box-shadow:0 14px 38px rgba(16,48,76,.07); }
.form-row { margin-bottom:23px; }
.form-label { display:block; margin-bottom:8px; color:var(--navy-deep); font-size:15px; font-weight:500; }
.required { margin-left:7px; color:var(--jaspa-red); font-size:12px; }
.form-control { width:100%; border:1px solid #bdcbd6; border-radius:9px; background:#fff; padding:13px 14px; color:var(--text); outline:none; transition:border-color .2s, box-shadow .2s; }
.form-control:focus { border-color:var(--blue); box-shadow:0 0 0 3px rgba(28,90,145,.12); }
textarea.form-control { min-height:190px; resize:vertical; }
.form-note { color:#596775; font-size:14px; }
.form-check { display:flex; gap:9px; align-items:flex-start; color:#465565; font-size:14px; }
.form-check input { margin-top:7px; }
.contact-side { padding:31px; border-radius:var(--radius); background:#f0f6fa; border:1px solid #d7e6f0; }
.contact-side h2 { margin:0 0 14px; color:var(--navy-deep); font-size:22px; font-weight:550; }
.contact-side p { margin:0 0 14px; color:var(--text-sub); font-size:15px; }
.contact-side dl { margin:22px 0 0; }
.contact-side dt { color:#63717e; font-size:13px; }
.contact-side dd { margin:3px 0 16px; color:var(--navy-deep); font-size:16px; }

/* Member login */
.login-wrap { width:min(100%,540px); margin-inline:auto; }
.login-card { padding:43px; border:1px solid var(--line); border-radius:var(--radius); box-shadow:var(--shadow); background:#fff; }
.login-card h2 { margin:0 0 10px; color:var(--navy-deep); font-size:27px; font-weight:550; }
.login-card p { margin:0 0 28px; color:var(--text-sub); }
.prototype-note { margin-top:20px; padding:17px 18px; border-radius:10px; background:#fff7f7; border:1px solid #f0cdcf; color:#77474b; font-size:14px; }

/* Footer */
.site-footer { background:#081f35; color:#fff; }
.footer-main { display:grid; grid-template-columns:1fr auto; gap:60px; padding:62px 0 48px; }
.footer-brand img { width:min(420px,100%); max-height:54px; object-fit:contain; object-position:left center; filter:brightness(0) invert(1); opacity:.95; }
.footer-brand p { max-width:650px; margin:23px 0 0; color:#c8d4de; font-size:15px; }
.footer-nav { display:grid; grid-template-columns:repeat(2,minmax(140px,1fr)); gap:10px 42px; align-content:start; }
.footer-nav a { color:#d7e1e8; font-size:14px; }
.footer-nav a:hover { color:#fff; text-decoration:underline; }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; gap:25px; padding:20px 0; border-top:1px solid rgba(255,255,255,.12); color:#9fb0bf; font-size:12px; }
.footer-bottom-links { display:flex; gap:20px; }


.report-link { display:inline-flex; align-items:center; gap:8px; margin-top:auto; padding-top:22px; color:var(--jaspa-red); font-size:14px; }
.report-link:hover { text-decoration:underline; text-underline-offset:3px; }
.topic-icon { display:inline-flex; align-items:center; justify-content:center; width:52px; height:52px; border-radius:14px; background:linear-gradient(135deg,#eef6fc,#d9eaf8); color:var(--navy-deep); font-size:24px; box-shadow: inset 0 0 0 1px rgba(18,56,93,.08); }
.report-summary { display:grid; grid-template-columns: 1fr 280px; gap:30px; align-items:start; }
.report-box { padding:28px; border-radius:18px; background:#f5f9fc; border:1px solid #dbe6ef; }
.report-box h2, .report-box h3 { color:var(--navy-deep); line-height:1.45; }
.report-box > h2 { margin:48px 0 18px; font-size:26px; }
.report-box > h2:first-child { margin-top:0; }
.report-box h3 { margin:0 0 10px; font-size:20px; }
.report-box p, .report-box li { color:var(--text-sub); font-size:16px; }
.report-box ul { padding-left:1.25em; margin:0; }
.report-facts { padding:26px; border-radius:18px; background:#fff; border:1px solid var(--line); box-shadow: var(--shadow); }
.report-facts dl { margin:0; }
.report-facts dt { color:#61707f; font-size:13px; margin-top:14px; }
.report-facts dt:first-child { margin-top:0; }
.report-facts dd { margin:4px 0 0; color:var(--navy-deep); font-size:16px; line-height:1.7; }
.simple-list { display:grid; gap:18px; }
.simple-item { padding:24px; border-radius:16px; border:1px solid var(--line); background:#fff; }
.simple-item h3 { margin:0 0 10px; color:var(--navy-deep); font-size:21px; line-height:1.5; }
.simple-item p { margin:0; color:var(--text-sub); font-size:16px; }

/* Responsive */
@media (max-width: 1120px) {
  .global-nav ul { gap:18px; }
  .global-nav a { font-size:16px; }
  .site-logo img { width:300px; }
  .header-member-link { display:none; }
}
@media (max-width: 900px) {
  .container { width:min(calc(100% - 36px),var(--max)); }
  .report-summary { grid-template-columns:1fr; }
  .header-inner { min-height:76px; }
  .site-logo img { width:min(310px,67vw); max-height:48px; }
  .nav-toggle { display:block; flex:0 0 auto; }
  .global-nav {
    position:fixed; top:76px; left:0; right:0;
    max-height:0; overflow:hidden;
    background:#fff; border-bottom:1px solid var(--line);
    transition:max-height .3s ease;
  }
  .global-nav.is-open { max-height:520px; box-shadow:0 20px 35px rgba(11,38,65,.13); }
  .global-nav ul { display:block; padding:12px 18px 20px; }
  .global-nav li { border-bottom:1px solid #e6edf2; }
  .global-nav a { display:flex; min-height:53px; font-size:17px; }
  .global-nav a::after { display:none; }
  .hero { min-height:510px; }
  .hero::before { background:linear-gradient(90deg,rgba(255,255,255,.98) 0%,rgba(255,255,255,.94) 55%,rgba(255,255,255,.34) 100%),linear-gradient(0deg,rgba(9,38,65,.20),transparent 48%); }
  .hero-media img { object-position:56% center; }
  .hero-copy { width:80%; }
  .section-head { grid-template-columns:1fr; gap:18px; }
  .intro-grid { grid-template-columns:1fr; gap:40px; }
  .topic-grid { grid-template-columns:repeat(2,1fr); }
  .activity-layout { grid-template-columns:1fr; }
  .cta-inner { flex-direction:column; align-items:flex-start; justify-content:center; padding:55px 0; }
  .value-grid { grid-template-columns:1fr; }
  .member-grid { grid-template-columns:1fr; }
  .report-grid { grid-template-columns:1fr; }
  .contact-layout { grid-template-columns:1fr; }
  .footer-main { grid-template-columns:1fr; }
}
@media (max-width: 640px) {
  .topic-icon { width:46px; height:46px; font-size:21px; }
  body { font-size:15px; }
  .container { width:min(calc(100% - 28px),var(--max)); }
  .site-logo img { width:min(275px,73vw); }
  .hero { min-height:550px; align-items:flex-start; }
  .hero-media img { object-position:62% center; }
  .hero::before { background:linear-gradient(180deg,rgba(255,255,255,.98) 0%,rgba(255,255,255,.94) 49%,rgba(255,255,255,.50) 74%,rgba(9,38,65,.14) 100%); }
  .hero-copy { width:100%; padding:30px 0 26px; }
  .hero h1 { font-size:clamp(30px,8.3vw,41px); line-height:1.48; }
  .hero h1 span, .hero-lead span { white-space:normal; }
  .sp-break { display:inline !important; }
  .hero-lead { font-size:15px; line-height:1.9; }
  .hero-lead span { display:inline; }
  .hero-lead span:first-child::after { content:"\A"; white-space:pre; }
  .hero-actions { align-items:stretch; }
  .button { min-height:50px; padding:0 18px; font-size:15px; }
  .hero-stats { grid-template-columns:1fr; gap:7px; margin-top:18px; padding:12px 16px; }
  .hero-stat { padding:0 0 7px; border-left:0; border-bottom:1px solid rgba(18,56,93,.16); }
  .hero-stat:last-child { border-bottom:0; }
  .hero-stat-value { font-size:25px; }
  .section { padding:68px 0; }
  .section-title { font-size:31px; }
  .section-intro { font-size:17px; }
  .intro-panel { padding:29px 25px; }
  .intro-panel p { font-size:20px; }
  .topic-grid { grid-template-columns:1fr; }
  .topic-card { min-height:auto; }
  .activity-item { grid-template-columns:1fr auto; gap:8px 18px; }
  .activity-date { grid-column:1 / 2; }
  .activity-title { grid-column:1 / -1; grid-row:2; }
  .activity-tag { grid-column:2; grid-row:1; }
  .page-hero { padding:55px 0 48px; }
  .page-hero p { font-size:16px; }
  .plan-grid { grid-template-columns:1fr; }
  .info-table, .info-table tbody, .info-table tr, .info-table th, .info-table td { display:block; width:100%; }
  .info-table th { border-bottom:0; padding-bottom:7px; }
  .info-table td { padding-top:10px; }
  .form-panel, .login-card { padding:27px 21px; }
  .footer-nav { grid-template-columns:1fr 1fr; gap:9px 22px; }
  .footer-bottom { flex-direction:column; align-items:flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior:auto !important; animation-duration:.01ms !important; transition-duration:.01ms !important; }
}


/* v4: meeting reports, member logos and downloads */
.activity-item-preview, .report-card-preview { background:#fff8f8; }
.activity-item-preview { padding-left:16px; padding-right:16px; border-left:3px solid var(--jaspa-red); }
.report-card-preview { border-color:#efc5c9; }
.report-box a:not(.button), .simple-item a { color:var(--blue); text-decoration:underline; text-underline-offset:3px; }
.report-box > p { margin:0 0 16px; }
.report-box > ul { margin:0; padding-left:1.35em; }
.report-gallery { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; margin-top:42px; }
.report-gallery figure { margin:0; border:1px solid var(--line); border-radius:16px; overflow:hidden; background:#fff; }
.report-gallery img { display:block; width:100%; aspect-ratio:4/3; object-fit:cover; background:#eef3f6; }
.report-gallery figcaption { padding:10px 13px; color:var(--text-sub); font-size:13px; }
.member-card { display:grid; grid-template-columns:112px minmax(0,1fr); align-items:center; gap:22px; }
.member-logo { display:flex; align-items:center; justify-content:center; width:112px; min-height:82px; padding:8px; border-radius:12px; background:#fff; border:1px solid #e3eaf0; overflow:hidden; }
.member-logo img { display:block; width:100%; height:auto; max-width:104px; max-height:72px; object-fit:contain; }
.member-card-body { min-width:0; }
.bylaws-download { display:flex; align-items:center; justify-content:space-between; gap:30px; margin-top:34px; padding:25px 28px; border-radius:16px; background:#f3f8fc; border:1px solid #d4e3ee; }
.bylaws-download strong { display:block; color:var(--navy-deep); font-size:20px; }
.bylaws-download p { margin:5px 0 0; color:var(--text-sub); }
@media (max-width: 900px) {
  .cta-copy h2 { white-space:normal; }
  .member-card { grid-template-columns:92px minmax(0,1fr); }
  .member-logo { width:92px; }
  .bylaws-download { align-items:flex-start; flex-direction:column; }
}
@media (max-width: 640px) {
  .report-gallery { grid-template-columns:1fr; }
  .member-card { grid-template-columns:1fr; }
  .member-logo { width:100%; min-height:72px; }
}


/* v6: polished meeting list and report layouts */
.meeting-feature {
  display:grid; grid-template-columns:230px minmax(0,1fr); overflow:hidden;
  border-radius:24px; background:linear-gradient(125deg,#0b2945 0%,#123f68 100%);
  color:#fff; box-shadow:0 24px 60px rgba(9,38,65,.18);
}
.meeting-feature-date { display:flex; flex-direction:column; align-items:center; justify-content:center; min-height:390px; padding:34px 24px; background:linear-gradient(160deg,#d90b18,#a6000a); text-align:center; }
.meeting-feature-date span { font-size:17px; letter-spacing:.16em; }
.meeting-feature-date strong { font-size:48px; line-height:1.1; font-weight:500; letter-spacing:.02em; }
.meeting-feature-date small { margin-top:3px; font-size:12px; letter-spacing:.2em; }
.meeting-feature-date em { margin:12px 0 8px; font-size:18px; font-style:normal; opacity:.75; }
.meeting-feature-content { padding:48px 54px; }
.meeting-feature-badge { display:inline-flex; align-items:center; min-height:30px; padding:0 13px; border:1px solid rgba(255,255,255,.35); border-radius:999px; font-size:13px; letter-spacing:.08em; }
.meeting-feature-content h2 { margin:20px 0 16px; font-size:clamp(30px,3.2vw,45px); line-height:1.35; font-weight:550; }
.meeting-feature-content > p { margin:0; max-width:760px; color:#dce8f1; font-size:17px; line-height:1.95; }
.meeting-feature-facts { display:flex; flex-wrap:wrap; gap:12px 30px; margin:25px 0 30px; color:#fff; }
.meeting-feature-facts span { display:flex; gap:10px; align-items:baseline; }
.meeting-feature-facts b { color:#9bc8e8; font-size:13px; font-weight:500; letter-spacing:.08em; }
.meeting-report-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:24px; }
.meeting-card { position:relative; display:flex; flex-direction:column; min-height:330px; padding:32px; border:1px solid #d9e4ec; border-radius:20px; background:#fff; box-shadow:0 10px 30px rgba(17,50,80,.05); transition:.22s ease; }
.meeting-card:hover { transform:translateY(-4px); box-shadow:0 20px 46px rgba(17,50,80,.12); }
.meeting-card-top { display:flex; align-items:center; justify-content:space-between; gap:20px; }
.meeting-card-top time { color:var(--jaspa-red); font-size:14px; letter-spacing:.08em; }
.meeting-card-top span { padding:4px 11px; border-radius:999px; background:#f4f7fa; color:#536170; font-size:12px; }
.meeting-card h3 { margin:18px 0 7px; color:var(--navy-deep); font-size:24px; line-height:1.45; font-weight:550; }
.meeting-card-place { margin:0 0 15px!important; color:#5b6d7e!important; font-size:14px!important; }
.meeting-card p { margin:0; color:var(--text-sub); font-size:16px; line-height:1.85; }
.meeting-card > a { display:inline-flex; align-items:center; justify-content:space-between; margin-top:auto; padding-top:24px; color:var(--jaspa-red); font-size:14px; border-top:1px solid #e5ebf0; }
.meeting-text-notes { margin-top:34px; padding-top:24px; border-top:1px solid #d7e1e9; }
.meeting-text-notes p { margin:0 0 14px; color:#435260; font-size:14px; line-height:1.85; }
.meeting-text-notes p:last-child { margin-bottom:0; }
.meeting-text-notes strong { color:var(--navy-deep); font-weight:550; }

.report-page-hero { padding:58px 0 64px; background:linear-gradient(135deg,#f5faff 0%,#e4f0f8 65%,#f8fbfd 100%); border-bottom:1px solid #d8e5ee; }
.report-page-hero .breadcrumbs { margin-bottom:22px; }
.report-type-badge { display:inline-flex; align-items:center; min-height:30px; padding:0 13px; border-radius:999px; background:#fff; border:1px solid #d4e0e9; color:var(--jaspa-red); font-size:13px; letter-spacing:.08em; }
.report-page-hero h1 { margin:16px 0 0; color:var(--navy-deep); font-size:clamp(35px,4.3vw,55px); line-height:1.3; font-weight:600; }
.report-page-hero > .container > p { max-width:900px; margin:19px 0 0; color:#354759; font-size:18px; line-height:1.9; }
.report-body-section { background:#f7f9fb; }
.report-shell { display:grid; grid-template-columns:minmax(0,1fr) 310px; gap:38px; align-items:start; }
.report-article { padding:48px 52px 56px; border:1px solid #dde6ed; border-radius:22px; background:#fff; box-shadow:0 14px 38px rgba(16,48,76,.055); }
.report-overview { padding:0 0 42px; border-bottom:1px solid #dfe7ed; }
.report-overview-label { margin:0 0 8px; color:var(--jaspa-red); font-size:13px; letter-spacing:.18em; }
.report-overview h2 { margin:0 0 21px; color:var(--navy-deep); font-size:30px; line-height:1.45; font-weight:600; }
.report-overview p { margin:0 0 16px; color:var(--text-sub); font-size:17px; line-height:1.95; }
.report-overview p:last-child { margin-bottom:0; }
.report-section { margin-top:58px; }
.report-section-heading { display:flex; align-items:flex-start; gap:17px; margin-bottom:24px; }
.report-section-heading > span { display:flex; align-items:center; justify-content:center; width:46px; height:46px; flex:0 0 46px; border-radius:13px; background:var(--navy-deep); color:#fff; font-size:13px; letter-spacing:.08em; }
.report-section-heading p { margin:0 0 3px; color:var(--jaspa-red); font-size:12px; letter-spacing:.16em; }
.report-section-heading h2 { margin:0; color:var(--navy-deep); font-size:27px; line-height:1.45; font-weight:600; }
.program-grid { display:grid; gap:15px; }
.program-card { display:grid; grid-template-columns:42px minmax(0,1fr); gap:17px; padding:23px 24px; border:1px solid #dde6ed; border-radius:16px; background:#f9fbfc; }
.program-card-mark { display:flex; align-items:center; justify-content:center; width:42px; height:42px; border-radius:50%; background:#fff; border:1px solid #d8e2ea; color:var(--jaspa-red); font-size:12px; }
.program-card h3 { margin:0 0 8px; color:var(--navy-deep); font-size:19px; line-height:1.55; font-weight:550; }
.program-card h3 a, .visit-card h3 a { color:var(--blue); text-decoration:underline; text-underline-offset:3px; }
.program-card p { margin:0; color:var(--text-sub); font-size:16px; line-height:1.85; }
.keypoint-list { display:grid; gap:12px; margin:0; padding:0; list-style:none; counter-reset:points; }
.keypoint-list li { position:relative; padding:18px 20px 18px 54px; border-radius:14px; background:#f3f7fa; color:#354759; font-size:16px; line-height:1.8; counter-increment:points; }
.keypoint-list li::before { content:counter(points); position:absolute; left:18px; top:18px; display:flex; align-items:center; justify-content:center; width:24px; height:24px; border-radius:50%; background:var(--jaspa-red); color:#fff; font-size:12px; }
.visit-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px; }
.visit-card { padding:23px; border:1px solid #dbe5ed; border-radius:16px; background:#fff; box-shadow:0 8px 22px rgba(16,48,76,.045); }
.visit-no { color:var(--jaspa-red); font-size:12px; letter-spacing:.14em; }
.visit-card h3 { margin:8px 0 10px; color:var(--navy-deep); font-size:19px; line-height:1.55; font-weight:550; }
.visit-card p { margin:0; color:var(--text-sub); font-size:15px; line-height:1.8; }
.schedule-list { overflow:hidden; border:1px solid #dae4ec; border-radius:16px; background:#fff; }
.schedule-row { display:grid; grid-template-columns:82px minmax(0,1fr); gap:20px; padding:18px 21px; border-bottom:1px solid #e3eaf0; }
.schedule-row:last-child { border-bottom:0; }
.schedule-row time { color:var(--jaspa-red); font-size:15px; font-weight:500; }
.schedule-row strong { display:block; color:var(--navy-deep); font-size:17px; font-weight:550; }
.schedule-row p { margin:4px 0 0; color:var(--text-sub); font-size:15px; line-height:1.7; }
.report-sidebar { position:sticky; top:112px; }
.report-sidebar-inner { padding:28px; border-radius:20px; background:var(--navy-deep); color:#fff; box-shadow:0 18px 40px rgba(9,38,65,.18); }
.sidebar-label { display:block; color:#88b4d4; font-size:11px; letter-spacing:.13em; }
.report-sidebar h2 { margin:7px 0 22px; font-size:25px; font-weight:550; }
.report-sidebar dl { margin:0; }
.fact-row { padding:14px 0; border-top:1px solid rgba(255,255,255,.14); }
.fact-row dt { color:#9fc2da; font-size:12px; }
.fact-row dd { margin:4px 0 0; color:#fff; font-size:15px; line-height:1.65; }
.report-back-link { display:flex; align-items:center; justify-content:space-between; margin-top:22px; padding-top:18px; border-top:1px solid rgba(255,255,255,.18); color:#fff; font-size:14px; }



@media (max-width: 960px) {
  .meeting-feature { grid-template-columns:180px minmax(0,1fr); }
  .meeting-feature-content { padding:40px; }
  .report-shell { grid-template-columns:1fr; }
  .report-sidebar { position:static; }
  .report-sidebar-inner { display:grid; grid-template-columns:1fr; }
}
@media (max-width: 760px) {
  .meeting-feature { grid-template-columns:1fr; }
  .meeting-feature-date { min-height:auto; display:grid; grid-template-columns:auto auto auto auto auto; gap:10px; padding:24px; }
  .meeting-feature-date span { grid-column:1/-1; }
  .meeting-feature-date strong { font-size:38px; }
  .meeting-feature-date em { margin:0; }
  .meeting-feature-content { padding:32px 26px 36px; }
  .meeting-report-grid { grid-template-columns:1fr; }
  .report-page-hero { padding:46px 0 50px; }
  .report-article { padding:32px 24px 38px; }
  .visit-grid { grid-template-columns:1fr; }
  .schedule-row { grid-template-columns:70px minmax(0,1fr); gap:12px; }
}

.form-control.is-error { border-color:#c21b2b; background:#fffafa; }
.field-error { margin:7px 0 0; color:#b51220; font-size:14px; line-height:1.6; }
.form-error-summary { margin:0 0 24px; padding:15px 17px; border:1px solid #edb8bd; border-radius:10px; background:#fff5f6; color:#8b1720; font-size:15px; }
.contact-storage-note { margin-top:22px !important; padding-top:18px; border-top:1px solid #d1e0ea; color:#4b5b69 !important; font-size:13px !important; line-height:1.75; }
.confirm-panel { padding:38px; border:1px solid var(--line); border-radius:var(--radius); background:#fff; box-shadow:0 14px 38px rgba(16,48,76,.07); }
.confirm-list { margin:0; }
.confirm-list > div { display:grid; grid-template-columns:200px 1fr; gap:24px; padding:21px 0; border-bottom:1px solid var(--line); }
.confirm-list > div:first-child { padding-top:0; }
.confirm-list dt { color:var(--navy-deep); font-weight:550; }
.confirm-list dd { margin:0; color:var(--text-sub); overflow-wrap:anywhere; }
.confirm-message { white-space:normal; line-height:1.9; }
.confirm-actions { display:flex; justify-content:flex-end; align-items:center; gap:14px; flex-wrap:wrap; margin-top:32px; }
.confirm-actions form { margin:0; }
.complete-panel { padding:52px 40px; text-align:center; border:1px solid var(--line); border-radius:var(--radius); background:#fff; box-shadow:0 14px 38px rgba(16,48,76,.07); }
.complete-icon { display:inline-flex; align-items:center; justify-content:center; width:72px; height:72px; border-radius:50%; background:#edf7f2; color:#14734b; font-size:36px; font-weight:500; }
.complete-panel h2 { margin:22px 0 12px; color:var(--navy-deep); font-size:29px; }
.complete-panel p { max-width:650px; margin:0 auto 26px; color:var(--text-sub); }
.complete-panel .receipt-number { display:inline-block; margin:0 auto 28px; padding:9px 15px; border-radius:999px; background:#f3f7fa; color:#41515f; font-size:14px; }
@media (max-width:640px) {
  .form-panel, .confirm-panel { padding:25px 20px; }
  .confirm-list > div { grid-template-columns:1fr; gap:7px; padding:18px 0; }
  .confirm-actions { align-items:stretch; }
  .confirm-actions .button, .confirm-actions form, .confirm-actions form .button { width:100%; }
  .complete-panel { padding:38px 22px; }
}


/* v13: local member logos and compact observer table */
@media (max-width: 760px) {
  .observer-table, .observer-table tbody, .observer-table tr, .observer-table td { display:block; width:100%; }
  .observer-table tr { border-bottom:0; }
  .observer-table td { border-right:0; padding:13px 14px; }
  .observer-table td.is-empty { display:none; }
}
