@charset "UTF-8";
/* CSS Document */

/* =========================
   在庫一覧ページ
========================= */
.zaiko-archive {
  padding: 0 0 64px;
  background: #f7f7f7;
}

.zaiko-archive-head {
  padding: 24px 0 20px;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}

.zaiko-archive-head__inner,
.zaiko-archive-list__inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.zaiko-archive-head__title {
  margin: 0 0 6px;
  font-size: 30px;
  line-height: 1.4;
  font-weight: 700;
  color: #111;
}

.zaiko-archive-head__lead {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
}

.zaiko-archive-list {
  padding-top: 24px;
}

.zaiko-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.zaiko-archive-empty {
  padding: 48px 0;
  text-align: center;
  font-size: 16px;
  color: #666;
}

/* =========================
   絞り込みフォーム
========================= */
.zaiko-filter {
  margin: 0 0 18px;
  padding: 18px;
  background: #fff;
  border: 1px solid #ddd;
  box-sizing: border-box;
}

.zaiko-filter__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 14px;
  align-items: end;
}

.zaiko-filter__item {
  min-width: 0;
}

.zaiko-filter__label {
  display: block;
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
}

.zaiko-filter__select {
  width: 100%;
  height: 46px;
  padding: 0 40px 0 14px;
  font-size: 14px;
  color: #111;
  border: 1px solid #ccc;
  border-radius: 0;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff url("data:image/svg+xml;utf8,<svg fill='%23333' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5z'/></svg>") no-repeat right 8px center;
  background-size: 18px;
}

.zaiko-filter__buttons {
  display: flex;
  gap: 10px;
}

.zaiko-filter__submit,
.zaiko-filter__reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  height: 46px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-sizing: border-box;
  transition: 0.25s;
}

.zaiko-filter__submit {
  color: #fff;
  background: #e60012;
  border: 1px solid #e60012;
  cursor: pointer;
}

.zaiko-filter__submit:hover {
  background: #b8000f;
  border-color: #b8000f;
}

.zaiko-filter__reset {
  color: #111;
  background: #fff;
  border: 1px solid #ccc;
}

.zaiko-filter__reset:hover {
  background: #f5f5f5;
}

@media screen and (max-width: 1100px) {
  .zaiko-filter__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .zaiko-filter__buttons {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .zaiko-filter {
    margin-bottom: 16px;
    padding: 14px;
  }

  .zaiko-filter__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .zaiko-filter__label {
    margin-bottom: 5px;
    font-size: 12px;
  }

  .zaiko-filter__select {
    height: 44px;
    padding: 0 12px;
    font-size: 14px;
  }

  .zaiko-filter__buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .zaiko-filter__submit,
  .zaiko-filter__reset {
    min-width: 0;
    width: 100%;
    height: 44px;
    font-size: 13px;
  }

  .zaiko-archive-toolbar {
    gap: 10px;
  }

  .zaiko-sort {
    justify-content: space-between;
  }

  .zaiko-sort__select {
    min-width: 0;
    width: 100%;
    max-width: 220px;
  }
}

/* =========================
   件数 + 並び順
========================= */
.zaiko-archive-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 0 0 16px;
}

.zaiko-archive-result__count {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #333;
}

.zaiko-sort {
  display: flex;
  align-items: center;
  gap: 10px;
}

.zaiko-sort__label {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  white-space: nowrap;
}

.zaiko-sort__select {
  min-width: 180px;
  height: 42px;
  padding: 0 40px 0 14px;
  font-size: 14px;
  color: #111;
  border: 1px solid #ccc;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff url("data:image/svg+xml;utf8,<svg fill='%23333' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5z'/></svg>") no-repeat right 8px center;
  background-size: 14px;
}

/* =========================
   カード全体
========================= */
.zaiko-card {
  padding: 20px;
  background: #fff;
  border: 1px solid #ddd;
  box-sizing: border-box;
}

.zaiko-card__title {
  margin: 0 0 16px;
  font-size: 26px;
  line-height: 1.5;
  font-weight: 700;
  text-align: left;
}

.zaiko-card__titlelink {
  color: #111;
  text-decoration: none;
}

.zaiko-card__titlelink:hover {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .zaiko-card {
    padding: 3%;
  }

  .zaiko-card__title {
    margin-bottom: 12px;
    font-size: 18px !important;
  }
}

