/* =========================================================
   汗拭きシート カテゴリページ（全体構成モック）   ns: sweat-*
   背景=白 / 差し色=アクア＋コーラル / タブはCSSのみ(JS不使用)
   ========================================================= */
:root {
  --sweat-ink: #0f2733;
  --sweat-ink-soft: #4a6572;
  --sweat-line: #e3ebee;
  --sweat-ice: #f2f9fa;
  --sweat-paper: #ffffff;
  --sweat-teal: #2e5b9f;
  --sweat-teal-deep: #2e5b9f;
  --sweat-teal-wash: #e2f3f5;
  --sweat-heat: #ff6a3d;
  --sweat-heat-deep: #e8542a;
  --sweat-gold: #caa64a;
  --sweat-radius: 14px;
  --sweat-shadow: 0 2px 4px rgba(15,39,51,.05), 0 12px 28px rgba(15,39,51,.06);
  --sweat-font: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
}

  :root{
    --navy:#1f3864; --blue:#2e5b9f; --orange:#f08300; --red:#d64545;
    --bg:#ffffff; --gray:#f5f6f8; --line:#dfe3e8; --txt:#333;
  }

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--sweat-paper);
  color: var(--sweat-ink);
  font-family: var(--sweat-font);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

h2, h3 {
  letter-spacing: .01em;
}

/* section heads */
.sweat-sec {
  margin-top: 60px;
  scroll-margin-top: 20px;
}

.sweat-sec__lead {
    color: var(--sweat-ink-soft);
    font-size: 14.5px;
    line-height: 1.85;
    margin: 0;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
}

@media(max-width:640px) {
}

@media (max-width: 520px) {
}

@media(max-width:760px) {
}

@media(min-width:761px) {
}

/* ---------- TAB BLOCK (CSS only) ---------- */
.sweat-tabs {
  margin-top: 20px;
}

.sweat-tabs__radio {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.sweat-tabs__nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  border-bottom: 2px solid var(--sweat-line);
  padding-bottom: 2px;
  width: 100%;

  /* 【スマホ向け】デフォルトは横スクロールを有効に */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* iOSのスムーズスクロール用 */
}

/* スクロールバーの見た目 */
.sweat-tabs__nav::-webkit-scrollbar {
  height: 4px;
}
.sweat-tabs__nav::-webkit-scrollbar-thumb {
  background: var(--sweat-line);
  border-radius: 2px;
}

.sweat-tabs__tab {
    flex: 0 0 auto;
    cursor: pointer;
    padding: 11px 16px;
    border-radius: 10px 10px 0 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--sweat-ink-soft);
    position: relative;
    top: 2px;
    transition: all .2s ease;
    white-space: nowrap;
    text-align: center;
    border: 2px solid #2e5b9f;
    border-bottom: none;
}

.sweat-tabs__tab:hover {
  color: var(--blue);
  background: #fbfcfe;

}

.sweat-tabs__tab small {
  margin-left: 6px;
  font-size: 11px;
  color: #8aa0a9;
  font-weight: 700;
}

/* ==========================================
   ✨ 追加：アクティブ（選択時）のUIデザイン
   ========================================== */
#tab-an:checked ~ .sweat-tabs__nav .sweat-tabs__tab--an,
#tab-lo:checked ~ .sweat-tabs__nav .sweat-tabs__tab--lo,
#tab-hy:checked ~ .sweat-tabs__nav .sweat-tabs__tab--hy,
#tab-ss:checked ~ .sweat-tabs__nav .sweat-tabs__tab--ss,
#tab-uv:checked ~ .sweat-tabs__nav .sweat-tabs__tab--uv,
#tab-bi:checked ~ .sweat-tabs__nav .sweat-tabs__tab--bi,
#tab-fl:checked ~ .sweat-tabs__nav .sweat-tabs__tab--fl,
#tab-rd:checked ~ .sweat-tabs__nav .sweat-tabs__tab--rd {
  color: var(--sweat-teal-deep);
  background: #fff; /* 背景を白にして抜く */
  /* 影を使わず、しっかりとした線で囲んでタブらしさを強調 */
  border-color: var(--sweat-line);
  border-bottom: 2px solid #fff; /* 下のメイン線と繋がっているように見せるトリマゲーション */
  z-index: 1;
}

