@charset "UTF-8";
html {
  margin: 0 !important;
}

/* 2024/10/4 */
* {
  margin: 0;
  padding: 0;
}

#wet_price {
  position: relative;
}

/* 2024/10/4 */
.price-section-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px 0;
}

.price-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px 0;
  width: 100%;
  padding: 1.5em 1em;
  background: #f7f7f7;
}

.price-top-title {
  display: grid;
  gap: 64px;
  position: relative;
  width: 100%;
  margin: 0;
  font-size: 28px;
  line-height: 1.4;
  text-align: center;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 520px) {
  .price-top-title {
    font-size: 26px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.price-top-title::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: var(--ac-font-c-1);
  font-weight: 400;
  font-size: 2em;
  content: "+";
}
.price-top-title__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25em;
  padding: 1em 0.5em;
  border: 2px solid var(--ac-font-c-1);
  background: var(--bg-white);
}
.price-top-title__main {
  color: var(--ac-font-c-1);
  font-weight: 700;
  font-size: 1em;
}
.price-top-title__sub {
  font-weight: 500;
  font-size: 0.6em;
}

.price-top-table {
  display: block;
  width: 100%;
  line-height: 1.4;
}
.price-top-table * {
  margin: 0;
  padding: 0;
}
.price-top-table table {
  width: 100%;
  background: var(--bg-white);
  border-collapse: collapse;
}
.price-top-table th {
  font-weight: 500;
  font-size: 20px;
}
.price-top-table td {
  font-weight: 400;
}
.price-top-table tr > * {
  padding: 0.5em 1em;
}
.price-top-table thead {
  width: 100%;
  background: #dff2fc;
}
.price-top-table thead th {
  padding: 0.5em;
  font-weight: 700;
  font-size: 22px;
}
@media screen and (max-width: 520px) {
  .price-top-table thead th {
    font-size: 20px;
  }
}
.price-top-table tbody {
  width: 100%;
}
.price-top-table tbody tr {
  border-top: 4px solid #f7f7f7;
}
.price-top-table tbody th {
  width: 200px;
  border-right: 4px solid #f7f7f7;
}
@media screen and (max-width: 520px) {
  .price-top-table tbody th {
    width: auto;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
}

.price-case-list {
  display: grid;
  gap: 64px 32px;
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.4;
  grid-template-columns: repeat(auto-fit, minmax(450px, auto));
  grid-auto-rows: -webkit-min-content;
  grid-auto-rows: min-content;
}
@media screen and (max-width: 520px) {
  .price-case-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.price-case-list * {
  margin: 0;
  padding: 0;
}
.price-case-list__item {
  display: grid;
  gap: 1em;
  width: 100%;
  height: 100%;
  grid-template-columns: 2fr 3fr;
}
.price-case-list__title {
  padding: 0 0 0.5em;
  border-bottom: 2px solid var(--ac-font-c-1);
  font-weight: 700;
  font-size: 22px;
  grid-column: 1/3;
  grid-row: 1;
}
.price-case-list__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5em;
  grid-column: 1;
  grid-row: 2;
}
.price-case-list__img img {
  width: 100%;
}
.price-case-list__img figcaption {
  width: 100%;
  font-weight: 400;
  font-size: 13px;
}
@media screen and (max-width: 520px) {
  .price-case-list__img {
    grid-column: 1/3;
  }
}
.price-case-list__table {
  grid-column: 2;
  grid-row: 2;
}
@media screen and (max-width: 520px) {
  .price-case-list__table {
    grid-column: 1/3;
    grid-row: 3;
  }
}

.price-case-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
  width: 100%;
  line-height: 1.4;
}
.price-case-table * {
  margin: 0;
  padding: 0;
}
.price-case-table table {
  width: 100%;
  border: 1px solid var(--main-font-c);
  border-collapse: collapse;
}
.price-case-table th {
  font-weight: 500;
  font-size: 15px;
  text-align: left;
}
.price-case-table th > span {
  display: inline-block;
  white-space: nowrap;
}
.price-case-table td {
  font-weight: 400;
  font-size: 16px;
  text-align: right;
  white-space: nowrap;
}
.price-case-table tr {
  border-top: 1px dashed var(--main-font-c);
}
.price-case-table tr:first-of-type {
  border-top: 0;
  background: var(--ac-font-c-1);
  color: var(--bg-white);
}
.price-case-table tr:first-of-type th {
  width: 120px;
  font-weight: 700;
  text-align: center;
}
.price-case-table tr > * {
  padding: 0.5em;
}
.price-case-table tbody {
  width: 100%;
}