/* =========================
   大枠レイアウト
========================= */
.zaiko-card__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}

@media screen and (max-width: 1200px) {
  .zaiko-card__layout {
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 20px;
  }
}

@media screen and (max-width: 900px) {
  .zaiko-card__layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media screen and (max-width: 767px) {
  .zaiko-card__layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* =========================
   左側 main
========================= */
.zaiko-card__main {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  grid-template-areas:
    "thumb price"
    "thumb spec";
  gap: 16px 24px;
  align-items: start;
  min-width: 0;
}

.zaiko-card__head {
  display: contents;
}

.zaiko-card__thumb {
  grid-area: thumb;
  width: 100%;
}

.zaiko-card__price {
  grid-area: price;
  min-width: 0;
}

.zaiko-card__spec {
  grid-area: spec;
}

@media screen and (max-width: 1200px) {
  .zaiko-card__main {
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 14px 18px;
  }

  .zaiko-card__title {
    font-size: 22px;
  }
}

@media screen and (max-width: 767px) {
  .zaiko-card__main {
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "spec";
    gap: 8px;
  }

  .zaiko-card__head {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 16px;
    align-items: center;
  }

  .zaiko-card__thumb {
    grid-area: auto;
  }

  .zaiko-card__price {
    grid-area: auto;
  }
}

/* =========================
   サムネイル
========================= */
.zaiko-card__mainlink {
  display: block;
  text-decoration: none;
}

.zaiko-card__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid #ddd;
  background: #fff;
}

.zaiko-card__noimage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  font-size: 14px;
  color: #666;
  background: #f3f3f3;
  border: 1px solid #ddd;
}

/* =========================
   ご成約済み表示
   詳細・一覧共通
========================= */

/*
 * 詳細ページ：
 * .zaiko-slider-wrap
 *
 * 一覧ページ：
 * .zaiko-card__stock-wrap
 */
.zaiko-slider-wrap,
.zaiko-card__stock-wrap {
  position: relative;
  overflow: hidden;
}

/* 赤い半透明の帯 */
.zaiko-stock-out-label {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 10;
  width: 100%;
  padding: 18px 16px;
  color: #fff;
  text-align: center;
  background: rgba(230, 0, 18, 0.78);
  box-sizing: border-box;
  transform: translateY(-50%);
  pointer-events: none;
}

/* 白文字 */
.zaiko-stock-out-label__text {
  display: block;
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

/* 一覧ページ */
.zaiko-card__stock-wrap .zaiko-stock-out-label {
  padding: 12px 10px;
}

.zaiko-card__stock-wrap .zaiko-stock-out-label__text {
  font-size: clamp(18px, 2.4vw, 30px);
}

/* スマホ */
@media screen and (max-width: 767px) {
  .zaiko-stock-out-label {
    padding: 12px 10px;
  }

  .zaiko-stock-out-label__text {
    font-size: 22px;
  }

  .zaiko-card__stock-wrap .zaiko-stock-out-label {
    padding: 8px 6px;
  }

  .zaiko-card__stock-wrap .zaiko-stock-out-label__text {
    font-size: 16px;
  }
}

/* =========================
   価格
========================= */
.zaiko-card__price {
  display: flex;
  align-items: flex-end;
  gap: 24px;
}

.zaiko-card__price-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex-shrink: 0;
}

.zaiko-card__price-main-label {
  font-size: 0.8em;
  font-weight: 700;
  color: #555;
  line-height: 1.3;
}

.zaiko-card__price-total {
  margin: 0;
  line-height: 1;
}

.zaiko-card__price-total strong {
  font-size: 2em;
  font-weight: 700;
  color: #e60012;
}

.zaiko-card__price-total span {
  font-size: 1em;
  font-weight: 700;
  margin-left: 4px;
}

.zaiko-card__price-sub {
  display: flex;
  align-items: flex-end;
  gap: 24px;
}

