/*
* what.css
*
*/
:root {
  --color-black: #231200;
  --color-white: #fff;
  --color-ktn-yellow: #ffbf00;
  --color-yellow-01: #ffcb31;
  --color-yellow-02: #ffdb4f;
  --color-yellow-03: #ffe84f;
  --color-yellow-04: #fff8b5;
  --color-orange: #ff8f00;
  --color-orange-01: #ff4c00;
  --color-bg: #fff5e1;
  --color-bg-overlay: color-mix(in srgb, var(--color-black-btn) 30%, transparent);
  --color-line-dashed: #999;
  --color-line-solid: #d6d5d5;
  --color-panel: #f3f3f3;
  --color-black-btn: #333;
  --color-black-txt: #666;
  --color-accent-red: #ff4949;
  --color-accent-pink: #e23a9a;
  --color-accent-yellowgreen: #95d542;
  --color-accent-emerald: #09cd96;
  --color-accent-turquoise: #26d1db;
  --color-accent-blue: #3139e8;
  --color-accent-bluegray: #c5cfd6;
  --color-error: #c00;
  --weight-thin: 100;
  --weight-extra-light: 200;
  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semi-bold: 600;
  --weight-bold: 700;
  --weight-extra-bold: 800;
  --weight-black: 900;
  --color-hover-gray: #f2f0f0;
}

/* --------------------------------
  What is Kintone
-------------------------------- */
.what_digit {
  display: grid;

  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 1024px) {
  .what_digit {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, auto);
    gap: 40px;
  }
}
@media (min-width: 1280px) {
  .what_digit {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(24, auto);
    gap: 40px;
  }
}

.what_digit_item {
  border-radius: 10px;
  width: 100%;
}
@media (min-width: 768px) {
  .what_digit_item {
    border-radius: 20px;
  }
}
@media (min-width: 1024px) {
  .what_digit_item._01 {
    grid-column: 1/7;
    grid-row: 1/4;
  }
}
@media (min-width: 1280px) {
  .what_digit_item._01 {
    grid-column: 1/6;
    grid-row: 1/9;
  }
}
@media (min-width: 1024px) {
  .what_digit_item._02 {
    grid-column: 7/13;
    grid-row: 1/4;
  }
}
@media (min-width: 1280px) {
  .what_digit_item._02 {
    grid-column: 1/6;
    grid-row: 9/16;
  }
}
@media (min-width: 1024px) {
  .what_digit_item._03 {
    grid-column: 1/13;
    grid-row: 4/6;
  }
}
@media (min-width: 1280px) {
  .what_digit_item._03 {
    grid-column: 6/13;
    grid-row: 1/6;
  }
}
@media (min-width: 1024px) {
  .what_digit_item._04 {
    grid-column: 1/9;
    grid-row: 6/10;
  }
}
@media (min-width: 1280px) {
  .what_digit_item._04 {
    grid-column: 6/13;
    grid-row: 6/16;
  }
}
@media (min-width: 1024px) {
  .what_digit_item._05 {
    grid-column: 9/13;
    grid-row: 6/10;
  }
}
@media (min-width: 1280px) {
  .what_digit_item._05 {
    grid-column: 1/5;
    grid-row: 16/-1;
  }
}
@media (min-width: 1024px) {
  .what_digit_item._06 {
    grid-column: 1/7;
    grid-row: 10/13;
  }
}
@media (min-width: 1280px) {
  .what_digit_item._06 {
    grid-column: 5/9;
    grid-row: 16/-1;
  }
}
@media (min-width: 1024px) {
  .what_digit_item._07 {
    grid-column: 7/13;
    grid-row: 10/13;
  }
}
@media (min-width: 1280px) {
  .what_digit_item._07 {
    grid-column: 9/13;
    grid-row: 16/-1;
  }
}

.what_digit_item_ttl {
  text-align: center;
  word-break: keep-all;
  font-size: 1.125rem;
  font-weight: var(--weight-bold);
  line-height: 1.5;
}
@media (min-width: 768px) {
  .what_digit_item_ttl {
    font-size: 1.375rem;
  }
}

