@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Noto+Sans+JP:wght@400;500;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600;700&family=Noto+Serif+JP:wght@500;700&display=swap');

:root{
  /* Strong POP yellow palette */
  --bg:#FFFFFF;
  --paper:#FFFFFF;
  --ink:#0A1A22;          /* darker text */
  --muted:#2F3E46;        /* darker secondary text */

  --navy:#0B1E27;
  --yellow:#FFB800;       /* stronger primary yellow */
  --yellow2:#FFD84D;      /* brighter highlight */
  --lemon:#FFF0A6;        /* vivid background tint */
  --orange:#FF8A00;       /* accent pop */
  --line:#E3EAF0;

  --radius:28px;
  --shadow: 0 26px 70px rgba(10, 26, 34, .16);
  --shadow-soft: 0 18px 48px rgba(10, 26, 34, .12);
}

*{ box-sizing:border-box; }
html,body{
  margin:0;
  color:var(--ink);
  font-family: "Inter","Noto Sans JP", system-ui,-apple-system,Segoe UI,Roboto,"Hiragino Kaku Gothic ProN","Noto Sans JP",sans-serif;
  background:
    radial-gradient(1200px 700px at 15% -10%, rgba(255,184,0,.35), transparent 60%),
    radial-gradient(1000px 600px at 85% 0%, rgba(255,216,77,.28), transparent 55%),
    linear-gradient(180deg, #FFFBE6 0%, #FFEFAF 100%);
}

/* subtle grain */
body::before{
  content:"";
  position:fixed;
  inset:0;
  background: url('grain.png') repeat;
  opacity:.03;
  pointer-events:none;
  mix-blend-mode:multiply;
  z-index:0;
}

a{ color:inherit; }
.container{ max-width:1080px; margin:0 auto; padding:0 22px; position:relative; z-index:1; }


/* Header */
header.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,.86);
  border-bottom: 1px solid rgba(231,238,242,.85);
  transition: box-shadow .25s ease, border-color .25s ease;
}
header.site-header.is-scrolled{
  box-shadow: 0 16px 40px rgba(20,35,50,.10);
  border-color: rgba(230,235,240,1);
}
.header-row{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 0;
}
.brand{ display:flex; gap:12px; align-items:center; font-weight:800; letter-spacing:.01em; }
.brand-badge{
  width:38px; height:38px; border-radius:12px;
  background: linear-gradient(135deg, var(--green), #2D7A59);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
}
.brand small{ display:block; color:var(--muted); font-weight:700; margin-top:2px; }

/* Hero */
.hero{ padding:44px 0 16px; }
.hero-card{
  border-radius: calc(var(--radius) + 10px);
  overflow:hidden;
  box-shadow: var(--shadow);
  border:1px solid rgba(230,235,240,.95);
  background:
    url('hero-bg.jpg') center/cover no-repeat,
    radial-gradient(1200px 520px at 20% 0%, rgba(31,77,59,.18), transparent 60%),
    radial-gradient(900px 480px at 85% 10%, rgba(30,42,56,.12), transparent 55%),
    linear-gradient(180deg, #FFFFFF, #FFFFFF);
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.25fr .95fr;
  gap:26px;
  padding:34px;
  background: linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.90));
}
@media (max-width: 900px){
  .hero-inner{ grid-template-columns:1fr; padding:26px; }
}
.kicker{
  display:inline-flex; gap:8px; align-items:center;
  padding:8px 12px;
  background: rgba(243,239,231,.92);
  border:1px solid rgba(255,200,74,.26);
  border-radius:999px;
  color:var(--green);
  font-weight:800;
  font-size:12px;
}
.h1{
  margin:12px 0 10px;
  font-size:44px;
  line-height:1.14;
  letter-spacing:.01em;
}
@media (max-width: 560px){ .h1{ font-size:30px; } }
.lead{ margin:0; color:var(--muted); line-height:1.8; font-size:15px; }
.hero-meta{ display:flex; flex-wrap:wrap; gap:10px; margin-top:16px; }
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:9px 11px;
  border-radius:999px;
  background: rgba(255,255,255,.92);
  border:1px solid rgba(230,235,240,.95);
  color:var(--muted);
  font-size:13px;
}
.hero-actions{ margin-top:18px; display:flex; gap:12px; flex-wrap:wrap; }

