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

/*mv*/
.mv {
  width: 100%;
  aspect-ratio: 1.83/1;
  position: relative;
  overflow: hidden;
}
.mv-bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv-logo {
  position: absolute;
  width: 53vw;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.mv-livers {
  position: absolute;
  width: 98vw;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.mv-text {
  position: absolute;
  width: 53vw;
  bottom: 5vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
/* style.css (main以降上書き) */

/* ===========================================
   Global Main Layout
=========================================== */
main {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* 背景コンテナ（固定） */
.global-bg-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background-color: #fff; /* ベースカラー */
  overflow: hidden;
}

/* 1. 動く光の玉（オーブ） */
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px); /* 強くぼかしてふわっとさせる */
  opacity: 0.6;
  animation: floatOrb 20s infinite ease-in-out;
}

/* ピンクの光（左上あたり） */
.bg-orb.pink {
  top: -10%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, #ffe0eb 0%, rgba(255, 255, 255, 0) 70%);
  animation-delay: 0s;
}

/* 水色の光（右下あたり） */
.bg-orb.blue {
  bottom: -10%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, #e0f4ff 0%, rgba(255, 255, 255, 0) 70%);
  animation-delay: -10s; /* 動きをずらす */
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, 50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

/* 2. 薄いグリッド（方眼）パターン */
/* Intro, Schedule, Infoの背景透明化はそのまま */
.intro,
.schedule,
.info {
  background: transparent !important;
  position: relative;
  z-index: 1;
}
/* ===========================================
   1. Intro Section (Pop Logo 14.45.08 Style)
=========================================== */
.intro {
  /* 余白たっぷり */
  padding: 120px 20px 150px;
  text-align: center;
}

.intro-inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

/* ポップロゴエリア */
.pop-logo-area {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* 少し傾けて楽しげに */
  transform: rotate(-3deg);
  /* 全体の影 */
  filter: drop-shadow(0 10px 0px rgba(0, 0, 0, 0.05));
}

/* 上段：アルファベット (交互カラー) */
.logo-row.top {
  display: flex;
  justify-content: center;
  gap: 1px;
  margin-bottom: -15px; /* 下の文字に被せる */
  z-index: 2;
}

.logo-row.top span {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 900;
  /* タイトルサイズを少し抑える */
  font-size: clamp(40px, 9vw, 80px);
  line-height: 1;
  -webkit-text-stroke: 8px #fff;
  paint-order: stroke fill;
}

/* 交互カラー設定 */
/* 水色文字 + ピンク影 */
.char-c1 {
  color: #bce2f8;
  filter: drop-shadow(4px 4px 0 #ff9ccb);
}
/* ピンク文字 + 水色影 */
.char-c2 {
  color: #ff9ccb;
  filter: drop-shadow(4px 4px 0 #9ce1ff);
}

/* 下段：メイン日本語 (ピンク統一) */
.logo-row.bottom {
  z-index: 3;
}
.char-main {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 8vw, 70px);
  color: #ff9ccb;
  -webkit-text-stroke: 8px #fff;
  paint-order: stroke fill;
  filter: drop-shadow(5px 5px 0 #ff70a6);
}

/* 本文エリア */
.body-area {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #444;
  margin-top: 50px;
}
.lead-text {
  font-size: clamp(16px, 4vw, 24px);
  margin-bottom: 30px;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
.x-mark {
  color: #ff9ccb;
  font-size: 1.2em;
  margin: 0 0.4em;
  font-weight: 900;
}
.big-message {
  display: inline-block;
  font-size: clamp(24px, 6vw, 40px);
  font-weight: 900;
  color: #ff70a6;
  background: #fff;
  padding: 15px 50px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(255, 112, 166, 0.2);
  letter-spacing: 0.05em;
}

/* ===========================================
   2. Schedule Section
=========================================== */
.schedule {
  padding: 0 20px 200px;
  text-align: center;
}

.schedule-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.schedule-ver {
  /* タイトルとカードの距離を広げる */
  margin-bottom: 120px;
}

/* --- カードリスト --- */
.match-list {
  display: flex;
  flex-direction: column;
  gap: 120px; /* カード間隔 */
}

/* カード周りの装飾：オフセットレイヤー */
.match-card {
  position: relative;
  background-color: #ffeef5; /* 薄いピンク */
  border: 4px solid #ff9ccb; /* ピンクの枠線 */
  border-radius: 30px;
  padding: 80px 20px 40px;
  /* 影 */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  /* 内部パターンはなし */
}

/* 日付バッジ */
.date-badge-pop {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  background: #ff70a6;
  padding: 8px 40px;
  border-radius: 50px;
  border: 4px solid #fff;
  box-shadow: 5px 5px 0 #bce2f8; /* 水色の影 */
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: 1.8rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 5px;
}
.date-badge-pop .month {
  font-size: 1.2em;
}
.date-badge-pop .day {
  font-size: 1.2em;
}
/* 既存の .date-badge-pop に曜日用のスタイルを追加 */

.date-badge-pop .weekday {
  font-size: 0.6em; /* 数字より少し小さく */
  margin-left: 8px; /* 日付との間に余白 */
  background: #fff; /* 白背景の丸に入れると可愛い */
  color: #ff70a6; /* 文字をピンクに反転 */
  padding: 2px 8px;
  border-radius: 20px;
  line-height: 1.4;
  transform: translateY(1px); /* 微調整 */
}

/* ===========================================
   Match Title (水色グラデーション版)
   日付(ピンク)と色を分けて、両方目立たせる
=========================================== */
.match-title {
  /* --- 配置 --- */
  display: table;
  margin: 0 auto 30px; /* 下に余白 */

  /* --- 色の変更：水色グラデーション --- */
  /* 日付がピンクなので、こちらは水色にして対比させる */
  background: linear-gradient(135deg, #a3eaff 0%, #6ecaf5 100%);
  color: #fff; /* 文字は白 */

  /* --- フォント --- */
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 900;
  font-size: clamp(20px, 5vw, 28px);
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.3;

  /* 文字の影（少し濃い青で読みやすく） */
  text-shadow: 2px 2px 0 rgba(0, 150, 255, 0.2);

  /* --- 形と装飾 --- */
  padding: 12px 40px;
  border-radius: 60px;

  /* --- 枠線と影 --- */
  border: 4px solid #fff;
  /* 影の色を「ピンク」にして、全体の統一感を出す */
  box-shadow: 6px 6px 0 #ff9ccb;

  /* 少し傾ける（日付と同じ角度で統一感を出すか、あえて逆にするかですが、同じ方が馴染みます） */
  transform: rotate(-2deg);

  position: relative;
  z-index: 5;
}

/* 対戦レイアウト */
.battle-box {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
}
.liver-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 画像：大きく表示 */
.liver-img {
  width: 100%;
  max-width: 360px; /* 大きく */
  aspect-ratio: 1/1;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

/* 背景の丸 */
.liver-img::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}
.liver-img.bg-pink::before {
  background: #ff9ccb;
}
.liver-img.bg-blue::before {
  background: #9ce1ff;
}

.liver-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.1));
}

/* 名前 */
.liver-name {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 5vw, 32px);
  margin-bottom: 15px;
  line-height: 1;
}
.liver-name span {
  display: block;
  -webkit-text-stroke: 6px #fff;
  paint-order: stroke fill;
}
.pink span {
  color: #ff9ccb;
  filter: drop-shadow(3px 3px 0 #ff70a6);
}
.blue span {
  color: #9ce1ff;
  filter: drop-shadow(3px 3px 0 #5ebef0);
}

.cross-divider {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  font-size: 4rem;
  color: #ddd;
  margin-bottom: 150px;
  line-height: 0;
}

.poco-btn {
  display: inline-block;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  background: #ffaa00;
  padding: 10px 30px;
  border-radius: 50px;
  transition: opacity 0.2s;
  letter-spacing: 0.05em;
  box-shadow: 0 5px 10px rgba(255, 170, 0, 0.2);
}
.poco-btn:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

/* ===========================================
   3. Info Section
=========================================== */
.info {
  padding: 0 20px 150px;
  text-align: center;
}
.info-inner {
  max-width: 800px;
  margin: 0 auto;
}
.info-container {
  background: #fff;
  border: 4px solid #ff9ccb;
  border-radius: 30px;
  padding: 60px 30px;
  box-shadow: 0 10px 40px rgba(255, 156, 203, 0.15);
}

.info-title {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 5vw, 40px);
  color: #ff70a6;
  margin-bottom: 30px;
  line-height: 1.4;
}
.info-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 4vw, 22px);
  color: #444;
  line-height: 1.8;
  margin-bottom: 30px;
}
.info-desc .highlight {
  color: #ff9ccb;
  background: linear-gradient(transparent 60%, #fff3cd 60%);
  padding: 0 5px;
}
.info-note {
  font-size: 0.85rem;
  color: #888;
  font-family: "Noto Sans JP", sans-serif;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  background: #fff;
  color: #aaa;
  font-size: 0.8rem;
  font-family: sans-serif;
}
/* ===========================================
   4. Background Decor (テイスト調整版)
   「白フチ＋パステル」でロゴと馴染ませる
=========================================== */
.floating-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  list-style: none;
  overflow: hidden; /* はみ出し防止 */
}

.decor {
  position: absolute;
  display: block;
  /* ロゴと同じ「白フチ」をつけるための影トリック */
  filter: drop-shadow(0 4px 10px rgba(255, 156, 203, 0.3));
  opacity: 0.8;
  animation: floatDecor 12s infinite ease-in-out;
}

/* --- モチーフの形 --- */

/* 1. キラキラ（✨） */
.decor.kira {
  width: 40px;
  height: 40px;
  background-color: currentColor;
  /* CSSでキラキラの形を作る */
  clip-path: polygon(
    50% 0%,
    61% 35%,
    100% 50%,
    61% 65%,
    50% 100%,
    39% 65%,
    0% 50%,
    39% 35%
  );
  /* 白フチをつける（box-shadowが効かないclip-path用の擬似要素テクニックの代わりに、今回はscaleで簡易表現せず、シンプルに塗りで可愛さを出す） */
}

/* 2. 丸（●） */
.decor.circle {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: currentColor;
  border: 4px solid #fff; /* 白フチ */
}

/* 3. ハート（♥） */
.decor.heart {
  width: 30px;
  height: 30px;
  background-color: currentColor;
  /* ハートの形 */
  clip-path: path(
    "M15,28.5 C15,28.5 2,19.5 2,10.5 C2,5.5 6,2.5 10,2.5 C12.5,2.5 14,4 15,5.5 C16,4 17.5,2.5 20,2.5 C24,2.5 28,5.5 28,10.5 C28,19.5 15,28.5 15,28.5 Z"
  );
}

/* 4. バツ（×）コラボ感 */
.decor.cross {
  width: 30px;
  height: 30px;
  position: relative;
}
.decor.cross::before,
.decor.cross::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 8px; /* 太め */
  background: currentColor;
  border: 2px solid #fff; /* 白フチ */
  border-radius: 10px;
}
.decor.cross::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.decor.cross::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* --- 色定義（ロゴと合わせる） --- */
.pink {
  color: #ff9ccb;
}
.blue {
  color: #9ce1ff;
}
.yellow {
  color: #ffe066;
}