/* ==========================================
   💻 画面が広い時（PC・タブレット）の処理
   ========================================== */
@media (min-width: 769px) {
  .sweat-tabs__nav {
    overflow-x: visible; /* スクロールをオフに */
  }

  .sweat-tabs__tab {
    flex: 1 1 0%; /* 8個を均等に横いっぱいに広げる */
  }
}
.sweat-tabs__panel {
  display: none;
  padding-top: 6px;
}

.sweat-tabs__panel-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 14px;
    margin: 20px 0 10px;
    flex-wrap: wrap;
}

.sweat-tabs__panel-head h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0;
}

@media (max-width: 768px) {
.sweat-tabs__panel-head h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0;
}
}

.sweat-tabs__panel-head p {
  margin: 0;
  font-size: 13px;
  color: var(--sweat-ink-soft);
}

/* 8 tabs wiring */
#tab-an:checked ~ .sweat-tabs__panels .sweat-tabs__panel--an,
#tab-lo:checked ~ .sweat-tabs__panels .sweat-tabs__panel--lo,
#tab-hy:checked ~ .sweat-tabs__panels .sweat-tabs__panel--hy,
#tab-ss:checked ~ .sweat-tabs__panels .sweat-tabs__panel--ss,
#tab-uv:checked ~ .sweat-tabs__panels .sweat-tabs__panel--uv,
#tab-bi:checked ~ .sweat-tabs__panels .sweat-tabs__panel--bi,
#tab-fl:checked ~ .sweat-tabs__panels .sweat-tabs__panel--fl,
#tab-rd:checked ~ .sweat-tabs__panels .sweat-tabs__panel--rd {
  display: block;
}

#tab-an:checked ~ .sweat-tabs__nav .sweat-tabs__tab--an,
#tab-lo:checked ~ .sweat-tabs__nav .sweat-tabs__tab--lo,
#tab-hy:checked ~ .sweat-tabs__nav .sweat-tabs__tab--hy,
#tab-ss:checked ~ .sweat-tabs__nav .sweat-tabs__tab--ss,
#tab-uv:checked ~ .sweat-tabs__nav .sweat-tabs__tab--uv,
#tab-bi:checked ~ .sweat-tabs__nav .sweat-tabs__tab--bi,
#tab-fl:checked ~ .sweat-tabs__nav .sweat-tabs__tab--fl,
#tab-rd:checked ~ .sweat-tabs__nav .sweat-tabs__tab--rd {
    color: var(--sweat-teal-deep);
    background: var(--sweat-teal-wash);
}

#tab-an:focus-visible ~ .sweat-tabs__nav .sweat-tabs__tab--an,
#tab-lo:focus-visible ~ .sweat-tabs__nav .sweat-tabs__tab--lo,
#tab-hy:focus-visible ~ .sweat-tabs__nav .sweat-tabs__tab--hy,
#tab-ss:focus-visible ~ .sweat-tabs__nav .sweat-tabs__tab--ss,
#tab-uv:focus-visible ~ .sweat-tabs__nav .sweat-tabs__tab--uv,
#tab-bi:focus-visible ~ .sweat-tabs__nav .sweat-tabs__tab--bi,
#tab-fl:focus-visible ~ .sweat-tabs__nav .sweat-tabs__tab--fl,
#tab-rd:focus-visible ~ .sweat-tabs__nav .sweat-tabs__tab--rd {
  outline: 3px solid var(--sweat-heat);
  outline-offset: 2px;
}

@media(max-width:760px) {
}

@media(max-width:760px) {
}

@media(max-width:760px) {
}

@media(max-width:760px) {
}

@media(max-width:440px) {
}