/* Buttons */
.btn{
  appearance:none;
  border:1px solid rgba(255,184,0,.5);
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--navy);
  padding:14px 20px;
  border-radius: 22px;
  font-weight:900;
  font-size:15px;
  cursor:pointer;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  box-shadow: 0 22px 60px rgba(255,184,0,.35);
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
  will-change: transform;
}
.btn:hover{ filter: brightness(1.03); box-shadow: 0 26px 66px rgba(255,204,61,.34); }
.btn.secondary{
  background: rgba(255,255,255,.96);
  color: var(--navy);
  border-color: rgba(230,238,243,.95);
  box-shadow: 0 16px 38px rgba(11,30,39,.08);
}
.btn.green{ background: linear-gradient(135deg, var(--yellow), var(--yellow2)); border-color: transparent; }
.btn.is-disabled{ opacity:.55; pointer-events:none; border-color:#9aa6b2; background:#9aa6b2; box-shadow:none; }

/* Section */
.section{ padding: 18px 0 44px; }
.section-title{
  display:flex; justify-content:space-between; align-items:flex-end; gap:12px;
  margin: 18px 0 14px;
}
.section-title h2{ margin:0; font-size:20px; letter-spacing:.02em; }
.section-title p{ margin:0; color:var(--muted); font-size:13px; line-height:1.6; }

/* Cards */
.grid{ display:grid; gap:18px; grid-template-columns: repeat(3,1fr); }
@media (max-width: 1020px){ .grid{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 600px){ .grid{ grid-template-columns: 1fr;} }

.card{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(230,235,240,.95);
  border-radius: var(--radius);
  overflow:hidden;
  text-decoration:none;
  color:inherit;
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease;
}
.card:hover{ transform: translateY(-4px); box-shadow: var(--shadow); }
.card img{ width:100%; height:190px; object-fit:cover; display:block; }
.card .pad{ padding: 16px 16px 18px; }
.card-top{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
.badge{
  display:inline-flex; align-items:center; gap:6px;
  padding:7px 11px;
  border-radius:999px;
  background: rgba(255,107,107,.12);
  border:1px solid rgba(255,200,74,.26);
  color: var(--green);
  font-weight:900;
  font-size:12px;
}
.badge.free{ background: rgba(30,42,56,.07); border-color: rgba(30,42,56,.12); color: var(--navy); }
.card h3{ margin:12px 0 6px; font-size:16px; letter-spacing:.01em; }
.small{ font-size:12px; color:var(--muted); }
.meta-row{ display:flex; flex-wrap:wrap; gap:8px; margin-top:10px; }

/* Panels */
.panel{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(230,235,240,.95);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}
.hr{ height:1px; background: rgba(230,235,240,.95); margin: 16px 0; }
.alert{
  padding:12px 14px;
  border-radius: 16px;
  background: rgba(243,239,231,.78);
  border: 1px solid rgba(31,77,59,.18);
  color: var(--ink);
}

/* Forms */
.row{ display:grid; gap:14px; grid-template-columns: 1fr 1fr; }
@media (max-width: 760px){ .row{ grid-template-columns: 1fr; } }
label{ display:grid; gap:7px; font-size:14px; color: var(--ink); }
input{
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(230,235,240,.95);
  font-size: 14px;
  background: rgba(255,255,255,.96);
  outline:none;
  transition: box-shadow .18s ease, border-color .18s ease;
}
input:focus{
  border-color: rgba(31,77,59,.35);
  box-shadow: 0 0 0 5px rgba(31,77,59,.10);
}

/* Notes */
.note{ color: var(--muted); font-size:13px; line-height:1.75; }

/* Reveal motion */
[data-reveal]{
  opacity:0;
  transform: translateY(10px);
  filter: blur(2px);
  transition: opacity .65s ease, transform .65s ease, filter .65s ease;
}
[data-reveal].is-in{
  opacity:1;
  transform: translateY(0);
  filter: blur(0);
}
@media (prefers-reduced-motion: reduce){
  [data-reveal]{ opacity:1; transform:none; filter:none; transition:none; }
  .btn{ transition:none; }
}



/* --- Borderless graphic layout additions --- */
.topnav{ display:flex; gap:16px; align-items:center; }
.topnav a{ text-decoration:none; color:var(--muted); font-weight:700; font-size:13px; letter-spacing:.04em; }
.topnav a:hover{ color:var(--ink); }

.hero-full{ position:relative; padding:0; }
.hero-full .hero-media{
  position:absolute; inset:0;
  background:
    radial-gradient(1200px 700px at 15% -10%, rgba(255,184,0,.35), transparent 60%),
    radial-gradient(1000px 600px at 85% 0%, rgba(255,216,77,.28), transparent 55%),
    linear-gradient(180deg, #FFFBE6 0%, #FFEFAF 100%);
}
.hero-full .hero-stack{
  position:relative;
  padding: 92px 0 72px;
  max-width: 780px;
}
@media (max-width: 760px){
  .hero-full .hero-stack{ padding: 76px 0 56px; }
}
.hero-full .kicker{ background: rgba(243,239,231,.92); }
.hero-full .h1{ color: var(--ink); text-shadow:none; }
.hero-full .lead{ color: var(--muted); }
.hero-full .pill{ background: rgba(255,255,255,.88); border-color: rgba(231,238,242,.95); color: var(--muted); }
.hero-full .btn.secondary{ background: rgba(255,255,255,.92); }

.scroll-cue{
  position:absolute; left:50%; bottom:16px; transform:translateX(-50%);
  color: rgba(16,33,42,.55);
  font-size:12px; letter-spacing:.28em; font-weight:800;
}
.scroll-cue::after{
  content:""; display:block; margin:10px auto 0;
  width:1px; height:28px; background: rgba(16,33,42,.25);
  animation: cue 1.6s ease-in-out infinite;
}
@keyframes cue{
  0%,100%{ transform: translateY(0); opacity:.6; }
  50%{ transform: translateY(10px); opacity:1; }
}

.event-strip{
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 0 0 10px;
}
.event-block{
  position:relative;
  min-height: 220px;
  border-radius: 28px;
  overflow:hidden;
  text-decoration:none;
  color: var(--navy);
  box-shadow: var(--shadow-soft);
  transform: translateZ(0);
}
.event-media{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  filter: saturate(1.02) contrast(1.02);
  transform: scale(1.02);
  transition: transform .6s ease;
}
.event-overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(255,255,255,.86) 0%, rgba(255,255,255,.62) 55%, rgba(255,255,255,.82) 100%);
}
.event-content{
  position:relative;
  padding: 26px 26px 22px;
  max-width: 520px;
}
.event-no{
  font-weight:900;
  letter-spacing:.12em;
  opacity:.9;
  font-size: 12px;
}
.event-title{
  font-size: 26px;
  font-weight:900;
  margin-top:8px;
}
.event-sub{
  margin-top:8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.event-cta{
  margin-top:14px;
  display:inline-flex;
  font-weight:900;
  letter-spacing:.04em;
  background: rgba(255,107,107,.12);
  border: 1px solid rgba(255,107,107,.28);
  padding: 10px 12px;
  border-radius: 14px;
}
.event-block:hover .event-media{ transform: scale(1.06); }
.event-block:hover{ box-shadow: var(--shadow); }

.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items:stretch;
}
@media (max-width: 900px){
  .split{ grid-template-columns:1fr; }
}
.about-media{
  border-radius: 28px;
  min-height: 240px;
  background:
    linear-gradient(180deg, rgba(22,32,42,.12), rgba(22,32,42,.32)),
    url('case-after.jpg') center/cover no-repeat;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(230,235,240,.35);
}

.footer{
  padding: 18px 0 32px;
  color: var(--muted);
}

/* Speaker block (photo + profile) */
.speaker-grid{
  display:grid;
  grid-template-columns: 160px 1fr;
  gap:14px;
  align-items:start;
}
@media (max-width: 560px){
  .speaker-grid{ grid-template-columns: 1fr; }
}
.speaker-photo{
  width:100%;
  border-radius: 22px;
  border: 1px solid rgba(230,238,243,.95);
  box-shadow: var(--shadow-soft);
  display:block;
}
.speaker-name{
  font-weight:900;
  letter-spacing:.02em;
  margin:0 0 6px;
}
.speaker-meta{
  margin:0;
  color: var(--muted);
  line-height:1.8;
  font-size:13px;
}

/* ===== Seminar & Booth (editable content blocks) ===== */
.section-block{ background: rgba(255,255,255,.82); border:1px solid rgba(227,234,240,.95); border-radius: var(--radius); box-shadow: var(--shadow-soft); padding: 22px; }
.section-block h2{ margin: 0 0 10px; color: var(--navy); }
.section-block h3{ margin: 18px 0 8px; color: var(--navy); }
.kv-title{ font-size: 40px; font-weight: 900; letter-spacing: .01em; margin: 10px 0; }
.kv-sub{ font-size: 15px; color: var(--muted); line-height: 1.8; margin: 0; }
.anchor-buttons{ display:flex; gap:12px; flex-wrap:wrap; margin-top: 16px; }

/* Booth grid */
.booth-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
@media (max-width: 980px){ .booth-grid{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 620px){ .booth-grid{ grid-template-columns: 1fr;} }

.booth-tile{
  background: rgba(255,255,255,.88);
  border:1px solid rgba(227,234,240,.95);
  border-radius: 26px;
  overflow:hidden;
  box-shadow: var(--shadow-soft);
}
.booth-media{ height: 160px; background-size: cover; background-position: center; }
.booth-body{ padding: 16px; }
.booth-no{ font-weight: 900; color: var(--navy); letter-spacing:.06em; }
.booth-name{ font-weight: 900; font-size: 16px; margin: 8px 0 6px; }
.booth-desc{ color: var(--muted); font-size: 13px; line-height: 1.7; margin: 0; }
.booth-actions{ display:flex; gap:10px; margin-top: 12px; flex-wrap:wrap; }
.btn.small{ padding: 10px 14px; border-radius: 18px; font-size: 13px; }

/* Booth matrix */
.matrix{
  width:100%;
  border-collapse: separate;
  border-spacing: 10px;
  margin-top: 10px;
}
.matrix th{
  font-size: 12px;
  color: var(--navy);
  text-align:center;
}
.matrix td{
  text-align:center;
  font-weight: 900;
  font-size: 18px;
  padding: 16px 10px;
  border-radius: 18px;
  border: 1px solid rgba(227,234,240,.95);
  background: rgba(255,255,255,.90);
  cursor:pointer;
  user-select:none;
}
.matrix td.is-open{ box-shadow: 0 14px 32px rgba(255,184,0,.18); }
.matrix td.is-full{ opacity:.55; cursor:not-allowed; }
.matrix td.is-selected{ outline: 4px solid rgba(255,138,0,.35); }

/* Speaker dual */
.speakers{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 760px){ .speakers{ grid-template-columns: 1fr; } }
.speaker-card{ background: rgba(255,255,255,.90); border:1px solid rgba(227,234,240,.95); border-radius: 26px; padding: 16px; box-shadow: var(--shadow-soft); }
.speaker-photo{ width:100%; border-radius: 22px; border: 1px solid rgba(227,234,240,.95); display:block; margin-bottom: 10px; }
.speaker-name{ font-weight: 900; margin: 0 0 6px; color: var(--navy); }
.speaker-meta{ margin: 0; color: var(--muted); line-height:1.8; font-size: 13px; }

/* ===== Speaker bands (3:4 photo + profile on right) ===== */
.speaker-bands{ display:flex; flex-direction:column; gap:14px; }
.speaker-band{
  display:grid;
  grid-template-columns: minmax(150px, 210px) 1fr;
  gap:14px;
  align-items:stretch;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(227,234,240,.95);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  overflow:hidden;
}
@media (max-width: 760px){
  .speaker-band{ grid-template-columns: 1fr; }
}
.speaker-band__img{
  width:100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display:block;
}
.speaker-band__body{ padding: 16px 18px 16px 0; }
@media (max-width: 760px){
  .speaker-band__body{ padding: 0 16px 16px; }
}
.speaker-band__name{
  margin: 16px 0 6px;
  font-weight: 900;
  letter-spacing: .02em;
  color: var(--navy);
  font-size: 16px;
}
@media (max-width: 760px){
  .speaker-band__name{ margin-top: 12px; }
}
.speaker-band__role{
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.speaker-band__text{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
  white-space: normal;
}
.speaker-band__text p{ margin: 0 0 10px; }
.speaker-band__text p:last-child{ margin-bottom: 0; }



@media (max-width:1100px){}
@media (max-width:760px){}


/* Hero title micro-adjustment v3 */
.kv-title__sub{
  display:block;
  font-size:0.42em !important;
  line-height:1.04;
  font-weight:900;
  letter-spacing:.01em;
  margin-bottom:0.20em;
}


.matrix--dense th{font-size:11px;padding-top:4px;}
.matrix--dense td{font-size:17px;padding:12px 8px;min-width:92px;}
@media (max-width:960px){.matrix{display:block;overflow-x:auto;white-space:nowrap;}.matrix tbody,.matrix tr{white-space:nowrap;}.matrix--dense td{min-width:84px;}}


.kv-title__main{display:block;}


.booth-grid--single{
  grid-template-columns: minmax(280px, 520px);
}
.booth-tile--featured .booth-media{
  min-height: 210px;
}
@media (max-width: 760px){
  .booth-grid--single{
    grid-template-columns: 1fr;
  }
}


.healthcheck-feature{
  border: 2px solid rgba(168, 46, 46, .26);
  box-shadow: 0 22px 54px rgba(168, 46, 46, .18);
}
.healthcheck-feature .booth-media{
  background-image:
    linear-gradient(135deg, rgba(162, 34, 34, .34), rgba(214, 90, 90, .22)),
    radial-gradient(circle at 20% 28%, rgba(255, 150, 150, .28), transparent 40%),
    radial-gradient(circle at 78% 22%, rgba(204, 59, 59, .24), transparent 34%),
    radial-gradient(circle at 65% 70%, rgba(226, 120, 120, .22), transparent 31%),
    url('../assets/booth-1.jpg') !important;
  filter: hue-rotate(-28deg) saturate(1.16) contrast(1.02);
}
.healthcheck-feature .booth-no{
  color:#b23434;
}
.healthcheck-feature .booth-actions .btn{
  box-shadow: 0 10px 24px rgba(201,61,61,.18);
}
.form-section-title{
  margin: 8px 0 0;
  font-size: 20px;
  font-weight: 900;
}


/* Healthcheck tile refinement */
.healthcheck-feature{
  border: 2px solid rgba(199, 68, 68, .22);
  box-shadow: 0 20px 50px rgba(199, 68, 68, .16);
}
.healthcheck-feature .booth-media{
  background-image:
    linear-gradient(135deg, rgba(196, 75, 75, .28), rgba(226, 119, 119, .16)),
    radial-gradient(circle at 20% 30%, rgba(255, 188, 188, .35), transparent 42%),
    radial-gradient(circle at 78% 22%, rgba(255, 140, 140, .28), transparent 36%),
    radial-gradient(circle at 65% 70%, rgba(255, 173, 173, .24), transparent 33%),
    url('../assets/booth-1.jpg') !important;
  filter: hue-rotate(-18deg) saturate(1.1);
}
.healthcheck-name{color: rgb(168, 46, 46);}


.healthcheck-btn{
  background: linear-gradient(135deg, rgb(168, 46, 46), rgb(196, 75, 75));
  color:#fff;
  border-color: rgba(168, 46, 46, .34);
  box-shadow: 0 14px 32px rgba(168, 46, 46, .20);
}
.healthcheck-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(168, 46, 46, .24);
}


/* Responsive architecture update */
.section-compact{ padding-top: 34px; }
.entry-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.entry-card{
  display:block;
  text-decoration:none;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  border:1px solid rgba(227,234,240,.95);
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease;
}
.entry-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(10,26,34,.14);
}
.entry-card__eyebrow{
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  color: var(--muted);
  margin-bottom: 8px;
}
.entry-card h3{
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.2;
}
.entry-card p{
  margin:0;
  color: var(--muted);
  line-height:1.8;
  font-size:15px;
}
.entry-card__cta{
  display:inline-flex;
  margin-top: 16px;
  font-weight:900;
}
.entry-card--health{
  border-color: rgba(168,46,46,.22);
  box-shadow: 0 20px 50px rgba(168,46,46,.12);
}
.entry-card--health h3,
.entry-card--health .entry-card__eyebrow,
.entry-card--health .entry-card__cta{
  color: rgb(168,46,46);
}

@media (max-width: 960px){
  .entry-grid{
    grid-template-columns: 1fr;
  }
  .header-row{
    gap: 14px;
    align-items: flex-start;
    flex-direction: column;
  }
  .topnav{
    width:100%;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
  }
  .topnav .btn{
    width:auto;
  }
  .anchor-buttons{
    display:grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width:100%;
  }
  .anchor-buttons .btn{
    width:100%;
    justify-content:center;
    text-align:center;
  }
  .hero-meta{
    flex-direction: column;
    align-items: stretch;
  }
  .pill{
    width:100%;
  }
  .booth-grid{
    grid-template-columns: 1fr !important;
  }
  .speaker-band{
    grid-template-columns: 1fr !important;
  }
  .row{
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px){
  .container{
    padding: 0 16px;
  }
  .kv-title{
    font-size: clamp(28px, 7vw, 44px) !important;
    line-height: 1.08;
  }
  .kv-title__sub{
    font-size: clamp(18px, 5vw, 28px) !important;
    margin-bottom: 6px !important;
  }
  .kv-sub{
    font-size: 14px;
    line-height: 1.8;
  }
  .section{
    padding: 28px 0;
  }
  .section-title h2,
  .section-block h2{
    font-size: 28px;
    line-height: 1.2;
  }
  .entry-card{
    padding: 20px;
  }
  .entry-card h3{
    font-size: 24px;
  }
}


/* ===== Mobile readability tuning + CTA motion ===== */
.hero .kv-title,
.hero .kv-sub,
.section-title h2,
.section-title p{
  word-break: keep-all;
  overflow-wrap: anywhere;
}

@media (max-width: 640px){
  .hero-stack{
    gap: 12px;
  }

  .kicker{
    font-size: 12px;
    padding: 10px 14px;
  }

  .kv-title{
    font-size: clamp(26px, 7.2vw, 40px) !important;
    line-height: 1.12 !important;
    letter-spacing: -.02em;
  }

  .kv-title__sub{
    font-size: clamp(15px, 3.8vw, 22px) !important;
    line-height: 1.22 !important;
    margin-bottom: 8px !important;
    letter-spacing: .01em !important;
  }

  .kv-sub{
    font-size: 14px !important;
    line-height: 1.75 !important;
  }

  .section-title{
    gap: 8px;
    align-items: start;
  }

  .section-title h2,
  .section-block h2{
    font-size: clamp(18px, 6vw, 24px) !important;
    line-height: 1.2 !important;
    letter-spacing: -.01em;
  }

  .section-title p{
    font-size: 14px;
    line-height: 1.7;
  }

  .pill{
    font-size: 13px;
    line-height: 1.5;
    padding: 12px 14px;
  }

  .topnav{
    gap: 8px;
  }

  .topnav a{
    font-size: 13px;
  }
}

/* CTA motion: lightweight CSS animation, mobileでもわかりやすく */
.btn{
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    transparent 0%,
    transparent 35%,
    rgba(255,255,255,.18) 50%,
    transparent 65%,
    transparent 100%);
  transform: translateX(-140%);
  pointer-events: none;
  animation: btnShine 3.6s ease-in-out infinite;
}

.btn::before{
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(168,46,46,.0);
  pointer-events: none;
  animation: btnPulse 3.6s ease-in-out infinite;
}

.anchor-buttons .btn:nth-child(2){
  animation-delay: .35s;
}
.anchor-buttons .btn:nth-child(3){
  animation-delay: .7s;
}
.anchor-buttons .btn:nth-child(2)::after,
.anchor-buttons .btn:nth-child(2)::before{
  animation-delay: .35s;
}
.anchor-buttons .btn:nth-child(3)::after,
.anchor-buttons .btn:nth-child(3)::before{
  animation-delay: .7s;
}

.entry-card .entry-card__cta{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.entry-card .entry-card__cta::after{
  content: "→";
  display: inline-block;
  animation: ctaNudge 1.4s ease-in-out infinite;
}

@keyframes btnShine{
  0%, 72%, 100% { transform: translateX(-140%); }
  82% { transform: translateX(140%); }
}

@keyframes btnPulse{
  0%, 72%, 100% { box-shadow: 0 0 0 0 rgba(168,46,46,0); }
  80% { box-shadow: 0 0 0 10px rgba(168,46,46,.08); }
}

@keyframes ctaNudge{
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

@media (prefers-reduced-motion: reduce){
  .btn::after,
  .btn::before,
  .entry-card .entry-card__cta::after{
    animation: none !important;
  }
}


/* ===== Soft hero illustration + colored entry tiles ===== */
.hero-full .hero-media{
  overflow: hidden;
  background:
    radial-gradient(1100px 620px at 12% -8%, rgba(255, 194, 88, .28), transparent 58%),
    radial-gradient(900px 520px at 88% 4%, rgba(255, 221, 120, .20), transparent 52%),
    linear-gradient(180deg, #FFF9E3 0%, #FFF0B8 100%);
}
.hero-full .hero-media::before{
  content:"";
  position:absolute;
  inset:0;
  background: url('hero-soft-scene.svg') center bottom / cover no-repeat;
  opacity:.95;
  animation: heroSceneFloat 18s ease-in-out infinite alternate;
}
.hero-full .hero-media::after{
  content:"";
  position:absolute;
  inset:-6% -8%;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,.36), transparent 18%),
    radial-gradient(circle at 64% 16%, rgba(255,221,149,.34), transparent 20%),
    radial-gradient(circle at 82% 30%, rgba(255,189,189,.18), transparent 16%),
    radial-gradient(circle at 34% 72%, rgba(255,255,255,.18), transparent 16%);
  filter: blur(10px);
  animation: heroGlowFloat 11s ease-in-out infinite alternate;
  opacity:.8;
}
@keyframes heroSceneFloat{
  0%{ transform: translate3d(0,0,0) scale(1); }
  100%{ transform: translate3d(0,-8px,0) scale(1.02); }
}
@keyframes heroGlowFloat{
  0%{ transform: translate3d(-1%,0,0); opacity:.62; }
  100%{ transform: translate3d(1.5%,-1%,0); opacity:.92; }
}

.booth-btn{
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--navy);
  border-color: rgba(255,184,0,.5);
  box-shadow: 0 22px 60px rgba(255,184,0,.35);
}

.entry-card{
  border-radius: 28px;
}
.entry-card--seminar,
.entry-card--booth{
  background: linear-gradient(180deg, #FFBF33 0%, #FFA20F 100%);
  border-color: rgba(255,160,15,.24);
  box-shadow: 0 22px 52px rgba(255,160,15,.18);
}
.entry-card--seminar h3,
.entry-card--seminar .entry-card__eyebrow,
.entry-card--seminar .entry-card__cta,
.entry-card--booth h3,
.entry-card--booth .entry-card__eyebrow,
.entry-card--booth .entry-card__cta{
  color: var(--navy);
}
.entry-card--seminar p,
.entry-card--booth p{
  color: rgba(10,26,34,.78);
}

.entry-card--health{
  background: linear-gradient(180deg, rgb(168, 46, 46) 0%, rgb(138, 32, 32) 100%);
  border-color: rgba(138, 32, 32, .28);
  box-shadow: 0 22px 52px rgba(138,32,32,.18);
}
.entry-card--health h3,
.entry-card--health .entry-card__eyebrow,
.entry-card--health .entry-card__cta{
  color: #fff;
}
.entry-card--health p{
  color: rgba(255,255,255,.92);
}

.section-block,
.entry-card,
.booth-tile{
  box-shadow: 0 16px 38px rgba(10,26,34,.10);
}

@media (max-width: 640px){
  .entry-card{
    padding: 18px;
  }
  .entry-card h3{
    font-size: 22px;
    line-height: 1.2;
  }
  .entry-card p{
    font-size: 14px;
    line-height: 1.8;
  }
}



/* ===== Unified soft illustration theme v4 ===== */
:root{
  --soft-cream: #f5efc8;
  --soft-cream-2: #f8f3db;
  --soft-orange: #f2ab46;
  --soft-orange-deep: #e2952f;
  --soft-red: #b44b4b;
  --soft-red-deep: #993c3c;
  --soft-card: rgba(255,255,255,.9);
}

body{
  background:
    radial-gradient(circle at 14% 18%, rgba(245,184,82,.18), transparent 26%),
    radial-gradient(circle at 84% 22%, rgba(241,151,108,.14), transparent 30%),
    radial-gradient(circle at 50% 78%, rgba(245,208,120,.12), transparent 28%),
    linear-gradient(180deg, #f4ebbf 0%, #f6efc9 54%, #f4e9b6 100%);
}

.hero{
  position: relative;
  overflow: hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(255,250,236,.32), rgba(255,250,236,.06)),
    url('assets/soft-illustration-bg.svg') center/cover no-repeat;
  opacity: .88;
  animation: heroFloat 18s ease-in-out infinite alternate;
  transform-origin: center;
  pointer-events:none;
}

.hero::after{
  content:"";
  position:absolute;
  inset:-4% -2%;
  background:
    radial-gradient(circle at 20% 26%, rgba(255,196,105,.22), transparent 18%),
    radial-gradient(circle at 78% 18%, rgba(240,133,104,.18), transparent 18%),
    radial-gradient(circle at 65% 70%, rgba(246,187,92,.14), transparent 18%);
  animation: heroGlow 12s ease-in-out infinite alternate;
  pointer-events:none;
}

.hero > *{
  position:relative;
  z-index:1;
}

.section-block,
.entry-card,
.booth-tile,
.speaker-band,
.matrix,
.alert{
  backdrop-filter: blur(3px);
}

.entry-card,
.booth-tile,
.section-block,
.speaker-band{
  border-radius: 26px !important;
  box-shadow: 0 18px 46px rgba(139,107,29,.12) !important;
  border: 1px solid rgba(228, 217, 182, .72) !important;
}

.entry-card{
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,252,243,.86)) !important;
}

.entry-card h3{
  color:#11202a;
}

.entry-card--health{
  background:
    linear-gradient(180deg, rgba(182,75,75,.95), rgba(160,57,57,.95)) !important;
  border-color: rgba(154,55,55,.42) !important;
  box-shadow: 0 20px 48px rgba(145,50,50,.18) !important;
}

.entry-card--health h3,
.entry-card--health .entry-card__eyebrow,
.entry-card--health p,
.entry-card--health .entry-card__cta{
  color:#fff !important;
}

.entry-card--health .entry-card__cta::after{
  color:#fff !important;
}

.entry-card:not(.entry-card--health){
  background:
    linear-gradient(180deg, rgba(246,169,74,.94), rgba(237,155,57,.92)) !important;
  border-color: rgba(222,156,70,.38) !important;
}
.entry-card:not(.entry-card--health) h3,
.entry-card:not(.entry-card--health) .entry-card__eyebrow,
.entry-card:not(.entry-card--health) p,
.entry-card:not(.entry-card--health) .entry-card__cta{
  color:#fff !important;
}
.entry-card:not(.entry-card--health) .entry-card__cta::after{
  color:#fff !important;
}

.topnav .btn.secondary{
  background: linear-gradient(135deg, var(--soft-orange), var(--soft-orange-deep)) !important;
  color:#fff !important;
  border-color: rgba(220,149,47,.34) !important;
  box-shadow: 0 14px 30px rgba(226,149,47,.18);
}

.healthcheck-btn{
  background: linear-gradient(135deg, var(--soft-red), var(--soft-red-deep)) !important;
}

.kv-sub, .note, .section-title p{
  color:#36444d;
}

@keyframes heroFloat{
  0%{ transform: scale(1) translate3d(0,0,0); }
  100%{ transform: scale(1.06) translate3d(0,-8px,0); }
}

@keyframes heroGlow{
  0%{ opacity:.72; transform: translateY(0); }
  100%{ opacity:.96; transform: translateY(-10px); }
}

@media (max-width: 640px){
  .hero::before{
    opacity:.98;
    background:
      linear-gradient(180deg, rgba(255,250,236,.28), rgba(255,250,236,.08)),
      url('assets/soft-illustration-bg.svg') 56% center/160% auto no-repeat;
  }
  .hero::after{
    inset:-8% -10%;
  }
  .entry-card,
  .booth-tile,
  .section-block,
  .speaker-band{
    border-radius: 22px !important;
  }
}



.soft-page-banner{
  padding: 18px 0 6px;
}
.soft-page-banner__art{
  height: 92px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,249,236,.16), rgba(255,249,236,.02)),
    url('assets/soft-illustration-bg.svg') center/cover no-repeat;
  box-shadow: 0 16px 38px rgba(139,107,29,.10);
  animation: heroFloat 20s ease-in-out infinite alternate;
}
.soft-theme-page .section-title h2,
.soft-theme-page .section-block h2{
  letter-spacing: -.02em;
}
.soft-theme-page .btn{
  border-radius: 999px;
}
@media (max-width: 640px){
  .soft-page-banner{
    padding: 12px 0 4px;
  }
  .soft-page-banner__art{
    height: 64px;
    border-radius: 20px;
    background:
      linear-gradient(180deg, rgba(255,249,236,.12), rgba(255,249,236,.03)),
      url('assets/soft-illustration-bg.svg') 50% center/180% auto no-repeat;
  }
}




