@charset "utf-8";

/* =========================================================
   /event/ 企業の健康づくり（ハブ＋子ページ7本）

   ・このファイルだけで自己完結させている（他ページに影響しない）。
     すべてのセレクタを #Revent 配下に閉じている。
   ・8ページで共通のパーツ集。ページ固有の色は
     #Revent に data-ev-theme を付けて切り替える。
   ・css/import.css からは読み込まない。各ページから
     <link href="/css/event.css"> で直接読む（guide.css と同じ流儀）。
========================================================= */

/* ---------------------------------------------------------
   1カラム（サイドバーなし）レイアウト
   各ページの #contents に .wu-ev-page を付与して
   style.css の #main{float:right;width:925px} を打ち消す
--------------------------------------------------------- */
.wu-ev-page #main {
  float: none;
  width: 100%;
  margin: 0 auto;
}

#Revent {
  --ev-brand: #0b9aa6;
  --ev-brand-d: #077b85;
  --ev-brand-l: #eaf7f8;
  --ev-ink: #1a2b33;
  --ev-ink-2: #566a74;
  --ev-line: #e2e6e9;
  --ev-soft: #f5f8f9;
  --ev-accent: #e8792b;
  color: var(--ev-ink);
}

/* ページごとのテーマ色（ハブは既定のティール） */
#Revent[data-ev-theme="score"]   { --ev-brand: #1f7a5a; --ev-brand-d: #175f46; --ev-brand-l: #e9f5f0; }
#Revent[data-ev-theme="kenshin"] { --ev-brand: #2e6fb7; --ev-brand-d: #235690; --ev-brand-l: #eaf1fa; }
#Revent[data-ev-theme="refresh"] { --ev-brand: #8a6bb8; --ev-brand-d: #6d5294; --ev-brand-l: #f2eefa; }
#Revent[data-ev-theme="mental"]  { --ev-brand: #3f7fa6; --ev-brand-d: #316483; --ev-brand-l: #ecf3f8; }
#Revent[data-ev-theme="staff"]   { --ev-brand: #c2683a; --ev-brand-d: #9c522c; --ev-brand-l: #fbf0e9; }
#Revent[data-ev-theme="seminar"] { --ev-brand: #4a7fb5; --ev-brand-d: #3a6491; --ev-brand-l: #edf3f9; }

/* このサイトの共通CSSは box-sizing を指定していない（content-box のまま）。
   width:100% と padding を併用すると親からはみ出すため、
   #Revent の中だけ border-box にそろえる。外には影響しない。 */
#Revent,
#Revent *,
#Revent *::before,
#Revent *::after { box-sizing: border-box; }

#Revent img { max-width: 100%; height: auto; }

/* =========================================================
   ヒーロー
========================================================= */
#Revent .wu-ev__hero {
  position: relative;
  padding: 30px 32px 32px;
  border-top: 3px solid var(--ev-brand);
  background: linear-gradient(180deg, var(--ev-brand-l) 0%, #ffffff 100%);
  overflow: hidden;
}

#Revent .wu-ev__eyebrow {
  margin: 0 0 8px;
  color: var(--ev-brand-d);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
}

#Revent .wu-ev__title {
  margin: 0 0 14px;
  padding: 0;
  border: none;
  background: none;
  color: var(--ev-ink);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.35;
}

#Revent .wu-ev__lead {
  margin: 0;
  max-width: 780px;
  color: var(--ev-ink-2);
  font-size: 15px;
  line-height: 1.9;
}

/* ヒーロー右の画像（無い場合はこのブロックごと省略してよい） */
#Revent .wu-ev__heroWrap { display: flex; gap: 28px; align-items: center; }
#Revent .wu-ev__heroTx { flex: 1 1 auto; min-width: 0; }
#Revent .wu-ev__heroPic {
  flex: 0 0 300px;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 14px rgba(0, 0, 0, .1);
}
#Revent .wu-ev__heroPic img { display: block; width: 100%; }

/* =========================================================
   セクション
========================================================= */
#Revent .wu-ev__sec { margin: 46px 0 0; }
#Revent .wu-ev__sec:first-of-type { margin-top: 38px; }

