/* ═══════════════════════════════════════════════
   main.css — Shared styles for all pages
   2027 Symposium · THU × Aichi Prefectural Univ.
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;1,9..144,300;1,9..144,400&family=Crimson+Pro:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap');

/* ── TOKENS ── */
:root {
  --burgundy:      #800020;
  --burgundy-deep: #5a0016;
  --burgundy-mid:  #a03048;
  --cream:         #dcd2c6;
  --cream-light:   #ede7df;
  --cream-dark:    #c8b8ac;
  --text-dark:     #2a1018;
  --text-mid:      #7a4050;
  --text-light:    #a08078;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream-light);
  color: var(--text-dark);
  font-family: 'Crimson Pro', Georgia, serif;
  overflow-x: hidden;
  cursor: none;
}
::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--burgundy); }

/* ── CUSTOM CURSOR ── */
#cursor-dot {
  position: fixed; pointer-events: none; z-index: 9999;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--burgundy); opacity: .85;
  transform: translate(-50%,-50%);
  transition: width .22s, height .22s, opacity .22s;
  mix-blend-mode: multiply;
}
#cursor-ring {
  position: fixed; pointer-events: none; z-index: 9998;
  width: 32px; height: 32px; border-radius: 50%;
  border: .8px solid var(--burgundy); opacity: .4;
  transform: translate(-50%,-50%);
  transition: width .4s, height .4s, opacity .3s;
}
body.cursor-hover #cursor-dot { width: 22px; height: 22px; opacity: .55; }
body.cursor-hover #cursor-ring { width: 46px; height: 46px; opacity: .22; }

/* ── NEEDLE (top-left fixed) ── */
#needle-wrap {
  position: fixed; left: 24px; top: 22px; z-index: 300;
  width: 58px; height: 58px; pointer-events: none;
}
#needle-wrap svg { width: 100%; height: 100%; overflow: visible; }
.mag-needle { transform-origin: 29px 29px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 56px 16px 100px;
  background: rgba(237,231,223,.96);
  backdrop-filter: blur(12px);
  border-bottom: .5px solid var(--cream-dark);
}
.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 12px; letter-spacing: .22em;
  color: var(--burgundy); font-weight: 400;
}
.nav-links { display: flex; gap: 28px; }
.nav-link {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 15px; letter-spacing: .12em;
  color: var(--text-mid); text-decoration: none; transition: color .3s;
}
.nav-link:hover { color: var(--burgundy); }
/* Active page link */
.nav-link.active { color: var(--burgundy); border-bottom: .5px solid var(--burgundy); padding-bottom: 1px; }
.nav-lang { display: flex; gap: 14px; }
.nl {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 13px; letter-spacing: .1em;
  color: var(--text-light); cursor: pointer; transition: color .3s;
}
.nl.on { color: var(--burgundy); border-bottom: .5px solid var(--burgundy); padding-bottom: 1px; }

/* ── PAGE WRAPPER ── */
.page-content { padding-top: 56px; }  /* offset for fixed nav */

/* ── PAGE HEADER (for inner pages) ── */
.page-header {
  background: var(--cream-light);
  padding: 90px 60px 64px 100px;
  border-bottom: .5px solid var(--cream-dark);
}
.page-header-inner { max-width: 1160px; margin: 0 auto; }
.page-eyebrow {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 11px; letter-spacing: .28em; color: var(--text-mid);
  text-transform: uppercase; margin-bottom: 18px;
}
.page-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 58px; font-weight: 300; color: var(--burgundy);
  line-height: 1.1; letter-spacing: .01em;
}
.page-subtitle {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 17px; color: var(--text-mid); letter-spacing: .08em; margin-top: 14px;
}

/* ── SECTION SHARED ── */
section { position: relative; }
.section-inner { max-width: 1160px; margin: 0 auto; }

/* ── DIVIDER LINE ── */
.rule { display: flex; align-items: center; gap: 10px; }
.rule-line { flex: 1; height: .5px; background: var(--burgundy); }
.rule-diamond { width: 7px; height: 7px; border: .5px solid var(--burgundy); transform: rotate(45deg); flex-shrink: 0; }