/* サイズ調整 */
.sm {
  transform: scale(0.6);
  opacity: 0.6;
}

/* --- 配置と動き --- */
.floating-decor li:nth-child(1) {
  top: 10%;
  left: 8%;
  animation-delay: 0s;
  animation-duration: 14s;
}
.floating-decor li:nth-child(2) {
  top: 25%;
  right: 10%;
  animation-delay: -2s;
  animation-duration: 18s;
}
.floating-decor li:nth-child(3) {
  top: 60%;
  left: 5%;
  animation-delay: -5s;
  animation-duration: 15s;
}
.floating-decor li:nth-child(4) {
  top: 80%;
  right: 15%;
  animation-delay: -8s;
  animation-duration: 20s;
}
.floating-decor li:nth-child(5) {
  top: 40%;
  right: 30%;
  animation-delay: -3s;
  animation-duration: 16s;
}
.floating-decor li:nth-child(6) {
  top: 90%;
  left: 20%;
  animation-delay: -6s;
  animation-duration: 22s;
}

@keyframes floatDecor {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-30px) rotate(10deg) scale(1.1);
  }
}
/* ============================================
   LADIAS Link Container (Vivid Pop Ver.)
============================================ */

.ladias-link-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 80px auto 100px; /* 上下の余白 */
  position: relative;
  z-index: 10;
  font-family: "Noto Sans JP", sans-serif;
}