#Revent .wu-ev__h2 {
  position: relative;
  margin: 0 0 6px;
  padding: 0 0 12px 16px;
  border: none;
  background: none;
  color: var(--ev-ink);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
}
#Revent .wu-ev__h2::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 16px;
  left: 0;
  width: 4px;
  border-radius: 2px;
  background: var(--ev-brand);
}

#Revent .wu-ev__h2sub {
  margin: 0 0 22px 16px;
  color: var(--ev-ink-2);
  font-size: 14px;
  line-height: 1.85;
}

#Revent .wu-ev__h3 {
  margin: 32px 0 12px;
  padding: 0 0 8px;
  border: none;
  border-bottom: 1px solid var(--ev-line);
  background: none;
  color: var(--ev-ink);
  font-size: 17px;
  font-weight: 700;
}

#Revent .wu-ev__p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.95;
}
#Revent .wu-ev__p:last-child { margin-bottom: 0; }

#Revent .wu-ev__note {
  margin: 14px 0 0;
  padding: 12px 16px;
  border-left: 3px solid var(--ev-line);
  background: var(--ev-soft);
  color: var(--ev-ink-2);
  font-size: 13px;
  line-height: 1.85;
}

/* =========================================================
   サービス一覧カード（ハブで使う）
========================================================= */
#Revent .wu-ev__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

#Revent .wu-ev__card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--ev-line);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow .18s, transform .18s, border-color .18s;
}
#Revent .wu-ev__card:hover {
  border-color: var(--ev-brand);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .09);
  transform: translateY(-2px);
}

#Revent .wu-ev__cardPic {
  display: block;
  margin: 0;
  aspect-ratio: 16 / 9;
  background: var(--ev-soft);
  overflow: hidden;
}
#Revent .wu-ev__cardPic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#Revent .wu-ev__cardBody { flex: 1 1 auto; padding: 16px 18px 18px; }

#Revent .wu-ev__cardTag {
  display: inline-block;
  margin: 0 0 8px;
  padding: 3px 9px;
  border-radius: 3px;
  background: var(--ev-brand-l);
  color: var(--ev-brand-d);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
}

#Revent .wu-ev__cardTitle {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
#Revent .wu-ev__cardTitle a { color: var(--ev-ink); text-decoration: none; }
#Revent .wu-ev__card:hover .wu-ev__cardTitle a { color: var(--ev-brand-d); }

#Revent .wu-ev__cardTx {
  margin: 0;
  color: var(--ev-ink-2);
  font-size: 13px;
  line-height: 1.85;
}

#Revent .wu-ev__cardMore {
  margin: 12px 0 0;
  color: var(--ev-brand-d);
  font-size: 13px;
  font-weight: 700;
}
#Revent .wu-ev__cardMore::after { content: " ▶"; font-size: 10px; }

/* カード全体をリンクにする場合の当たり判定 */
#Revent .wu-ev__cardLink {
  position: absolute;
  inset: 0;
  z-index: 1;
}
#Revent .wu-ev__card { position: relative; }

/* =========================================================
   担当部署別の入口（ハブ上部）
========================================================= */
#Revent .wu-ev__roles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

#Revent .wu-ev__role {
  padding: 18px 16px 16px;
  border: 1px solid var(--ev-line);
  border-top: 3px solid var(--ev-brand);
  border-radius: 8px;
  background: #fff;
}
#Revent .wu-ev__roleName {
  margin: 0 0 8px;
  color: var(--ev-brand-d);
  font-size: 15px;
  font-weight: 700;
}
#Revent .wu-ev__roleTx {
  margin: 0 0 10px;
  color: var(--ev-ink-2);
  font-size: 12.5px;
  line-height: 1.8;
}
#Revent .wu-ev__roleLinks { margin: 0; padding: 0; list-style: none; }
#Revent .wu-ev__roleLinks li { margin: 0 0 5px; font-size: 12.5px; line-height: 1.6; }
#Revent .wu-ev__roleLinks li::before { content: "▶ "; color: var(--ev-brand); font-size: 9px; }

/* =========================================================
   仕様チップ（定員・所要時間・スタッフ数など）
========================================================= */
#Revent .wu-ev__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}
#Revent .wu-ev__spec {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 5px 11px;
  border: 1px solid var(--ev-line);
  border-radius: 999px;
  background: #fff;
  font-size: 12.5px;
  white-space: nowrap;
}
#Revent .wu-ev__specK { color: var(--ev-ink-2); font-size: 11px; }
#Revent .wu-ev__specV { color: var(--ev-ink); font-weight: 700; }