@media(max-width:820px) {
}

@media(max-width:440px) {
}

@media(max-width:760px) {
}

.sweat-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 999px;
}

.sweat-backtop {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 26px auto;
    font-size: 13px;
    font-weight: 700;
    color: var(--sweat-teal-deep);
    text-decoration: none;
    border: 1px solid var(--sweat-line);
    border-radius: 999px;
    padding: 8px 16px;
    width: 500px;
    justify-content: center;
}

.sweat-backtop:hover {
  background: var(--sweat-teal-wash);
  border-color: var(--sweat-teal);
}

@media (max-width: 768px) {
.sweat-backtop {
    width: 100%;
}
}

@media(prefers-reduced-motion:reduce) {
  * {
    transition: none !important;
  }
}

.category_bodysheat_title {
    /* padding: 0 .4em .2em; */
    border-bottom: 3px solid var(--orange);
    font-size: 22px;
    margin-bottom: 15px;
    text-align: left;
}

@media (max-width: 768px) {
  .category_bodysheat_title {
    font-size: 18px;
  }
}

/* メイン訴求ゾーン */
.product-container {
    max-width: 1000px;
    background: #e7f8ff;
    padding: 10px 20px;
}

.category-header_title {
    font-size: clamp(2rem, 2vw, 2.8rem) !important;
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
}

.sub_taitle {
    font-size: clamp(1.4rem, 2vw, 1.7rem) !important;
    color: #f4511e;
    font-weight: bold;
    text-shadow: 0 0 3px #fafafa, 0 0 3px #fafafa, 0 0 3px #fafafa, 0 0 3px #fafafa, 0 0 3px #fafafa, 0 0 3px #fafafa, 0 0 3px #fafafa, 0 0 3px #fafafa, 0 0 3px #fafafa, 0 0 3px #fafafa, 0 0 3px #fafafa, 0 0 3px #fafafa, 0 0 3px #fafafa, 0 0 3px #fafafa, 0 0 3px #fafafa, 0 0 3px #fafafa;
}

.main-visual-sence-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content-left-sence {
    flex: 2;
    display: flex;
    flex-direction: column;
    margin: 10px 0 0;
}

/* 説明文エリアのスタイル */
.description-box-sence {
    background-color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.6;
    align-items: center;
}

.card-group-sence {
    display: flex;
    gap: 12px;
}