.zaiko-card__price-subitem {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.zaiko-card__price-subttl {
  font-size: 0.7em;
  font-weight: 500;
  color: #555;
  line-height: 1.3;
}

.zaiko-card__price-subval {
  font-size: 1em;
  font-weight: 500;
  color: #111;
  line-height: 1;
}

@media screen and (max-width: 1200px) {
  .zaiko-card__price {
    gap: 18px;
  }

  .zaiko-card__price-total strong {
    font-size: 2em;
  }

  .zaiko-card__price-sub {
    gap: 18px;
  }

  .zaiko-card__price-subval {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .zaiko-card__price {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 0;
  }

  .zaiko-card__price-main {
    min-width: auto;
    gap: 4px;
  }

  .zaiko-card__price-main-label {
    font-size: 0.8em;
  }

  .zaiko-card__price-total strong {
    font-size: 1.5em;
  }

  .zaiko-card__price-total span {
    font-size: 1em;
    margin-left: 0;
  }

  .zaiko-card__price-sub {
    justify-content: space-between;
    align-items: flex-start;
    gap: 4px;
  }

  .zaiko-card__price-subitem {
    flex: 0 0 auto;
    width: fit-content;
    min-width: 0;
    gap: 2px;
  }

  .zaiko-card__price-subttl {
    font-size: 0.75em;
  }

  .zaiko-card__price-subval {
    font-size: 0.75em;
  }
}

/* =========================
   スペック
========================= */
.zaiko-card__spec {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.zaiko-card__specrow {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  min-width: 0;
}

.zaiko-card__specrow dt {
  width: 100%;
  margin: 0;
  padding: 4px 8px;
  font-size: 0.6em;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
  text-align: center;
  background: #fafafa;
  box-sizing: border-box;
}

.zaiko-card__specrow dd {
  margin: 0;
  padding: 0 4px;
  font-size: 0.8em;
  color: #111;
  line-height: 1.5;
  text-align: center;
  word-break: break-word;
}

@media screen and (max-width: 1200px) {
  .zaiko-card__spec {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media screen and (max-width: 767px) {
  .zaiko-card__spec {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
  }

  .zaiko-card__specrow dt {
    font-size: 0.6em;
    padding: 3px 6px;
  }

  .zaiko-card__specrow dd {
    font-size: 0.65em;
  }
}

/* =========================
   右側 side
========================= */
.zaiko-card__side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  height: 100%;
}

/* PC：アイコン */
.zaiko-card__icons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  align-self: start;
}

.zaiko-card__icons li {
  margin: 0;
}

.zaiko-card__icons img {
  display: block;
  width: 100%;
  height: auto;
}

.zaiko-card__buttons {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 8px;
  margin-top: auto;
}

.zaiko-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2em 0.5em;
  font-size: 1em;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  border-radius: 999px;
  box-sizing: border-box;
  transition: 0.25s;
}

/* 電話 */
.zaiko-card__btn--tel {
  color: #fff;
  background: #00a73c;
  border: 1px solid #00a73c;
}

.zaiko-card__btn--tel:hover {
  color: #fff;
  background: #008f33;
  border-color: #008f33;
}

/* 来店予約 */
.zaiko-card__btn--reserve {
  color: #fff;
  background: #e60012;
  border: 1px solid #e60012;
}

.zaiko-card__btn--reserve:hover {
  color: #fff;
  background: #b8000f;
  border-color: #b8000f;
}

/* 使わない場合も残しておく */
.zaiko-card__btn--contact {
  color: #fff;
  background: #e60012;
  border: 1px solid #e60012;
}

.zaiko-card__btn--contact:hover {
  color: #fff;
  background: #b8000f;
  border-color: #b8000f;
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .zaiko-card__side {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    height: auto;
  }

  .zaiko-card__icons {
    flex: 1;
    grid-template-columns: repeat(7, 1fr);
    align-self: center;
  }

  .zaiko-card__buttons {
    flex: 1;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 0;
    align-self: center;
  }

  .zaiko-card__btn {
    padding: 1em 0.5em;
  }
}

@media screen and (max-width: 767px) {
  .zaiko-card__side {
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
    height: auto;
  }

  .zaiko-card__icons {
    width: 100%;
    gap: 6px;
    grid-template-columns: repeat(7, 1fr);
    align-self: stretch;
  }

  .zaiko-card__buttons {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 0;
    align-self: stretch;
  }

  .zaiko-card__btn {
    font-size: 0.85em;
    padding: 1em 0.5em;
  }
}

/* =========================
   ページャー
========================= */
.zaiko-archive-pagination {
  margin: 32px 0 0;
  text-align: center;
}

.zaiko-archive-pagination .nav-links {
  clear: both;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 0;
}

.zaiko-archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-size: 13px;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 999px;
  box-sizing: border-box;
  background: #fff;
  color: #111;
}

.zaiko-archive-pagination .page-numbers:hover {
  background: #f5f5f5;
}

.zaiko-archive-pagination .page-numbers.current {
  color: #fff;
  background: #e60012;
  border-color: #e60012;
}

.zaiko-archive-pagination .page-numbers.dots {
  min-width: auto;
  padding: 0 4px;
  background: transparent;
  border: none;
}

/* =========================
   在庫詳細
========================= */
.zaiko-detail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 0;
}

