/* 6確 ホール攻略 v1.11.0 注目度表示 */

.k6-heat {
  --k6-heat-strong: #c0392b;
  --k6-heat-watch: #b7791f;
  --k6-heat-normal: #2f6f5e;
  --k6-heat-unknown: #6b7280;
  margin: 0 0 26px;
}

.k6-heat__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 600px) {
  .k6-heat__grid {
    grid-template-columns: 1fr;
  }
}

.k6-heat-card {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  padding: 16px 16px 14px;
  position: relative;
  overflow: hidden;
}

.k6-heat-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--k6-heat-unknown);
}

.k6-heat-card.is-strong::before { background: var(--k6-heat-strong); }
.k6-heat-card.is-watch::before { background: var(--k6-heat-watch); }
.k6-heat-card.is-normal::before { background: var(--k6-heat-normal); }

.k6-heat-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.k6-heat-card__day {
  font-size: 13px;
  font-weight: 700;
  color: #334155;
}

.k6-heat-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: var(--k6-heat-unknown);
  white-space: nowrap;
}

.k6-heat-badge.is-strong { background: var(--k6-heat-strong); }
.k6-heat-badge.is-watch { background: var(--k6-heat-watch); }
.k6-heat-badge.is-normal { background: var(--k6-heat-normal); }

/* v1.29.0 イベント期待度（S/A/B/C）をひと目で分かるチップにする */
.k6-heat-event-rank {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 0;
  padding: 7px 10px;
  border-radius: 10px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}

.k6-heat-event-rank__badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  background: #94a3b8;
}