.what_digit_item_ttl_sm {
  margin-top: 5px;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: var(--weight-medium);
  line-height: 1.65;
}
@media (min-width: 768px) {
  .what_digit_item_ttl_sm {
    font-size: 0.75rem;
  }
}

.what_digit_item_num_area {
  text-align: center;
}
@media (min-width: 768px) {
  .what_digit_item_num_area {
    margin-top: 16px;
  }
}
.what_digit_item_num_area .num {
  letter-spacing: 0.02em;
  font-weight: var(--weight-bold);
  line-height: 1.4;
}
@media (min-width: 768px) {
  .what_digit_item_num_area .num {
    letter-spacing: 0.05em;
    font-size: 1.875rem;
    line-height: 1.5;
  }
}
.what_digit_item_num_area .num > span {
  display: inline-block;
  vertical-align: sub;
  letter-spacing: -0.02em;
  font-size: 3.125rem;
  font-weight: var(--weight-black);
  line-height: 1.4;

  margin-inline: 0.05em;
}
@media (min-width: 768px) {
  .what_digit_item_num_area .num > span {
    font-size: 4.5rem;
    line-height: 1.2;
  }
}

.what_digit_item_img {
  margin-top: 9px;
}
@media (min-width: 768px) {
  .what_digit_item_img {
    margin-top: 29px;
  }
}