/* =========================================================
   プラン／パックのブロック
========================================================= */
#Revent .wu-ev__plans { display: grid; gap: 18px; }

#Revent .wu-ev__plan {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  border: 1px solid var(--ev-line);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}
#Revent .wu-ev__planPic { margin: 0; background: var(--ev-soft); }
#Revent .wu-ev__planPic img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
}
#Revent .wu-ev__planBody { padding: 20px 22px 22px; }
#Revent .wu-ev__planNo {
  display: inline-block;
  margin: 0 0 8px;
  padding: 2px 10px;
  border-radius: 3px;
  background: var(--ev-brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}
#Revent .wu-ev__planTitle {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
#Revent .wu-ev__planTx { margin: 0 0 12px; font-size: 13.5px; line-height: 1.9; }
#Revent .wu-ev__planTx:last-child { margin-bottom: 0; }

/* 使用機器のリンク列 */
#Revent .wu-ev__machines {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}
#Revent .wu-ev__machines a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px 5px 6px;
  border: 1px solid var(--ev-line);
  border-radius: 999px;
  background: #fff;
  color: var(--ev-ink);
  font-size: 12.5px;
  text-decoration: none;
  transition: border-color .15s, background .15s;
}
#Revent .wu-ev__machines a:hover { border-color: var(--ev-brand); background: var(--ev-brand-l); }
#Revent .wu-ev__machines img { width: 26px; height: 26px; object-fit: contain; }

/* =========================================================
   表（セミナー一覧・機器×コース対応表など）
========================================================= */
#Revent .wu-ev__tableWrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--ev-line);
  border-radius: 8px;
}
#Revent .wu-ev__table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 13px;
}
#Revent .wu-ev__table th,
#Revent .wu-ev__table td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--ev-line);
  border-right: 1px solid var(--ev-line);
  text-align: left;
  vertical-align: middle;
  line-height: 1.7;
}
#Revent .wu-ev__table th:last-child,
#Revent .wu-ev__table td:last-child { border-right: none; }
#Revent .wu-ev__table tr:last-child td { border-bottom: none; }
#Revent .wu-ev__table thead th {
  background: var(--ev-brand);
  border-right-color: rgba(255, 255, 255, .3);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}
#Revent .wu-ev__table tbody th {
  background: var(--ev-soft);
  font-weight: 700;
  white-space: nowrap;
}
#Revent .wu-ev__table td.is-c { text-align: center; }
#Revent .wu-ev__table .wu-ev__mark { color: var(--ev-brand); font-weight: 700; }
#Revent .wu-ev__table tbody tr:hover td { background: #fafcfc; }

/* 機器セル（画像＋名前） */
#Revent .wu-ev__mCell { display: flex; align-items: center; gap: 10px; }
#Revent .wu-ev__mCell img { width: 40px; height: 40px; object-fit: contain; flex: 0 0 40px; }
#Revent .wu-ev__mCell a { color: var(--ev-ink); text-decoration: none; }
#Revent .wu-ev__mCell a:hover { color: var(--ev-brand-d); text-decoration: underline; }

/* =========================================================
   セミナーのフィルタチップ
========================================================= */
#Revent .wu-ev__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}
#Revent .wu-ev__chip {
  appearance: none;
  padding: 7px 16px;
  border: 1px solid var(--ev-line);
  border-radius: 999px;
  background: #fff;
  color: var(--ev-ink-2);
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  transition: all .15s;
}
#Revent .wu-ev__chip:hover { border-color: var(--ev-brand); color: var(--ev-brand-d); }
#Revent .wu-ev__chip.is-on {
  border-color: var(--ev-brand);
  background: var(--ev-brand);
  color: #fff;
  font-weight: 700;
}
#Revent .wu-ev__chipN { margin-left: 6px; font-size: 11px; opacity: .75; }