/* ----------------------------------
   1. 吹き出し（視認性アップ）
---------------------------------- */
.link-label {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
  padding: 10px 24px;
  background: #fff;
  /* 枠線を少し太く */
  border: 3px solid #ff4081;
  border-radius: 50px;

  font-size: 15px;
  font-weight: 800;
  color: #ff4081;
  letter-spacing: 0.05em;

  /* 影をつけて背景から浮かせる */
  box-shadow: 0 4px 10px rgba(255, 64, 129, 0.2);
}

/* 吹き出しのしっぽ */
.link-label::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 9px 8px 0;
  border-style: solid;
  border-color: #ff4081 transparent transparent transparent;
  z-index: 1;
}
.link-label::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 9px 8px 0;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  z-index: 2;
}

/* ----------------------------------
   2. ボタン（修正：埋もれないデザイン）
---------------------------------- */
.link-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between; /* 文字とアイコンを両端に配置 */
  text-decoration: none;
  width: 300px; /* 少し幅広に */
  height: 70px;
  padding: 0 10px 0 30px; /* 右側のpaddingを減らしてアイコンエリア確保 */
  border-radius: 60px;

  /* ★重要：背景を濃いグラデーションにする */
  background: linear-gradient(90deg, #ff5e9a, #bd34fe);

  /* ★重要：白フチをつける */
  border: 4px solid #ffffff;

  /* ★最重要：影のダブル使い
     1つ目(濃い紫): ボタンの厚み
     2つ目(薄い黒): 背景から浮かせるドロップシャドウ
  */
  box-shadow: 0 6px 0 #9c27b0, 0 15px 25px rgba(156, 39, 176, 0.3);

  color: #fff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.1em;
  transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden; /* 光沢のはみ出し防止 */
}