.zaiko-detail__head {
  margin: 6px 0 24px;
}

.zaiko-detail__title {
  text-align: left;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
  margin: 0;
}

.zaiko-detail__body {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.zaiko-detail__media {
  flex: 0 0 55%;
  min-width: 0;
}

.zaiko-detail__summary {
  flex: 1;
  min-width: 0;
}

@media (max-width: 1200px) {
  .zaiko-detail {
    padding: 3%;
  }
}

@media (max-width: 768px) {
  .zaiko-detail {
    padding: 3%;
  }

  .zaiko-detail__title {
    font-size: 1.2rem;
    letter-spacing: 0;
  }

  .zaiko-detail__body {
    flex-direction: column;
    gap: 14px;
  }

  .zaiko-detail__media {
    order: 1;
    width: 100%;
  }

  .zaiko-detail__summary {
    order: 2;
    width: 100%;
  }
}

/* =========================
   メインスライダー
========================= */
.zaiko-slider {
  overflow: hidden;
  background: #fff;
}

/*
 * Slick初期化前は1枚目だけ表示する
 */
.zaiko-slider:not(.slick-initialized) .zaiko-slide:not(:first-child) {
  display: none;
}

.zaiko-slide {
  margin: 0;
}

.zaiko-img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #e6e6e6;
}

.zaiko-noimage {
  border: 1px dashed #d0d0d0;
  border-radius: 10px;
  padding: 56px 16px;
  text-align: center;
  color: #777;
  background: #fafafa;
}

.zaiko-slider .slick-prev,
.zaiko-slider .slick-next {
  z-index: 3;
  width: 32px;
  height: 32px;
  top: 50%;
  transform: translateY(-50%);
}

.zaiko-slider .slick-prev {
  left: 10px;
}

.zaiko-slider .slick-next {
  right: 10px;
}

.zaiko-image-comment {
  text-align: left;
  margin: 0;
  padding: 0.5em;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #333;
}

.zaiko-image-comment:empty {
  display: none;
}

/* =========================
   サムネナビ
========================= */
.zaiko-thumb-nav {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) 26px;
  gap: 8px;
  align-items: center;
}