/* =========================================================
   数字を見せるブロック（スコア診断の試算など）
========================================================= */
#Revent .wu-ev__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
#Revent .wu-ev__stat {
  padding: 22px 20px;
  border: 1px solid var(--ev-line);
  border-radius: 10px;
  background: linear-gradient(180deg, var(--ev-brand-l) 0%, #fff 70%);
  text-align: center;
}
#Revent .wu-ev__statK {
  margin: 0 0 8px;
  color: var(--ev-ink-2);
  font-size: 12.5px;
  line-height: 1.6;
}
#Revent .wu-ev__statV {
  margin: 0;
  color: var(--ev-brand-d);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}
#Revent .wu-ev__statU { font-size: 15px; font-weight: 700; margin-left: 2px; }
#Revent .wu-ev__statTx { margin: 8px 0 0; color: var(--ev-ink-2); font-size: 12px; line-height: 1.7; }

/* 計算式 */
#Revent .wu-ev__formula {
  margin: 22px 0 0;
  padding: 20px 22px;
  border: 1px dashed var(--ev-brand);
  border-radius: 10px;
  background: #fff;
  text-align: center;
}
#Revent .wu-ev__formulaLine {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
}
#Revent .wu-ev__formulaLine em { color: var(--ev-brand-d); font-style: normal; }
#Revent .wu-ev__formulaNote { margin: 0; color: var(--ev-ink-2); font-size: 12.5px; line-height: 1.8; }

/* =========================================================
   特長リスト（アイコン付き）
========================================================= */
#Revent .wu-ev__points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: wu-ev-pt;
}
#Revent .wu-ev__point {
  position: relative;
  padding: 24px 20px 20px;
  border: 1px solid var(--ev-line);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}
#Revent .wu-ev__point::before {
  counter-increment: wu-ev-pt;
  content: counter(wu-ev-pt, decimal-leading-zero);
  position: absolute;
  top: -6px;
  right: 6px;
  color: var(--ev-brand-l);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}
#Revent .wu-ev__pointT {
  position: relative;
  margin: 0 0 8px;
  color: var(--ev-brand-d);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}
#Revent .wu-ev__pointX {
  position: relative;
  margin: 0;
  color: var(--ev-ink-2);
  font-size: 13px;
  line-height: 1.85;
}

/* チェックリスト */
#Revent .wu-ev__checks { margin: 0; padding: 0; list-style: none; }
#Revent .wu-ev__checks li {
  position: relative;
  margin: 0 0 10px;
  padding: 0 0 0 26px;
  font-size: 13.5px;
  line-height: 1.85;
}
#Revent .wu-ev__checks li::before {
  content: "\f00c";
  position: absolute;
  top: 2px;
  left: 0;
  color: var(--ev-brand);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
}

/* お悩みリスト */
#Revent .wu-ev__worries {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
#Revent .wu-ev__worry {
  position: relative;
  padding: 16px 18px 16px 44px;
  border: 1px solid var(--ev-line);
  border-radius: 8px;
  background: var(--ev-soft);
  font-size: 13.5px;
  line-height: 1.8;
}
/* ？マークはFontAwesomeのサブセットに circle-question が無いためCSSで描く
   （使えるアイコン一覧は css/fontawesome-min.css を参照） */
#Revent .wu-ev__worry::before {
  content: "?";
  position: absolute;
  top: 16px;
  left: 15px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--ev-brand);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 19px;
  text-align: center;
}

/* =========================================================
   導入の流れ
========================================================= */
#Revent .wu-ev__flow { margin: 0; padding: 0; list-style: none; counter-reset: wu-ev-fl; }
#Revent .wu-ev__flow > li {
  position: relative;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 16px;
  padding: 0 0 24px;
}
#Revent .wu-ev__flow > li::before {
  counter-increment: wu-ev-fl;
  content: counter(wu-ev-fl);
  grid-column: 1;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ev-brand);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 34px;
  text-align: center;
}
#Revent .wu-ev__flow > li::after {
  content: "";
  position: absolute;
  top: 40px;
  bottom: 0;
  left: 17px;
  width: 1px;
  background: var(--ev-line);
}
#Revent .wu-ev__flow > li:last-child { padding-bottom: 0; }
#Revent .wu-ev__flow > li:last-child::after { display: none; }
#Revent .wu-ev__flowT {
  margin: 6px 0 6px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}
