/* ----------------------------------------------------
kv
-----------------------------------------------------*/
.kv {
	padding-top: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  -moz-column-gap: min(9vw, 30px);
       column-gap: min(9vw, 30px);
  row-gap: min(4vw, 15px);
}
@media screen and (max-width: 767px) {
  .kv {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .kv__cont {
    order: 2;
  }
}
.kv__cont dl {
  text-align: center;
  display: grid;
  row-gap: min(9vw, 30px);
}
.kv__cont dl dt {
  max-width: 250px;
  width: 60%;
  margin-inline: auto;
}
@media screen and (max-width: 1180px) {
  .kv__cont dl dt {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .kv__fig {
    order: 1;
  }
}
.price-center{
    vertical-align: middle;
    white-space: nowrap;
}
.back-gray{
    background-color: #EBEBEB;
}

.table-scroll{
  overflow-x : auto;
    vertical-align: middle;
    white-space: nowrap;
}

.img_box {
  display: grid; /* グリッドレイアウトを適用 */
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* 幅を自動調整 */
  gap: 40px; /* 要素同士の間隔 */
  position: relative;
  max-width: 1180px;
  margin-inline: auto;
}