.zaiko-thumb {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.zaiko-thumb__item {
  display: block;
  padding: 0;
  border: 2px solid #e6e6e6;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  opacity: 0.45;
  filter: grayscale(40%);
  transition: opacity 0.25s ease, filter 0.25s ease, border-color 0.25s ease;
  box-sizing: border-box;
}

.zaiko-thumb__item.is-active {
  opacity: 1;
  filter: none;
  border-color: #e60012;
}

.zaiko-thumb__item.is-hidden {
  display: none;
}

.zaiko-thumb__img {
  width: 100%;
  height: 60px;
  object-fit: cover;
  display: block;
}

.zaiko-thumb-nav__arrow {
  width: 26px;
  height: 26px;
  padding: 0;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  line-height: 1;
  font-size: 18px;
}

/* サムネページ切替アニメーション */
.zaiko-js-thumb-grid {
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.zaiko-js-thumb-grid.is-slide-out-left {
  transform: translateX(-16px);
  opacity: 0;
}

.zaiko-js-thumb-grid.is-slide-out-right {
  transform: translateX(16px);
  opacity: 0;
}

.zaiko-js-thumb-grid.is-slide-in-left {
  animation: thumbSlideInLeft 0.25s ease;
}

.zaiko-js-thumb-grid.is-slide-in-right {
  animation: thumbSlideInRight 0.25s ease;
}

@keyframes thumbSlideInLeft {
  from {
    transform: translateX(16px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes thumbSlideInRight {
  from {
    transform: translateX(-16px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* =========================
   スマホ
========================= */
@media (max-width: 768px) {
  .zaiko-thumb-nav {
    grid-template-columns: 24px minmax(0, 1fr) 24px;
    gap: 6px;
  }

  .zaiko-thumb {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
  }

  .zaiko-thumb__img {
    height: 56px;
  }

  .zaiko-thumb-nav__arrow {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .zaiko-slider .slick-prev,
  .zaiko-slider .slick-next {
    width: 28px;
    height: 28px;
  }

  .zaiko-thumb-nav {
    grid-template-columns: 22px minmax(0, 1fr) 22px;
  }

  .zaiko-thumb {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .zaiko-thumb__img {
    height: 52px;
  }

  .zaiko-thumb-nav__arrow {
    width: 22px;
    height: 22px;
  }
}

/* =========================
   zaiko-price
========================= */
.zaiko-price {
  padding: 0 16px 12px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 3px solid #eee;
}

.zaiko-price__main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.zaiko-price__label {
  text-align: left;
  margin: 0 0 6px;
  font-size: 0.92rem;
  font-weight: 500;
  color: #111;
}

.zaiko-price__total {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.zaiko-price__num {
  color: #e60012;
  font-size: 2.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.zaiko-price__unit {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111;
}

.zaiko-price__na {
  font-size: 1.15rem;
  font-weight: 700;
  color: #666;
}

.zaiko-price__breakdown {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
}

.zaiko-price__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}

.zaiko-price__row dt {
  font-size: 0.85rem;
  font-weight: 400;
  color: #666;
  margin: 0;
}

.zaiko-price__row dd {
  margin: 0;
  white-space: nowrap;
}

.zaiko-price__subnum {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
}

.zaiko-price__subunit {
  font-size: 1rem;
  font-weight: 400;
  margin-left: 2px;
}

.zaiko-specmini {
  display: flex;
  align-items: stretch;
  margin: 0 0 16px;
}

.zaiko-specmini__row {
  flex: 1;
  padding: 0 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  text-align: center;
}

.zaiko-specmini__row:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #e5e5e5;
}

.zaiko-specmini__row dt {
  font-size: 0.8rem;
  font-weight: 500;
}

.zaiko-specmini__row dd {
  font-size: 0.75rem;
}

.zaiko-comment {
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 14px;
  padding: 14px 16px;
  background: #fafafa;
}

.zaiko-eqp-icon {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  padding: 0;
}

.zaiko-eqp-icon li {
  list-style: none;
  flex: 0 0 calc(100% / 7 - 10px);
}

.zaiko-eqp-icon img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 767px) {
  .zaiko-specmini__row {
    padding: 0 2px;
    gap: 2px;
  }

  .zaiko-specmini__row dt {
    font-size: 0.7rem;
  }

  .zaiko-specmini__row dd {
    font-size: 0.65rem;
  }

  .zaiko-eqp-icon li {
    flex: 0 0 calc(100% / 7 - 10px);
  }
}

/* =========================
   同車種の新車案内
========================= */
.zaiko-newcar-cta {
  max-width: 760px;
  margin: 40px auto;
  padding: 32px 24px;
  color: #333;
  text-align: center;
  background: #fff;
  border: 2px solid #00a373;
  /*border-radius: 10px;*/
}
.zaiko-newcar-cta p {
  margin: 0;
}
.zaiko-newcar-cta__catch {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
.zaiko-newcar-cta__accent {
  color: #e60012;
}
.zaiko-newcar-cta__loan {
  margin-top: 10px !important;
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 700;
  line-height: 1.5;
}
.zaiko-newcar-cta__loan strong {
  font-weight: 700;
  margin: 0 0.08em;
  font-size: inherit;
}
.zaiko-newcar-cta__rate {
  font-size: 1.3em;
}
.zaiko-newcar-cta__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 360px;
  margin-top: 22px;
  padding: 16px 24px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  background: #00a373;
  border-radius: 999px;
  transition:
    background-color 0.3s ease, transform 0.3s ease;
}
.zaiko-newcar-cta__arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 0.7em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}
.zaiko-newcar-cta__link:hover, .zaiko-newcar-cta__link:focus-visible {
  color: #fff;
  background: #007f59;
}
.zaiko-newcar-cta__link:active {
  transform: translateY(1px);
}
@media screen and (max-width: 767px) {
  .zaiko-newcar-cta {
	  max-width: 100%;
    margin: 28px 0;
    padding: 24px 3%;
  }
  .zaiko-newcar-cta__catch {
    font-size: 21px;
  }
  .zaiko-newcar-cta__loan {
    margin-top: 8px !important;
    font-size: 18px;
  }
  .zaiko-newcar-cta__link {
    max-width: 80%;
    margin-top: 18px;
    padding: 14px 16px;
    font-size: 1rem;
  }
}

/* =========================
   在庫確認CTAボタン
========================= */
.zaiko-contact-cta-wrap {
  margin: 0 0 48px;
  text-align: center;
}

.zaiko-contact-cta {
  display: inline-block;
  width: 100%;
  max-width: 360px;
  padding: 16px 24px;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.4;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: #e60012;
  border-radius: 999px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.zaiko-contact-cta:hover {
  color: #fff;
  background: #b8000f;
}

@media (max-width: 767px) {
  .zaiko-contact-cta {
    font-size: 1rem;
  }
}

/* =========================
   未使用車説明
========================= */
.zaiko-unused-info {
  margin: 0 0 40px;
  padding: 28px 32px;
  border: 1px solid #ccc;
  background: #fafafa;
}

.zaiko-unused-info__title {
  margin: 0 0 12px;
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1.4;
}

.zaiko-unused-info__text {
  margin: 0;
  line-height: 2;
}

html {
  scroll-behavior: smooth;
}

@media screen and (max-width: 767px) {
  .zaiko-contact-cta {
    max-width: 80%;
    padding: 14px 16px;
  }

  .zaiko-unused-info {
    margin-bottom: 32px;
    padding: 20px 16px;
  }

  .zaiko-unused-info__title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .zaiko-unused-info__text {
    font-size: 13px;
    line-height: 1.9;
  }
}

/* =========================
   詳細スペック 開閉
========================= */
.zaiko-detail-spec {
  margin: 10px 0 48px;
  padding: 0;
}

.zaiko-detail-spec__toggle {
  text-align: center;
}

.zaiko-detail-spec__check {
  display: none;
}

.zaiko-detail-spec__label {
  display: block;
  border: 1px solid #ccc;
  background: #a5a5a5;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto;
  padding: 10px 16px;
  transition: background 0.2s ease;
}

.zaiko-detail-spec__label:hover {
  background: #ddd;
}

.zaiko-detail-spec__label::before {
  content: "▼";
}

.zaiko-detail-spec__label::after {
  content: "を表示する▼";
}

.zaiko-detail-spec__body {
  height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0;
  text-align: left;
  transition: 0.5s;
}

.zaiko-detail-spec__check:checked + .zaiko-detail-spec__label::before {
  content: "▲";
}

.zaiko-detail-spec__check:checked + .zaiko-detail-spec__label::after {
  content: "を非表示にする▲";
}

.zaiko-detail-spec__check:checked ~ .zaiko-detail-spec__body {
  height: auto;
  opacity: 1;
  padding: 10px 0;
}

/* =========================
   詳細スペック 常時表示
   ※開閉式に戻す場合はこのブロックを削除
========================= */
.zaiko-detail-spec__label {
  display: none;
}

.zaiko-detail-spec__body {
  height: auto;
  overflow: visible;
  opacity: 1;
  padding: 10px 0;
}

/* =========================
   見出し
========================= */
.zaiko-detail-spec__title {
  margin: 2% auto 2%;
  font-size: 1.25rem;
  font-weight: 700;
  color: #da0a16;
  line-height: 1.5;
  text-align: left;
  padding-bottom: 1%;
  border-bottom: 2px solid #da0a16;
}

.zaiko-detail-spec__title--service {
  margin-top: 28px;
}

/* =========================
   テーブル共通
========================= */
.zaiko-detail-table {
  width: 100%;
  margin: 20px auto 0;
  border-collapse: collapse;
  font-size: 12px;
}

.zaiko-detail-spec__title + .zaiko-detail-table {
  margin-top: 5px;
}

.zaiko-detail-table tr > * {
  padding: 5px 10px 3px;
  text-align: left;
  border: solid 1px #dcdcdc;
  vertical-align: middle;
  box-sizing: border-box;
}

.zaiko-detail-table th {
  background: #f6f6f6;
  font-weight: 600;
}

.zaiko-detail-table td {
  background: #fff;
}

.zaiko-detail-table--equip th {
  width: 23%;
}

.zaiko-detail-table--equip td {
  width: 10%;
  text-align: center;
}

.zaiko-detail-mark {
  color: #da0a16;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.zaiko-detail-table--warranty {
  margin-bottom: 5%;
}

.zaiko-detail-table--warranty th {
  width: 20%;
  font-weight: 400;
}

.zaiko-detail-table--warranty td {
  font-size: 16px;
  font-weight: 700;
}

.zaiko-detail-table__warranty-details {
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  .zaiko-detail-spec__label {
    font-size: 1rem;
  }

  .zaiko-detail-spec__title {
    font-size: 1.05rem;
  }

  .zaiko-detail-table tr {
    display: flex;
    flex-wrap: wrap;
  }

  .zaiko-detail-table tr > * {
    box-sizing: border-box;
  }

  .zaiko-detail-table tr:first-child > *:nth-child(n + 3) {
    border-top: none;
  }

  .zaiko-detail-table tr:not(:first-child) > * {
    border-top: none;
  }

  .zaiko-detail-table th {
    width: 30%;
  }

  .zaiko-detail-table td {
    width: 70%;
    border-left: none;
  }

  .zaiko-detail-table--equip th {
    width: 75%;
  }

  .zaiko-detail-table--equip td {
    width: 25%;
    border-left: none;
    text-align: center;
  }

  .zaiko-detail-table--warranty th {
    width: 38%;
  }

  .zaiko-detail-table--warranty td {
    width: 62%;
  }
}

/* =========================
   Not Found
========================= */
.zaiko-notfound {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 16px;
  color: #333;
}

/* =========================
   お問い合わせフォーム
========================= */
#zaiko-contact {
  max-width: 1200px;
  margin: 0 auto 72px;
  padding: 72px 144px 144px;
  background: #eee;
}

#zaiko-contact h2 {
  font-size: 1.5em;
  line-height: 1.5;
  font-weight: bold;
  color: #e60012;
  margin-bottom: 3%;
}

.zaiko-contact-form {
  margin: 48px 0 0;
  padding: 48px;
  background: #fff;
}

.cf7-hidden-fields {
  display: none;
}

#zaiko-contact table {
  width: 100%;
  text-align: left;
  box-sizing: border-box;
  border-collapse: collapse;
  margin-bottom: 5%;
}

#zaiko-contact table tr {
  display: flex;
  align-items: center;
  gap: 5%;
  border-bottom: 1px solid #ccc;
}

#zaiko-contact table tr.add {
  border-bottom: none;
  align-items: flex-start;
}

#zaiko-contact table th,
#zaiko-contact table td {
  text-align: left;
  vertical-align: middle;
  box-sizing: border-box;
  padding: 16px 0;
}

#zaiko-contact table th {
  flex: 1.2;
}

#zaiko-contact table td {
  flex: 3;
}

#zaiko-contact table tr.add td p {
  margin: 0;
}

