/*
* download.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;
}

/* --------------------------------
  Download
-------------------------------- */
.download_scroll_panel {
  overflow-y: auto;
  padding: 30px;
  border: 1px solid var(--color-line-solid);
  border-radius: 10px;
  height: 31.5rem;
}
@media (min-width: 768px) {
  .download_scroll_panel {
    padding: 60px min(4.1666666667vw, 60px);
    height: 25rem;
  }
}

.download_scroll_panel_inner {
  display: flex;
  flex-direction: column;

  gap: 60px;
}
.download_scroll_panel_inner ._align_right {
  text-align: right;
}

.download_scroll_panel_block {
  display: flex;
  flex-direction: column;

  gap: 30px;
}
.download_scroll_panel_block ul li + li {
  margin-top: 5px;
}
.download_scroll_panel_block .download_scroll_panel_list > li {
  position: relative;
  padding-left: 1.2em;
  counter-increment: li;
}
.download_scroll_panel_block .download_scroll_panel_list > li::before {
  content: counter(li) ".";
  position: absolute;
  top: 0;
  left: 0;
}
.download_scroll_panel_block .download_scroll_panel_list > li:nth-child(n+10) {
  padding-left: 1.8em;
}

.download_table {
  width: 100%;
  min-width: var(--img-width);

  --col-num: 3;
}
.download_table table {
  display: grid;

  grid-template-columns: repeat(var(--col-num), auto);
  gap: 5px;
  overflow-wrap: break-word;
}
@media (min-width: 768px) {
  .download_table table {
    gap: 10px;
  }
}
.download_table table thead,
.download_table table tbody,
.download_table table tfoot,
.download_table table tr {
  display: contents;
}
.download_table table th,
.download_table table td {
  padding: 20px;
  min-width: 8.75rem;
}
.download_table table th {
  background-color: var(--color-black-txt);
  color: var(--color-white);
}
.download_table table td {
  display: grid;
  background-color: var(--reversal-color);

  place-items: center;
}
.download_table table td > * {
  justify-self: stretch;
}
.download_table table td ._align_center {
  text-align: center;
}
.download_table thead th:first-child {
  border-top-left-radius: 10px;
}
.download_table thead th:last-child {
  border-top-right-radius: 10px;
}
.download_table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}
.download_table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}