/*
========================================================
ファイル      : hlab-free-tools-index.css
ページ        : ひとり商いラボ 無料ツール一覧
対象URL       : /free/
用途          : 一般公開無料ツール一覧のデザイン
バージョン    : 1.9
最終更新日    : 2026-09-09
依存CSS       : hlab-common.css / hlab-account.css
========================================================
*/

.hlab-free-index {
  scroll-behavior: smooth;
}

.hlab-free-index__breadcrumb {
  max-width: 1120px;
  margin: 14px auto 0;
}

.hlab-free-index__breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #755b47;
  font-size: 12px;
  line-height: 1.6;
  font-weight: 750;
}

.hlab-free-index__breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hlab-free-index__breadcrumb li:not(:last-child)::after {
  content: ">";
  color: #b0967f;
}

.hlab-free-index__breadcrumb a {
  color: #6b4e38;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hlab-free-index__hero {
  grid-template-columns: minmax(0, 1fr) 230px;
  min-height: 350px;
}

.hlab-free-index__hero h1 {
  font-size: clamp(38px, 5.2vw, 60px);
  line-height: 1.25;
}

.hlab-free-index__label {
  display: inline-flex;
  min-height: 34px;
  margin: 0 0 12px;
  padding: 7px 14px;
  align-items: center;
  border: 1px solid rgba(24, 113, 74, 0.20);
  border-radius: 999px;
  color: #14633f;
  background: #e9f8ef;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 900;
}

.hlab-free-index__hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hlab-free-index__hero-points span,
.hlab-free-index__tool-points span {
  display: inline-flex;
  min-height: 32px;
  padding: 6px 11px;
  align-items: center;
  border: 1px solid rgba(121, 87, 57, 0.14);
  border-radius: 999px;
  color: #5f432f;
  background: #fffaf2;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 850;
}

.hlab-free-index__section,
.hlab-free-index__final-cta {
  box-sizing: border-box;
  max-width: 1120px;
  margin: 28px auto 0;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--hl-border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--hl-shadow);
}

.hlab-free-index__section h2,
.hlab-free-index__final-cta h2 {
  margin: 6px 0 10px;
  color: var(--hl-brown);
  font-size: clamp(25px, 4vw, 36px);
  line-height: 1.4;
  font-weight: 900;
}

.hlab-free-index__lead,
.hlab-free-index__final-cta p {
  color: #604a39;
  font-size: 16px;
  line-height: 1.85;
  font-weight: 700;
}

.hlab-free-index__tool-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  padding: 22px;
  border: 2px solid rgba(240, 138, 0, 0.30);
  border-radius: 22px;
  background: #fffaf2;
}

.hlab-free-index__tool-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #ef7b5d, #c84f35);
  font-size: 28px;
  font-weight: 900;
}

.hlab-free-index__tool-service {
  margin: 0 0 4px;
  color: #a63f2c;
  font-size: 13px;
  font-weight: 900;
}

.hlab-free-index__tool-copy h3 {
  margin: 0;
  color: var(--hl-brown);
  font-size: 24px;
  line-height: 1.4;
  font-weight: 900;
}

.hlab-free-index__tool-copy > p:not(.hlab-free-index__tool-service) {
  margin: 8px 0 0;
  color: #604a39;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 700;
}