#zaiko-contact .check {
  font-size: 0.6em;
  color: #fff;
  font-weight: normal;
  margin-left: 8px;
  padding: 4px;
  background: #e60012;
}

#zaiko-contact span.solo {
  font-size: 0.8em;
  color: #333;
  font-weight: normal;
  margin-left: 8px;
}

#zaiko-contact input.text,
#zaiko-contact textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border: none;
}

#zaiko-contact input.text,
#zaiko-contact textarea {
  width: 100%;
  display: block;
  font-size: 16px;
  box-sizing: border-box;
  padding: 12px 15px;
  border: 1px solid #ccc;
  background: #fff;
  transition: 0.5s;
  border-radius: 4px;
}

#zaiko-contact input.text:focus,
#zaiko-contact textarea:focus {
  outline: 0;
  border: 1px #080808 solid;
}

#zaiko-contact select {
  -webkit-appearance: none;
  appearance: none;
  width: auto;
  font-size: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  line-height: 2;
  color: #333;
  box-shadow: none;
  margin-bottom: 16px;
  padding: 8px 24px 8px 16px;
  background: #fff url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E) no-repeat right 5px top 55%;
  background-size: 16px 16px;
  cursor: pointer;
}

#zaiko-contact textarea {
  height: 10%;
}

#zaiko-contact .form-privacy {
  margin-bottom: 3%;
}