/* テキスト */
.btn-text {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.1); /* 文字にも少し影 */
}

/* アイコンの丸い背景 */
.btn-icon-circle {
  background: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bd34fe; /* アイコンの色 */
  font-weight: bold;
  font-size: 18px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1); /* 丸の中にも影 */
  z-index: 2;
  transition: transform 0.2s ease;
}

.arrow-icon {
  font-style: normal;
  line-height: 1;
  display: block;
}

/* ----------------------------------
   ホバーアクション
---------------------------------- */
.link-btn:hover {
  transform: translateY(4px); /* ボタン全体が沈む */
  /* 影が縮む */
  box-shadow: 0 2px 0 #9c27b0, 0 5px 10px rgba(156, 39, 176, 0.2);
}

.link-btn:hover .btn-icon-circle {
  transform: scale(1.1) rotate(15deg); /* アイコンだけ少し拡大＆回転 */
  color: #ff4081;
}

/* ----------------------------------
   キラキラ光るエフェクト
---------------------------------- */
.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  z-index: 1;
  animation: shineMove 3s infinite; /* 常にキラキラさせる */
}

@keyframes shineMove {
  0% {
    left: -100%;
  }
  20% {
    left: 200%;
  }
  100% {
    left: 200%;
  }
}
/* ===========================================
   5. SP Responsive (スマホの見え方調整)
=========================================== */
@media screen and (max-width: 768px) {
  /* MV：高さを確保して、キャラとロゴをしっかり見せる */
  .mv {
    width: 100%;
    aspect-ratio: auto;
    height: 100vh; /* 画面の75%を占有 */
    min-height: 600px;
  }

  /* 背景画像：見切れすぎないよう中心寄せ */
  .mv-bg {
    object-position: center top;
  }

  /* ロゴ：大きく、少し上へ */
  .mv-logo {
    width: 80vw;
    top: 12%;
  }

  /* ライバー：はみ出すくらい大きくして迫力を出す */
  .mv-livers {
    width: 140vw; /* 画面からはみ出させる */
    max-width: none;
    bottom: 0;
  }

  /* テキスト：キャラと被らないギリギリの位置 */
  .mv-text {
    width: 75vw;
    bottom: 15%; /* キャラの手前、少し上 */
  }

  /* Intro：余白調整 */
  .intro {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  /* Lead Textの改行調整（スマホで見やすく） */
  .lead-text br {
    display: block; /* 念のため */
  }

  /* Schedule：間延び防止 */
  .match-list {
    gap: 50px; /* カード同士を近づける */
  }
  .schedule-ver {
    margin-bottom: 60px;
  }

  /* カード内のレイアウト */
  .battle-box {
    gap: 0px; /* 横並び維持しつつ隙間ゼロ */
  }
  .liver-img {
    max-width: 200px; /* 少し小さく */
  }
  .cross-divider {
    font-size: 2rem;
    margin-bottom: 70px; /* 位置微調整 */
  }

  /* ボタンを押しやすく */
  .poco-btn {
    padding: 12px 20px;
    width: 100%; /* 横幅いっぱいに */
    max-width: 140px;
    text-align: center;
  }
  /* カードの後ろに敷く「ズレたピンクの板」 */
  .match-card::before {
    left: -4px;
  }
  .match-title {
    width: 90%;
    font-size: 1.1rem;
    padding: 10px 10px;
    margin-bottom: 25px;

    border-width: 3px;
    box-shadow: 4px 4px 0 #ff9ccb;
  }
}

@media screen and (max-width: 600px) {
  .date-badge-pop .weekday {
    margin-left: 5px;
    padding: 2px 6px;
    font-size: 0.55em;
  }
  .intro {
    padding-bottom: 100px;
  }
  .schedule {
    padding-bottom: 150px;
  }
  .battle-box {
    gap: 5px;
  }
  .liver-img {
    margin-bottom: 15px;
  }
  .cross-divider {
    font-size: 2.5rem;
    margin-bottom: 80px;
  }
  .match-card {
    padding: 60px 10px 30px;
  }
}
@media screen and (max-width: 576px) {
  .mv-logo {
    top: 8%;
  }
  .mv-text {
    bottom: initial;
    top: 30%;
    width: 85vw;
  }
}
@media screen and (max-width: 480px) {
  .mv {
    height: 82vh;
  }
  .mv-logo {
    top: 8%;
  }
  .mv-text {
    bottom: initial;
    top: 30%;
    width: 85vw;
  }
  .schedule {
    padding: 0 20px 150px;
  }
  .big-message {
    padding: 15px 20px;
  }
  .liver-name {
    font-size: clamp(22px, 5vw, 32px);
  }
  .logo-row.top {
    margin-bottom: 0;
  }
  .date-badge-pop {
    font-size: 1.5rem;
  }
  .mv-bg {
    object-position: bottom;
  }
  .link-btn {
    font-size: 18px;
  }
  .btn-icon-circle {
    width: 40px;
    height: 40px;
  }
  .link-label {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 400px) {
  .info-container {
    padding: 55px 20px;
  }
  .info-title {
    font-size: clamp(22px, 5vw, 40px);
  }
  .lead-text {
    display: flex;
    flex-direction: column;
    font-size: clamp(20px, 4vw, 24px);
  }
  .x-mark {
    margin: -10px 0;
  }
  .liver-name {
    font-size: clamp(20px, 5vw, 32px);
  }
}