.k6-heat-event-rank.is-rank-s .k6-heat-event-rank__badge { background: #dc2626; }
.k6-heat-event-rank.is-rank-a .k6-heat-event-rank__badge { background: #ea580c; }
.k6-heat-event-rank.is-rank-b .k6-heat-event-rank__badge { background: #2563eb; }
.k6-heat-event-rank.is-rank-c .k6-heat-event-rank__badge { background: #64748b; }

.k6-heat-event-rank.is-rank-s { background: #fef2f2; border-color: #fecaca; }
.k6-heat-event-rank.is-rank-a { background: #fff7ed; border-color: #fed7aa; }

.k6-heat-event-rank__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  font-size: 12px;
  font-weight: 700;
  color: #334155;
}

.k6-heat-event-rank__text strong {
  font-size: 13px;
}

.k6-heat-event-rank__text small {
  font-weight: 500;
  font-size: 11px;
  color: #64748b;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.k6-heat-score {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}

.k6-heat-score__value {
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  color: #0f172a;
}

.k6-heat-score__unit {
  font-size: 12px;
  color: #64748b;
}

.k6-heat-bar {
  height: 6px;
  border-radius: 999px;
  background: #eef2f7;
  overflow: hidden;
  margin-bottom: 12px;
}

.k6-heat-bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--k6-heat-normal);
}

.k6-heat-card.is-strong .k6-heat-bar span { background: var(--k6-heat-strong); }
.k6-heat-card.is-watch .k6-heat-bar span { background: var(--k6-heat-watch); }

.k6-heat-reasons {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.k6-heat-reason {
  display: block;
  font-size: 13px;
  line-height: 1.6;
  color: #334155;
}

.k6-heat-reason strong {
  display: inline-block;
  min-width: 84px;
  margin-right: 6px;
  padding: 1px 8px;
  border-radius: 6px;
  background: #f1f5f9;
  font-size: 11px;
  font-weight: 700;
  color: #475569;
  text-align: center;
}

.k6-heat-confidence {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  color: #64748b;
}

.k6-heat-note {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.7;
  color: #64748b;
}

/* 注力機種 */

.k6-focus-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.k6-focus-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
}

.k6-focus-item__name {
  display: block;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  color: #0f172a;
  margin-bottom: 6px;
}

.k6-focus-item__name a { color: inherit; text-decoration: none; }
.k6-focus-item__name a:hover { text-decoration: underline; }

.k6-focus-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 12px;
  color: #475569;
}

.k6-focus-item__meta span {
  background: #f1f5f9;
  border-radius: 6px;
  padding: 2px 8px;
}

.k6-focus-item__meta .is-plus { background: #e8f5ef; color: #1d7a4a; }
.k6-focus-item__meta .is-minus { background: #fdecea; color: #b3261e; }

/* ランキング（ショートコード） */

.k6-heat-rank { margin: 0 0 30px; }

.k6-heat-rank__head h2 {
  margin: 0 0 6px;
  font-size: 20px;
}

.k6-heat-rank__head p {
  margin: 0 0 14px;
  font-size: 12px;
  line-height: 1.7;
  color: #64748b;
}

.k6-heat-rank__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  counter-reset: k6heat;
}

.k6-heat-rank__item a {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid #e2e8f0;
  border-left-width: 4px;
  border-left-color: var(--k6-heat-unknown, #6b7280);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
  text-decoration: none;
  color: inherit;
}

.k6-heat-rank__item.is-strong a { border-left-color: #c0392b; }
.k6-heat-rank__item.is-watch a { border-left-color: #b7791f; }
.k6-heat-rank__item.is-normal a { border-left-color: #2f6f5e; }

.k6-heat-rank__no {
  font-size: 20px;
  font-weight: 800;
  color: #94a3b8;
  text-align: center;
}

.k6-heat-rank__name {
  display: block;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
  color: #0f172a;
}

.k6-heat-rank__city {
  display: inline-block;
  font-size: 11px;
  color: #64748b;
  margin-bottom: 4px;
}

.k6-heat-rank__body .k6-heat-reasons {
  gap: 3px;
}

.k6-heat-rank__score {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}

.k6-heat-score-value {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  color: #0f172a;
}

.k6-heat-empty {
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  padding: 22px;
  text-align: center;
  color: #64748b;
  font-size: 13px;
}

@media (max-width: 600px) {
  .k6-heat-rank__item a {
    grid-template-columns: 32px 1fr auto;
    gap: 8px;
    padding: 10px 12px;
  }

  .k6-heat-rank__name { font-size: 14px; }
  .k6-heat-score-value { font-size: 18px; }
  .k6-heat-reason { font-size: 12px; }
}

/* 6確オリジナルの店舗評価 */

.k6-editorial {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  padding: 18px 18px 16px;
}

.k6-editorial__grade {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  background: #f1f5f9;
  margin-bottom: 12px;
}

.k6-editorial__grade-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #64748b;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  line-height: 1;
}

.k6-editorial__grade.is-s .k6-editorial__grade-mark { background: #c0392b; }
.k6-editorial__grade.is-a .k6-editorial__grade-mark { background: #b7791f; }
.k6-editorial__grade.is-b .k6-editorial__grade-mark { background: #2f6f5e; }

.k6-editorial__grade-label {
  font-size: 13px;
  font-weight: 700;
  color: #334155;
}

.k6-editorial__summary {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.9;
  color: #1f2937;
}

.k6-editorial__block {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #eef2f7;
}

.k6-editorial__block h3 {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.k6-editorial__block p {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: #334155;
}

.k6-editorial__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.k6-editorial__list li {
  padding: 10px 12px;
  border-radius: 10px;
  background: #f8fafc;
  font-size: 14px;
  line-height: 1.7;
}

.k6-editorial__list strong {
  display: block;
  font-weight: 700;
  color: #0f172a;
}

.k6-editorial__list strong a { color: inherit; }

.k6-editorial__list span {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  color: #475569;
}

.k6-editorial__caution {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #fdf6ec;
  border: 1px solid #f0e0c4;
}

.k6-editorial__caution strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #946200;
  margin-bottom: 4px;
}

.k6-editorial__caution p {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: #6b5426;
}

.k6-editorial__updated {
  margin: 14px 0 0;
  font-size: 11px;
  color: #94a3b8;
}

/* 明後日以降の予定 */

.k6-heat-later {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.k6-heat-later a {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  color: inherit;
}

.k6-heat-later__date {
  font-size: 13px;
  font-weight: 700;
  color: #2f6f5e;
}

.k6-heat-later__hall {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.5;
}

.k6-heat-later__event {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .k6-heat-later a {
    grid-template-columns: 74px 1fr;
    gap: 8px;
  }

  .k6-heat-later__date { font-size: 12px; }
  .k6-heat-later__hall { font-size: 13px; }
}

/* v1.20.0 明日のホール選び - 判断優先UI */
.k6-decision-head {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin:22px 0 12px;
}
.k6-decision-head h3 { margin:2px 0 0; font-size:18px; line-height:1.35; color:#0f172a; }
.k6-decision-head__eyebrow { display:block; font-size:10px; font-weight:800; letter-spacing:.12em; color:#0f766e; }
.k6-decision-head__meta { font-size:11px; color:#64748b; }
.k6-decision-head.is-tomorrow { margin-top:28px; padding-top:18px; border-top:1px solid #e2e8f0; }

.k6-heat-rank__list.is-compact .k6-heat-rank__item a { padding-top:10px; padding-bottom:10px; }
.k6-heat-rank__one-reason { display:block; margin-top:3px; font-size:12px; line-height:1.55; color:#475569; }

.k6-tomorrow-picks {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}
.k6-tomorrow-card {
  position:relative;
  overflow:hidden;
  border:1px solid #dbe5e9;
  border-radius:16px;
  background:#fff;
  box-shadow:0 5px 18px rgba(15,23,42,.045);
}
.k6-tomorrow-card::before { content:""; position:absolute; inset:0 auto 0 0; width:4px; background:#64748b; }
.k6-tomorrow-card.is-strong::before { background:#c0392b; }
.k6-tomorrow-card.is-watch::before { background:#b7791f; }
.k6-tomorrow-card.is-normal::before { background:#2f6f5e; }
.k6-tomorrow-card__link { display:block; height:100%; padding:16px 16px 14px 18px; color:inherit; text-decoration:none; }
.k6-tomorrow-card__top { display:flex; align-items:center; gap:7px; margin-bottom:9px; }
.k6-tomorrow-card__rank { display:inline-flex; align-items:center; justify-content:center; width:28px; height:28px; border-radius:50%; background:#0f172a; color:#fff; font-size:13px; font-weight:800; }
.k6-tomorrow-card__score { margin-left:auto; color:#0f172a; font-size:24px; line-height:1; font-weight:850; }
.k6-tomorrow-card__score small { margin-left:2px; color:#94a3b8; font-size:10px; font-weight:600; }
.k6-tomorrow-card h4 { margin:0; font-size:16px; line-height:1.45; color:#0f172a; }
.k6-tomorrow-card__city { margin:2px 0 10px; font-size:11px; color:#64748b; }
.k6-tomorrow-event { padding:10px 11px; border-radius:11px; background:#f5faf9; border:1px solid #d9ece8; }
.k6-tomorrow-event__label { display:block; margin-bottom:2px; font-size:10px; font-weight:700; color:#0f766e; }
.k6-tomorrow-event strong { display:block; font-size:13px; line-height:1.45; color:#134e4a; }
.k6-tomorrow-event__chips { display:flex; flex-wrap:wrap; gap:5px; margin-top:6px; }
.k6-tomorrow-event__chips span { padding:2px 7px; border-radius:999px; background:#fff; border:1px solid #cde5df; font-size:10px; color:#475569; }
.k6-tomorrow-card__why { margin-top:11px; }
.k6-tomorrow-card__why-title { display:block; margin-bottom:5px; font-size:11px; font-weight:800; color:#334155; }
.k6-tomorrow-card__why ul { margin:0; padding:0; list-style:none; display:flex; flex-direction:column; gap:5px; }
.k6-tomorrow-card__why li { display:grid; grid-template-columns:auto 1fr; gap:6px; align-items:start; font-size:11px; line-height:1.5; color:#475569; }
.k6-tomorrow-card__why li strong { padding:1px 6px; border-radius:5px; background:#f1f5f9; color:#334155; font-size:10px; white-space:nowrap; }
.k6-tomorrow-card__footer { display:flex; align-items:center; flex-wrap:wrap; gap:6px 10px; margin-top:12px; padding-top:10px; border-top:1px solid #eef2f7; font-size:10px; color:#64748b; }
.k6-tomorrow-card__footer strong { margin-left:auto; color:#0f766e; font-size:11px; }

.k6-decision-more { margin-top:12px; border:1px solid #e2e8f0; border-radius:13px; background:#fff; overflow:hidden; }
.k6-decision-more__title { display:block; padding:9px 12px; border-bottom:1px solid #eef2f7; background:#f8fafc; font-size:11px; font-weight:800; color:#475569; }
.k6-decision-more__list { margin:0; padding:0; list-style:none; }
.k6-decision-more__list li + li { border-top:1px solid #eef2f7; }
.k6-decision-more__list a { display:grid; grid-template-columns:30px minmax(150px,1fr) minmax(120px,1.25fr) 42px; gap:9px; align-items:center; padding:9px 12px; text-decoration:none; color:inherit; }
.k6-decision-more__no { font-size:13px; font-weight:800; color:#94a3b8; text-align:center; }
.k6-decision-more__hall strong { display:block; font-size:12px; line-height:1.4; color:#0f172a; }
.k6-decision-more__hall small { display:block; margin-top:1px; font-size:10px; color:#94a3b8; }
.k6-decision-more__event { font-size:11px; color:#475569; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.k6-decision-more__score { font-size:16px; font-weight:850; color:#0f172a; text-align:right; }

@media (max-width:900px) {
  .k6-tomorrow-picks { grid-template-columns:1fr; }
  .k6-tomorrow-card__link { padding:14px 14px 13px 17px; }
}
@media (max-width:600px) {
  .k6-decision-head { align-items:flex-start; flex-direction:column; gap:3px; }
  .k6-decision-head__meta { display:none; }
  .k6-tomorrow-card__why li { grid-template-columns:1fr; gap:2px; }
  .k6-tomorrow-card__why li strong { width:max-content; }
  .k6-decision-more__list a { grid-template-columns:26px minmax(0,1fr) 36px; }
  .k6-decision-more__event { display:none; }
}

/* v1.20.2 今日ランキング - Top3を明確なランキングUIへ */
.k6-decision-head--today {
  margin-top: 24px;
}

.k6-today-ranking {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.k6-today-rank-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #dbe5e9;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(15, 23, 42, .05);
}

.k6-today-rank-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: #94a3b8;
}

.k6-today-rank-card.is-gold::before {
  background: linear-gradient(90deg, #b7791f, #e4b54c, #b7791f);
}

.k6-today-rank-card.is-silver::before {
  background: linear-gradient(90deg, #64748b, #cbd5e1, #64748b);
}

.k6-today-rank-card.is-bronze::before {
  background: linear-gradient(90deg, #9a5b2e, #c98a57, #9a5b2e);
}

.k6-today-rank-card > a {
  display: block;
  height: 100%;
  padding: 16px 16px 14px;
  color: inherit;
  text-decoration: none;
}

.k6-today-rank-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.k6-today-rank-card__medal {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  min-width: 58px;
  color: #334155;
}

.k6-today-rank-card__medal i {
  margin-right: 4px;
  color: #c69222;
  font-size: 15px;
}

.k6-today-rank-card__medal strong {
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
  color: #0f172a;
}

.k6-today-rank-card__medal small,
.k6-today-rank-card__score small {
  font-size: 10px;
  color: #94a3b8;
}

.k6-today-rank-card__score {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}

.k6-today-rank-card__score strong {
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  color: #0f172a;
}

.k6-today-rank-card h4 {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: #0f172a;
}

.k6-today-rank-card__city {
  margin: 2px 0 9px;
  font-size: 11px;
  color: #64748b;
}

.k6-today-rank-card__badge-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.k6-today-rank-card__confidence {
  font-size: 10px;
  color: #64748b;
}

.k6-today-rank-card__event {
  padding: 10px 11px;
  border: 1px solid #e4e9ef;
  border-radius: 11px;
  background: #f8fafc;
}

.k6-today-rank-card__event > span {
  display: block;
  margin-bottom: 2px;
  font-size: 10px;
  font-weight: 800;
  color: #64748b;
}

.k6-today-rank-card__event > strong {
  display: block;
  font-size: 13px;
  line-height: 1.45;
  color: #1e293b;
}

.k6-today-rank-card__event > small {
  display: block;
  margin-top: 3px;
  font-size: 10px;
  line-height: 1.5;
  color: #64748b;
}

.k6-today-rank-card__event.is-reason {
  background: #fbfaf6;
  border-color: #ece4cf;
}

.k6-today-rank-card__cta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #eef2f7;
  font-size: 11px;
  font-weight: 800;
  color: #0f766e;
}

.k6-decision-more--today {
  margin-top: 10px;
}

@media (max-width: 900px) {
  .k6-today-ranking {
    grid-template-columns: 1fr;
  }
}


/* v1.21.0 全国版前モバイル最終調整 */
@media (max-width: 720px) {
  .mm-hall-upcoming .mm-hall-section-head {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    align-items: start !important;
    gap: 8px !important;
  }

  .mm-hall-upcoming .mm-hall-section-head > div,
  .mm-hall-upcoming .mm-hall-section-desc {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
  }

  .mm-hall-upcoming .mm-hall-section-head__en {
    display: block;
    margin-bottom: 4px;
    font-size: 9px;
    line-height: 1.2;
    letter-spacing: .13em;
  }

  .mm-hall-upcoming .mm-hall-section-title {
    margin: 0 !important;
    width: 100% !important;
    max-width: none !important;
    font-size: 22px !important;
    line-height: 1.28 !important;
    letter-spacing: 0 !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
  }

  .mm-hall-upcoming .mm-hall-section-desc {
    margin: 0 !important;
    font-size: 12px !important;
    line-height: 1.65 !important;
    color: #64748b !important;
  }

  .k6-decision-head {
    margin-top: 18px;
  }

  .k6-decision-head h3 {
    font-size: 17px;
    line-height: 1.35;
    word-break: keep-all;
  }

  .k6-today-ranking,
  .k6-tomorrow-picks {
    gap: 10px;
  }

  .k6-today-rank-card,
  .k6-tomorrow-card {
    border-radius: 14px;
  }

  .k6-today-rank-card > a,
  .k6-tomorrow-card__link {
    padding: 14px 14px 13px !important;
  }

  .k6-today-rank-card__head {
    margin-bottom: 8px;
  }

  .k6-today-rank-card__medal strong {
    font-size: 22px;
  }

  .k6-today-rank-card__score strong {
    font-size: 25px;
  }

  .k6-today-rank-card h4,
  .k6-tomorrow-card h4 {
    font-size: 15px;
    line-height: 1.42;
  }

  .k6-today-rank-card__event,
  .k6-tomorrow-event {
    padding: 9px 10px;
  }

  .k6-today-rank-card__cta,
  .k6-tomorrow-card__footer {
    margin-top: 10px;
  }

  .k6-decision-more__list a {
    min-height: 54px;
  }
}

@media (max-width: 390px) {
  .mm-hall-upcoming .mm-hall-section-title {
    font-size: 20px !important;
  }
  .mm-hall-upcoming .mm-hall-section-desc {
    font-size: 11.5px !important;
  }
  .k6-today-rank-card > a,
  .k6-tomorrow-card__link {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}