.hlab-free-index__tool-points {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.hlab-free-index__trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.hlab-free-index__trust-grid article {
  display: grid;
  gap: 7px;
  padding: 18px;
  border: 1px solid rgba(121, 87, 57, 0.14);
  border-radius: 18px;
  background: #fffaf2;
}

.hlab-free-index__trust-grid strong {
  color: var(--hl-brown);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 900;
}

.hlab-free-index__trust-grid span {
  color: #67503e;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 700;
}

.hlab-free-index__final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

@media (max-width: 900px) {
  .hlab-free-index__tool-card {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .hlab-free-index__tool-card .hlab-button {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .hlab-free-index__breadcrumb {
    margin-top: 10px;
    padding: 0 4px;
  }

  .hlab-free-index__hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 24px 18px;
    border-radius: 24px;
  }

  .hlab-free-index__hero h1 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .hlab-free-index__hero .hlab-account__hero-visual {
    display: none;
  }

  .hlab-free-index__section,
  .hlab-free-index__final-cta {
    margin-top: 18px;
    padding: 20px 15px;
    border-radius: 22px;
  }

  .hlab-free-index__tool-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }

  .hlab-free-index__tool-icon {
    width: 50px;
    height: 50px;
  }

  .hlab-free-index__tool-card .hlab-button {
    width: 100%;
  }

  .hlab-free-index__trust-grid,
  .hlab-free-index__final-cta {
    grid-template-columns: 1fr;
  }
}

/* 2026-08-06 店舗イベントルーレット無料版 */
.hlab-free-index__tool-card--roulette {
  border-color: rgba(113, 104, 171, 0.30);
  background: #f8f5ff;
}

.hlab-free-index__tool-card--roulette .hlab-free-index__tool-icon {
  background: linear-gradient(145deg, #8d7dc4, #6552a0);
}

.hlab-free-index__tool-card--roulette .hlab-free-index__tool-service {
  color: #6552a0;
}

/* 2026-08-10 メルカリShops値下げ・値上げを対で表示 */
.hlab-free-index__mercari-pair {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(121, 87, 57, 0.16);
  border-radius: 22px;
  background: #fffdf8;
}

.hlab-free-index__pair-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: end;
  gap: 20px;
  margin-bottom: 16px;
}

.hlab-free-index__pair-heading h3 {
  margin: 0;
  color: var(--hl-brown);
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.45;
  font-weight: 900;
}

.hlab-free-index__pair-heading > p {
  margin: 0;
  color: #604a39;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 700;
}

.hlab-free-index__pair-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hlab-free-index__pair-grid .hlab-free-index__tool-card {
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: start;
  margin-top: 0;
  padding: 20px;
}

.hlab-free-index__pair-grid .hlab-free-index__tool-card .hlab-button {
  grid-column: 1 / -1;
  width: 100%;
}

.hlab-free-index__tool-kind {
  display: inline-flex;
  min-height: 28px;
  margin: 0 0 8px;
  padding: 4px 10px;
  align-items: center;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 900;
}

.hlab-free-index__tool-card--price-down {
  border-color: rgba(226, 94, 68, 0.32);
  background: #fff7f4;
}

.hlab-free-index__tool-card--price-down .hlab-free-index__tool-kind,
.hlab-free-index__tool-card--price-down .hlab-free-index__tool-icon {
  background: linear-gradient(145deg, #ef7b5d, #c84f35);
}

.hlab-free-index__tool-card--price-up {
  border-color: rgba(63, 145, 77, 0.34);
  background: #f5fcf5;
}

.hlab-free-index__tool-card--price-up .hlab-free-index__tool-kind,
.hlab-free-index__tool-card--price-up .hlab-free-index__tool-icon {
  background: linear-gradient(145deg, #72bc72, #3f914d);
}

.hlab-free-index__pair-note {
  margin: 14px 2px 0;
  color: #6a503b;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 750;
  text-align: center;
}

@media (max-width: 780px) {
  .hlab-free-index__pair-heading,
  .hlab-free-index__pair-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hlab-free-index__mercari-pair {
    padding: 15px;
  }

  .hlab-free-index__pair-grid .hlab-free-index__tool-card {
    grid-template-columns: 50px minmax(0, 1fr);
    padding: 16px;
  }

  .hlab-free-index__pair-grid .hlab-free-index__tool-copy h3 {
    font-size: 20px;
  }
}


/* ========================================================
   無料ツール一覧 PCコンパクト化 + 多色テーマ v2.0.8
   ======================================================== */
@media (min-width: 901px) {
  .hlab-free-index__breadcrumb { margin-top: 8px; }
  .hlab-public-intro {
    padding: 14px 18px !important;
    border-radius: 18px !important;
  }
  .hlab-public-intro__eyebrow { font-size: 9px !important; }
  .hlab-public-intro__title {
    margin-top: 2px !important;
    font-size: 18px !important;
    line-height: 1.35 !important;
  }
  .hlab-public-intro__description,
  .hlab-public-intro__note {
    font-size: 10px !important;
    line-height: 1.5 !important;
  }
  .hlab-public-intro__points {
    gap: 5px !important;
    margin-top: 8px !important;
  }
  .hlab-public-intro__points span {
    min-height: 24px !important;
    padding: 4px 8px !important;
    font-size: 9px !important;
  }
  .hlab-free-index__hero {
    grid-template-columns: minmax(0, 1fr) 125px;
    min-height: 178px;
    padding: 18px 24px;
  }
  .hlab-free-index__hero h1 {
    font-size: clamp(27px, 3.2vw, 36px);
    line-height: 1.23;
  }
  .hlab-free-index__label {
    min-height: 25px;
    margin-bottom: 7px;
    padding: 4px 10px;
    font-size: 10px;
  }
  .hlab-free-index__hero .hlab-account__lead {
    font-size: 12px;
    line-height: 1.55;
  }
  .hlab-free-index__hero-points {
    gap: 5px;
    margin-top: 9px;
  }
  .hlab-free-index__hero-points span,
  .hlab-free-index__tool-points span {
    min-height: 24px;
    padding: 4px 8px;
    font-size: 9px;
  }
  .hlab-free-index__hero .hlab-account__hero-visual img {
    width: min(120px, 100%);
  }
  .hlab-free-index__section,
  .hlab-free-index__final-cta {
    margin-top: 14px;
    padding: 16px 18px;
    border-radius: 20px;
  }
  .hlab-free-index__section h2,
  .hlab-free-index__final-cta h2 {
    margin: 3px 0 6px;
    font-size: 20px;
    line-height: 1.35;
  }
  .hlab-free-index__lead,
  .hlab-free-index__final-cta p {
    font-size: 11px;
    line-height: 1.55;
  }
  .hlab-free-index__mercari-pair {
    gap: 8px;
    margin-top: 10px;
  }
  .hlab-free-index__tool-card {
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 10px;
    margin-top: 10px;
    padding: 11px 12px;
    border-width: 1px;
    border-radius: 16px;
  }
  .hlab-free-index__mercari-pair .hlab-free-index__tool-card { margin-top: 0; }
  .hlab-free-index__tool-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .hlab-free-index__tool-service,
  .hlab-free-index__tool-kind {
    font-size: 9px;
    line-height: 1.3;
  }
  .hlab-free-index__tool-copy h3 {
    font-size: 15px;
    line-height: 1.3;
  }
  .hlab-free-index__tool-copy > p:not(.hlab-free-index__tool-service) {
    margin-top: 4px;
    font-size: 10px;
    line-height: 1.5;
  }
  .hlab-free-index__tool-points {
    gap: 4px;
    margin-top: 6px;
  }
  .hlab-free-index__tool-card .hlab-button {
    min-height: 32px;
    padding: 6px 10px;
    font-size: 10px;
    white-space: nowrap;
  }
  .hlab-free-index__trust-grid {
    gap: 8px;
    margin-top: 10px;
  }
  .hlab-free-index__trust-grid article {
    gap: 3px;
    padding: 10px 11px;
    border-radius: 14px;
  }
  .hlab-free-index__trust-grid strong { font-size: 13px; }
  .hlab-free-index__trust-grid span {
    font-size: 9px;
    line-height: 1.45;
  }
}
.hlab-free-index__tool-card--price-down {
  border-color: rgba(214, 93, 61, 0.34);
  background: linear-gradient(145deg, #fff0eb, #fff);
}
.hlab-free-index__tool-card--price-down .hlab-free-index__tool-icon,
.hlab-free-index__tool-card--price-down .hlab-free-index__tool-kind {
  background: linear-gradient(145deg, #ef7b5d, #c84f35);
  color: #fff;
}
.hlab-free-index__tool-card--price-up {
  border-color: rgba(74, 145, 82, 0.34);
  background: linear-gradient(145deg, #edf8eb, #fff);
}
.hlab-free-index__tool-card--price-up .hlab-free-index__tool-icon,
.hlab-free-index__tool-card--price-up .hlab-free-index__tool-kind {
  background: linear-gradient(145deg, #77b86f, #43884d);
  color: #fff;
}
.hlab-free-index__tool-card--roulette {
  background: linear-gradient(145deg, #f6f0ff, #fff);
}

/* ========================================================
   無料ツール一覧 UI size audit v2.0.13 / 2026-08-10
   ======================================================== */
@media (min-width: 901px) {
  .hlab-free-index__hero {
    min-height: 160px !important;
    padding: 16px 22px !important;
  }

  .hlab-free-index__hero h1 {
    font-size: clamp(27px, 2.7vw, 32px) !important;
    line-height: 1.23 !important;
  }

  .hlab-free-index__hero .hlab-account__hero-visual img {
    width: min(106px, 100%) !important;
  }

  .hlab-free-index__section h2,
  .hlab-free-index__final-cta h2 {
    font-size: 21px !important;
    line-height: 1.35 !important;
  }

  .hlab-free-index__tool-copy h3 {
    font-size: 15px !important;
  }
}

/* ========================================================
   無料ツール一覧 v8.59 階層統一 v1.1 / 2026-08-11
   ・ページ題名はフラット
   ・説明だけの大カードを減らす
   ・一覧 / 安全性 / 会員案内を意味のあるグループに整理
   ・無料ツール個別カードは操作対象なので維持
   ・値下げ=赤、値上げ=緑、イベント=紫の意味色は維持
   ・新規CSSは .hlab-free-index-page 配下だけ
======================================================== */

.hlab-free-index-page .hlab-public-intro {
  margin-top: 12px;
  padding: 10px 8px 12px;
  border: 0;
  border-bottom: 1px solid rgba(240, 138, 0, 0.18);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hlab-free-index-page .hlab-public-intro__title {
  margin-top: 2px;
  font-size: 15px;
  line-height: 1.45;
}

.hlab-free-index-page .hlab-public-intro__description,
.hlab-free-index-page .hlab-public-intro__note {
  font-size: 11px;
  line-height: 1.58;
}

.hlab-free-index-page .hlab-public-intro__points {
  margin-top: 8px;
}

.hlab-free-index-page .hlab-free-index__hero {
  grid-template-columns: minmax(0, 1fr) 145px;
  gap: 22px;
  min-height: 158px;
  margin: 0 0 20px;
  padding: 14px 8px 18px;
  border: 0;
  border-bottom: 2px solid rgba(240, 138, 0, 0.28);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.hlab-free-index-page .hlab-free-index__hero h1 {
  margin: 4px 0 6px;
  color: var(--hl-brown);
  font-size: clamp(30px, 3.5vw, 38px);
  line-height: 1.24;
}

.hlab-free-index-page .hlab-free-index__hero .hlab-account__lead {
  max-width: 760px;
  font-size: 13px;
  line-height: 1.62;
}

.hlab-free-index-page
  .hlab-free-index__hero
  .hlab-account__hero-visual img {
  width: min(104px, 100%);
  filter: drop-shadow(0 7px 10px rgba(74, 36, 20, 0.07));
}

.hlab-free-index-page .hlab-free-index__label {
  min-height: 28px;
  margin-bottom: 7px;
  padding: 5px 10px;
  font-size: 10px;
}

.hlab-free-index-page .hlab-free-index__hero-points {
  gap: 5px;
  margin-top: 10px;
}

.hlab-free-index-page .hlab-free-index__hero-points span,
.hlab-free-index-page .hlab-free-index__tool-points span {
  min-height: 25px;
  padding: 4px 8px;
  font-size: 9px;
}

.hlab-free-index-page .hlab-free-index__section {
  position: relative;
  max-width: 1120px;
  margin: 0 auto 22px;
  padding: 14px;
  border-top: 5px solid #f08a00;
  border-right: 2px solid rgba(240, 138, 0, 0.38);
  border-bottom: 2px solid rgba(240, 138, 0, 0.38);
  border-left: 2px solid rgba(240, 138, 0, 0.38);
  border-radius: 26px;
  background:
    linear-gradient(
      145deg,
      rgba(240, 138, 0, 0.070) 0%,
      rgba(240, 138, 0, 0.030) 48%,
      rgba(240, 138, 0, 0) 100%
    ),
    linear-gradient(180deg, #fff5e8 0%, #f9ead4 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 8px 20px rgba(105, 63, 24, 0.055);
}

.hlab-free-index-page .hlab-free-index__section::before {
  position: absolute;
  top: -5px;
  left: 28px;
  width: 84px;
  height: 5px;
  border-radius: 0 0 6px 6px;
  content: "";
  background: #ffd166;
}

.hlab-free-index-page .hlab-free-index__section > .hlab-account__eyebrow {
  margin: 3px 7px 0;
}

.hlab-free-index-page .hlab-free-index__section > h2 {
  margin: 3px 7px 5px;
  color: #b86800;
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.36;
}

.hlab-free-index-page .hlab-free-index__section > .hlab-free-index__lead {
  margin: 0 7px 12px;
  font-size: 11px;
  line-height: 1.6;
}

.hlab-free-index-page .hlab-free-index__mercari-pair {
  margin-top: 11px;
  padding: 13px;
  border: 1px solid rgba(106, 59, 34, 0.10);
  border-radius: 18px;
  background: linear-gradient(180deg, #fffdf9 0%, #fff8ef 100%);
  box-shadow: none;
}

.hlab-free-index-page .hlab-free-index__pair-heading {
  gap: 16px;
  margin-bottom: 11px;
}

.hlab-free-index-page .hlab-free-index__pair-heading h3 {
  font-size: clamp(18px, 2.2vw, 22px);
}

.hlab-free-index-page .hlab-free-index__pair-heading > p {
  font-size: 11px;
  line-height: 1.6;
}

.hlab-free-index-page .hlab-free-index__pair-grid {
  gap: 11px;
}

.hlab-free-index-page .hlab-free-index__tool-card {
  gap: 12px;
  margin-top: 11px;
  padding: 16px;
  border-radius: 18px;
  box-shadow: none;
}

.hlab-free-index-page
  .hlab-free-index__pair-grid
  .hlab-free-index__tool-card {
  grid-template-columns: 52px minmax(0, 1fr);
  padding: 15px;
}

.hlab-free-index-page .hlab-free-index__tool-icon {
  width: 48px;
  height: 48px;
  font-size: 22px;
}

.hlab-free-index-page .hlab-free-index__tool-copy h3 {
  font-size: 19px;
  line-height: 1.4;
}

.hlab-free-index-page
  .hlab-free-index__tool-copy
  > p:not(.hlab-free-index__tool-service) {
  margin-top: 5px;
  font-size: 11px;
  line-height: 1.65;
}

.hlab-free-index-page .hlab-free-index__tool-kind,
.hlab-free-index-page .hlab-free-index__tool-service {
  font-size: 10px;
}

.hlab-free-index-page .hlab-free-index__pair-note {
  margin-top: 10px;
  font-size: 10px;
  line-height: 1.6;
}

.hlab-free-index-page .hlab-free-index__trust-grid {
  gap: 11px;
  margin-top: 11px;
}

.hlab-free-index-page .hlab-free-index__trust-grid article {
  padding: 15px;
  border: 1px solid rgba(240, 138, 0, 0.16);
  border-radius: 18px;
  background: linear-gradient(180deg, #fffdf9 0%, #fff8ef 100%);
}

.hlab-free-index-page .hlab-free-index__trust-grid strong {
  font-size: 14px;
}

.hlab-free-index-page .hlab-free-index__trust-grid span {
  font-size: 11px;
  line-height: 1.62;
}

.hlab-free-index-page .hlab-free-index__final-cta {
  position: relative;
  max-width: 1120px;
  margin: 0 auto 22px;
  padding: 16px;
  border-top: 5px solid #8b63b6;
  border-right: 2px solid rgba(139, 99, 182, 0.30);
  border-bottom: 2px solid rgba(139, 99, 182, 0.30);
  border-left: 2px solid rgba(139, 99, 182, 0.30);
  border-radius: 24px;
  background:
    linear-gradient(
      145deg,
      rgba(139, 99, 182, 0.045) 0%,
      rgba(139, 99, 182, 0.014) 52%,
      rgba(139, 99, 182, 0) 100%
    ),
    linear-gradient(180deg, #fffaf4 0%, #fff5eb 100%);
  box-shadow: none;
}

.hlab-free-index-page .hlab-free-index__final-cta h2 {
  margin: 3px 0 5px;
  color: #6e4a98;
  font-size: clamp(19px, 2.2vw, 23px);
}

.hlab-free-index-page .hlab-free-index__final-cta p {
  font-size: 11px;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .hlab-free-index-page .hlab-public-intro {
    padding: 9px 4px 11px;
  }

  .hlab-free-index-page .hlab-free-index__hero {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
    margin-bottom: 16px;
    padding: 12px 4px 16px;
    border: 0;
    border-bottom: 2px solid rgba(240, 138, 0, 0.24);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .hlab-free-index-page .hlab-free-index__hero .hlab-account__hero-visual {
    display: grid;
    order: -1;
  }

  .hlab-free-index-page
    .hlab-free-index__hero
    .hlab-account__hero-visual img {
    width: 76px;
    max-width: 76px;
  }

  .hlab-free-index-page .hlab-free-index__hero h1 {
    font-size: clamp(28px, 8.3vw, 35px);
  }

  .hlab-free-index-page .hlab-free-index__section {
    padding: 8px;
    border-top-width: 4px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-radius: 18px;
  }

  .hlab-free-index-page .hlab-free-index__section::before {
    top: -4px;
    left: 20px;
    width: 68px;
    height: 4px;
  }

  .hlab-free-index-page .hlab-free-index__mercari-pair {
    padding: 10px;
    border-radius: 15px;
  }

  .hlab-free-index-page .hlab-free-index__tool-card,
  .hlab-free-index-page
    .hlab-free-index__pair-grid
    .hlab-free-index__tool-card {
    grid-template-columns: 1fr;
    padding: 14px;
    border-radius: 15px;
  }

  .hlab-free-index-page .hlab-free-index__final-cta {
    grid-template-columns: 1fr;
    padding: 13px;
    border-top-width: 4px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-radius: 18px;
  }
}



/* ========================================================
   2026-08-14 v1.2 無料ツール一覧：スマホ上部をコンパクト化
   PC表示は変更しない。
======================================================== */
.hlab-free-index__nav-label--mobile {
  display: none;
}

@media (max-width: 640px) {
  .hlab-free-index .hlab-account__top-inner {
    min-height: 54px;
    gap: 8px;
  }

  .hlab-free-index .hlab-account__logo {
    width: 126px;
    flex: 0 0 126px;
  }

  .hlab-free-index .hlab-account__top-actions {
    gap: 5px;
  }

  .hlab-free-index .hlab-account__top-actions a {
    min-height: 32px;
    padding: 5px 9px;
    font-size: 10px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .hlab-free-index__nav-label--desktop {
    display: none;
  }

  .hlab-free-index__nav-label--mobile {
    display: inline;
  }

  .hlab-free-index .hlab-account__page {
    padding-top: 14px;
  }

  .hlab-free-index__breadcrumb {
    margin-top: 4px;
  }

  .hlab-free-index .hlab-public-intro {
    gap: 11px;
    margin: 10px 0 14px;
    padding: 14px;
    border-radius: 18px;
  }

  .hlab-free-index .hlab-public-intro__eyebrow {
    margin-bottom: 4px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .hlab-free-index .hlab-public-intro__title {
    font-size: 18px;
    line-height: 1.45;
  }

  .hlab-free-index .hlab-public-intro__description {
    margin-top: 7px;
    font-size: 13px;
    line-height: 1.65;
  }

  .hlab-free-index .hlab-public-intro__note {
    display: none;
  }

  .hlab-free-index .hlab-public-intro__points {
    gap: 5px;
    margin-top: 9px;
  }

  .hlab-free-index .hlab-public-intro__points span {
    min-height: 27px;
    padding: 4px 8px;
    font-size: 10.5px;
    line-height: 1.3;
  }

  .hlab-free-index .hlab-public-intro > .hlab-button {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .hlab-free-index__hero {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .hlab-free-index__label {
    min-height: 28px;
    margin-bottom: 7px;
    padding: 5px 10px;
    font-size: 11px;
  }

  .hlab-free-index__hero h1 {
    margin-top: 5px;
    font-size: clamp(27px, 8.5vw, 35px);
  }

  .hlab-free-index__hero .hlab-account__lead {
    font-size: 13px;
    line-height: 1.65;
  }

  .hlab-free-index__hero-points {
    gap: 5px;
    margin-top: 10px;
  }

  .hlab-free-index__hero-points span {
    min-height: 27px;
    padding: 4px 8px;
    font-size: 10.5px;
  }
}

/* ========================================================
   2026-08-14 v1.3 無料ツール一覧：スマホ上部の装飾余白を解消
   ラボ紹介直後に無料ツール見出しが続くよう、スマホでは
   無料ツールヒーローの装飾ビジュアルを省略する。
   PC表示は変更しない。
======================================================== */
@media (max-width: 640px) {
  .hlab-free-index-page .hlab-free-index__hero {
    gap: 0;
    padding-top: 6px;
  }

  .hlab-free-index-page
    .hlab-free-index__hero
    .hlab-account__hero-visual {
    display: none;
  }
}

/* ========================================================
   2026-08-14 v1.4 無料ツール一覧：スマホ見出し折返し調整
   「事業に役立つ無料ツール」が末尾1文字だけ次行へ落ちないよう、
   スマホのみ見出しサイズを微調整する。PC表示は変更しない。
======================================================== */
@media (max-width: 640px) {
  .hlab-free-index-page .hlab-free-index__hero h1 {
    font-size: clamp(26px, 7vw, 30px);
    line-height: 1.28;
  }
}

/* ========================================================
   無料ツール一覧 カード全体リンク v2.0.14 / 2026-08-20
   カード面全体を入口として扱い、CTAは視覚的な案内として残す。
   ======================================================== */
.hlab-free-index-page .hlab-free-index__tool-card--clickable {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.hlab-free-index-page .hlab-free-index__tool-card--clickable:visited {
  color: inherit;
}

.hlab-free-index-page .hlab-free-index__tool-card--clickable:hover {
  color: inherit;
  text-decoration: none;
  transform: translateY(-2px);
  border-color: rgba(240, 138, 0, 0.58);
  box-shadow: 0 12px 26px rgba(95, 62, 31, 0.10);
}

.hlab-free-index-page .hlab-free-index__tool-card--price-down:hover {
  border-color: rgba(214, 93, 61, 0.62);
}

.hlab-free-index-page .hlab-free-index__tool-card--price-up:hover {
  border-color: rgba(74, 145, 82, 0.62);
}

.hlab-free-index-page .hlab-free-index__tool-card--roulette:hover {
  border-color: rgba(139, 99, 182, 0.58);
}

.hlab-free-index-page .hlab-free-index__tool-card--clickable:focus-visible {
  outline: 3px solid rgba(240, 138, 0, 0.42);
  outline-offset: 4px;
  box-shadow: 0 12px 26px rgba(95, 62, 31, 0.12);
}

.hlab-free-index-page .hlab-free-index__tool-card--clickable .hlab-free-index__tool-card-cta {
  pointer-events: none;
}

.hlab-free-index-page .hlab-free-index__tool-card--roulette .hlab-free-index__tool-card-cta {
  min-width: 190px;
}

.hlab-free-index-page .hlab-free-index__tool-card--clickable:hover .hlab-free-index__tool-card-cta {
  filter: brightness(0.97);
}

@media (max-width: 640px) {
  .hlab-free-index-page .hlab-free-index__tool-card--clickable {
    -webkit-tap-highlight-color: rgba(240, 138, 0, 0.10);
  }

  .hlab-free-index-page .hlab-free-index__tool-card--clickable:hover {
    transform: none;
    box-shadow: none;
  }

  .hlab-free-index-page .hlab-free-index__tool-card--clickable .hlab-free-index__tool-card-cta,
  .hlab-free-index-page .hlab-free-index__tool-card--roulette .hlab-free-index__tool-card-cta {
    width: 100%;
    min-width: 0;
  }
}

/* 2026-08-30 メルカリShops CSV分析ツール */
.hlab-free-index__tool-card--analysis {
  border-color: rgba(78, 135, 75, 0.30);
  background: #f4fbef;
}
.hlab-free-index__tool-card--analysis .hlab-free-index__tool-icon {
  background: linear-gradient(145deg, #7fb05e, #4f7f42);
}
.hlab-free-index__tool-card--analysis .hlab-free-index__tool-service {
  color: #4f7f42;
}


/* ========================================================
   2026-09-08 v1.4 無料公開 / 会員利用 比較正本
   Google等が個別ツールの仕様を全体共通仕様と誤認しないよう、
   機能・保存・分析範囲はツールごとに異なることを明示する。
======================================================== */
.hlab-free-index-page .hlab-free-index__compare-table-wrap {
  margin: 13px 7px 0;
  overflow-x: auto;
  border: 1px solid rgba(240, 138, 0, 0.18);
  border-radius: 16px;
  background: #fffdf9;
}

.hlab-free-index-page .hlab-free-index__compare-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  table-layout: fixed;
}

.hlab-free-index-page .hlab-free-index__compare-table th,
.hlab-free-index-page .hlab-free-index__compare-table td {
  padding: 12px 14px;
  border-right: 1px solid rgba(121, 87, 57, 0.10);
  border-bottom: 1px solid rgba(121, 87, 57, 0.10);
  color: #604a39;
  font-size: 11px;
  line-height: 1.62;
  vertical-align: top;
  text-align: left;
}

.hlab-free-index-page .hlab-free-index__compare-table th:last-child,
.hlab-free-index-page .hlab-free-index__compare-table td:last-child {
  border-right: 0;
}

.hlab-free-index-page .hlab-free-index__compare-table tbody tr:last-child th,
.hlab-free-index-page .hlab-free-index__compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.hlab-free-index-page .hlab-free-index__compare-table thead th {
  color: #7a4800;
  background: #fff1d8;
  font-size: 12px;
  font-weight: 900;
}

.hlab-free-index-page .hlab-free-index__compare-table thead th:first-child {
  width: 22%;
}

.hlab-free-index-page .hlab-free-index__compare-table tbody th {
  color: var(--hl-brown);
  background: #fff8ef;
  font-weight: 900;
}

.hlab-free-index-page .hlab-free-index__compare-note {
  margin: 12px 7px 0;
  padding: 11px 13px;
  border-left: 4px solid #f08a00;
  border-radius: 0 12px 12px 0;
  color: #654a36;
  background: #fff9ef;
  font-size: 11px;
  line-height: 1.68;
  font-weight: 750;
}

@media (max-width: 640px) {
  .hlab-free-index-page .hlab-free-index__compare-table-wrap {
    margin: 10px 4px 0;
    border-radius: 13px;
  }

  .hlab-free-index-page .hlab-free-index__compare-table {
    min-width: 620px;
  }

  .hlab-free-index-page .hlab-free-index__compare-table th,
  .hlab-free-index-page .hlab-free-index__compare-table td {
    padding: 10px 11px;
    font-size: 10.5px;
  }

  .hlab-free-index-page .hlab-free-index__compare-note {
    margin: 10px 4px 0;
    padding: 10px 11px;
    font-size: 10.5px;
  }
}

/* ========================================================
   2026-09-08 v1.5 PC情報階層・一覧性の基準適用
   ・縦＝順序、横＝同列の選択肢
   ・大中小で主従を表現
   ・文字を小さくせず、縦積みと余白を整理
   ・スマホ表示は従来構成を基本維持
======================================================== */
.hlab-free-index__tool-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 12px;
}

.hlab-free-index__tool-service--desktop {
  display: none;
}

.hlab-free-index__tools-note {
  margin: 12px 4px 0;
  color: #6a503b;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 750;
}

@media (min-width: 901px) {
  /* 上部：ページ目的を大、ラボ説明を小として同じ視野に収める */
  .hlab-free-index-page .hlab-free-index__overview {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.82fr);
    grid-template-areas: "hero intro";
    gap: 16px;
    align-items: stretch;
    margin: 12px 0 18px;
  }

  .hlab-free-index-page .hlab-free-index__overview > .hlab-free-index__hero {
    grid-area: hero;
    min-height: 236px !important;
    margin: 0 !important;
    padding: 24px 26px !important;
    grid-template-columns: minmax(0, 1fr) 128px !important;
    gap: 20px !important;
    border: 1px solid rgba(240, 138, 0, 0.24) !important;
    border-left: 5px solid #f08a00 !important;
    border-radius: 22px !important;
    background: linear-gradient(145deg, #fffaf2 0%, #fff 100%) !important;
    box-shadow: 0 8px 20px rgba(105, 63, 24, 0.055) !important;
  }

  .hlab-free-index-page .hlab-free-index__overview > .hlab-public-intro {
    grid-area: intro;
    grid-template-columns: 1fr !important;
    align-content: start;
    gap: 14px !important;
    margin: 0 !important;
    padding: 20px !important;
    border: 1px solid rgba(121, 87, 57, 0.14) !important;
    border-radius: 20px !important;
    background: #fff !important;
    box-shadow: none !important;
  }

  .hlab-free-index-page .hlab-free-index__overview .hlab-public-intro__eyebrow {
    margin-bottom: 5px !important;
    font-size: 11px !important;
  }

  .hlab-free-index-page .hlab-free-index__overview .hlab-public-intro__title {
    margin-top: 0 !important;
    font-size: 18px !important;
    line-height: 1.45 !important;
  }

  .hlab-free-index-page .hlab-free-index__overview .hlab-public-intro__description,
  .hlab-free-index-page .hlab-free-index__overview .hlab-public-intro__note {
    margin-top: 7px !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
  }

  .hlab-free-index-page .hlab-free-index__overview .hlab-public-intro__points {
    gap: 6px !important;
    margin-top: 10px !important;
  }

  .hlab-free-index-page .hlab-free-index__overview .hlab-public-intro__points span {
    min-height: 30px !important;
    padding: 5px 9px !important;
    font-size: 12px !important;
  }

  .hlab-free-index-page .hlab-free-index__overview .hlab-public-intro > .hlab-button {
    width: 100%;
    min-width: 0;
    min-height: 38px;
    padding: 8px 12px;
    font-size: 13px;
  }

  .hlab-free-index-page .hlab-free-index__overview .hlab-free-index__hero h1 {
    margin: 5px 0 8px !important;
    font-size: clamp(32px, 3.2vw, 40px) !important;
    line-height: 1.24 !important;
  }

  .hlab-free-index-page .hlab-free-index__overview .hlab-free-index__label {
    min-height: 30px !important;
    margin-bottom: 7px !important;
    padding: 5px 11px !important;
    font-size: 12px !important;
  }

  .hlab-free-index-page .hlab-free-index__overview .hlab-account__lead {
    font-size: 15px !important;
    line-height: 1.65 !important;
  }

  .hlab-free-index-page .hlab-free-index__overview .hlab-free-index__hero-points {
    gap: 6px !important;
    margin-top: 12px !important;
  }

  .hlab-free-index-page .hlab-free-index__overview .hlab-free-index__hero-points span {
    min-height: 30px !important;
    padding: 5px 9px !important;
    font-size: 12px !important;
  }

  .hlab-free-index-page
    .hlab-free-index__overview
    .hlab-free-index__hero
    .hlab-account__hero-visual img {
    width: min(118px, 100%) !important;
  }

  /* 主選択肢：4ツールを同列の中カードとして2列表示 */
  .hlab-free-index-page .hlab-free-index__section {
    margin-bottom: 18px;
    padding: 18px 20px;
  }

  .hlab-free-index-page .hlab-free-index__section > h2 {
    margin: 4px 7px 6px;
    font-size: clamp(23px, 2.3vw, 27px);
  }

  .hlab-free-index-page .hlab-free-index__section > .hlab-free-index__lead {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.65;
  }

  .hlab-free-index-page .hlab-free-index__tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
  }

  .hlab-free-index-page .hlab-free-index__tool-grid > .hlab-free-index__mercari-pair,
  .hlab-free-index-page .hlab-free-index__tool-grid .hlab-free-index__pair-grid {
    display: contents;
  }

  .hlab-free-index-page .hlab-free-index__tool-grid .hlab-free-index__pair-heading,
  .hlab-free-index-page .hlab-free-index__tool-grid .hlab-free-index__pair-note {
    display: none;
  }

  .hlab-free-index-page .hlab-free-index__tool-grid .hlab-free-index__tool-service--desktop {
    display: inline-flex;
  }

  .hlab-free-index-page .hlab-free-index__tool-grid .hlab-free-index__tool-card {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    grid-template-rows: auto 1fr auto;
    align-content: start;
    align-items: start;
    gap: 10px 14px;
    min-height: 246px;
    margin: 0;
    padding: 18px;
    border-radius: 18px;
  }

  .hlab-free-index-page .hlab-free-index__tool-grid .hlab-free-index__tool-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .hlab-free-index-page .hlab-free-index__tool-grid .hlab-free-index__tool-service,
  .hlab-free-index-page .hlab-free-index__tool-grid .hlab-free-index__tool-kind {
    display: inline-flex;
    margin: 0 6px 5px 0;
    font-size: 11px;
    line-height: 1.35;
  }

  .hlab-free-index-page .hlab-free-index__tool-grid .hlab-free-index__tool-copy h3 {
    margin-top: 1px;
    font-size: 19px !important;
    line-height: 1.4;
  }

  .hlab-free-index-page
    .hlab-free-index__tool-grid
    .hlab-free-index__tool-copy
    > p:not(.hlab-free-index__tool-service):not(.hlab-free-index__tool-kind) {
    margin-top: 7px;
    font-size: 14px;
    line-height: 1.65;
  }

  .hlab-free-index-page .hlab-free-index__tool-grid .hlab-free-index__tool-points {
    gap: 5px;
    margin-top: 10px;
  }

  .hlab-free-index-page .hlab-free-index__tool-grid .hlab-free-index__tool-points span {
    min-height: 28px;
    padding: 5px 8px;
    font-size: 11.5px;
  }

  .hlab-free-index-page .hlab-free-index__tool-grid .hlab-free-index__tool-card-cta {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 40px;
    padding: 8px 12px;
    font-size: 13px;
  }

  .hlab-free-index-page .hlab-free-index__tools-note {
    margin: 12px 6px 0;
    font-size: 13px;
    line-height: 1.65;
  }

  /* 比較情報：横幅を使い、文字は読みやすい大きさへ戻す */
  .hlab-free-index-page .hlab-free-index__compare-table-wrap {
    margin-top: 12px;
  }

  .hlab-free-index-page .hlab-free-index__compare-table th,
  .hlab-free-index-page .hlab-free-index__compare-table td {
    padding: 10px 12px;
    font-size: 14px;
    line-height: 1.55;
  }

  .hlab-free-index-page .hlab-free-index__compare-table thead th {
    font-size: 14px;
  }

  .hlab-free-index-page .hlab-free-index__compare-note {
    margin-top: 10px;
    padding: 10px 12px;
    font-size: 13px;
    line-height: 1.6;
  }

  /* 下部：次の行動を大、安全性を小として同じ視野に置く */
  .hlab-free-index-page .hlab-free-index__support-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.8fr);
    grid-template-areas: "cta trust";
    gap: 16px;
    align-items: stretch;
    margin-bottom: 20px;
  }

  .hlab-free-index-page .hlab-free-index__support-grid > .hlab-free-index__final-cta {
    grid-area: cta;
    margin: 0;
    padding: 22px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
  }

  .hlab-free-index-page .hlab-free-index__support-grid > .hlab-free-index__trust {
    grid-area: trust;
    margin: 0;
    padding: 16px;
  }

  .hlab-free-index-page .hlab-free-index__support-grid .hlab-free-index__final-cta h2 {
    font-size: clamp(22px, 2.4vw, 27px);
  }

  .hlab-free-index-page .hlab-free-index__support-grid .hlab-free-index__final-cta p {
    font-size: 14px;
    line-height: 1.65;
  }

  .hlab-free-index-page .hlab-free-index__support-grid .hlab-free-index__final-cta .hlab-button {
    min-width: 190px;
    min-height: 44px;
    padding: 10px 16px;
    font-size: 14px;
  }

  .hlab-free-index-page .hlab-free-index__support-grid .hlab-free-index__trust h2 {
    font-size: 19px;
  }

  .hlab-free-index-page .hlab-free-index__support-grid .hlab-free-index__trust-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 10px;
  }

  .hlab-free-index-page .hlab-free-index__support-grid .hlab-free-index__trust-grid article {
    gap: 3px;
    padding: 10px 11px;
    border-radius: 13px;
  }

  .hlab-free-index-page .hlab-free-index__support-grid .hlab-free-index__trust-grid strong {
    font-size: 14px;
    line-height: 1.45;
  }

  .hlab-free-index-page .hlab-free-index__support-grid .hlab-free-index__trust-grid span {
    font-size: 13px;
    line-height: 1.55;
  }
}

/* ========================================================
   2026-09-08 v1.6 ページタイトルをカードから分離
   ・PCではページタイトル領域をフラットなページヘッダーとして扱う
   ・補足のラボ紹介だけを小カードとして残し、階層を明確化
   ・スマホは既存のフラット構成を維持
======================================================== */
@media (min-width: 901px) {
  .hlab-free-index-page .hlab-free-index__overview {
    align-items: start;
  }

  .hlab-free-index-page .hlab-free-index__overview > .hlab-free-index__hero {
    min-height: 0 !important;
    padding: 34px 24px 22px 8px !important;
    border: 0 !important;
    border-bottom: 2px solid rgba(240, 138, 0, 0.24) !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .hlab-free-index-page .hlab-free-index__overview > .hlab-free-index__hero::before,
  .hlab-free-index-page .hlab-free-index__overview > .hlab-free-index__hero::after {
    display: none !important;
  }

  .hlab-free-index-page .hlab-free-index__overview .hlab-free-index__hero h1 {
    max-width: 760px;
    margin-top: 7px !important;
    font-size: clamp(34px, 3.45vw, 42px) !important;
  }

  .hlab-free-index-page .hlab-free-index__overview .hlab-account__lead {
    max-width: 720px;
  }
}



/* ========================================================
   2026-09-08 v1.7 お店サウンド無料体験を優先表示
   ・PCでは5つ目の均等カードにせず、最上段の横長カードで優先度を表現
   ・横幅を使って情報量を確保しつつ、カード高は抑える
   ・スマホでは既存カードと同じ読みやすい縦構成
======================================================== */
.hlab-free-index-page .hlab-free-index__tool-card--sound {
  border-color: rgba(47, 133, 166, 0.30);
  background: linear-gradient(145deg, #edfafd 0%, #f8fdff 100%);
}

.hlab-free-index-page .hlab-free-index__tool-card--sound .hlab-free-index__tool-icon {
  background: linear-gradient(145deg, #26779b, #36a9b2);
}

.hlab-free-index-page .hlab-free-index__tool-card--sound .hlab-free-index__tool-service,
.hlab-free-index-page .hlab-free-index__tool-card--sound .hlab-free-index__tool-kind {
  color: #26779b;
}

.hlab-free-index-page .hlab-free-index__tool-card--sound .hlab-free-index__tool-kind {
  background: rgba(54, 169, 178, 0.12);
  border-color: rgba(47, 133, 166, 0.20);
}

.hlab-free-index-page .hlab-free-index__tool-card--sound:hover {
  border-color: rgba(47, 133, 166, 0.48);
  box-shadow: 0 12px 26px rgba(38, 119, 155, 0.10);
}

@media (min-width: 901px) {
  .hlab-free-index-page .hlab-free-index__tool-grid > .hlab-free-index__tool-card--featured {
    grid-column: 1 / -1;
    grid-template-columns: 58px minmax(0, 1fr) minmax(240px, 300px);
    grid-template-rows: auto;
    align-items: center;
    min-height: 0;
    padding: 17px 18px;
  }

  .hlab-free-index-page .hlab-free-index__tool-grid > .hlab-free-index__tool-card--featured .hlab-free-index__tool-copy {
    min-width: 0;
  }

  .hlab-free-index-page .hlab-free-index__tool-grid > .hlab-free-index__tool-card--featured .hlab-free-index__tool-copy h3 {
    font-size: 22px !important;
  }

  .hlab-free-index-page .hlab-free-index__tool-grid > .hlab-free-index__tool-card--featured .hlab-free-index__tool-card-cta {
    grid-column: 3;
    align-self: center;
    min-height: 44px;
    margin: 0;
    padding: 9px 14px;
    font-size: 13px;
  }
}