/* ── BLUR + FADE REVEAL ── */
@keyframes blurFadeIn {
  from { opacity: 0; filter: blur(10px); transform: translateY(6px); }
  to   { opacity: 1; filter: blur(0);    transform: translateY(0);   }
}
.reveal {
  opacity: 0; filter: blur(8px); transform: translateY(18px);
  transition: opacity 1s ease, filter 1.1s ease, transform 1s ease;
}
.reveal.visible { opacity: 1; filter: blur(0); transform: translateY(0); }

/* ── HEADING BREATHE ── */
@keyframes breatheHeading {
  0%,100% { opacity: .55; }
  50%      { opacity: 1;   }
}
h2.breathing { animation: breatheHeading 6s ease-in-out infinite; }

/* ── CHARACTER WAVE (hero title) ── */
@keyframes charWave {
  0%,100% { color: var(--burgundy); }
  50%      { color: #f0e4df;        }
}
.cw {
  display: inline-block;
  opacity: 0; animation: blurFadeIn 1.4s ease 0.6s both;
}
.cw.entered {
  animation:
    blurFadeIn 1.4s ease calc(0.6s + var(--i,0) * 0.38s) both,
    charWave   3.8s ease-in-out calc(2.4s + var(--i,0) * 0.38s) infinite;
}

/* ── FOOTER ── */
footer {
  background: var(--burgundy-deep);
  padding: 64px 56px 64px 100px;
  border-top: .5px solid rgba(220,210,198,.1);
}
.footer-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 32px;
}
.footer-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px; font-weight: 300; color: var(--cream-light); margin-bottom: 10px;
}
.footer-org {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 24px; letter-spacing: .14em; color: rgba(220,210,198,.75);
}
.footer-copy {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 11px; letter-spacing: .1em; color: rgba(220,210,198,.2); margin-top: 8px;
}
.footer-right {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 14px; letter-spacing: .12em; color: rgba(220,210,198,.45); text-align: right; line-height: 2.3;
}
.footer-right a { color: rgba(220,210,198,.62); text-decoration: none; }

/* ── STAT BOXES ── */
.stat-boxes { display: flex; gap: 2px; margin-top: 40px; }
.stat-box { background: var(--cream); padding: 22px 26px; flex: 1; }
.stat-label {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 13px; letter-spacing: .18em; color: var(--text-mid);
  margin-bottom: 8px; text-transform: uppercase;
}
.stat-value { font-family: 'Crimson Pro', Georgia, serif; font-size: 17px; color: var(--text-dark); }

/* ── DATES LIST ── */
.dates-list { display: flex; flex-direction: column; gap: 2px; }
.date-row {
  display: flex; align-items: center; padding: 26px 30px;
  background: var(--cream); border-left: 2px solid transparent;
  transition: border-color .3s, background .3s;
}
.date-row:hover { border-left-color: var(--burgundy); background: var(--cream-light); }
.date-row.highlight { border-left-color: var(--burgundy); background: var(--cream-light); }
.date-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 44px; font-weight: 300; color: var(--cream-dark);
  width: 145px; flex-shrink: 0; line-height: 1; transition: color .3s;
}
.date-row:hover .date-num,
.date-row.highlight .date-num { color: var(--burgundy); }
.date-vline { width: .5px; height: 40px; background: var(--cream-dark); margin-right: 36px; flex-shrink: 0; }
.date-label {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 13px; letter-spacing: .18em; color: var(--text-mid); text-transform: uppercase; margin-bottom: 5px;
}
.date-desc {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 17px; color: var(--text-dark); letter-spacing: .04em;
}
.date-tbd {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 13px; color: var(--text-mid); margin-left: auto; letter-spacing: .12em; opacity: .7;
}
.date-row.highlight .date-label { color: var(--burgundy); }
.date-row.highlight .date-tbd   { opacity: 1; color: var(--burgundy); }
.date-row.highlight .date-desc  { color: var(--text-mid); }

