/*****************************************
*
* 保有車両
*
******************************************/


.pages-vehicles .box {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 40px;
  margin-bottom: 40px;
}

@media screen and (min-width: 600px), print {
  .pages-vehicles .box {
    grid-template-columns: 1fr calc(calc(300 / 1240) * 100vw);
    row-gap: 0;
    column-gap: calc(calc(100 / 1240) * 100vw);
  }
}

@media screen and (min-width: 834px), print {
  .pages-vehicles .box {
    margin-bottom: 60px;
  }
}

@media screen and (min-width: 1240px), print {
  .pages-vehicles .box {
    grid-template-columns: 1fr 300px;
    column-gap: 100px;
  }
}

/* 画像 --------------------------------*/
.pages-vehicles .box figure img {
  width: 100%;
}

@media screen and (max-width: 599px) {
  .pages-vehicles .box .size {
    width: 200px;
    margin: 0 auto;
  }
}

/* 表 --------------------------------*/
@media screen and (min-width: 768px), print {
  .pages-vehicles .box .table-type-underline-dashed-colspan2 th {
    width: 18em;
  }
}

@media screen and (min-width: 834px), print {

  .pages-vehicles .box .table-type-underline-dashed-colspan2 th,
  .pages-vehicles .box .table-type-underline-dashed-colspan2 td {
    font-size: calc(calc(16 / 1240) * 100vw);
    padding: calc(calc(10 / 1240) * 100vw);
  }
}

@media screen and (min-width: 1240px), print {

  .pages-vehicles .box .table-type-underline-dashed-colspan2 th,
  .pages-vehicles .box .table-type-underline-dashed-colspan2 td {
    font-size: 1rem;
    padding: 10px;
  }
}

/* ボタン --------------------------------*/
.pages-vehicles .btn {
  margin-top: 40px;
}

@media screen and (min-width: 834px), print {
  .pages-vehicles .btn {
    margin-top: 60px;
  }
}