/* カード1枚ずつのスタイル */
.info-card-sence {
    flex: 1;
    border: 2px solid #e1f0ff; /* 薄い青の枠線 */
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

/* カードのヘッダー部分（薄い青背景） */
.card-header-sence {
    background-color: #eef7ff;
    color: #1f6fe5;
    font-weight: bold;
    padding: 7px 0;
    font-size: 16px;
    text-align: center;
}

.card-content-sence {
    padding: 5px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.unit-sence {
    font-size: 12px;
    color: #333;
}

.price-sence {
    color: #f4511e;
    font-weight: bold;
    font-size: 19px;
}

.pick_text {
    font-size: 22px !important;
}

/* 右側画像エリアの調整 */
.item-visual-sence {
    flex: 1.3;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-visual-sence img {
    width: 80%;
    height: auto;
    object-fit: contain;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .main-visual-sence-wrap {
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        flex-direction: column-reverse;
    }
    .card-group-sence {
        flex-direction: column;
        gap: 0;
    }
}
@media (max-width: 768px) {
}

@media (max-width: 768px) {
    .product-container {
        padding: 15px;
    }
    .main-visual-sence-wrap {
        flex-direction: column;
        align-items: center;
        /* padding-top: 20px; バッジが浮く分の調整 */
        gap: 0;
    }

    /* 画像をタイトルのすぐ下に配置 */
    .item-visual-sence {
        order: -1;
        width: 80%; /* バッジを置くスペースを空けるため少し縮める */
        margin-right: 20%; /* バッジ用の右余白 */
        position: relative;
        margin: 10px 0;
    }

    .content-left-sence {
        width: 100%;
    }
}

@media (min-width: 1024px) {
}

#rank,
#pb,
#browse,
#price-sec,
#all,
#reason,
#print,
#scene,
#point,
#faq,
#contact,
#osusume,
#naming,
#distmap-sec,
#related {
    margin-top: -100px;
    padding-top: 110px;
    margin-bottom: 60px;
}

/* ベーススタイル */
.sweat-cta__btn {
    display: flex;
    padding: 12px 24px;
    background: #fff;
    color: var(--sweat-teal-deep);
    border: 2px solid var(--sweat-teal-deep);
    border-radius: 1000px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    justify-content: center;
    width: 500px;
    margin: 30px auto 20px;
}

.sweat-cta__btn:hover {
    background: var(--sweat-teal-deep);
    color: #fff;
}

@media (max-width: 768px) {
.sweat-cta__btn {
    width: 100%;
}

}

@media (min-width: 1024px) {
}

.category-contents {
    padding-bottom: 30px !important;
}

input[name="size-tab"] {
    display: none;
}

@media (max-width: 600px) {
}

@media (min-width: 768px) {
}

/* スマホ対応（レスポンシブ） */
@media (max-width: 820px) {
}

/* ナビゲーション（目次）セクション専用スタイル */
.toc-sec {
  margin-top: 12px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
}

/* カードグループ背景 */
.toc-sec__group {
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 14px;
}

.toc-sec__group--find {
  background-color: #fbfcfe; /* ティール系薄色 */
}

.toc-sec__group--info {
  background-color: #f2f9fa; /* ソフトアイス背景 */
}

/* ヘッダーエリア */
.toc-sec__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 3px;
}

.toc-sec__icon {
  color: var(--blue);
  display: flex;
  align-items: center;
}

.toc-sec__title {
  font-size: 20px;
  color: var(--blue);
  font-weight: 800;
}

.toc-sec__sub {
  color: #4a6572;
  font-size: 14px;
  margin-bottom: 16px;
}

/* ボタン配置エリア */
.toc-sec__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ナビボタン基本定義 */
.toc-sec__btn {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #d6e4e0;
  border-radius: 11px;
  padding: 14px 18px;
  min-width: 180px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #0f2733;
  cursor: pointer;
  font-size: 15px;
  text-decoration: none;
  flex: 1 1 180px;
  transition: all 0.2s ease;
}

.toc-sec__btn:hover {
  border-color: var(--blue);
  box-shadow: 0 2px 7px rgba(15, 39, 51, 0.09);
}

.toc-sec__btn-icon {
  color: var(--blue);
  flex: none;
  display: flex;
  align-items: center;
  font-weight: 800;
}

/* スマホ対応（レスポンシブ） */
@media (max-width: 820px) {
  .toc-sec__btn,
  .toc-sec__dropdown {
    flex: 1 1 100%;
  }
}

/* ==========================================
   タブ切り替え用の補正スタイル
   ========================================== */

/* 全パネルの初期非表示 */
.sweat-tabs__panel {
  display: none;
}

/* ラジオボタンチェック時の表示切り替え（CSSのみで動かす場合） */
#tab-an:checked ~ .sweat-tabs__panels .sweat-tabs__panel--an,
#tab-lo:checked ~ .sweat-tabs__panels .sweat-tabs__panel--lo,
#tab-tn:checked ~ .sweat-tabs__panels .sweat-tabs__panel--tn,
#tab-al:checked ~ .sweat-tabs__panels .sweat-tabs__panel--al,
#tab-nal:checked ~ .sweat-tabs__panels .sweat-tabs__panel--nal,
#tab-bs:checked ~ .sweat-tabs__panels .sweat-tabs__panel--bs,
#tab-cd:checked ~ .sweat-tabs__panels .sweat-tabs__panel--cd,
#tab-os:checked ~ .sweat-tabs__panels .sweat-tabs__panel--os {
  display: block;
}

