/*============================
#chart
============================*/
section#chart {
  display: flex;
  padding: 0 var(--padding-inline, 20px) var(--padding-block, 80px);
  flex-direction: column;
  align-items: center;
  gap: var(--gap-row, 56px);
  align-self: stretch;
  background: var(--surface-variant, #f0f6fd);
}

section#chart .chart__bridge {
  height: var(--scale-40, 40px);
  max-width: 640px;
  align-self: stretch;
  margin-inline: auto;
  width: 100%;
}
section#chart .chart__container {
  width: 100%;
}
section#chart div.chart__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--scale-20, 20px);
}
section#chart div.chart__heading div.heading__en.en {
  display: flex;
  padding-bottom: var(--scale-8, 8px);
  justify-content: center;
  align-items: center;
  border-bottom: var(--scale-4, 4px) solid var(--primary, #003da7);
  color: var(--primary, #003da7);
  text-align: center;
  font-family: Roboto;
  font-size: var(--scale-24, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 24px */
  letter-spacing: 1.92px;
}
section#chart div.chart__heading h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--scale-12, 12px);
}
section#chart div.chart__heading h2 div.h2__sub-title {
  color: var(--on-surface, #2a292c);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-32, 32px);
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 41.6px */
}
section#chart div.chart__heading h2 div.h2__main-title {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 4px var(--scale-4, 4px);
  flex-wrap: wrap;
  color: var(--primary, #003da7);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-40, 40px);
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 52px */
}
section#chart div.chart__heading h2 div.h2__main-title span.box {
  display: flex;
  padding: var(--scale-4, 4px) var(--scale-16, 16px);
  justify-content: center;
  align-items: center;
  background: var(--primary, #003da7);
  color: var(--surface, #fff);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-40, 40px);
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 52px */
}

section#chart div.chart__heading p {
  color: var(--on-surface, #2a292c);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-20, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 170%; /* 34px */
}
section#chart div.chart__heading p span.highlight {
  display: inline;
  color: var(--highlight, #f55600);
}

/*拡大して全体を見るポップアップ*/
section#chart .zoom__popup {
  z-index: 100;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

section#chart .zoom__popup-close {
  width: 30px;
  height: 30px;
  display: inline-block;
  background: url(../images/chart-close.svg) no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
}

section#chart .zoom__popup__content {
  width: 100%;
  max-width: 90%;
  padding: 1em 0.5em;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: var(--scale-16, 16px);
  max-height: 90%;
  overflow-x: scroll;
}

section#chart .zoom__popup__content p {
  font-size: var(--scale-14, 14px);
  color: var(--on-surface, #1b1c1f);
}

section#chart button.zoom__button {
  display: flex;
  max-width: 280px;
  padding: var(--scale-16, 13px);
  justify-content: center;
  align-items: center;
  gap: var(--scale-8, 6px);
  flex: 1 0 0;
  border-radius: 1000px;
  background: var(--primary);
  box-shadow: var(--scale-2, 2px) var(--scale-4, 4px) 0 0 rgba(0, 0, 0, 0.2);
  color: var(--surface, #fff);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-20);
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  /* 27.3px */
  width: 100%;
}

section#chart button.chart__zoom figure.icon-zoom {
  width: 21px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}

section#chart button.chart__zoom figure.icon-zoom img {
  width: 100%;
}

section#chart button.chart__zoom figure.icon-arrow {
  width: 18px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}

section#chart button.chart__zoom figure.icon-arrow img {
  width: 100%;
}

/*チャート*/
section#chart {
  display: flex;
  padding: 0 var(--padding-inline, 20px) var(--padding-block, 80px)
    var(--padding-inline, 20px);
  flex-direction: column;
  align-items: center;
  gap: var(--scale-56, 56px);
  align-self: stretch;
}

section#chart .chart__body {
  /*max-width: 1280px;*/
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--scale-16, 16px);
  align-self: stretch;
}

section#chart .comparition-chart {
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  font-feature-settings: "palt";
}

section#chart h3 {
  display: flex;
  padding: var(--scale-8, 8px);
  justify-content: center;
  align-items: center;
  background: var(--primary-variant, #666668);
  color: var(--surface, #fff);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-20, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
  width: 100%;
}

section#chart .row-group-container {
  display: flex;
  width: 100%;
}