.price-case-description {
  display: block;
  width: 100%;
  margin: 1em 0;
  font-size: 14px;
  line-height: 1.6;
}
.section-title:has(+ .price-case-description) {
  margin: 0 0 1em;
}

.section-title-2:has(+ .price-case-description) {
  margin: 0 0 1em;
}

.price-table-title {
  display: block;
  width: 100%;
  margin: 0 0 1em;
  padding: 0.5em;
  background: #dff2fc;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 520px) {
  .price-table-title {
    font-size: 24px;
  }
}

.price-table-title-description {
  display: block;
  width: 100%;
  margin: 1em 0;
  font-size: 16px;
  line-height: 1.6;
  text-align: right;
}
@media screen and (max-width: 520px) {
  .price-table-title-description {
    font-size: 14px;
    text-align: left;
  }
}

.price-table {
  display: block;
  width: 100%;
  padding: 1.5em 1em;
  overflow-x: auto;
  background: #f7f7f7;
  line-height: 1.4;
  white-space: nowrap;
}
.price-table * {
  margin: 0;
  padding: 0;
}
.price-table table {
  width: 100%;
  border: 3px solid #f7f7f7;
  background: var(--bg-white);
  border-collapse: collapse;
}
.price-table th {
  width: 200px;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.03em;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}
@media screen and (max-width: 520px) {
  .price-table th {
    font-size: 16px;
  }
}
.price-table td {
  font-weight: 400;
  font-size: 20px;
  text-align: right;
}
@media screen and (max-width: 520px) {
  .price-table td {
    font-size: 18px;
  }
}
.price-table tr {
  border-top: 3px solid #f7f7f7;
}
.price-table tr > * {
  padding: 1em 0.5em;
  border-left: 4px solid #f7f7f7;
}
.price-table thead {
  border-bottom: 3px solid #f7f7f7;
}
.price-table thead th {
  font-weight: 700;
}
.price-table tbody {
  width: 100%;
}
@media screen and (max-width: 520px) {
  .price-table tbody th {
    width: auto;
  }
}
.price-table--center tbody td {
  text-align: center;
}
.price-table--last-change tr > :last-child {
  color: #d10000;
}

.price-table-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
  line-height: 1.6;
}
.price-table-description * {
  margin: 0;
  padding: 0;
}
.price-table-description ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5em;
  list-style: square;
  padding: 0 0 0 1.5em;
}
.price-table-description ul ul {
  list-style: disc;
  margin: 0.5em 0 0;
}
.price-table-description ul a {
  color: var(--link-font-c);
  font-weight: 500;
}