#Revent .wu-ev__flowX { margin: 0; color: var(--ev-ink-2); font-size: 13px; line-height: 1.85; }

/* =========================================================
   FAQ
========================================================= */
#Revent .wu-ev__faq { border: 1px solid var(--ev-line); border-radius: 8px; overflow: hidden; }
#Revent .wu-ev__faq details { border-bottom: 1px solid var(--ev-line); background: #fff; }
#Revent .wu-ev__faq details:last-child { border-bottom: none; }
#Revent .wu-ev__faq summary {
  position: relative;
  padding: 15px 46px 15px 46px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  cursor: pointer;
  list-style: none;
}
#Revent .wu-ev__faq summary::-webkit-details-marker { display: none; }
#Revent .wu-ev__faq summary::before {
  content: "Q";
  position: absolute;
  top: 14px;
  left: 18px;
  color: var(--ev-brand);
  font-size: 15px;
  font-weight: 700;
}
#Revent .wu-ev__faq summary::after {
  content: "\f078";
  position: absolute;
  top: 17px;
  right: 18px;
  color: var(--ev-ink-2);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 11px;
  transition: transform .18s;
}
#Revent .wu-ev__faq details[open] summary::after { transform: rotate(180deg); }
#Revent .wu-ev__faq summary:hover { background: var(--ev-soft); }
#Revent .wu-ev__faqA {
  position: relative;
  margin: 0;
  padding: 0 24px 18px 46px;
  color: var(--ev-ink-2);
  font-size: 13.5px;
  line-height: 1.9;
}
#Revent .wu-ev__faqA::before {
  content: "A";
  position: absolute;
  top: 0;
  left: 18px;
  color: var(--ev-ink-2);
  font-size: 15px;
  font-weight: 700;
}

/* =========================================================
   CTA
========================================================= */
#Revent .wu-ev__cta {
  margin: 46px 0 0;
  padding: 30px 32px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ev-brand-d) 0%, var(--ev-brand) 100%);
  color: #fff;
  text-align: center;
}
#Revent .wu-ev__ctaT {
  margin: 0 0 10px;
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.5;
}
#Revent .wu-ev__ctaX {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, .92);
  font-size: 13.5px;
  line-height: 1.85;
}
#Revent .wu-ev__ctaBtns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
#Revent .wu-ev__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 260px;
  padding: 15px 26px;
  border: 2px solid #fff;
  border-radius: 6px;
  background: #fff;
  color: var(--ev-brand-d);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .15s, background .15s, color .15s;
}
#Revent .wu-ev__btn:hover { opacity: .88; text-decoration: none; }
#Revent .wu-ev__btn--ghost { background: transparent; color: #fff; }
#Revent .wu-ev__btn--ghost:hover { background: rgba(255, 255, 255, .12); }

/* 本文中の小さめCTA */
#Revent .wu-ev__ctaMid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 30px 0 0;
  padding: 20px 24px;
  border: 1px solid var(--ev-brand);
  border-radius: 10px;
  background: var(--ev-brand-l);
}
#Revent .wu-ev__ctaMidT { margin: 0; font-size: 15px; font-weight: 700; line-height: 1.7; }
#Revent .wu-ev__ctaMidX { margin: 4px 0 0; color: var(--ev-ink-2); font-size: 12.5px; line-height: 1.7; }
#Revent .wu-ev__btnS {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 6px;
  background: var(--ev-brand);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s;
}
#Revent .wu-ev__btnS:hover { background: var(--ev-brand-d); text-decoration: none; }

/* =========================================================
   ページ間ナビ（子ページ下部・ハブへ戻る導線）
========================================================= */
#Revent .wu-ev__siblings { margin: 46px 0 0; }
#Revent .wu-ev__siblingsT {
  margin: 0 0 14px;
  color: var(--ev-ink-2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
}
#Revent .wu-ev__siblingList {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
#Revent .wu-ev__siblingList a {
  display: block;
  height: 100%;
  padding: 13px 15px;
  border: 1px solid var(--ev-line);
  border-radius: 8px;
  background: #fff;
  color: var(--ev-ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
  text-decoration: none;
  transition: border-color .15s, background .15s, color .15s;
}
#Revent .wu-ev__siblingList a:hover {
  border-color: var(--ev-brand);
  background: var(--ev-brand-l);
  color: var(--ev-brand-d);
}
#Revent .wu-ev__siblingList .is-cur a {
  border-color: var(--ev-brand);
  background: var(--ev-brand);
  color: #fff;
  cursor: default;
}
#Revent .wu-ev__backHub { margin: 22px 0 0; text-align: center; font-size: 13.5px; }
#Revent .wu-ev__backHub a { color: var(--ev-brand-d); font-weight: 700; }