section#chart .row-group {
  display: flex;
  width: 100%;
  flex-direction: column;
}
section#chart .row {
  display: flex;
  width: 100%;
  height: 100%;
}

section#chart .th {
  flex: 0 0 var(--chart-th-width, 100px);

  display: flex;
  width: var(--chart-th-width, 134px);
  padding: var(--scale-8, 8px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-bottom: 1px solid var(--surface, #fff);
  background: var(--primary, #003da7);

  color: var(--surface, #fff);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-18, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
}
section#chart .comparition-chart > .row-group-container:nth-of-type(1) .th {
  border-radius: var(--scale-8, 8px) 0 0 0;
}

section#chart .th.th--group {
  writing-mode: vertical-rl;
  font-feature-settings: initial;
  flex: 0 0 var(--chart-th-group-width, 34px);

  display: flex;
  padding: var(--scale-8, 8px) 0;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  border-bottom: 1px solid var(--surface, #fff);
  background: var(--primary, #003da7);
  color: var(--surface, #fff);
  text-align: center;
  font-feature-settings: "vrt2" on;
  font-family: "Noto Sans JP";
  font-size: var(--scale-18, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 23.4px */
  letter-spacing: 0.3em;
  align-items: start;
}

section#chart .th--sub {
  flex: 0 0 var(--chart-th-sub-width, 160px);

  display: flex;
  padding: var(--scale-8, 8px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--scale-2, 2px);
  align-self: stretch;
  border-right: 1px solid var(--border, #aaa);
  border-bottom: 1px solid var(--border, #aaa);
  background: var(--primary-container, #d3e6ff);

  color: var(--primary, #003da7);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-14, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 18.2px */
}

section#chart .th--sub .th__sub-text {
  color: var(--primary, #003da7);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-12, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 18px */
}

section#chart .th--sub .comment {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: var(--scale-4, 4px);
  align-self: stretch;
}

section#chart .th--sub .comment__text {
  display: flex;
  padding: var(--scale-4, 4px);
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  border-radius: var(--scale-8, 8px);
  background: var(--surface, #fff);
  color: var(--on-surface, #4d4848);
  font-family: "Noto Sans JP";
  font-size: var(--scale-12, 12px);
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  /* 15.6px */
}

section#chart .th--sub .comment figure img {
  width: var(--scale-40, 40px);
  aspect-ratio: 1/1;
}

section#chart .td-group {
  display: flex;
  width: 100%;
}

section#chart .td {
  display: flex;
  padding: var(--scale-8, 8px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--scale-2, 2px);
  align-self: stretch;
  background: #fff;
  border-right: 1px solid var(--border, #c5b2b2);
  border-bottom: 1px solid var(--border, #c5b2b2);
  flex: 1 0 var(--chart-td-width);
  font-feature-settings: "palt";
}
section#chart .row-group-container:first-child .td {
  border-top: 1px solid var(--border, #c5b2b2);
}

section#chart .asterisk {
  font-size: 10px;
}

/*チェックアイコン*/
section#chart .th .c-check {
  display: flex;
  padding: var(--scale-2, 2px);
  align-items: center;
  gap: var(--scale-4, 4px);
  background: var(--secondary, #20b6bc);
  color: #fff600;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-12, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 18px */
}

section#chart .th .c-check figure {
  width: var(--scale-14, 14px);
  aspect-ratio: 1/1;
}

section#chart .th .c-check span {
  flex: 0 0 auto;
}

section#chart .th--group .c-check {
  padding: var(--scale-4, 4px);
  flex-direction: column;
  font-size: var(--scale-12, 12px);
}

section#chart .th .c-check figure {
  width: var(--scale-14, 14px);
}

/*レートセル*/
section#chart .c-td-rate {
  border-right: 1px solid var(--border, #b3b6d0);
  border-bottom: 1px solid var(--border, #b3b6d0);
  display: flex;
  padding: var(--scale-8, 8px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--scale-2, 2px);
  align-self: stretch;
  background: var(--surface);

  color: var(--on-surface, #2a292c);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-18, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 23.4px */
}
section#chart .row[data-attr="前処理方法"] .c-td-rate {
  color: var(--on-surface, #2a292c);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-14, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 21px */
}

section#chart .c-td-rate.small {
  font-size: var(--scale-14, 14px);
}

section#chart :is(.c-td-rate--great, .c-td-rate--check) {
  background: var(--rate-great-container, #fff8cf);
}

section#chart .c-td-rate--good {
  background: var(--rate-good-container, #e3ffe2);
}

section#chart .c-td-rate figure.icon {
  width: var(--scale-32, 32px);
  aspect-ratio: 1/1;
}

section#chart .c-td-rate figure img {
  width: 100%;
}

section#chart .c-td-rate--text {
  color: var(--on-surface, #2a292c);
  font-family: "Noto Sans JP";
  font-size: var(--scale-14, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 21px */
  justify-content: flex-start;
  text-align: left;
}
section#chart .c-td-rate--text span.highlight {
  color: var(--highlight, #f55600);
  display: inline;
}
section#chart .c-td-rate div.subtext {
  color: var(--on-surface, #2a292c);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-12, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 15.6px */
}

/*トグルボタン*/

section#chart div.toggle-button {
  display: flex;
  padding: var(--scale-8, 8px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--scale-8, 8px);
  align-self: stretch;
  grid-column: span 7;
  border-right: 1px solid var(--border, #b3b6d0);
  border-bottom: 1px solid var(--border, #b3b6d0);
  border-left: 1px solid var(--border, #b3b6d0);
  background: var(--primary-container, #ebf5ff);
}

.toggle-button2 {
  width: 100%;
  display: none;
}

@media screen and (max-width: 768px) {
  .toggle-button2 {
    display: flex;
  }
}

:is(div.toggle-button, div.toggle-button2) button {
  display: flex;
  padding: var(--scale-12, 12px) 0;
  justify-content: center;
  align-items: center;
  gap: var(--scale-4, 4px);
  align-self: stretch;
  border-radius: var(--scale-4, 4px);
  border: var(--scale-2, 2px) solid var(--primary, #4a64ba);
  background: var(--surface, #fff);
  color: var(--primary, #4a64ba);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-20, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 20px */
  position: relative;
  width: 100%;
}

:is(div.toggle-button, div.toggle-button2) button::after {
  content: "";
  display: inline-block;
  width: var(--scale-14);
  height: var(--scale-14);
  transition: 0.2s linear;

  background: linear-gradient(
      90deg,
      transparent 0%,
      transparent calc(50% - 1px),
      var(--primary) calc(50% - 1px),
      var(--primary) calc(50% + 1px),
      transparent calc(50% + 1px),
      transparent 100%
    ),
    linear-gradient(
      0deg,
      transparent 0%,
      transparent calc(50% - 1px),
      var(--primary) calc(50% - 1px),
      var(--primary) calc(50% + 1px),
      transparent calc(50% + 1px),
      transparent 100%
    );
}

:is(div.toggle-button, div.toggle-button2) button[aria-expanded="true"]::after {
  rotate: 90deg;
  background: linear-gradient(
      90deg,
      transparent 0%,
      transparent calc(50% - 1px),
      var(--primary) calc(50% - 1px),
      var(--primary) calc(50% + 1px),
      transparent calc(50% + 1px),
      transparent 100%
    ),
    linear-gradient(
      90deg,
      transparent 0%,
      transparent calc(50% - 1px),
      var(--primary) calc(50% - 1px),
      var(--primary) calc(50% + 1px),
      transparent calc(50% + 1px),
      transparent 100%
    );
}

/*サービス*/
section#chart .row-group-container:has(.row--service) {
  position: sticky;
  left: 0;
  top: 80px;
  /*ヘッダーの高さに合わせる*/
  z-index: 10;
}

section#chart .row--service[data-attr="原理"] .td {
  border-right: 1px solid var(--surface, #fff);
  background: var(--on-surface, #2a292c);
  color: var(--surface, #fff);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-18, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 23.4px */
}
section#chart .row--service[data-attr="原理"] .td-group .td:nth-of-type(1) {
  border-top: 1px solid var(--border, #aaa);
  border-right: 1px solid var(--border, #aaa);
  border-bottom: 1px solid var(--border, #aaa);
  background: var(--surface-variant-dark, #cbcccf);
  color: var(--on-surface, #2a292c);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-18, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 23.4px */
}
section#chart .row--service[data-attr="原理"] .td-group .td:nth-of-type(2) {
  color: var(--on-primary-highlight, #f6ff00);
}
section#chart
  .row--service[data-attr="原理"]
  .td-group
  .td:nth-of-type(2)
  span.box {
  display: flex;
  padding: 0 var(--scale-8, 8px);
  justify-content: center;
  align-items: center;
  background: var(--on-primary-highlight, #f6ff00);
  color: var(--on-surface, #2a292c);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-18, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 23.4px */
}
section#chart .row--service .td .td__badge {
  display: flex;
  height: var(--scale-40, 40px);
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  aspect-ratio: 77.58/40;
}

section#chart .row--service .td .td__main-text {
  flex: 1 0 0;
  text-align: center;
  align-content: center;
}

section#chart .row--service .td .td__main-text a {
  text-decoration: none !important;
}

section#chart .row--service figure.td__screenshot {
  width: 100%;
}

section#chart .row--service figure.td__screenshot img {
  width: 100%;
  aspect-ratio: 1366 / 768;
}
section#chart .row--service a {
  display: contents;
}

/*コメント*/
section#chart .td .comment {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  align-self: stretch;
}
section#chart .td .comment .comment__text {
  padding: var(--scale-4, 4px);
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  border-radius: var(--scale-4, 4px);
  border: var(--scale-2, 2px) solid var(--secondary, #f89000);
  background: var(--surface, #fff);
  color: var(--on-surface, #393f47);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-12, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 14.4px */
}
section#chart .td .comment figure {
  width: var(--scale-40, 40px);
  aspect-ratio: 40/38.58;
}
/*ボタン*/
section#chart .td__button {
  display: flex;
  padding: var(--scale-8, 8px);
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-radius: 1000px;
  background: var(--tertiary, #f55600);
  box-shadow: 0 var(--scale-4, 4px) var(--scale-4, 4px) 0 rgba(0, 0, 0, 0.25);
}
section#chart .td__button div {
  flex: 1 0 0;
  color: var(--surface, #fff);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-14, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 18.2px */
}
section#chart .td__button--2 {
  background: var(--tertiary, #018e01);
}
section#chart .td__button svg {
  width: var(--scale-16, 16px);
  height: 16px;
  aspect-ratio: 1/1;
}

section#chart .row[data-attr="主要製品"] .td {
  color: var(--on-surface, #2a292c);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-14, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 15.4px */
}

section#chart .row[data-attr="主要製品"] .td:nth-of-type(n + 2) {
  justify-content: flex-start;
}
.row[data-attr="主要製品"] .td__model-number {
  display: flex;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  color: var(--primary, #003da7);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-12, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 13.2px */
}

.row[data-attr="主要製品"] .td .td__sub-text {
  color: var(--on-surface-variant, #717073);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-12, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 13.2px */
}

/*注意書き*/
section#chart .chart__note {
  color: var(--on-surface-variant, #888);
  font-family: "Noto Sans JP";
  font-size: var(--scale-12, 10px);
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  /* 13px */
}
section#chart .chart__note a {
  text-decoration: underline !important;
}
section#chart .row[data-attr="特徴"] .td {
  color: var(--on-surface, #393f47);
  font-family: "Noto Sans JP";
  font-size: var(--scale-14, 14px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 21px */
  justify-content: flex-start;
}
section#chart .row[data-attr="特徴"] .td .highlight {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-color: rgba(255, 204, 0, 0.5);

  text-decoration-thickness: 30%; /* 4.2px */
  text-underline-offset: -2%; /* -0.28px */
  text-underline-position: from-font;
  display: inline;
}

/*---------------
ツールチップ
------------------*/

section#chart .tool-tip {
  position: relative;
  display: inline-block;
}
section#chart .tool-tip p {
  background: var(--primary);
  border-radius: var(--scale-4);
  padding: var(--scale-8);
  font-size: var(--scale-12);
  font-weight: 500;
  position: absolute;
  right: -0.5em;
  top: -1em;
  color: var(--surface, #fff);
  width: 20em;
  transform: translateX(100%);
  text-align: left;
  z-index: 10;
  display: none;
}
section#chart .tool-tip:hover p {
  display: block;
}
section#chart .tool-tip p:before {
  content: "";
  display: block;
  border-right: 0.5em solid var(--primary);
  border-top: 0.5em solid transparent;
  border-bottom: 0.5em solid transparent;
  left: -0.4em;
  top: 1em;
  width: 0.5em;
  height: 1em;
  position: absolute;
}

@media screen and (max-width: 1024px) {
  section#chart .chart__body {
    overflow-x: scroll;
  }
  section#chart .comparition-chart {
    max-width: none;
  }
  section#chart .row-group-container {
    width: auto;
  }

  section#chart .chart__container h3 {
    text-align: left;
  }
  section#chart .row-group-container:has(.row--service) {
    position: relative;
    left: 0;
    top: 0;
  }

  /*=================================
  縦横変更
  ===================================*/
  /*
  section#chart .comparition-chart {
    flex-direction: row;
  }


  section#chart .row-group-container {
    flex-direction: column;
  }

  section#chart .row-group-container[data-width-sp] {
    width: attr(data-width-sp);
  }

  section#chart .row-group {
    flex-direction: row;
  }

  section#chart .th.th--group {
    flex-direction: row;
    width: 100%;
    height: var(--chart-th-group-height);
  }

  section#chart .row {
    flex-direction: column;
  }

  section#chart .td-group {
    flex-direction: column;
  }

  section#chart .th {
    border-right: 1px solid var(--surface, #fff);
    border-bottom: none;
    height: var(--chart-th-height);
  }

  section#chart h3 {
    height: var(--chart-th-h3-height, 48px);

    padding: var(--scale-8, 6px);
    align-items: flex-start;
    align-self: stretch;
    border-right: 1px solid var(--surface, #fff);
    background: var(--on-primary-container, #245eb4);
    color: var(--surface, #fff);
    font-family: "Noto Sans JP";
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    display: flex;
    flex-direction: column;
  }

  section#chart h3 span {
    display: block;
  }
  section#chart .th--group .c-check {
    flex-direction: row;
  }

  section#chart .th.th--sub {
    height: var(--chart-th-sub-height);
    border-bottom: 1px solid;
    border-color: var(--border);
    width: auto;
    display: flex;
    border-left: none;
  }
  section#chart .th.th--sub .comment img {
    display: none;
  }

  section#chart .td {
    height: var(--chart-td-height-short, 128px);
    flex: auto;
    padding: 6px;
  }

  section#chart .row-group-container:first-child .td {
    border-top: 0;
    border-left: 1px solid var(--border, #c5b2b2);
  }

  section#chart .td-group .td:first-child {
    height: var(--chart-td-height, 168px);
  }

  section#chart .row :is(.th, .td) {
    width: 120px;
  }

  section#chart .row.row--service :is(.th, .td) {
    width: 120px;
  }

  section#chart .row--service .td .td__main-text {
    flex: 0 0 auto;
  }

  section#chart .row.row--bottom {
    display: none;
  }


  section#chart .row[data-attr="特徴"] :is(.th, .td) {
    width: 168px;
  }
  section#chart .row[data-attr="安全性"] :is(.th, .td) {
    width: 160px;
  }
  section#chart .row[data-attr="モデルルーム"] :is(.th, .td) {
    width: 104px;
  }
  section#chart .row[data-attr="専用窓口"] :is(.th, .td),
  section#chart .row[data-attr="建築日誌"] :is(.th, .td) {
    width: 96px;
  }

  section#chart .row[data-attr="坪単価"] :is(.th, .td) {
    width: 86px;
  }
  section#chart .row[data-attr="モデルハウス"] :is(.th, .td) {
    width: 80px;
  }
  section#chart .row[data-attr="モデルハウス"] .th--sub span {
    display: inline;
  }
  section#chart .row[data-attr="専用窓口"] .th--sub span {
    display: inline;
  }

  section#chart .row--service .td figure.td__screenshot {
    display: none;
  }

  section#chart .row--service .td .td__badge {
    height: 28px;
  }

  section#chart .row--service .td:nth-of-type(n + 4) .td__badge {
    display: none;
  }

  section#chart .row--service .td__button {
    font-size: 14px;
  }
    */
}