/* ── SPEAKER CARDS ── */
.speakers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.speaker-card {
  background: rgba(220,210,198,.05); border: .5px solid rgba(220,210,198,.1);
  padding: 44px 38px; position: relative; transition: background .4s;
}
.speaker-card:hover { background: rgba(220,210,198,.09); }
.sp-corner {
  position: absolute; top: 24px; right: 24px;
  width: 28px; height: 28px;
  border-top: .5px solid rgba(220,210,198,.18);
  border-right: .5px solid rgba(220,210,198,.18);
}
.sp-avatar {
  width: 76px; height: 76px; border-radius: 50%;
  background: rgba(220,210,198,.1); border: .5px solid rgba(220,210,198,.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; font-size: 26px; color: rgba(220,210,198,.5);
  font-family: 'Fraunces', Georgia, serif; font-weight: 400;
}
.sp-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 30px; font-weight: 300; color: var(--cream-light); margin-bottom: 9px;
}
.sp-affil {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 15px; letter-spacing: .1em; color: rgba(220,210,198,.65); margin-bottom: 18px; line-height: 1.8;
}
.sp-field-label {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 12px; letter-spacing: .18em; color: rgba(220,210,198,.45); text-transform: uppercase; margin-bottom: 7px;
}
.sp-field {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 17px; color: rgba(220,210,198,.8); line-height: 1.85;
}

/* ── CFP CARDS ── */
.cfp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.cfp-card { background: var(--cream-light); padding: 36px 30px; transition: background .3s; }
.cfp-card:hover { background: var(--burgundy); }
.cfp-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 64px; font-weight: 300; color: var(--cream-dark); line-height: 1; margin-bottom: 18px; transition: color .3s;
}
.cfp-card:hover .cfp-num { color: rgba(220,210,198,.14); }
.cfp-title {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 14px; letter-spacing: .18em; color: var(--burgundy); text-transform: uppercase; margin-bottom: 13px; transition: color .3s;
}
.cfp-card:hover .cfp-title { color: var(--cream-light); }
.cfp-text {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 17px; color: var(--text-dark); line-height: 2; transition: color .3s;
}
.cfp-card:hover .cfp-text { color: rgba(220,210,198,.82); }
.cfp-date {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 14px; color: var(--text-mid); margin-top: 18px; letter-spacing: .08em; transition: color .3s;
}
.cfp-card:hover .cfp-date { color: var(--cream-dark); }

/* ── DETAIL BOX ── */
.detail-box { background: var(--cream-light); padding: 32px 30px; }
.detail-label {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 13px; letter-spacing: .18em; color: var(--text-mid);
  text-transform: uppercase; margin-bottom: 14px;
}
.detail-body {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 18px; color: var(--text-dark); line-height: 2.1;
}
.detail-body a { color: var(--burgundy); text-underline-offset: 3px; }

/* ── ORG CARDS ── */
.org-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 48px; }
.org-card { background: var(--cream); padding: 36px 32px; }
.org-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px; font-weight: 300; color: var(--burgundy); margin-bottom: 14px;
}
.org-desc {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 18px; color: var(--text-dark); line-height: 2.05;
}

/* ── CONTACT TABLE ── */
.contact-table { display: flex; flex-direction: column; gap: 2px; margin-top: 8px; }
.contact-row { display: flex; align-items: baseline; padding: 18px 24px; background: var(--cream); gap: 24px; }
.contact-key {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 13px; letter-spacing: .18em; color: var(--text-mid);
  text-transform: uppercase; width: 90px; flex-shrink: 0;
}
.contact-val {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 18px; color: var(--text-dark); line-height: 1.85;
}
.contact-val a { color: var(--burgundy); text-decoration: none; }
.contact-val a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ── PROGRAM PLACEHOLDER ── */
.program-placeholder {
  text-align: center; padding: 80px 40px;
  background: var(--cream); margin-top: 2px;
}
.program-placeholder p {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 20px; color: var(--text-mid); line-height: 2;
}