.usage-needs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px 8px;
  width: 100%;
  margin: 2em 0;
}
@media screen and (max-width: 520px) {
  .usage-needs {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.usage-needs__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 180px;
  padding: 4px 24px;
  border-radius: 20px;
  background-color: var(--ac-font-c-1);
  color: var(--bg-white);
  font-weight: 600;
  font-size: 21px;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 520px) {
  .usage-needs__title {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: auto;
    border-radius: 10px;
    text-align: left;
  }
}
.usage-needs__items {
  display: grid;
  gap: 8px;
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(auto-fit, 160px);
  grid-auto-rows: 160px;
}
.usage-needs__item {
  display: block;
  width: 160px;
  height: 160px;
  padding: 8px;
  border: 3px solid var(--ac-font-c-1);
  border-radius: 10px;
  background-color: var(--bg-white);
  text-align: center;
}
.usage-needs__item > figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.usage-needs__icon {
  width: 80px;
  height: 72px;
  margin: 0 0 16px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom center;
     object-position: bottom center;
}
.usage-needs__text {
  margin: 0.5em 0 0.6em;
  color: var(--ac-font-c-1);
  font-weight: bold;
  font-size: 20px;
  text-align: center;
}

.price-accent-box .accent-box {
  margin: 0;
  border-radius: 10px;
  line-height: 1.4;
}

.vehicles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px 16px;
  width: 100%;
  /* 高さを自動にしておくことで、可変に対応 */
  margin: 0 auto;
  overflow-x: auto;
  /* 行全体 */
  /* 左カラムの車両 (車両2) */
  /* 右カラム */
  /* 車両カード (車両1, 3) */
  /* 車両タイトル（例: 車両2） */
  /* サブタイトルや補足情報 */
  /* サイズ情報：tableによるレイアウト */
  /* foot見出し */
}
@media screen and (max-width: 520px) {
  .vehicles {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    overflow-x: visible;
  }
}
.vehicles__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  gap: 24px;
  width: 1240px;
}
@media screen and (max-width: 520px) {
  .vehicles__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
  }
}
.vehicles__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  width: 596px;
  height: 560px;
  padding: 12px;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 520px) {
  .vehicles__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    height: auto;
    padding: 0;
  }
}
.vehicles__item-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (max-width: 520px) {
  .vehicles__item-img {
    position: static;
    -webkit-transform: none;
            transform: none;
  }
}
.vehicles__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /* テキスト部分のレイアウト */
  width: 209px;
}
@media screen and (max-width: 520px) {
  .vehicles__content {
    width: 100%;
    padding: 8px;
    background: #dff2fc;
  }
}
.vehicles__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px 0;
  width: min(100%, 620px);
}
.vehicles__card {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  min-height: 272px;
}
.vehicles__card-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media screen and (max-width: 520px) {
  .vehicles__card-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.vehicles__card-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: min(100%, 395px);
  height: 272px;
  /* 高さ可変に */
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 520px) {
  .vehicles__card-img {
    height: auto;
  }
}
.vehicles__card-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 8px;
  background: #dff2fc;
}
.vehicles__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  margin-bottom: 8px;
  padding: 4px 24px;
  border-radius: 5px;
  background: #47a0e3;
  color: var(--bg-white);
  text-align: center;
}
.vehicles__title .vehicles__label {
  font-weight: 700;
  font-size: 18px;
}
.vehicles__title .vehicles__number {
  font-size: 20px;
}
.vehicles__subtitle {
  margin-bottom: 4px;
  color: #000000;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4;
}
.vehicles__note {
  margin-bottom: 4px;
  color: #000000;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.25;
  text-align: left;
}
.vehicles__size {
  width: 100%;
  margin-top: 2px;
  background: #fff;
  border-left: 3px solid #f2f2f2;
  border-right: 3px solid #f2f2f2;
  border-bottom: 3px solid #f2f2f2;
}
.vehicles__size--first {
  margin-top: auto;
}
.vehicles__size-title {
  /* thead要素に適用 */
}
.vehicles__size-title th {
  font-size: 14px;
  font-weight: 500;
  color: #202020;
  text-align: center;
  padding: 4px 16px;
}
.vehicles__size-table {
  width: 100%;
  border-collapse: collapse;
}
.vehicles__size-table thead tr {
  background: #f2f2f2;
}
.vehicles__size-table thead tr th,
.vehicles__size-table thead tr td {
  padding: 4px 16px;
  font-size: 11px;
  font-weight: 500;
  color: #202020;
}
.vehicles__size-table thead tr th {
  text-align: center;
}
.vehicles__size-table thead tr td {
  text-align: right;
}
.vehicles__size-table tbody tr {
  border-top: 2px solid #f2f2f2;
}
.vehicles__size-table tbody tr:first-child {
  border-top: none;
}
.vehicles__size-table tbody tr th,
.vehicles__size-table tbody tr td {
  padding: 4px 16px;
  font-size: 11px;
  font-weight: 500;
  color: #202020;
}
.vehicles__size-table tbody tr th {
  text-align: left;
}
.vehicles__size-table tbody tr td {
  text-align: right;
}
.vehicles__notice {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 8px 32px;
  border-radius: 10px;
  background: #f39801;
  color: var(--bg-white);
  font-weight: 500;
  font-size: 22px;
  text-align: center;
  line-height: 1.25;
}
@media screen and (max-width: 520px) {
  .vehicles__notice {
    font-size: 20px;
  }
}