/* 選択中タブのスタイルハイライト */
#tab-an:checked ~ .sweat-tabs__nav .sweat-tabs__tab--an,
#tab-lo:checked ~ .sweat-tabs__nav .sweat-tabs__tab--lo,
#tab-tn:checked ~ .sweat-tabs__nav .sweat-tabs__tab--tn,
#tab-al:checked ~ .sweat-tabs__nav .sweat-tabs__tab--al,
#tab-nal:checked ~ .sweat-tabs__nav .sweat-tabs__tab--nal,
#tab-bs:checked ~ .sweat-tabs__nav .sweat-tabs__tab--bs,
#tab-cd:checked ~ .sweat-tabs__nav .sweat-tabs__tab--cd,
#tab-os:checked ~ .sweat-tabs__nav .sweat-tabs__tab--os {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

@media (min-width: 768px) {
.link_column {
    display: flex;
    gap: 10px;
}
}

@media (min-width: 1024px) {
}

/* ホバー時の装飾（お好みで調整） */
a.info-card-link:hover .info-card-sence {
  opacity: 0.9;
  cursor: pointer;
}

.morelink {
    display: flex;
    margin-top: 4px;
    background: var(--blue);
    color: #fff;
    text-decoration: none;
    padding: 10px 26px;
    border-radius: 24px;
    font-weight: bold;
    font-size: 13px;
    flex-direction: column;
    max-width: 350px;
    width: 100%;
    align-items: center;
    margin: 0px auto 30px;
}

.morelink:hover {
  opacity: 0.85;
}

.uspline {
  background: #fff4e5;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 13px;
  color: #b35f00;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 6px;
}

.lead {
  font-size:14px;
  color:#444;
  max-width:860px;
}

  /* compare table */
  table{border-collapse:collapse; width:100%; font-size:13px;}
  th,td{border:1px solid var(--line); padding:9px 12px; text-align:left;}
  th{background:var(--navy); color:#fff; font-weight:bold;}
  td.head{background:#eef3fb; font-weight:bold; color:var(--navy); width:160px;}

  .section-navi {
    margin-top: -100px;
    padding-top: 110px;
    margin-bottom: 40px;
}

.title_sub{
    /*padding-bottom: 7px;
    border-bottom: solid 3px #2f4fb6;
    font-size: 2rem;
    margin-bottom: 2rem;*/
    margin: 20px 0 25px;
    font-size: 22px;
    background: #efefef;
    padding: 10px;
    border-left: 7px solid #2589d0;
}
@media screen and (max-width: 767px) {
.title_sub{
 font-size: 20px;
}
}

.custom-survey-widget {
    font-family: sans-serif;
    color: #333;
    margin-bottom: 30px;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    background-color: #fff;
    max-width: 100%;
    box-sizing: border-box;
}

.custom-survey-question {
    font-size: 18px;
    font-weight: bold;
}

.custom-survey-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    margin-bottom: 20px;
}

.custom-survey-table th,
.custom-survey-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.custom-table-header {
    font-weight: normal;
}

.custom-table-header-percent,
.custom-table-data-percent {
    width: 60px;
    text-align: right;
    white-space: nowrap;
}

.custom-table-header-bar,
.custom-table-data-bar {
    width: auto;
}

.custom-bar-container {
    width: 100%;
    height: 20px;
    background-color: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
}

.custom-bar-color {
    height: 100%;
    border-radius: 3px;
}

.custom-bar-pink {
    background-color: #f06292;
}

.custom-bar-blue {
    background-color: #64b5f6;
}
.custom-survey-table th:nth-child(1), td:nth-child(1) {
    width: 29%;
}
.custom-survey-table th:nth-child(2), td:nth-child(2) {
    width: 20%;
}

@media screen and (max-width: 767px) {
.custom-survey-question {
    font-size: 15px;
}
}

/* compare table */
table.calendar-cmp-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 13px;
}