/* ── SPOTLIGHT (dark section) ── */
.spotlight {
  min-height: 100vh; position: relative;
  background: var(--burgundy);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.spotlight-bg { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.spotlight-inner { position: relative; z-index: 5; text-align: center; padding: 90px 60px; max-width: 760px; }
.sp-pre {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 12px; letter-spacing: .32em; color: var(--cream-dark); text-transform: uppercase; margin-bottom: 22px;
}
.sp-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 54px; font-weight: 300; color: var(--cream-light); letter-spacing: .03em; line-height: 1.18; margin-bottom: 18px;
}
.sp-rule { display: flex; align-items: center; gap: 12px; margin: 22px auto; width: 300px; }
.sp-rl { flex: 1; height: .5px; background: rgba(220,210,198,.28); }
.sp-rd { width: 6px; height: 6px; border: .5px solid rgba(220,210,198,.5); transform: rotate(45deg); flex-shrink: 0; }
.sp-desc {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 19px; color: rgba(220,210,198,.88); line-height: 2.05; letter-spacing: .04em;
}
.sp-cta {
  display: inline-block; margin-top: 34px;
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 13px; letter-spacing: .2em; color: var(--cream-dark);
  border: .5px solid rgba(220,210,198,.32); padding: 10px 28px;
  text-decoration: none; transition: background .3s;
}
.sp-cta:hover { background: rgba(220,210,198,.1); }

/* ── KEYFRAMES (draw for compass) ── */
@keyframes draw    { to { stroke-dashoffset: 0; } }
@keyframes appear  { from { opacity:0; } to { opacity:1; } }
@keyframes cSpin   { from{transform:rotate(0deg)}   to{transform:rotate(360deg)}  }
@keyframes cSpinRev{ from{transform:rotate(0deg)}   to{transform:rotate(-360deg)} }

/* ── HAMBURGER TOGGLE (mobile only) ── */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 4px; flex-direction: column; gap: 5px;
  z-index: 200;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--burgundy); transition: transform .3s, opacity .3s;
  border-radius: 1px;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 14px 20px 14px 72px; }
  .nav-links {
    display: none; position: fixed;
    top: 52px; left: 0; right: 0;
    background: rgba(237,231,223,.98);
    backdrop-filter: blur(14px);
    flex-direction: column; padding: 24px 28px 32px;
    gap: 22px; border-bottom: .5px solid var(--cream-dark);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 18px; }
  .nav-toggle { display: flex; }
  .page-header { padding: 80px 24px 48px 24px; }
  .page-title { font-size: 40px; }
  .cfp-grid { grid-template-columns: 1fr; }
  .speakers-grid { grid-template-columns: 1fr; }
  .org-grid { grid-template-columns: 1fr; }
  .stat-boxes { flex-direction: column; }
  section { padding-left: 24px !important; padding-right: 24px !important; }
  footer { padding: 48px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-right { text-align: left; }
  #needle-wrap { width: 38px; height: 38px; left: 14px; top: 13px; }
}

/* ── SPONSOR SECTION ── */
.sponsor-section {
  background: var(--cream);
  padding: 48px 60px 48px 100px;
  border-top: .5px solid var(--cream-dark);
}
.sponsor-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 24px;
}
.sponsor-header {
  display: flex; align-items: center; gap: 16px;
}
.sponsor-label {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 11px; letter-spacing: .26em;
  color: var(--text-light); text-transform: uppercase;
}
.sponsor-rule {
  flex: 1; height: .5px;
  background: var(--cream-dark); opacity: .6;
}
.sponsor-desc {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 15px; color: var(--text-light);
  letter-spacing: .06em;
}
.sponsor-logos {
  display: flex; flex-wrap: wrap;
  gap: 16px; align-items: center;
  min-height: 64px;
}
.sponsor-placeholder {
  width: 140px; height: 56px;
  border: .8px dashed var(--cream-dark);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  opacity: .45;
}
.sponsor-placeholder span {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 10px; letter-spacing: .16em;
  color: var(--text-light);
}
@media (max-width: 900px) {
  .sponsor-section { padding: 40px 24px; }
}

/* ── SPEAKER PHOTO ── */
.sp-photo {
  width: 110px; height: 110px; border-radius: 50%;
  object-fit: cover; object-position: center 15%;
  border: 1.5px solid rgba(220,210,198,.35);
  margin-bottom: 24px; display: block;
}