/* ===== Header spacing + compact nav v5 ===== */
.site-header{
  padding-top: max(env(safe-area-inset-top), 10px);
}
.header-row{
  padding-top: 10px;
  padding-bottom: 10px;
}
.brand{
  padding-top: 4px;
}
.brand > div:last-child{
  line-height: 1.2;
}

.topnav--compact{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.topnav--compact a{
  text-decoration:none;
}
.topnav-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .01em;
  color:#fff !important;
  background: linear-gradient(135deg, #f2ab46, #e2952f);
  border: 1px solid rgba(222,156,70,.34);
  box-shadow: 0 12px 26px rgba(226,149,47,.16);
}
.topnav-chip--health{
  background: linear-gradient(135deg, rgb(168, 46, 46), rgb(196, 75, 75));
  border-color: rgba(168,46,46,.34);
  box-shadow: 0 12px 26px rgba(168,46,46,.18);
}
.topnav-chip:hover{
  transform: translateY(-1px);
}

@media (max-width: 640px){
  .site-header{
    padding-top: max(env(safe-area-inset-top), 18px);
  }
  .header-row{
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .brand{
    padding-top: 8px;
  }
  .brand > div:last-child{
    line-height: 1.28;
  }
  .brand > div:last-child small{
    display:block;
    margin-top: 6px;
  }
  .topnav--compact{
    width:100%;
    gap:8px;
  }
  .topnav-chip{
    min-height: 40px;
    padding: 0 14px;
    font-size: 14px;
  }
}




/* ===== Unified header alignment v6 ===== */
.header-row--stacked{
  display:flex;
  flex-direction:column;
  align-items:flex-start !important;
  justify-content:flex-start;
  gap: 14px;
}

.brand--aligned{
  display:flex;
  align-items:flex-start;
  justify-content:flex-start;
  gap: 12px;
  width:100%;
  text-align:left;
}

.brand-copy{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  text-align:left;
  line-height:1.18;
}

.brand-copy > div:first-child{
  text-align:left;
}

.brand-copy small{
  display:block;
  margin-top:6px;
  text-align:left;
}

.topnav--compact{
  width:100%;
  justify-content:flex-start !important;
  align-items:center;
}

@media (min-width: 641px){
  .header-row--stacked{
    gap: 16px;
  }
  .brand-copy > div:first-child{
    font-size: 18px;
  }
  .brand-copy small{
    font-size: 13px;
  }
}

@media (max-width: 640px){
  .header-row--stacked{
    gap: 12px;
  }
  .brand--aligned{
    gap: 10px;
  }
  .brand-copy > div:first-child{
    font-size: 17px;
    line-height:1.22;
  }
  .brand-copy small{
    margin-top: 4px;
    font-size: 12px;
    line-height:1.35;
  }
  .topnav--compact{
    justify-content:flex-start !important;
  }
}




/* ===== Compact booth list page v7 ===== */
.booth-grid--compactlist{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.booth-tile--compactlist{
  display: grid;
  grid-template-columns: 132px 1fr;
  align-items: stretch;
  min-height: 118px;
  overflow: hidden;
}

.booth-tile--compactlist .booth-media{
  min-height: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.booth-tile--compactlist .booth-body{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: 4px;
  padding: 14px 16px;
}

.booth-tile--compactlist .booth-no{
  font-size: 12px;
  margin-bottom: 0;
}

.booth-tile--compactlist .booth-name{
  font-size: 24px;
  line-height: 1.15;
  margin: 0;
}

.booth-tile--compactlist .booth-desc{
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.booth-tile--compactlist .booth-actions{
  margin-top: 6px;
  display:flex;
  justify-content:flex-start;
}

.booth-tile--compactlist .booth-actions .btn{
  min-height: 40px;
  padding: 0 16px;
  font-size: 14px;
}

@media (max-width: 640px){
  .booth-grid--compactlist{
    gap: 10px;
  }

  .booth-tile--compactlist{
    grid-template-columns: 74px 1fr;
    min-height: 86px;
    border-radius: 18px !important;
  }

  .booth-tile--compactlist .booth-body{
    padding: 10px 12px;
    gap: 2px;
  }

  .booth-tile--compactlist .booth-no{
    font-size: 10px;
    letter-spacing: .04em;
  }

  .booth-tile--compactlist .booth-name{
    font-size: 17px;
    line-height: 1.12;
  }

  .booth-tile--compactlist .booth-desc{
    font-size: 12px;
    line-height: 1.35;
    -webkit-line-clamp: 1;
  }

  .booth-tile--compactlist .booth-actions{
    margin-top: 4px;
  }

  .booth-tile--compactlist .booth-actions .btn{
    min-height: 32px;
    padding: 0 12px;
    font-size: 12px;
    box-shadow: none;
  }
}




/* Header TOP button update v8 */
@media (max-width: 640px){
  .topnav--compact{
    gap: 6px;
  }
  .topnav-chip{
    padding: 0 12px;
    font-size: 13px;
  }
  .brand-copy > div:first-child{
    font-size: 16px;
    line-height: 1.2;
  }
}


label select{
  width:100%;
  margin-top:6px;
  min-height:48px;
  border-radius:16px;
  border:1px solid rgba(218,224,229,.95);
  background:#fff;
  color:var(--ink);
  padding:0 14px;
  font: inherit;
}
[hidden]{ display:none !important; }　

@media (max-width: 640px){
  .section-block h3{
    font-size: 18px;
    line-height: 1.35;
  }

  .section-block ul{
    font-size: 14px;
    line-height: 1.7;
  }
}




/* v31 ad banner + revised booths */
.top-ad-section{
  padding: 18px 0 8px;
}
.top-ad-frame{
  border-radius: 28px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(230,235,240,.94);
  box-shadow: 0 20px 44px rgba(10,26,34,.10);
  overflow: hidden;
  padding: 12px;
}
.top-ad-image{
  display:block;
  width:100%;
  max-width: 920px;
  height:auto;
  margin: 0 auto;
  border-radius: 20px;
}

.matrix--healthcheck th{
  font-size: 12px;
}
.matrix--healthcheck td{
  min-width: 92px;
}

.booth-tile--info{
  background: linear-gradient(180deg, rgba(255,250,240,.96), rgba(255,246,230,.92));
}
.booth-tile--info .booth-actions{
  display:none !important;
}

@media (max-width: 640px){
  .top-ad-section{
    padding: 12px 0 6px;
  }
  .top-ad-frame{
    border-radius: 18px;
    padding: 8px;
  }
  .top-ad-image{
    border-radius: 12px;
  }
  .matrix--healthcheck td{
    min-width: 78px;
  }
}


/* v32 booth slots and area */
@media (max-width: 640px){
  .matrix th{
    font-size: 11px;
  }
  .matrix td{
    min-width: 72px;
  }
}