table.calendar-cmp-table th,
table.calendar-cmp-table td {
  border: 1px solid var(--line);
  padding: 9px 12px;
  text-align: left;
}

table.calendar-cmp-table th {
  background: var(--navy);
  color: #fff;
  font-weight: bold;
}

table.calendar-cmp-table td.head {
  background: #eef3fb;
  font-weight: bold;
  color: var(--navy);
  width: 160px;
}

.calendar-cmp-table a {
    text-decoration: underline;
    color: #004e98;
}

.calendar-cmp-table th:nth-child(2), td:nth-child(2) {
    width: 39%;
}

.quad {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.quad a {
  display: block;
  border: 2px solid var(--blue);
  border-radius: 10px;
  padding: 18px;
  text-decoration: none;
  color: var(--navy);
  background: #fbfcfe;
  transition: 0.15s;
}

.quad a:hover {
  background: #eef3fb;
}

/* 左右配置用レイアウト */
.quad .qitem-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* 画像エリア */
.quad .qimg {
  width: 90px; /* 必要に応じてサイズ変更してください */
  flex-shrink: 0;
}

.quad .qimg img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* テキストエリア */
.quad .qbody {
  flex: 1;
}

.quad .qtitle {
  font-size: 17px;
  font-weight: bold;
  color: var(--blue);
}

.quad .qdesc {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}

.quad .qcount {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  background: var(--blue);
  color: #fff;
  padding: 2px 10px;
  border-radius: 12px;
}

/* スマホ表示（画面幅が狭い場合）の調整 */
@media (max-width: 768px) {
  .quad {
    grid-template-columns: 1fr;
  }
}

.flowchart-container {
      position: relative;
      width: 100%;
      max-width: 950px;
      margin: 0 auto;
    }

    .flowchart-image {
      width: 100%;
      height: auto;
      display: block;
    }

    .flowchart-btn {
      position: absolute;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      background-color: #ffffff;
      border: 2px solid #fce2a6;
      border-radius: 8px;
      box-sizing: border-box;
      color: #9e2a2b;
      font-weight: bold;
      font-size: 1.1vw;
      text-align: center;
      line-height: 1.3;
      transition: background-color 0.2s, transform 0.1s;
      cursor: pointer;
      padding-right: 1.2vw;
    }

    .flowchart-btn::after {
      content: "";
      position: absolute;
      right: 8%;
      top: 50%;
      transform: translateY(-50%) rotate(-45deg);
      width: 0.5vw;
      height: 0.5vw;
      border-right: 2px solid #9e2a2b;
      border-bottom: 2px solid #9e2a2b;
      transition: right 0.2s;
    }

    @media (min-width: 950px) {
      .flowchart-btn {
        font-size: 15px;
        padding-right: 16px;
      }
      .flowchart-btn::after {
        width: 6px;
        height: 6px;
        right: 10px;
      }
    }

    .flowchart-btn:hover {
      background-color: #fff8e7;
      transform: scale(1.03);
    }

    .flowchart-btn:hover::after {
      right: 6%;
    }

    .btn-1 {
      top: 83.5%;
      left: 14.8%;
      width: 16.6%;
      height: 14.2%;
    }

    .btn-2 {
      top: 83.5%;
      left: 33.3%;
      width: 16.6%;
      height: 14.2%;
    }

    .btn-3 {
      top: 83.5%;
      left: 58.7%;
      width: 16.6%;
      height: 14.2%;
    }

    .btn-4 {
      top: 83.5%;
      left: 77.2%;
      width: 16.6%;
      height: 14.2%;
    }

    .table-highlight {
  background-color: #fff8e7;
  color: #d9531e;
  font-weight: bold;
}

.category_bodysheat_title {
    /* padding: 0 .4em .2em; */
    border-bottom: 3px solid var(--orange);
    font-size: 22px;
    margin-bottom: 15px;
    text-align: left;
}

@media (max-width: 768px) {
    .category_bodysheat_title {
        font-size: 18px;
    }
}

.block-productlist__heading {
    display: none;
}