/* ── SPECIAL PANEL SECTION ── */
.panel-section {
  background: var(--cream);
  padding: 80px 60px 80px 100px;
}
.panel-inner { max-width: 1160px; margin: 0 auto; }
.panel-eyebrow {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 48px; font-weight: 300;
  color: var(--cream-light); letter-spacing: normal;
  text-transform: none; margin-bottom: 24px;
}
.panel-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px; font-weight: 300; color: var(--burgundy);
  line-height: 1.35; margin-bottom: 40px;
}
.panel-speakers {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
}
.panel-sp-card {
  background: rgba(220,210,198,.05);
  border: .5px solid rgba(220,210,198,.1);
  padding: 32px 30px;
}
.panel-sp-num {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 11px; letter-spacing: .2em;
  color: var(--text-light); margin-bottom: 10px;
}
.panel-sp-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px; font-weight: 300;
  color: var(--cream-light); margin-bottom: 8px;
}
.panel-sp-affil {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 13px; letter-spacing: .1em;
  color: rgba(220,210,198,.5); line-height: 1.7;
}
.panel-sp-role {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 13px; color: rgba(220,210,198,.35);
  margin-top: 4px;
}
@media (max-width: 900px) {
  .panel-section { padding: 60px 24px; }
  .panel-speakers { grid-template-columns: 1fr; }
}

/* ── PANEL SECTION ── */
.panel-section {
  background: #5a0016;
  padding: 80px 60px 80px 100px;
}
.panel-inner { max-width: 1160px; margin: 0 auto; }
.panel-eyebrow {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 50px; font-weight: 300;
  color: rgba(220,210,198,.95); letter-spacing: normal;
  text-transform: none; margin-bottom: 24px;
}
.panel-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px; font-weight: 300;
  color: rgba(220,210,198,.92); line-height: 1.45; margin-bottom: 40px;
}
.panel-speakers {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
}
.panel-sp-card {
  background: rgba(220,210,198,.05);
  border: .5px solid rgba(220,210,198,.1);
  padding: 28px 28px;
}
.panel-sp-num {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 13px; letter-spacing: .2em;
  color: rgba(220,210,198,.5); margin-bottom: 10px;
}
.panel-sp-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px; font-weight: 300;
  color: rgba(220,210,198,.95); margin-bottom: 10px;
}
.panel-sp-affil {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 15px; letter-spacing: .06em;
  color: rgba(220,210,198,.72); line-height: 1.75;
}
.panel-sp-role {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 14px; color: rgba(220,210,198,.58);
  margin-top: 8px;
}
@media (max-width: 900px) {
  .panel-section { padding: 56px 24px; }
  .panel-speakers { grid-template-columns: 1fr; }
}
.panel-note {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 15px; letter-spacing: .08em;
  color: rgba(220,210,198,.65);
  margin-top: 28px; padding-top: 20px;
  border-top: .5px solid rgba(220,210,198,.2);
}


/* ⑯ Footer org name: ja 版避免「コース」換行 */
[lang="ja"] .footer-org {
  letter-spacing: .08em;
  font-size: 22px;
}

/* ③⑰ 長文左對齊 */
.sp-desc, .about-body, .panel-title {
  text-align: left;
}

/* ⑨ ja 版隱藏 scroll-hint */
[lang="ja"] .scroll-hint { display: none; }

/* ④ CFP text wrapping */
.detail-body {
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.detail-body a {
  font-size: inherit;
}

/* Format list items */
.fmt-item {
  padding: 6px 0;
  border-bottom: .5px solid rgba(0,0,0,.06);
  font-size: 15px; line-height: 1.8;
}
.fmt-item:last-child { border-bottom: none; }
.fmt-lbl {
  display: block;
  font-size: 12px; letter-spacing: .12em;
  color: var(--text-light);
  margin-bottom: 2px;
}
.fmt-sub {
  padding-left: 16px;
  font-size: 14px; color: var(--text-mid);
  line-height: 1.75; margin-top: 2px;
}
