@charset "UTF-8";

.price_table {
  width: 100%;
  text-align: center;
  border: 2px solid var(--i_txt_color);
}
.price_table th,
.price_table td {
  border: 1px solid var(--i_txt_color);
  padding: 1rem;
}
.price_table th {
  background: #FCC765;
  color: var(--i_sub2_color);
  font-weight: normal;
}

.price_table1 th {
  width: 20%;
}

.price_table2 td {
  width: calc(80% / 5);
}

:is(.price_table2) td[rowspan],td:first-child:not(.price_table2 td[rowspan] + td),td[rowspan] + td {
  width: 10%;
}

@media (width <= 800px) {
  .price_table_wrap {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .price_table th,
  .price_table td {
    padding: 0.5rem;
  }
}