#zaiko-contact .form-privacy h3 {
  font-size: 0.8em;
  margin-bottom: 2%;
}

#zaiko-contact .form-privacy-box {
  overflow-y: scroll;
  height: 150px;
  text-align: left;
  font-size: 0.8em;
  border: solid 1px #ccc;
  padding: 2%;
}

#zaiko-contact .form-privacy h4 {
  margin-bottom: 2%;
}

#zaiko-contact .form-privacy-box p {
  margin-bottom: 2%;
}

#zaiko-contact .form-privacy-box ul {
  list-style: none;
}

#zaiko-contact .form-privacy-box li {
  position: relative;
  line-height: 1;
}

#zaiko-contact .form-privacy-box ul.list-num {
  margin-bottom: 2%;
}

#zaiko-contact .form-privacy-box ul.list-num li {
  display: flex;
  padding: 0;
  counter-increment: sample;
}

#zaiko-contact .form-privacy-box ul.list-num li::before {
  content: "(" counter(sample) ")";
  margin-right: 5px;
}

#zaiko-contact .form-privacy-box ul.list-disc li {
  display: flex;
  padding-left: 15px;
}

#zaiko-contact .form-privacy-box ul.list-disc li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border: 1px solid #ccc;
  border-radius: 50%;
}

#zaiko-contact .finalcheck {
  width: 100%;
  margin-top: 5%;
  margin-bottom: 3%;
}

