@charset "UTF-8";
/*======================================================= 
  在庫車情報用スタイル
=======================================================*/
.top-banner{
  padding-bottom: 50px;
}
.pc-banner{
  display: block;
}
.sp-banner{
  display: none;
}
/* ===== 絞り込み機能 ===== */
.search{
  padding-bottom: 0;
}
.search-block{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
}
.search-block label{
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  font-weight: bold;
}
.search-block label .flex{
  display: flex;
  align-items: center;
  gap: 5px;
}
.color-row{
  margin: 20px 0;
}
.color-block{
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 15px;
}
.color-chip {
  display: block;
  position: relative;
  width: 100%;
  height: 30px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  cursor: pointer;
}
.color-chip input{
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}
.color-chip:has(input:checked) {
  outline: 2px solid #333;
  outline-offset: 2px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
/* ===== 色指定 ===== */
.color-白 { background: #fff; }
.color-黒 { background: #000; }
.color-シルバー { background: #c0c0c0; }
.color-グレー { background: #808080; }
.color-赤 { background: #d32f2f; }
.color-青 { background: #1976d2; }
.color-黄 { background: #fbc02d; }
.color-緑 { background: #388e3c; }
.color-茶 { background: #6d4c41; }
.color-その他 {
  background: linear-gradient(45deg, #ccc 25%, #eee 25%, #eee 50%, #ccc 50%, #ccc 75%, #eee 75%);
}
.freeword{
  margin: 20px 0;
}
/* ===== 装備 ===== */
.equip-acc .equip-group:first-child{
  margin-top: 20px;
}
.more-detail-btn{
  position: relative;
  background-color: #fff;
  border: none;
}
.more-detail-btn::after{
  position: absolute;
  content: "+";
  font-size: 20px;
  font-weight: bold;
  color: #DF0716;
  padding-left: 5px;
}
.more-detail-btn[aria-expanded="true"]::after{
  content: "-";
}
.equip-group{
  border-bottom: 2px solid #efefef;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.equip-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.equip-group .equip-item{
  display: flex;
  align-items: center;
  gap: 10px;
}
.equip-title{
  padding-bottom: 10px;
}
.search-actions{
  text-align: right;
  margin: 30px 0;
}
.search-btn,
.search-reset-btn{
  width: 200px;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px;
}
.search-btn{
  background-color: #DF0716;
}
.search-reset-btn{
  background-color: #454545;
}
.section-tit{
  background-color: #454545;
  color: #fff;
  font-size: 20px;
  padding: 15px;
}
/* ===== 並び替え ===== */
.search-sort{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  font-size: 16px;
  font-weight: bold;
  padding: 15px 0;
  margin: 50px 0 30px 0;
}
.sort-btn{
  font-size: 14px;
  background-color: #eee;
  border-radius: 5px;
  padding: 5px 10px;
}

/* ===== カード ===== */
.cars-item{
  border-bottom: 1px solid #000;
  padding: 20px 0;
}
.card-inner{
  display: grid;
  grid-template-columns: 2fr 1fr 170px;
  gap: 15px;
  margin-top: 15px;
}
.sp-inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.card-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.car-tit{
  font-size: 20px;
  font-weight: bold;
}
.car-tit .car-grade{
  font-size: 0.8em;
}
/* ===== お気に入りボタン共通 ===== */
.fav-btn{
  border:none;
  background:#fff;
}
.fav-btn .fav-icon::before{
  font-family: "Font Awesome 5 Free";
  content: '\f004';
  display: block;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}
.fav-btn--detail{
  width:auto;
  padding:0 14px;
  height:44px;
}
.fav-btn.is-active .fav-icon::before{
  font-weight: 900;
  color:#DF0716;
}
.card-img, .car-gallery-main-wrap{
  position: relative;
}
.sold-badge{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 101%;
  height: 101%;
  font-size: 25px;
  font-weight: bold;
  color: #DF0716;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #aaa;
  z-index: 1;
}
.card-info .tx-large{
  font-size: 2em;
}
.card-info dl{
  display: grid;
  grid-template-columns: 5em 1fr;
  gap: 0 10px;
  margin-bottom: 10px;
}
.card-info dl dd{
  text-align: right;
}

/* ===== table ===== */
table{
  margin: 0;
}
table:not(.has-border-color) :where(th, td){
  border: 1px solid #000!important;
}
table tr:nth-of-type(2n+1){
  background-color: #fff!important;
}
table th, table td{
  padding: 5px;
}
table th{
  background-color: #eee!important;
}
/* ===== cta ===== */
.card-cta .contact-btn,
.card-cta .link-btn{
  display: block;
  color: #fff;
  font-weight: bold;
  text-align: center;
  border-radius: 5px;
  padding: 15px;
}
.card-cta .contact-btn{
  background-color: #DF0716;
  margin-bottom: 15px;
}
.card-cta .link-btn{
  background-color: #828282;
}

/* ===== ページネーション ===== */
.pagination {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}
.pagination ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.pagination li {
  margin: 0;
  padding: 0;
}
.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #454545;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  color: #333;
  background: #fff;
}
.pagination a:active {
  transform: translateY(1px);
}
/* ===== 現在ページ ===== */
.pagination li.current a {
  background: #DF0716;
  border-color: #454545;
  color: #fff;
  font-weight: 700;
  pointer-events: none;
}
/* ===== 前へ/次へ ===== */
.pagination li.prev a,
.pagination li.next a {
  min-width: auto;
  padding: 0 15px;
}
.pagination .dots {
  padding: 0 6px;
  color: #999;
  font-size: 14px;
  user-select: none;
}
/* スマホ：少しコンパクトに */
@media (max-width: 480px) {
  .pagination a {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    font-size: 13px;
  }
}
/* ===== メーカー、ボディタイプ、価格から探す ===== */
.search-grid5{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 15px;
  padding: 0;
}
.search-grid5 li{
  position: relative;
  padding-left: 1.2em;
}
.search-grid5 li::before{
  font-family: "Font Awesome 5 Free";
  content: '\f054';
  display: block;
  position: absolute;
  left: 0;
  top: 20%;
  font-weight: bold;
  color: #000;
}

/* ===== 詳細ページ ===== */
/* 【詳細ページ】共通 */
.car-detail-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid #DF0716;
  margin-bottom: 20px;
}
h2.car-name{
  position: relative;
  font-size: 24px;
  margin: 0;
}
h2.car-name .maker{
  background-color: #DF0716;
  color: #fff;
  padding: 5px 10px;
  margin-right: 10px;
}
h2.car-name .grade{
  font-size: 0.8em;
  margin-left: 10px;
}
h3.sub-tit{
  position: relative;
  padding-left: 0.5em;
}
h3.sub-tit::before{
  position: absolute;
  content: "";
  width: 5px;
  height: 1.2em;
  left: 0;
  top: 5px;
  background-color: #DF0716;
}
/* ===== 【詳細ページ】車両画像 ===== */
.l-box, .car-gallery {
  max-width: 100%;
  overflow: hidden;
}
.car-gallery-grid{
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 3px;
  margin-top: 15px;
}
.car-gallery-grid .button {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.car-gallery-grid .button img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== 【詳細ページ】在庫情報 ===== */
.zaiko-data{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.price-grid{
  display: grid;
  grid-template-columns: 5em 1fr 15px 5em 1fr;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  margin: 10px 0;
}
.price-grid dd{
  text-align: right;
}
.price .sougaku{
  display: flex;
  justify-content: space-between;
  align-items: end;
  font-size: 14px;
  line-height: 1.2;
}
.price .sougaku{
  border-bottom: 2px solid #000;
  padding-bottom: 5px;
}
.price .tx-large{
  font-size: 2.5em;
  font-weight: bold;
  line-height: 1.2;
}
.r-box ul{
  margin-bottom: 10px;
}
.data{
  margin-bottom: 15px;
}
.data th,
.data td {
  width: 50%;
  text-align: center;
}
.contents{
  margin-bottom: 50px;
}
/* ===== 【詳細ページ】お問い合わせ ===== */
.contact-area{
  margin: 30px 0;
}
.contact-area .balloon{
  position: relative;
  background-color: #454545;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 15px;
  margin-bottom: 30px;
}
.contact-area .balloon:after{
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 15px solid transparent;
  border-top: 15px solid #454545;
}
.contact-area .balloon p{
  font-size: 18px;
}
.contact-block{
  padding: 20px;
}
.contact-tel{
  display: block;
  font-size: 2em;
}
.contact-tel i{
  padding-right: 5px;
}
.mailform{
  padding-top: 30px;
}
.input-line{
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 15px;
  margin-bottom: 10px;
}
.input-line .label{
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  padding: 10px;
}
.input-line .label .hissu{
  font-size: 12px;
  background-color: #DF0716;
  color: #fff;
  border-radius: 30px;
  height: 1.8em;
  padding: 0 10px;
}
.car-deta{
  background-color: #f2f2f2;
}
input[type=submit].submit-btn-red{
  display: block;
  width: 300px;
  text-align: center;
  background-color: #DF0716;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  padding: 15px;
  margin: auto;
}
/* ===== 【詳細ページ】車両情報 ===== */
.vehicle tr{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid #000;
  border-left: 1px solid #000;
}
.vehicle th,
.vehicle td {
  text-align: left;
}
table.vehicle:not(.has-border-color) :where(th, td){
  border: 0!important;
  border-bottom: 1px solid #000!important;
  border-right: 1px solid #000!important;
}
/* ===== 【詳細ページ】装備 =====*/
.equip{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #000;
  border-left: 1px solid #000;
}
.equip .equip-item{
  padding: 5px 10px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  box-sizing: border-box;
}
.equip .equip-item.is-empty{
  justify-content: center;
}
/* ===== 【詳細ページ】ラインナップ =====*/
.lineup-block{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.lineup-item{
  line-height: 1.5;
  border: 1px solid #000;
  border-radius: 5px;
  padding: 15px;
}
.lineup-item .car-tit{
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.lineup-item .card-info .tx-large{
  font-size: 1.5em;
}
.lineup-inner{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 15px;
}
.lineup-cta a{
  display: block;
  background-color: #828282;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  border-radius: 5px;
  padding: 10px;
  margin-top: 10px;
}

/* ===== 選ばれる理由 ===== */
.reason h3{
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 5px;
  margin-bottom: 50px;
}
.reason h3 .tx-red{
  font-size: 35px;
}
.reason-block{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px 20px;
}
.reason-item{
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 8px #adadad;
  padding: 20px 15px 15px 15px;
}
.reason-nam{
  position: absolute;
  font-size: 30px;
  font-weight: bold;
  color: #454545;
  left: 15px;
  top: -0.8em;
}
.reason-tit{
  font-size: 20px;
  font-weight: bold;
  color: #DF0716;
}
.reason-subtit{
  font-weight: bold;
  margin: 0.5em 0;
}

/* 360° */
.viewer360-trigger-wrap {
  margin: 15px 0;
  text-align: center;
}
.viewer360-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 15px 20px;
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}
.viewer360-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.viewer360-modal.is-open {
  display: block;
}
.viewer360-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.82);
}
.viewer360-modal__dialog {
  position: relative;
  width: 100vw;
  height: 100vh;
  margin: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  pointer-events: none;
}
.viewer360-modal__body {
  position: absolute;
  width: calc(100% - 30px);
  height: auto;
  background: transparent;
  pointer-events: auto;
}
.viewer360-modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 20;
  width: 55px;
  height: 55px;
  border: 0;
  border-radius: 999px;
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
}
.viewer360-stage,
.viewer360-embed {
  width: 100%;
  height: 100%;
  background: transparent;
}
body.is-viewer360-open {
  overflow: hidden;
}

/*1000px以下*/
@media screen and (max-width: 1000px){
  .card-inner{
    grid-template-columns: 2fr 1fr 135px;
    gap: 10px;
  }
  .sp-inner{
    gap: 10px;
  }
  .card-info,
  .card-info p{
    font-size: 14px;
  }
  .search-grid5{
    grid-template-columns: 1fr 1fr 1fr;
  }
  /* ===== 詳細ページ ===== */
  .zaiko-data{
    gap: 15px;
  }
  .price-grid{
    grid-template-columns: 5em 1fr 0;
  }
  .price .tx-large{
    font-size: 2em;
  }
  .contact-area .balloon p{
    font-size: 15px;
  }
  .lineup-inner{
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .lineup-item .car-tit{
    font-size: 14px;
  }
  /* 選ばれる理由 */
  .reason h3{
    margin-bottom: 30px;
  }
  .reason .reason-tit br{
    display: none;
  }
  .reason-block{
    display: block;
  }
  .reason-item{
    box-shadow: none;
    padding: 0;
  }
  .reason-nam{
    display: none;
  }
  .reason-tit{
    position: relative;
    font-size: 18px;
    color: #000;
    border-bottom: 1px solid #c4c4c4;
    padding: 15px;
  }
  .reason-tit::before,
  .reason-tit::after{
    position: absolute;
    content: "";
    top: 0;
    right: 15px;
    bottom: 0;
    width: 15px;
    height: 3px;
    margin: auto;
    background-color: #DF0716;
  }
  .reason-tit::after {
    transform: rotate(-90deg);
    transition: transform 0.3s;
  }
  .reason-tit.open::after{
    transform: rotate(0deg);
  }
  .reason-content{
    display: none;
    padding: 15px;
  }
  .reason-subtit{
    margin: 0 0 0.5em 0;
  }
}

/*750px以下*/
@media screen and (max-width: 750px){
  .top-banner{
    padding-bottom: 30px;
  }
  .section-tit{
    font-size: 18px;
    padding: 10px;
  }
  /* 検索 */
   .search .section-tit{
    display: none;
   }
   /* 上部3ボタン */
  .sp-actionbar{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-top: 1px solid #ccc;
    border-bottom: 2px solid #DF0716;
    margin: 10px 0 15px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 60;
  }
  .sp-actionbar_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 8px;
    font-weight: 700;
    color: #333;
    background: #fff;
    border: 0;
    border-right: 1px solid #ccc;
    text-decoration: none;
  }
  .sp-actionbar_btn:last-child{ border-right: 0; }
  .sp-actionbar_btn i{ color: #DF0716; }
  .sp-actionbar_btn i.fa-right-left{
    transform: rotate(90deg);
  }
  /* 全画面モーダル本体 */
  .sp-fsmodal{
    display: none;
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 9999;
  }
  .sp-fsmodal.is-open{ display: block; }
  /* 上部ヘッダー */
  .sp-fsmodal_head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #454545;
    color: #fff;
    padding: 12px 14px;
  }
  .sp-fsmodal_title{
    font-weight: 800;
    font-size: 14px;
  }
  .sp-fsmodal_close{
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 22px;
    line-height: 1;
  }
  /* 中身：フッター分の余白を確保 */
  .sp-fsmodal_body{
    height: calc(100vh - 56px - 64px);
    overflow: auto;
    padding: 14px;
    background: #fff;
  }
  /* 下部固定フッター */
  .sp-fsmodal_foot{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #454545;
    padding: 10px 14px;
  }
  .sp-fsmodal_back{
    width: 100%;
    height: 44px;
    border: 1px solid #fff;
    border-radius: 999px;
    background: transparent;
    color: #fff;
    font-weight: 700;
  }
  /* 背景スクロール禁止 */
  html.is-lock, html.is-lock body{
    overflow: hidden;
  }
  /* SPでは通常の場所の search/sort は隠す（モーダルで見る） */
  section.search,
  section.sort{
    display: none;
  }
  /* ただしモーダルの中に移動したら表示する */
  .sp-fsmodal section.search,
  .sp-fsmodal section.sort{
    display: block;
    margin: 0;
  }
  /* 並び替えをモーダル用に1列化 */
  .sp-fsmodal .search-sort{
    grid-template-columns: 1fr;
    gap: 12px;
    border: 0;
    margin: 0;
    padding: 0;
  }
  .sp-fsmodal .sort-group{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
  }
  .sp-fsmodal .sort-label{
    display: block;
    margin-bottom: 8px;
  }
  .sp-fsmodal .sort-group a{
    text-align: center;
  }
  .search-block{
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .color-row,
  .freeword{
    margin: 15px 0;
  }
  .color-block{
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }
  .equip-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .search-actions{
    text-align: center;
  }
  .search-btn, .search-reset-btn{
    width: 160px;
  }
  /* カードデザイン */
  .card-inner{
    display: block;
  }
  .sp-inner{
    gap: 15px;
    margin-bottom: 15px;
  }
  .car-tit{
    font-size: 16px;
  }
  .card-info dl{
    gap: 5px;
  }
  .card-cta{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
  }
  .card-cta .contact-btn{
    margin: 0;
  }
  table th, table td{
    font-size: 14px;
  }
  .card-table,
  .card-table tbody {
    display: block;
    width: 100%;
  }
  .card-table tbody{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .card-table tr {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
  }
  .card-table tr:nth-child(2){
    border-right: 1px solid #000;
  }
  .card-table tr:nth-child(4),
  .card-table tr:last-child{
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
  }
  .card-table table:not(.has-border-color) :where(th, td){
    border: none!important;
  }
  .search-grid5{
    grid-template-columns: 1fr 1fr;
  }
  /* 詳細ページ */
  h2.car-name{
    font-size: 18px;
  }
  .zaiko-data{
    grid-template-columns: 1fr;
  }
  .price{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #000;
    margin-bottom: 10px;
  }
  .price .sougaku{
    display: block;
    border: none;
  }
  .price .sougaku .tx-large{
    font-size: 2.5em;
  }
  .price-grid{
    grid-template-columns: 9em 1fr 0;
    gap: 0 10px;
    margin: 0;
  }
  .price-grid dt{
    background-color: #d9d9d9;
    text-align: center;
  }
  /* お問い合わせ */
  .contact-block{
    padding: 15px;
  }
  .contact-tel{
    font-size: 1.5em;
  }
  .balloon{
    display: none;
  }
  .input-line{
    display: block;
  }
  .input-line .label{
    justify-content: left;
    gap: 10px;
    padding: 5px;
  }
  .vehicle tr{
    grid-template-columns: repeat(4, 1fr);
  }
  .equip{
    grid-template-columns: repeat(3, 1fr);
  }
  .equip-item{
    font-size: 14px;
  }
  .lineup-inner{
    grid-template-columns: 1fr 1fr;
  }
  .lineup-block{
    grid-template-columns: 1fr;
  }
  .reason h3 .tx-red{
    font-size: 30px;
  }
}

/*480px以下*/
@media screen and (max-width: 480px){
  .pc-banner{
    display: none;
  }
  .sp-banner{
    display: block;
  }
  .sp-actionbar_btn{
    font-size: 14px;
  }
  .sp-inner {
    margin-bottom: 10px;
    gap: 10px;
  }
  .card-info .tx-large{
    font-size: 1.5em;
  }
  table th, table td{
    font-size: 12px;
    padding: 5px;
  }
  .card-cta{
    gap: 10px;
    margin-top: 10px;
  }
  .card-cta .contact-btn, .card-cta .link-btn{
    padding: 10px;
  }
  /* 詳細ページ */
  h2.car-name{
    font-size: 15px;
  }
  .price p,
  .price-grid{
    font-size: 12px;
  }
  .price .sougaku .tx-large{
    font-size: 2em;
  }
  .price .tx-large{
    font-size: 1.5em;
  }
  .data{
    margin-bottom: -1px;
  }
  .equip{
    grid-template-columns: repeat(2, 1fr);
  }
  .equip-item{
    font-size: 12px;
  }
  .lineup-item{
    padding: 10px;
  }
  .lineup-item .card-info,
  .lineup-item .card-info p{
    font-size: 12px;
  }
  /* 選ばれる理由 */
  .reason h3 img{
    width: 150px;
  }
  .reason h3 .tx-red{
    font-size: 24px;
  }
  .reason-tit{
    font-size: 14px;
  }
}

