:root{
  /* 基本色：青・黄・赤・白 */
  --bg:#ffffff;
  --panel:#ffffff;

  --blue:#2f7fe0;
  --blue2:#1f5fb1;
  --blueSoft:#eaf3ff;
  --line:#cfe4ff;

  --yellow:#ffd66b;
  --yellowSoft:#fff6cf;
  --yellowLine:#ffe8a3;

  --red:#ef4444;
  --redSoft:#ffe7e7;

  --text:#1f2937;
  --muted:#000000;

  --radius:22px;
  --shadow: 0 18px 50px rgba(2,6,23,.10);
  --shadow2: 0 10px 24px rgba(2,6,23,.10);
}

/* 固定フッターCTA */
.fixed-cta{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  padding: 10px 14px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* モバイルは縦積み */
@media (max-width: 768px){
  .fixed-cta{
    grid-template-columns: 1fr;
  }
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family: system-ui, -apple-system, "Segoe UI", "Noto Sans JP", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
}

.container{
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

a{ color: inherit; text-decoration:none; }
.link{ color: var(--blue); text-decoration: underline; }
.muted{ color: var(--muted); }
.strong{ font-weight: 900; }
.w-full{ width: 100%; }

:focus-visible{
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 12px;
}

/* ===== Topbar ===== */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}
.brand{ display:flex; align-items:center; gap: 12px; }
.brand-mark{
  width: 38px; height: 38px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: #fff;
  border: 2px solid var(--blue);
  color: var(--blue);
  font-weight: 1000;
  box-shadow: 0 4px 0 var(--blue2);
}
.brand-text strong{ display:block; font-size: 14px; }
.brand-text small{ display:block; font-size: 12px; color: var(--muted); margin-top: -2px; }

.nav{ display:flex; gap: 16px; align-items:center; }
.nav a{
  font-size: 16px;
  padding: 8px 10px;
  border-radius: 14px;
  color: var(--text);
  transition: background .16s ease;
}
.nav a:hover{ background:#f7fff6; }

.hamburger{
  display:none;
  width: 44px; height: 44px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  cursor:pointer;
}
.hamburger span{
  display:block;
  width: 18px;
  height: 2px;
  background: rgba(31,41,55,.65);
  margin: 4px auto;
  border-radius: 2px;
}
.mobile-menu{
  display:none;
  padding: 14px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.96);
}
.mobile-menu a{
  display:block;
  padding: 12px 10px;
  border-radius: 16px;
  color: var(--text);
}
.mobile-menu a:hover{ background: #f7fff6; }
.topbar[data-open="true"] .mobile-menu{ display:block; }

/* ===== Buttons ===== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 18px;
  font-weight: 900;
  cursor:pointer;
  transition: transform .10s ease, box-shadow .10s ease, background .14s ease, filter .14s ease, color .14s ease, border-color .14s ease;
}

.btn-outline{
  border: 2px solid var(--blue);
  background: #fff;
  color: var(--blue);
}
.btn-outline-soft{
  border: 2px solid var(--line);
  background: #fff;
  color: var(--text);
}
.btn-3d{ box-shadow: 0 5px 0 var(--blue2); }

/* 要求：ボタンhoverは青背景＋白文字 */
.btn:hover{
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  filter: saturate(1.05);
}
a.btn:hover{ color:#fff; }

.btn:active{
  transform: translateY(5px);
  box-shadow: none;
}
.btn-lg{ padding: 14px 18px; border-radius: 20px; }
.topbar-cta{ display:flex; gap: 10px; }

.refund-btn {
  grid-column: 1 / -1;   /* ✅ グリッド全幅 */
  width: 100%;           /* ✅ 横100% */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== Hero ===== */


.hero{
  --sheet: #f7fff6;
  --grid: rgba(0,0,0,.05);
  --grid-bold: rgba(0,0,0,.10);
  --excel-green: #107c41;
  --cell: 40px;

  position: relative;
  padding: 88px 0 56px;
  background-color: var(--sheet);

  /* 細罫線 + 太罫線（5セル周期） */
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px),
    linear-gradient(var(--grid-bold) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-bold) 1px, transparent 1px);
  background-size:
    var(--cell) var(--cell),
    var(--cell) var(--cell),
    calc(var(--cell)*5) calc(var(--cell)*5),
    calc(var(--cell)*5) calc(var(--cell)*5);

  background-position: 72px 56px;
  overflow: hidden;
}


/* 選択セル（アクティブセル）っぽいハイライト */
.hero-inner{
  position: relative;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items:start;
}

/* 列/行ヘッダー風の帯（ExcelのA,B,C…/1,2,3…を連想させる） */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;

  /* 上＝列ヘッダー / 左＝行ヘッダー */
  background:
    linear-gradient(#e7efe9,#e7efe9) 0 0/100% 56px no-repeat,
    linear-gradient(#e7efe9,#e7efe9) 0 0/72px 100% no-repeat,
    linear-gradient(#dfe9e2,#dfe9e2) 0 0/72px 56px no-repeat;

  box-shadow:
    inset 0 -1px rgba(0,0,0,.12),
    inset -1px 0 rgba(0,0,0,.12);
}

/* Excelアイコンのゴースト表示 */
/* 共通設定（Xゴースト） */
.hero::before,
.hero::after{
  content: "X";
  position: absolute;
  font-size: 280px;
  font-weight: 800;
  font-family: "Segoe UI", system-ui, sans-serif;
  color: rgba(16,124,65,.08); /* Excelグリーン */
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* 左側のX */
.hero::before{
  left: 100px;
  top: -20px;
}

/* 右側のX */
.hero::after{
  right: -40px;
  top: 360px;
}

.hero-card{
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(0,0,0,.12);
  box-shadow:
    0 16px 40px rgba(0,0,0,.14);
  backdrop-filter: blur(4px);
}

.pill{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.8);
}
.hero h1{
  margin-top: 10px;
  font-size: 40px;
  line-height: 1.12;
  letter-spacing:-.02em;
}

.accent { color: #217346; }


.lead{
  margin-top: 16px;
  color: rgba(0, 0, 0, 0.75);
}
.hero-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.micro{
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
}

.hero-card{
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  overflow:hidden;
}
.hero-card-head{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.hero-card-title{ font-weight: 1000; }
.hero-card-body{ padding: 16px; }
.note{
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
}

.badge{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 1000;
  border: 1px solid var(--line);
  background: #fff;
}
.badge.selling{ border-color: rgba(47,127,224,.45); color: var(--blue); background: #dcf9ff;}
.badge.dev{ border-color: rgba(255,214,107,.85); color: #9a6a00; }

/* ===== Mini Steps（縦・テキスト＋矢印） ===== */

.mini-steps{
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

.mini-step-text{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #d5fdab;
  font-weight: 900;
}

.mini-step-arrow{
  text-align: center;
  font-size: 18px;
  color: rgba(31,41,55,.45);
  line-height: 1;
}

.mini-step{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
}
.mini-step span{
  width: 26px; height: 26px;
  display:grid; place-items:center;
  border-radius: 12px;
  border: 2px solid var(--blue);
  color: var(--blue);
  font-weight: 1000;
}

/* Scroll hint */
.scroll-hint{
  margin-top: 18px;
  display:flex;
  gap: 10px;
  align-items:center;
  justify-content:center;
  color: rgba(31,41,55,.45);
  font-weight: 900;
}
.mouse{
  width: 20px; height: 30px;
  border-radius: 999px;
  border: 2px solid rgba(31,41,55,.28);
  position:relative;
}
.wheel{
  width: 4px; height: 6px;
  border-radius: 999px;
  background: rgba(31,41,55,.35);
  position:absolute;
  left:50%; top: 6px;
  transform: translateX(-50%);
  animation: wheel 1.2s ease-in-out infinite;
}
@keyframes wheel{
  0%,100%{ transform: translate(-50%, 0); opacity: .6; }
  50%{ transform: translate(-50%, 8px); opacity: 1; }
}

/* ===== Sections ===== */
.section{ padding: 78px 0; }
.section.alt{
  background: linear-gradient(180deg, #ffffff, #f7fff6);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head{
  text-align:center;
  margin-bottom: 22px;
}
.section-head h2{
  font-size: 28px;
  letter-spacing:-.01em;
}
.section-head .sub{ margin-top: 8px; color: var(--muted); }

.concept-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.card{
  border-radius: var(--radius);
  border: 2px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow2);
  padding: 22px;
}
.card.soft{ background: #fff; }

/* 要求：ボタンではないものは薄黄色になる（hover-cell） */
.hover-cell{
  transition: background .16s ease, box-shadow .16s ease, transform .16s ease;
}
/* hover-cell は結果セル(.match-item)には効かせない */
.hover-cell:not(.match-item):hover{
  background: #f7fff6;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

/* Apps grid */
.apps-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.app-card h3{ font-size: 18px; }

/* ===== Products: 左右セル高さ一致 ===== */
.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.col{
  display:flex;
  flex-direction: column;
  min-height: 100%;
}
.col-body{
  display:flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.col-head{
  display:flex;
  justify-content: space-between;
  align-items:center;
  margin-bottom: 12px;
}

.product-card{
  border-radius: var(--radius);
  border: 2px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow2);
  padding: 22px;
}
.product-card.selling{ border-color: rgba(47,127,224,.45); }
.product-card.dev{ border-color: rgba(255,214,107,.85); }

.product-points{
  display:grid;
  gap: 10px;
  margin-top: 12px;
}
.point{
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.actions{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.actions.one{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: 100%;
}
.actions.two{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}

.micro2{
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
}

/* tool media */
.tool-media{ margin-top: 12px; }
.play-overlay{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  font-size:36px;
  color:#fff;
  background:rgba(0,0,0,.35);
  pointer-events:none;
}

/* dev image / app image */
.img-wrap{
  position:relative;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid var(--line);
  background: #fff;
  min-height: 180px;
  display:grid;
  place-items:center;
}
.img-wrap video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px; /* 任意 */
}

.img-wrap img{
  width:100%;
  height:100%;
  image-rendering: -webkit-optimize-contrast;
  object-fit: cover;
  display:block;
}
.img-wrap.noimg img{ display:none; }
.img-fallback{
  font-weight: 1000;
  letter-spacing:.08em;
  color: rgba(31,41,55,.55);
  background: var(--blueSoft);
  width:100%;
  height:100%;
  display:grid;
  place-items:center;
}

/* Refund */
.refund-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Profile */
.profile{
  display:grid;
  grid-template-columns: 160px 1fr;
  gap: 14px;
  align-items:start;
  max-width: 980px;
  margin: 0 auto;
  border-radius: var(--radius);
  border: 2px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow2);
  padding: 18px;
}
.profile-detailed .trust-block{ margin-top: 10px; }
.profile-detailed h4{
  margin-top: 12px;
  font-size: 14px;
  letter-spacing: .02em;
}
.trust-list{
  margin-top: 6px;
  padding-left: 18px;
  color: rgba(0, 0, 0, 0.82);
}
.trust-list li{ margin: 6px 0; }

.avatar{
  width: 160px;
  height: 160px;
  border-radius: 22px;
  border: 2px solid var(--line);
  overflow:hidden;
  position:relative;
  background: #fff;
}
.avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}
.avatar.noimg img{ display:none; }
.avatar-fallback{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  font-weight: 1000;
  font-size: 42px;
  color: rgba(31,41,55,.55);
  background: var(--blueSoft);
}
.furigana{ font-size: 13px; color: var(--muted); font-weight: 900; }

/* Footer */
.footer{
  border-top: 1px solid var(--line);
  background: #fff;
}
.footer-inner{
  display:flex;
  justify-content: space-between;
  align-items:flex-start;
  gap: 12px;
  padding: 22px 0;
}
.footer-links{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  font-weight: 900;
  color: rgba(31,41,55,.70);
}
.footer-links a:hover{ text-decoration: underline; color: var(--text); }
.footer-bottom{
  border-top: 1px solid var(--line);
  padding: 12px 0;
  text-align:center;
  color: var(--muted);
  font-size: 12px;
}

/* ===== Reco UI ===== */
.reco{ padding: 22px; }
.reco-title{ font-size: 16px; font-weight: 1000; }
.reco-step + .reco-step{ margin-top: 14px; }
.reco-qs{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 12px;
}

/* 職種選択：横並び（PC） */
.reco-options{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

/* モバイルのみ縦並び */
@media (max-width: 980px){
  .reco-options{
    grid-template-columns: 1fr;
  }
}

.opt{
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  background: var(--yellowSoft);
  cursor:pointer;
  display:flex;
  gap:10px;
  align-items:center;
}
.opt input{ transform: scale(1.1); }
.opt:hover{ box-shadow: var(--shadow2); }
.opt.is-selected{
  border-color: rgba(47,127,224,.55);
  background: #fff;
}

.q-card{
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background: #fff;
}
.q-title{
  font-weight: 1000;
  font-size: 13px;
  margin-bottom: 8px;
}
.q-options{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.q-options .opt{
  grid-template-columns: 1fr;
  background: #f7fff6;
}
.q-options .opt span{ font-size: 13px; }

.reco-actions{ margin-top: 12px; }
.reco-result{ margin-top: 14px; }

.result-card{
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background:#fff;
  box-shadow: var(--shadow2);
}
.result-title{
  font-weight: 1000;
  margin-bottom: 6px;
}
.result-desc{
  color: var(--muted);
  font-size: 13px;
}

/* =====================================
   Result Cells UI Specification
===================================== */

/* 左右セルの高さを揃える */
.match-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-items: stretch;
}

/* 結果セル共通（初期は白） */
.match-item{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
}

/* ② hover：かなり薄い赤（販売中は除外） */
.match-item:not(.is-selected):not([data-tool-status="selling"]):hover{
  background: rgba(255, 80, 80, 0.05);
}



/* ③ 販売中は常に薄い水色 */
.match-item[data-tool-status="selling"],
.match-item[data-tool-status="selling"]:hover{
  background: var(--blueSoft);
}



/* 開発中ツール：白のまま */
.match-item[data-tool-status="developing"]{
  background: #fff;
}


/* ④ 選択中セル：緑色（hoverより優先） */
.match-item.is-selected{
  background: #f7fff6;
  border-color: #217346;            /* Excelグリーン */
  box-shadow: 0 0 0 2px rgba(33,115,70,.15) inset;
}


.match-head{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap:10px;
  margin-bottom: 6px;
}
.pct{
  font-weight: 1000;
  color: var(--blue);
}
.pct.zero{ color: var(--red); }
.pct.cap{ color: var(--blue); }
.hint{
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

/* Reveal */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* motion */
@media (prefers-reduced-motion: reduce){
  *{
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Responsive */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .concept-grid{ grid-template-columns: 1fr; }
  .two-col{ grid-template-columns: 1fr; }
  .refund-grid{ grid-template-columns: 1fr; }
  .apps-grid{ grid-template-columns: 1fr; }
  .profile{ grid-template-columns: 1fr; }
  .nav{ display:none; }
  .hamburger{ display:block; }
  .footer-inner{ flex-direction: column; }

  .actions.two{ grid-template-columns: 1fr; }
  .reco-options{ grid-template-columns: 1fr; }
  .q-options{ grid-template-columns: 1fr; }
  .match-grid{ grid-template-columns: 1fr; }
}

/* ===============================
   Result Cell Final Control
   =============================== */

/* 通常：白 */
.match-item{
  background: #fff;
}

/* 販売中：常に薄い水色（hoverでも維持） */
.match-item[data-tool-status="selling"],
.match-item[data-tool-status="selling"]:hover{
  background: var(--blueSoft);
}

/* hover：かなり薄い赤（黄色にしない） */
.match-item:not(.is-selected):not([data-tool-status="selling"]):hover{
  background: rgba(255, 80, 80, 0.05);
}

/* ④ 選択中セル：緑色（hoverより優先） */
.match-item.is-selected{
  background: #f7fff6;
  border-color: #217346;            /* Excelグリーン */
  box-shadow: 0 0 0 2px rgba(33,115,70,.15) inset;
}

/* hover-cell の黄色は結果セルには適用しない */
.hover-cell:not(.match-item):hover{
  background: #f7fff6;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}



/* ===== Fixed Footer CTA Hover ===== */
.fixed-cta .btn{
  background: #f94242;   /* 濃い赤 */
  border-color: #f94242;
  color: #ffffff;
}

.fixed-cta .btn:hover{
  background: #ff0000;   /* 濃い赤 */
  border-color: #ff0000;
  filter: none;
}

/* ===== Reco Question Text Size ===== */
.q-title{
  font-size: 16px;   /* 既存より大きく */
  line-height: 1.6;
}


/* ===== Reco Options Text Size ===== */
/* 選択肢（YES/NOなど）の文字サイズを拡大 */
.reco .opt span{
  font-size: 15px;
  line-height: 1.6;
}


/* ===== Tool Hover Links ===== */

/* リンク一覧は通常は非表示 */
.tool-links{
  list-style: none;
  margin-top: 10px;
  padding-left: 0;
  display: none;
}

/* hoverで表示（PC） */
.match-item:hover .tool-links,
.product-card:hover .tool-links{
  display: block;
}

/* リンクデザイン */
.tool-links li{
  margin-top: 6px;
}

.tool-links a{
  font-size: 13px;
  font-weight: 900;
  color: var(--blue);
  text-decoration: underline;
}


/* PCのみ：hoverで表示 */
@media (hover: hover){
  .match-item:hover .tool-links,
  .product-card:hover .tool-links{
    display: block;
  }
}


.quote-box {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  background: #0f0f10;
  padding: 50px 40px;
  position: relative;
  color: #f5f5f5;
  font-family: "Noto Serif JP", serif;
}

.quote-mark {
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 60px;
  color: rgba(201,162,74,0.3);
}

.quote-text {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.quote-author {
  text-align: right;
  font-size: 14px;
  color: #c9a24a;
  border-top: 1px solid #c9a24a;
  padding-top: 10px;
}

.price-box {
  margin: 12px 0 16px;
}

.price-line {
  display: flex;
  gap: 8px;
  align-items: baseline;
  font-size: 14px;
}

.price-line.main {
  margin-top: 4px;
  font-size: 16px;
}

.price {
  font-size: 18px;
}

.price.strong {
  font-weight: 700;
  font-size: 24px;
  color: #ff0000;
}

.label {
  color: #000000;
}

.term {
  color: #000000;
  font-size: 14px;
}

.price-sub {
  font-size: 16px;
  margin-top: 4px;
}

.cost-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  background: #eaf2ff;
  font-size: 14px;
}

.cost-table th,
.cost-table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}

.cost-table th {
  background: #f5f7fa;
  font-weight: 600;
}

.cost-table tr:nth-child(even) {
  background: #fafafa;
}

.sale-tool-category {
  font-size: 20px;
}

.develop-tool-category {
  font-size: 20px;
}


html{
  scroll-behavior: smooth;
  font-size: 120%;
}