#zaiko-contact input.wpcf7c-btn-back,
#zaiko-contact input.wpcf7-submit,
#zaiko-contact input.wpcf7-confirm {
  padding: 0 48px;
}

#zaiko-contact .wpcf7-form-control.wpcf7-acceptance {
  display: inline-block;
  text-align: center;
}

#zaiko-contact input.wpcf7-confirm,
#zaiko-contact input.wpcf7-submit {
  display: block;
  font-size: 1.2em;
  color: #fff;
  text-align: center;
  font-weight: bold;
  border-style: none;
  margin: 0 auto;
  padding: 16px 48px;
  background: #009944;
  border-radius: 100vh;
  transition: 0.3s;
  -webkit-appearance: none;
}

#zaiko-contact .submitBtn {
  margin-top: 32px;
  margin-bottom: 5%;
}

#zaiko-contact .wpcf7-list-item {
  display: block !important;
}

/* 応答ボックスメッセージを非表示 */
#zaiko-contact .wpcf7-mail-sent-ok {
  display: none !important;
}

/* recaptcha */
.grecaptcha-badge {
  visibility: hidden;
}

#zaiko-contact .recaptcha {
  font-size: 0.8em;
}

#zaiko-contact .recaptcha a {
  color: #f7931e;
}

#zaiko-contact p.recaptcha {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  #zaiko-contact {
    padding: 72px 3% 5%;
  }

  .zaiko-contact-form {
    margin: 5% 0 0;
    padding: 3%;
  }
}

@media screen and (max-width: 767px) {
  #zaiko-contact {
    margin: 0 auto 8%;
    padding: 5% 3% 3%;
  }

  #zaiko-contact h2 {
    font-size: 1.2em;
  }

  .zaiko-contact-note {
    font-size: 0.8em;
  }

  .zaiko-contact-form {
    margin: 5% auto 0;
    padding: 3%;
  }

  #zaiko-contact h3 span {
    font-size: 0.6em;
  }

  #zaiko-contact table tr {
    flex-direction: column;
    border-bottom: none;
  }

  #zaiko-contact table th,
  #zaiko-contact table td {
    display: block;
    flex: 1;
    width: 100%;
    font-size: 0.85em;
    padding: 0 0 3%;
  }

  #zaiko-contact table th {
    padding-bottom: 1%;
  }

  #zaiko-contact .check {
    margin-left: 2%;
    padding: 1%;
  }

  #zaiko-contact input.text::placeholder {
    font-size: 0.75em;
  }

  #zaiko-contact input.text,
  #zaiko-contact textarea {
    font-size: 12px;
    padding: 3%;
  }

  #zaiko-contact .wpcf7-form-control.wpcf7-acceptance {
    text-align: left;
  }

  #zaiko-contact input.wpcf7-confirm,
  #zaiko-contact input.wpcf7-submit {
    font-size: 1em;
    margin: 0 auto;
    padding: 5% 15%;
  }

  #zaiko-contact .finalcheck {
    text-align: center;
    font-size: 0.8em;
  }
}