.what_digit_item._01 {
  padding: 30px 28px;
  background-color: color-mix(in srgb, #ff6d6d 10%, var(--color-white));
}
@media (min-width: 768px) {
  .what_digit_item._01 {
    padding: 50px 20px 40px;
  }
}
.what_digit_item._01 .num > span {
  color: #fc4b4e;
}
.what_digit_item._01 .what_digit_item_img {
  max-width: 360px;

  margin-inline: auto;
}

.what_digit_item._02 {
  padding: 30px 32px 0;
  background-color: color-mix(in srgb, #95d542 10%, var(--color-white));
}
@media (min-width: 768px) {
  .what_digit_item._02 {
    padding-top: 50px;
  }
}
.what_digit_item._02 .num > span {
  color: #519400;
}
.what_digit_item._02 .what_digit_item_img {
  margin-top: 28px;
  max-width: 360px;

  margin-inline: auto;
}

.what_digit_item._03 {
  position: relative;
  padding: 30px 15px 6px;
  background-color: color-mix(in srgb, #5a61ed 10%, var(--color-white));
}
@media (min-width: 768px) {
  .what_digit_item._03 {
    padding: 50px 20px 52px;
  }
}
.what_digit_item._03 .num > span {
  color: #5a61ed;
}
.what_digit_item._03 .what_digit_item_img {
  position: relative;
  margin: 4px auto 0;
  width: 133px;
  height: 97px;
}
@media (min-width: 768px) {
  .what_digit_item._03 .what_digit_item_img {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 660px;
    height: 100%;
  }
}
.what_digit_item._03 .what_digit_item_img .img_01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 57px;
  height: 100%;
}
@media (min-width: 768px) {
  .what_digit_item._03 .what_digit_item_img .img_01 {
    top: 83px;
    left: 11.5px;
    width: 92px;
    height: 157px;
  }
}
.what_digit_item._03 .what_digit_item_img .img_02 {
  position: absolute;
  top: 7px;
  right: 0;
  width: 62px;
  height: 83px;
}
@media (min-width: 768px) {
  .what_digit_item._03 .what_digit_item_img .img_02 {
    top: 106px;
    right: 12px;
    width: 100px;
    height: 134px;
  }
}

.what_digit_item._04 {
  padding: 30px 17px;
  background-color: #fff4e5;

  container-type: inline-size;
}
@media (min-width: 768px) {
  .what_digit_item._04 {
    padding: 40px min(2.7777777778vw, 40px);
  }
}
.what_digit_item._04 .what_digit_item_cont {
  margin-top: 15px;
}
@container (min-width: 585px) {
  .what_digit_item._04 .what_digit_item_cont {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    margin-top: 4px;

    gap: 0 17px;
  }
}
.what_digit_item._04 .what_digit_item_img {
  position: relative;
  margin: 0 auto;
  padding-top: 50px;
  width: 288px;
  height: 204px;
}
@container (min-width: 585px) {
  .what_digit_item._04 .what_digit_item_img {
    margin: initial;
    padding-top: 0;
    width: 356px;
    height: 356px;
  }
}
.what_digit_item._04 .what_digit_item_img .balloon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
  top: 0;
  padding: 4px 6px;
  border-radius: 100vmax;
  width: 100%;
  background-color: var(--color-white);
}
@container (min-width: 585px) {
  .what_digit_item._04 .what_digit_item_img .balloon {
    top: -82px;
    right: -20px;
    border-radius: 50%;
    width: 140px;
    height: 140px;
  }
}
.what_digit_item._04 .what_digit_item_img .balloon > p {
  text-align: center;
  letter-spacing: 0.05em;
  color: var(--color-orange);
  font-size: 0.875rem;
  font-weight: var(--weight-bold);
  line-height: 1.4;
}
@container (min-width: 585px) {
  .what_digit_item._04 .what_digit_item_img .balloon > p {
    font-size: 1rem;
  }
}
.what_digit_item._04 .what_digit_item_img .balloon::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: -14px;
  left: 0;
  margin: auto;
  width: 40px;
  height: 40px;
  background-color: var(--color-white);
  pointer-events: none;

  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
@container (min-width: 585px) {
  .what_digit_item._04 .what_digit_item_img .balloon::before {
    right: auto;
    bottom: 6px;
    left: 6px;
    width: 40px;
    height: 40px;
    transform: rotate(45deg);
  }
}
.what_digit_item._04 .what_digit_item_img .img_01 {
  position: absolute;
  top: 79px;
  left: 0;
  width: 74px;
  height: 68px;
}
@container (min-width: 585px) {
  .what_digit_item._04 .what_digit_item_img .img_01 {
    top: 30px;
    left: -130px;
    width: 144px;
    height: 77px;
  }
}
.what_digit_item._04 .what_digit_item_img .graph {
  position: absolute;
  top: 74px;
  right: 0;
  left: 0;
  margin: auto;
  width: 130px;
  height: 130px;
}
@container (min-width: 585px) {
  .what_digit_item._04 .what_digit_item_img .graph {
    top: 65px;
    right: auto;
    left: 0;
    margin: 0;
    width: 260px;
    height: 260px;
  }
}
.what_digit_item._04 .what_digit_item_img .img_02 {
  position: absolute;
  right: 0;
  bottom: -10px;
  width: 95px;
  height: 112px;
}
@container (min-width: 585px) {
  .what_digit_item._04 .what_digit_item_img .img_02 {
    right: -15px;
    bottom: -46px;
    width: 123px;
    height: 144px;
  }
}
.what_digit_item._04 .what_digit_item_legend {
  display: grid;
  margin-top: 17px;
  width: -moz-fit-content;
  width: fit-content;

  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-auto-flow: row;
  gap: 8px 10px;
}
@container (min-width: 585px) {
  .what_digit_item._04 .what_digit_item_legend {
    margin: inherit;

    gap: 5px 20px;
  }
}
.what_digit_item._04 .what_digit_item_legend_item {
  display: grid;

  grid-template-columns: 15px 1fr;
  gap: 0 3px;
}
@container (min-width: 585px) {
  .what_digit_item._04 .what_digit_item_legend_item {
    grid-template-columns: 20px max-content;
    gap: 0 8px;
  }
}
.what_digit_item._04 .what_digit_item_legend_item .icon {
  display: inline-block;
  position: relative;
  top: 3px;
  border-radius: 50%;
  width: 100%;
  height: 15px;
}
@container (min-width: 585px) {
  .what_digit_item._04 .what_digit_item_legend_item .icon {
    top: 2px;
    height: 20px;
  }
}
.what_digit_item._04 .what_digit_item_legend_item:nth-child(1) .icon {
  background-color: #ff8f00;
}
.what_digit_item._04 .what_digit_item_legend_item:nth-child(2) .icon {
  background-color: #ffbf00;
}
.what_digit_item._04 .what_digit_item_legend_item:nth-child(3) .icon {
  background-color: #95d542;
}
.what_digit_item._04 .what_digit_item_legend_item:nth-child(4) .icon {
  background-color: #09cd96;
}
.what_digit_item._04 .what_digit_item_legend_item:nth-child(5) .icon {
  background-color: #26d1db;
}
.what_digit_item._04 .what_digit_item_legend_item:nth-child(6) .icon {
  background-color: #3139e8;
}
.what_digit_item._04 .what_digit_item_legend_item:nth-child(7) .icon {
  background-color: #5a61ed;
}
.what_digit_item._04 .what_digit_item_legend_item:nth-child(8) .icon {
  background-color: #ff4949;
}
.what_digit_item._04 .what_digit_item_legend_item:nth-child(9) .icon {
  background-color: #ff6d6d;
}
.what_digit_item._04 .what_digit_item_legend_item:nth-child(10) .icon {
  background-color: #929292;
}
.what_digit_item._04 .what_digit_item_legend_item:nth-child(11) .icon {
  background-color: #c1c8cd;
}
.what_digit_item._04 .what_digit_item_legend_item:nth-child(12) .icon {
  background-color: #e0e0e0;
}
.what_digit_item._04 .what_digit_item_legend_item .txt {
  font-size: 1rem;
  font-weight: var(--weight-medium);
  line-height: 1.4;
}
@media (min-width: 768px) {
  .what_digit_item._04 .what_digit_item_legend_item .txt {
    font-size: 1.25rem;
    line-height: 1.4;
  }
}

.what_digit_item._05 {
  padding: 30px 20px 25px;
  background-color: #e6faf4;

  container-type: inline-size;
}
@media (min-width: 768px) {
  .what_digit_item._05 {
    padding-block: 50px 35px;
  }
}
@media (min-width: 1280px) {
  .what_digit_item._05 {
    padding-top: 67px;
  }
}
.what_digit_item._05 .num > span {
  color: #008f66;
}
.what_digit_item._05 .what_digit_item_num_area {
  margin-top: 0;
}
.what_digit_item._05 .what_digit_item_cont {
  display: flex;
  justify-content: center;
  margin-top: 5px;

  gap: 0 20px;
}
@media (min-width: 768px) {
  .what_digit_item._05 .what_digit_item_cont {
    align-items: center;
    margin-top: 39px;

    gap: 0 68px;
  }
}
@media (min-width: 1024px) {
  .what_digit_item._05 .what_digit_item_cont {
    flex-direction: column;
    margin-top: 40px;

    row-gap: 32px;
  }
}
@media (min-width: 1280px) {
  .what_digit_item._05 .what_digit_item_cont {
    margin-top: 31px;

    row-gap: 22px;
  }
}
.what_digit_item._05 .what_digit_item_img {
  position: relative;
  margin-top: 0;
  width: 93px;
  height: 76px;
}
@media (min-width: 768px) {
  .what_digit_item._05 .what_digit_item_img {
    width: 218px;
    height: 177px;
  }
}
.what_digit_item._05 .what_digit_item_img img {
  width: inherit;
  height: inherit;
}
.what_digit_item._05 .what_digit_item_link {
  margin: 16px auto 0;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 768px) {
  .what_digit_item._05 .what_digit_item_link {
    margin-top: 33px;
  }
}

.what_digit_item._06 {
  padding: 30px 20px 25px;
  background-color: #fffbe1;
}
@media (min-width: 768px) {
  .what_digit_item._06 {
    padding-block: 50px 35px;
  }
}
@media (min-width: 1280px) {
  .what_digit_item._06 {
    padding-top: 67px;
  }
}
.what_digit_item._06 .num > span {
  color: #f50;
}
.what_digit_item._06 .what_digit_item_num_area {
  margin-top: 0;
}
.what_digit_item._06 .what_digit_item_cont {
  display: flex;
  justify-content: center;
  margin-top: 5px;

  gap: 0 20px;
}
@media (min-width: 768px) {
  .what_digit_item._06 .what_digit_item_cont {
    align-items: center;
    margin-top: 26px;

    gap: 0 46px;
  }
}
@media (min-width: 1024px) {
  .what_digit_item._06 .what_digit_item_cont {
    flex-direction: column;
  }
}
@media (min-width: 1280px) {
  .what_digit_item._06 .what_digit_item_cont {
    margin-top: 31px;

    row-gap: 9px;
  }
}
.what_digit_item._06 .what_digit_item_img {
  position: relative;
  margin-top: 0;
  width: 121px;
  height: 84px;
}
@media (min-width: 768px) {
  .what_digit_item._06 .what_digit_item_img {
    width: 276px;
    height: 191px;
  }
}
.what_digit_item._06 .what_digit_item_img img {
  width: inherit;
  height: inherit;
}
.what_digit_item._06 .what_digit_item_link {
  margin: 16px auto 0;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 768px) {
  .what_digit_item._06 .what_digit_item_link {
    margin-top: 33px;
  }
}

.what_digit_item._07 {
  padding: 30px 20px 25px;
  background-color: #e9fafb;
}
@media (min-width: 768px) {
  .what_digit_item._07 {
    padding-block: 50px 34px;
  }
}
.what_digit_item._07 .num > span {
  color: #009098;
}
.what_digit_item._07 .what_digit_item_num_area {
  margin-top: 0;
}
.what_digit_item._07 .what_digit_item_cont {
  display: flex;
  justify-content: center;
  margin-top: 5px;

  gap: 0 20px;
}
@media (min-width: 768px) {
  .what_digit_item._07 .what_digit_item_cont {
    align-items: center;
    margin-top: 18px;

    gap: 0 55px;
  }
}
@media (min-width: 1024px) {
  .what_digit_item._07 .what_digit_item_cont {
    flex-direction: column;
  }
}
@media (min-width: 1280px) {
  .what_digit_item._07 .what_digit_item_cont {
    margin-top: 14px;

    row-gap: 18px;
  }
}
.what_digit_item._07 .what_digit_item_img {
  position: relative;
  margin-top: 0;
  width: 104px;
  height: 79px;
}
@media (min-width: 768px) {
  .what_digit_item._07 .what_digit_item_img {
    width: 240px;
    height: 182px;
  }
}
.what_digit_item._07 .what_digit_item_img img {
  width: inherit;
  height: inherit;
}
.what_digit_item._07 .what_digit_item_link {
  margin: 16px auto 0;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 768px) {
  .what_digit_item._07 .what_digit_item_link {
    margin-top: 33px;
  }
}

.what_table {
  --col-num: 4;
  margin-inline: calc((var(--inline-padding) + 15px) * -1);
}
@media (min-width: 768px) {
  .what_table {
    margin-inline: initial;
  }
}
.what_table .table_tooltip_btn {
  display: block;
  position: relative;
  border-radius: 3px;
  width: 14px;
  height: 14px;
  min-height: auto;
  background-color: var(--color-black-txt);
}
@media (min-width: 768px) {
  .what_table .table_tooltip_btn {
    width: 16px;
    height: 16px;
  }
}
.what_table .table_tooltip_btn > span {
  display: block;
  position: absolute;
  margin: auto;
  width: 10px;
  height: 10px;
  background-color: var(--color-white);

  inset: 0;
  -webkit-mask: url("/assets_2025/img/common/icon/question.svg") no-repeat center/contain;
          mask: url("/assets_2025/img/common/icon/question.svg") no-repeat center/contain;
}
@media (min-width: 768px) {
  .what_table .table_tooltip_btn > span {
    width: 12px;
    height: 12px;
  }
}
.what_table table {
  display: grid;

  grid-template-columns: repeat(var(--col-num), 1fr);
  gap: 5px;
  overflow-wrap: break-word;
}
@media (min-width: 768px) {
  .what_table table {
    grid-template-columns: minmax(auto, 210px) repeat(var(--col-num), 1fr);
  }
}
.what_table table thead,
.what_table table tbody,
.what_table table tfoot,
.what_table table tr {
  display: contents;
}
.what_table table th,
.what_table table td {
  padding: 15px 10px;
}
@media (min-width: 768px) {
  .what_table table th,
  .what_table table td {
    padding: 20px;
  }
}
.what_table table th:has(.table_tooltip_trigger),
.what_table table td:has(.table_tooltip_trigger) {
  padding: 0;
}
.what_table table th[colspan="2"],
.what_table table td[colspan="2"] {
  grid-column: auto/span 2;
}
.what_table table th[colspan="3"],
.what_table table td[colspan="3"] {
  grid-column: auto/span 3;
}
.what_table table th[colspan="4"],
.what_table table td[colspan="4"] {
  grid-column: auto/span 4;
}
.what_table table th[rowspan="2"],
.what_table table td[rowspan="2"] {
  grid-row: auto/span 2;
}
.what_table table th {
  font-size: 0.9375rem;
  font-weight: var(--weight-bold);
  line-height: 1.65;
}
@media (min-width: 768px) {
  .what_table table th {
    font-size: 1rem;
    line-height: 1.75;
  }
}
.what_table table td {
  background-color: var(--reversal-color);
}
@media (min-width: 768px) {
  .what_table table td {
    padding: 20px;
  }
}
.what_table table td img {
  width: 1.5625rem;
  height: 1.5625rem;
}
@media (min-width: 768px) {
  .what_table table td img {
    width: 2.1875rem;
    height: 2.1875rem;
  }
}
.what_table table td em img {
  width: 2.1875rem;
  height: 2.1875rem;
}
@media (min-width: 768px) {
  .what_table table td em img {
    width: 3.125rem;
    height: 3.125rem;
  }
}
.what_table table td > :not(:first-child) {
  margin-top: 5px;
}
@media (min-width: 768px) {
  .what_table table td > :not(:first-child) {
    margin-top: 10px;
  }
}
.what_table table td._bg_yellow {
  background-color: var(--color-yellow-04);
}
.what_table table td._sub_head {
  padding: 10px;
  background-color: var(--color-black-txt);
  text-align: center;
  word-break: keep-all;
  color: var(--color-white);
  font-weight: bold;

  grid-column: auto/span var(--col-num);
}
@media (min-width: 768px) {
  .what_table table td._sub_head {
    display: grid;
    padding: 20px;

    place-items: center;
    grid-column: initial;
    grid-row: auto/span 2;
  }
}
.what_table .what_table_head {
  background-color: var(--color-accent-bluegray);
}
.what_table .what_table_head:first-child {
  display: none;
}
@media (min-width: 768px) {
  .what_table .what_table_head:first-child {
    display: block;
    background-color: transparent;
  }
}
.what_table .what_table_head:nth-child(2) {
  border-top-left-radius: 10px;
  background-color: var(--color-ktn-yellow);
}
.what_table .what_table_head:last-child {
  border-top-right-radius: 10px;
}
.what_table .what_table_head:has(.table_tooltip_btn) {
  position: relative;
}
.what_table .what_table_head:has(.table_tooltip_btn) .table_tooltip_btn {
  display: inline-block;
  margin-left: 3px;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .what_table .what_table_head:has(.table_tooltip_btn) .table_tooltip_btn {
    margin-left: 5px;
  }
}
@media (min-width: 768px) {
  .what_table tr:first-child .what_table_item:first-child {
    border-top-left-radius: 10px;
  }
}
.what_table tr:last-child .what_table_item:last-child {
  border-bottom-right-radius: 10px;
}
.what_table tr:last-child .what_table_item:nth-last-child(4) {
  border-bottom-left-radius: 10px;
}
@media (min-width: 768px) {
  .what_table tr:last-child .what_table_item:nth-last-child(4) {
    border-radius: 0;
  }
}
@media (min-width: 768px) {
  .what_table tr:nth-last-child(2) .what_table_item:first-child {
    border-bottom-left-radius: 10px;
  }
}
.what_table tr:nth-child(2n) td {
  display: grid;

  place-items: center;
}
.what_table .what_table_item:has(.table_tooltip_btn) {
  position: relative;
}
.what_table .what_table_item:has(.table_tooltip_btn) .table_tooltip_btn {
  position: absolute;
  right: 5px;
  bottom: 5px;
}
@media (min-width: 768px) {
  .what_table .what_table_item:has(.table_tooltip_btn) .table_tooltip_btn {
    right: 10px;
    bottom: 10px;
  }
}

.table_tooltip_trigger {
  display: block;
  padding: 15px 10px;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .table_tooltip_trigger {
    padding: 20px;
  }
}

th .table_tooltip_trigger {
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  th .table_tooltip_trigger {
    font-size: 1rem;
    line-height: 1.75;
  }
}