/* =========================================================
   図版
========================================================= */
#Revent .wu-ev__fig { margin: 22px 0 0; }
#Revent .wu-ev__fig img {
  display: block;
  width: 100%;
  border: 1px solid var(--ev-line);
  border-radius: 8px;
}
#Revent .wu-ev__figCap {
  margin: 8px 0 0;
  color: var(--ev-ink-2);
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
}

#Revent .wu-ev__figs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin: 22px 0 0;
}
#Revent .wu-ev__figs figure { margin: 0; }
#Revent .wu-ev__figs img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--ev-line);
  border-radius: 8px;
}

/* 白バックの製品写真は切り抜かずに全体を見せる */
#Revent .wu-ev__figs--contain img {
  object-fit: contain;
  padding: 12px;
  background: #fff;
}

/* 本文左＋画像右の2カラム */
#Revent .wu-ev__split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}
#Revent .wu-ev__split--rev { grid-template-columns: 300px minmax(0, 1fr); }
#Revent .wu-ev__split figure { margin: 0; }
#Revent .wu-ev__split figure img {
  display: block;
  width: 100%;
  border: 1px solid var(--ev-line);
  border-radius: 8px;
}

/* =========================================================
   画像差し替え待ちのダミー
   （本番画像を images/ に入れたらこのクラスを外すだけ）
========================================================= */
#Revent .is-dummy { position: relative; }
#Revent .is-dummy::after {
  content: "仮画像";
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 2px 8px;
  border-radius: 3px;
  background: rgba(216, 74, 74, .88);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  pointer-events: none;
}

/* =========================================================
   レスポンシブ
========================================================= */
@media screen and (max-width: 1000px) {
  #Revent .wu-ev__cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #Revent .wu-ev__roles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #Revent .wu-ev__siblingList { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  #Revent .wu-ev__stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media screen and (max-width: 768px) {
  #Revent .wu-ev__hero { padding: 24px 18px 26px; }
  #Revent .wu-ev__heroWrap { display: block; }
  #Revent .wu-ev__heroPic { margin: 20px 0 0; }
  #Revent .wu-ev__title { font-size: 24px; }
  #Revent .wu-ev__lead { font-size: 14px; }

  #Revent .wu-ev__sec { margin-top: 36px; }
  #Revent .wu-ev__h2 { font-size: 19px; }
  #Revent .wu-ev__h2sub { margin-left: 0; }

  #Revent .wu-ev__plan { grid-template-columns: minmax(0, 1fr); }
  #Revent .wu-ev__planPic img { min-height: 0; aspect-ratio: 16 / 9; }
  #Revent .wu-ev__planBody { padding: 18px; }

  #Revent .wu-ev__split,
  #Revent .wu-ev__split--rev { grid-template-columns: minmax(0, 1fr); gap: 18px; }
  #Revent .wu-ev__split figure { order: 2; }

  #Revent .wu-ev__stats { grid-template-columns: minmax(0, 1fr); }
  #Revent .wu-ev__siblingList { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  #Revent .wu-ev__cta { margin-top: 36px; padding: 24px 18px; }
  #Revent .wu-ev__ctaT { font-size: 18px; }
  #Revent .wu-ev__btn { min-width: 0; width: 100%; }
  #Revent .wu-ev__ctaMid { display: block; }
  #Revent .wu-ev__ctaMid .wu-ev__btnS { margin-top: 14px; width: 100%; justify-content: center; }

  #Revent .wu-ev__formula { padding: 18px 14px; }
  #Revent .wu-ev__formulaLine { font-size: 15px; }
}

@media screen and (max-width: 560px) {
  #Revent .wu-ev__cards { grid-template-columns: minmax(0, 1fr); }
  #Revent .wu-ev__roles { grid-template-columns: minmax(0, 1fr); }
}
