@charset "UTF-8";

/* ----------------------------------------------カンタン在庫確認-------------------------------------------------- */

/**
 * 全体の設定
 * 背景色、縦並びの設定
 */
.kantan_inquiry {
    display: block;
    background-color: #FFFBD6;
    width: auto;
    padding: 24px;
    margin-bottom: 20px;
}

/**
 * 表示非表示切替用
 */
.kantan_inquiry .display-off {
    display: none;
}

/**
 * 見出し
 */
.kantan_inquiry p {
    text-align: left;
    letter-spacing: 0px;
    color: #1F3641;
    font-size: 18px;
    font-weight: bold;
}

/**
 * 1行の設定
 */
.kantan_inquiry ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

/**
 * カンタン在庫確認ボタン全体の設定
 * プライバシーポリシー含む
 * ul要素に設定される想定
 */
.kantan_inquiry .kantan_toiawase {
    justify-content: center;
    align-items: center;
}

/**
 * プライバシーポリシーのアンカーリンクの設定
 */
.kantan_inquiry .kantan_toiawase a {
    color: #1F3641;
    text-decoration: underline;
    cursor: pointer;
}

/**
 * カンタン在庫確認ボタンの設定
 */
.kantan_inquiry .kantan_toiawase button[type=button] {
    padding: 10px;
    font: normal normal bold 14px/21px Meiryo;
    border: 1px solid #FB4809;
    background: transparent linear-gradient(180deg, #FF6E3F 0%, #FC491E 100%) 0% 0% no-repeat padding-box;
    color: #FFFFFF;
    border-radius: 4px; 
}

/**
 * カンタン在庫確認ボタンのマウスオーバー時
 */
.kantan_inquiry .kantan_toiawase button[type=button]:hover {
    border: 1px solid #f5d3cb;
    background: #FFFBFA;
    background: linear-gradient(to bottom, #FFFBFA 10%, #FEE8E2 90%);
    color: #fb4809;
    text-decoration: none
}


/**
 * カンタン在庫確認ボタン非活性時の設定
 */
.kantan_inquiry .kantan_toiawase button[type=button]:disabled,
.kantan_inquiry .kantan_toiawase button[type=button]:disabled:hover {
    border: 1px solid #CCCCCC;
    background: #CCCCCC 0% 0% no-repeat padding-box;
    color: #747474;
    text-decoration: none;
}

/**
 * FLEXからの新着、お得情報などのお知らせを受け取るチェックボックス全体
 * ul要素に設定される想定
 */
.kantan_inquiry .request_info {
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

/**
 * FLEXからの新着、お得情報などのお知らせを受け取るチェックボックスの1行の設定
 */
.kantan_inquiry .request_info li {
    flex-direction: row;
}

/* ----------------------------------------------カンタン在庫確認-------------------------------------------------- */
/* ----------------------------------------------カンタン在庫確認完了---------------------------------------------- */
.kantan_inquiry_complete,
.kantan_inquiry_complete_error {
    display: block;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.8);
    width: 640px;
    padding-top: 10px;
    padding-bottom: 24px;
    text-align: center;
}

.kantan_inquiry_complete ul,
.kantan_inquiry_complete_error ul {
    display: block;
}

.kantan_inquiry_complete li,
.kantan_inquiry_complete_error li {
    display: block;
    margin-top: 10px;
}
.kantan_inquiry_complete li:has(.message3) {
    margin-top: 20px;
}
.kantan_inquiry_complete .message1,
.kantan_inquiry_complete_error .message1 {
    font: normal normal bold 20px/30px Meiryo;
    text-align: center;
}
.kantan_inquiry_complete_error .message1 {
    color: #EE3440;
}
.kantan_inquiry_complete .message2,
.kantan_inquiry_complete_error .message2 {
    font: normal normal normal 14px/21px Meiryo;
}
.kantan_inquiry_complete .message3 {
    font: normal normal normal 12px/18px Meiryo;
}

/* ----------------------------------------------カンタン在庫確認完了---------------------------------------------- */
/* ----------------------------------------------お電話でのお問い合わせ-------------------------------------------- */

/**
 * お電話でのお問い合わせ全体
 */
.tel_inquiry {
    display: block;
    background-color: #FFFBD6;
    margin-bottom: 20px;
}

/**
 * お電話でのお問い合わせ1行の設定
 */
.tel_inquiry ul {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

/**
 * お電話でのお問い合わせの左側のテキスト部分の設定
 */
.tel_inquiry .left-text {
    display: block;
    margin-right: 10px;
}
/* ----------------------------------------------お電話でのお問い合わせ-------------------------------------------- */
/* ----------------------------------------------閲覧履歴---------------------------------------------------------- */
@media only screen and (max-width: 480px){
    .detail-browsingHistory {
        display: flex;
        overflow-x: scroll;
        position: relative;
        justify-content: space-between;
    }
    
    .detail-browsingHistory .item {
        border: 1px solid #c9c9c9;
        border-radius: 6px;
        min-width: 170px;
        width: 50%;
    }
    
    /**
     * 隣接する要素の間隔を設定
     */
    .detail-browsingHistory .item + .item {
        margin-left: 14px;
    }
    
    /**
     * 車種タイトル
     */
    .detail-browsingHistory .item .tittle {
        overflow: hidden;
        width: 160px;
        margin: 10px 0 0 5px;
    }
    .detail-browsingHistory .item .tittle a {
        font-size: 14px;
        line-height: 22px;
        font-weight: bold;
        color: #0055b8;
        display: block;
        height: 22px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    /**
     * 車種グレード
     */
    .detail-browsingHistory .item .tittle h4 {
        font-size: 12px;
        line-height: 20px;
        font-weight: normal;
        height: 20px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    /**
     * 車両画像
     */
    .detail-browsingHistory .item img {
        height: 136px;
        object-fit: cover;
        width: 100%;
    }
    
    /**
     * 在庫確認・見積依頼ボタン
     */
    .detail-browsingHistory .item .toiawase_d a {
        width: 90%;
        padding: 10px 5px 10px 5px;
        margin: 15px 8px 0 8px;
    }

    /**
     * 車両データ(全体)
     */
    .detail-browsingHistory .item .item-data {
        margin-top: 15px;
    }
    
    /**
     * 車両データ(1行分)
     */
    .item-data li {
        width: 100%;
        height: 50px;
        padding: 8px;
    }
    
    /**
     * 車両データ(小見出し)
     */
    .item-data li p {
        font-weight: bold;
        font-size: 14px;
    }
    
    /**
     * 車両データ(奇数行)
     */
    .item-data li:nth-child(even) {
        background-color: #f5f5f5; 
    }
    
    /**
     * 車両データ(偶数行)
     */
    .item-data li:nth-child(odd) {
        background-color: #fff;
    }
    
    /**
     * 閲覧履歴をもっと見るリンク
     */
    .detail-browsingHistory + a {
        display: block;
        margin-top: 20px;
        text-align: right;
    }
    .detail-browsingHistory + a::after {
        content: " >";
    }
}
/* ----------------------------------------------閲覧履歴---------------------------------------------------------- */
/* ------------------------------------閲覧中人数、検討中人数、総閲覧回数表示欄------------------------------------ */
.engage-float ul {
  display: flex;
  justify-content: space-between
}
.engage-float ul li {
  flex: 0 0 33%;
  padding: 4px 0;
  background-color: #FFF;
}
.engage-float .activeuser {
  display: inline-block;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
  width: 1.125em;
}
@media only screen and (min-width: 481px){
    .engage-float {
        display: block;
    }
    
    .engage-float ul li {
        text-align: end;
    }
}

@media only screen and (max-width: 480px){
    .engage-float {
      position: fixed;
      width: 100%;
      bottom: -30px;
      background-color: rgba(0, 0, 0, 0.65);
      z-index: 1000;
      overflow: hidden;
    }
    
    .engage-float ul li {
        padding: 4px 8px;
    }
}
/* ------------------------------------閲覧中人数、検討中人数、総閲覧回数表示欄------------------------------------ */

/* ------------------------------------画面下部のフローティングエリア------------------------------------ */
.float-under {
    display: block;
    position: sticky;
    background-color: #FFFBD6;
    border-top: 1px solid #CCC;
    z-index: 1000;
    bottom: 0px;
}

/**
 * お電話でのお問い合わせ
 */
.float-under .inquiry-tel {
    display: flex;
    flex-direction: column;
}

/**
 * QRコード
 */
.float-under .tel-qr {
    
    display: flex;
    flex-direction: column;
}
.float-under .tel-qr img {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}
.float-under .tel-qr img + p {
    margin-top: 3px;
    font-size: 10px;
}
/**
 * オンライン問い合わせ
 */
.float-under .inquiry-button {
    display: flex;
    flex-direction: column;
}
.float-under .inquiry-button p {
    font-weight: bold;
}
.float-under .inquiry-button .inquiry-button__inner {
    display: flex;
    justify-content: space-between;
}
 /**
  * オンライン問い合わせ
  */
.float-under .inquiry-button .inquiry__button {
    height: 40px;
    padding: 0 10px;
    margin: 5px 0;
}
.float-under .inquiry-button .inquiry__button + .inquiry__button {
    margin-left: 10px;
}
/**
 * ボタンの中をテキストを中央揃えにする
 */
.float-under .inquiry-button .inquiry__button > div {
    margin: 0 auto;
    display: flex;
    align-items: center;
}

/**
 * オリコ審査申し込みボタンの色をここだけ変える
 * hoverと通常時を入れ替える
 */
.float-under .inquiry-button .inquiry__button--loan {
    border: 1px solid #ff9800;
    background: linear-gradient(to bottom, #ffc107 10%, #ff9800 90%);
    color: #FFF;
}
.float-under .inquiry-button .inquiry__button--loan .inquiry__icon__loan {
    fill: #FFF;
}
.float-under .inquiry-button .inquiry__button--loan:hover {
    border: 1px solid #ffc107;
    background: linear-gradient(to bottom, #ffffd2 10%, #fff594 90%);
    color: #ff5722;
}
.float-under .inquiry-button .inquiry__button--loan:hover .inquiry__icon__loan {
    fill: #ff9800;
}
/* ------------------------------------画面下部のフローティングエリア------------------------------------ */
.komds {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 3px
}

/**
 * 電話ボタン
 */
.png_telnum {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 26px;
    line-height: 26px;
    font-weight: bold;
    color: #EE3440
}
.s_png_telnum {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 16px;
    font-weight: bold;
    color: #EE3440
}

@media only screen and (max-width: 480px){
    .png_telnum {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 22px;
        line-height: 20px;
        font-weight: 700
    }
}

/**
 * AIS品質評価結果
 */
.review_active {
  background-color: #FFF1B9;
}
.AISscore {
  font-size: 14px;
  line-height: 1.5;
  display: inline-block;
  vertical-align: super;
}

.AISscore dt {
  text-align: right;
  width: 60px;
}

.AISscore dd {
  margin: -1.5em 0 5px 80px;
}

.AISscore_all {
  font-size: 14px;
  line-height: 1.5;
  display: inline-block;
}

.AISscore_all dt {
  text-align: center;
  width: 60px;
  border: 2px solid #ccc;
  padding: 3px;
  border-radius: 2px;
  margin: 0 10px 0 0;
}

.AISscore_all dd {
  margin: -32px 0 5px 90px;
  border-right: 1px solid #ccc;
  padding: 0 20px 0 0;
}

/* 小見出し */
.zaiko_h2 {
  font-size: 25px;
  padding: 0 0 5px 0px;
  margin: 0 0 20px;
  border-bottom: 3px double #CCC;
}
@media only screen and (max-width: 480px){
    .zaiko_h2 {
        font-size: 20px;
        padding: 0 0 5px 0px;
        margin: 0 0 10px;
        /*border-left:6px solid #0055B8;*/
        border-bottom: 3px double #CCC;
    }
}

/* PR */
@media print, screen and (min-width:481px) {
    #usd_sectbox {
        width: 680px;
        float: left;
        font-size: 13px;
        line-height: 20px
    }
}
/* 販売店情報 */
@media print, screen and (min-width:481px) {
    #usd_asidebox {
        width: 300px;
        float: right
    }
}

/* 価格系 */
@media print, screen and (min-width:481px) {
    .detail_shijosha {
      width: 48% !important;
      float: right;
    }
}
/* ------------------------------------ その他セールスポイントリンク ------------------------------------ */
@media only screen and (max-width: 480px){
    /**
     * セールスポイント
     */
    .icon-block {
      margin: -40px 0 0px;
      padding: 10px;
    }
    .icon-block__list {
      display: flex;
      flex-wrap: wrap;
      margin-top: 8px;
    }
    .icon-block__list li {
      width: 48%;
    }
    .icon-block__list li:not(:nth-child(-n+2)) {
      margin-top: 8px;
    }
    .icon-block__list li:nth-child(2n){
      margin-left: 2%;
    }
    .icon-block img{
      max-width: 100%;
      height: auto;
    }
    
    /**
     * 長期保証プランあり
     */
    .icon-block-warranty {
        text-align: center;
        position: relative;
    }
    .icon-block-warranty svg {
        width: 25px;
        height: 25px;
        margin-right: 10px;
    }
    .icon-block-warranty .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
        width: 70%;
        padding: 12px 0;
        background-color: #2563eb;
        color: #fff;
        text-decoration: none;
        border-radius: 6px;
        font-size: 14px;
        font-weight: bold;
    }
    .icon-block-warranty .balloon {
        position: absolute;
        top: 6px;
        left: 0;
        right: 0;
        margin: auto;
        display: block;
        background-color: #FFF;
        color: #2563eb;
        width: 60%;
        padding: 5px;
        border-radius: 20px;
        border: 1px solid #2563eb;
        font-size: 11px;
        font-weight: 700;
        line-height: 1;
        text-align: center;
    }
}
/* ------------------------------------ その他セールスポイントリンク ------------------------------------ */
/* ------------------------------------ 基本情報・状態/品質評価情報/装備/フェア ------------------------- */
.usdtable {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #ccc;
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: #ccc
}
.usdtable th {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #ccc;
    border-right-width: 1px;
    border-right-style: solid;
    border-right-color: #ccc;
    padding: 10px;
    vertical-align: top;
    background-color: #f5f5f5
}
.usdtable td {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #ccc;
    border-right-width: 1px;
    border-right-style: solid;
    border-right-color: #ccc;
    padding: 10px;
    vertical-align: middle
}
@media only screen and (max-width: 480px){
    .usdtable th {
        padding: 5px;
        vertical-align: middle;
    }
    .usdtable td {
        padding: 5px;
    }
    .usdtable select {
        width: 100%;
        text-overflow: ellipsis
    }
}
.ais-info .other-info {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}
/* ------------------------------------ 基本情報・状態/品質評価情報/装備/フェア ------------------------- */
/* ------------------------------------旧usd_style------------------------------------ */
@media print, screen and (min-width:481px) {
    .detail_price{
      display: flex;
      flex-direction: column;
    }
    .tate {
      width: 25px;
      height: 100%;
      box-sizing: border-box;
      border-right: 1px solid #E5866D;
      font-weight: normal;
      font-size: 14px;
      float: left;
      padding: 7px 10px 7px 0;
      margin: -17px 0 0 10px;
    }
    .white_button_shape_detail_2 {
      display: block;
      width: 70px;
      padding: 20.5px 0;
      font-size: 16px;
      font-weight: 900;
      text-align: center;
    }
    .white_button_shape_detail_3 {
      display: block;
      width: 70px;
      padding: 22px 0;
      font-size: 16px;
      font-weight: 900;
      text-align: center;
    }
    .info_asidebox {
      width: 330px;
      float: right;
      margin: 0;
      padding: 0 0 0 20px;
      position: relative;
    }
    @media print {
      .info_asidebox {
        width: 640px;
        margin: 0;
        padding: 0 0 0 20px;
      }
    }
    .__items__img_url {
      position: relative;
    }
    .dplst_box::after {
      content: '';
      display: block;
      clear: both;
    }
    .info_dl {
      width: 306px;
      display: block
    }
    .usd_other2 {
      height: 55px;
      padding: 10px
    }
}

/* お電話でのお問い合わせ */
@media print, screen and (min-width:481px) {
    .dpanel_tel {
      max-width: 310px;
      padding: 0;
    }
    .dshopn {
      /*background-color:#76B852;*/
      font-size: 12px;
      line-height: 12px;
      color: #000;
      margin: 0 0 12px;
    }
    .dshopn p {
      display: inline-block;
      vertical-align: top;
    }
    .dpanel_toilbox {
      float: left;
      width: 50%
    }
}
@media print, screen and (max-width:480px) {
    .dpanel_tel {
      background-color: #F8F5E4;
      padding: 10px 10px 10px;
      text-align: center
    }
    .dshopn {
      margin-bottom: 7px
    }
    .dpanel_toilbox {
      margin-top: 10px
    }
    
}

/* 販売店情報 */
@media print, screen and (min-width:481px) {
    .shop_panel {
      width: 270px;
      border-right-width: 1px;
      border-bottom-width: 1px;
      border-left-width: 1px;
      border-right-style: solid;
      border-bottom-style: solid;
      border-left-style: solid;
      border-right-color: #ccc;
      border-bottom-color: #ccc;
      border-left-color: #ccc;
      padding-top: 14px;
      padding-right: 14px;
      padding-bottom: 19px;
      padding-left: 14px;
      margin-bottom: 30px
    }
    .shop_photo img {
      width: 270px;
      margin-top: 10px;
      margin-bottom: 10px
    }
    .shop_data_ttl {
      width: 280px;
      background-color: #fcfcfc;
      padding: 9px;
      border: 1px solid #ccc;
      font-size: 14px
    }

}
@media print, screen and (max-width:480px) {
    .shop_panel {
      width: 100%
    }
    .shop_photo {
      margin-top: 10px;
      margin-bottom: 10px;
      text-align: center
    }
    .shop_data_ttl {
      width: 100%;
      background-color: #fcfcfc;
      font-size: 14px;
      line-height: 14px;
      padding-top: 8px;
      padding-right: 7px;
      padding-bottom: 6px;
      padding-left: 7px;
      border-top-width: 1px;
      border-right-width: 1px;
      border-left-width: 6px;
      border-top-style: solid;
      border-right-style: solid;
      border-left-style: solid;
      border-top-color: #ccc;
      border-right-color: #ccc;
      border-left-color: #EE3440;
      border-bottom-width: 1px;
      border-bottom-style: solid;
      border-bottom-color: #ccc;
      margin-bottom: 10px
    }

}

/* 在庫確認・無料見積 or 試乗車予約 ボタン */
@media print, screen and (min-width:481px) {
    .toiawase_d a {
      width: 225px;
      display: block;
      padding: 20px 0;
      font-size: 18px;
      font-weight: 900;
      border: 1px solid #fb4809;
      background: #fb4809;
      background: linear-gradient(to bottom, #FF6E3F 10%, #fc491e 90%);
      box-shadow: 0 1px 0 rgba(153, 36, 0, .2);
      color: #fff;
      border-radius: 4px;
      text-align: center;
      background-color: #FF6E3F
    }
    .toiawase_d a:hover {
      border: 1px solid #f5d3cb;
      background: #FFFBFA;
      background: linear-gradient(to bottom, #FFFBFA 10%, #FEE8E2 90%);
      color: #fb4809;
      text-decoration: none
    }
    .toiawase_d a:active {
      background: linear-gradient(to bottom, #FFF5F2 10%, #FFDCD4 90%);
      box-shadow: 0 1px 1.5px #FCE3DD inset
    }
    .toiawase_d input[type=submit] {
      width: 100%;
      padding: 10px;
      font-size: 15px;
      font-weight: 900;
      border: 1px solid #E5866D;
      background: #fb4809;
      background: linear-gradient(to bottom, #FF6E3F 10%, #fc491e 90%);
      box-shadow: 0 1px 0 rgba(153, 36, 0, .2);
      color: #fff;
      border-radius: 5px
    }
    .toiawase_d input[type=submit]:hover {
      border: 1px solid #f5d3cb;
      background: #FFFBFA;
      background: linear-gradient(to bottom, #FFFBFA 10%, #FEE8E2 90%);
      color: #fb4809
    }
    .toiawase_d input[type=submit]:active {
      background: linear-gradient(to bottom, #FFF5F2 10%, #FFDCD4 90%);
      box-shadow: 0 1px 1.5px #FCE3DD inset
    }
    .toiawase_d input[type=button] {
      width: 100%;
      padding: 10px;
      font-size: 15px;
      font-weight: 900;
      border: 1px solid #E5866D;
      background: #fb4809;
      background: linear-gradient(to bottom, #FF6E3F 10%, #fc491e 90%);
      box-shadow: 0 1px 0 rgba(153, 36, 0, .2);
      color: #fff;
      border-radius: 5px
    }
    .toiawase_d input[type=button]:hover {
      border: 1px solid #f5d3cb;
      background: #FFFBFA;
      background: linear-gradient(to bottom, #FFFBFA 10%, #FEE8E2 90%);
      color: #fb4809
    }
    .toiawase_d input[type=button]:active {
      background: linear-gradient(to bottom, #FFF5F2 10%, #FFDCD4 90%);
      box-shadow: 0 1px 1.5px #FCE3DD inset
    }
    .dpanel_toirbox {
      float: right;
      width: 49%
    }
}
@media print, screen and (max-width:480px) {
    .toiawase_d a {
      font-size: 14px;
      font-weight: 900;
      width: 100%;
      padding: 14px;
      border: 1px solid #fb4809;
      background: linear-gradient(to bottom, #FF6E3F 10%, #fc491e 90%);
      box-shadow: 0 1px 0 rgba(153, 36, 0, .2);
      border-radius: 4px;
      color: #fff;
      display: block;
      text-align: center;
      text-decoration: none;
      background-color: #FF6E3F
    }
    .toiawase_d input[type=submit] {
      font-size: 14px;
      font-weight: 900;
      width: 100%;
      padding: 10px;
      border: 1px solid #fb4809;
      background: linear-gradient(to bottom, #FF6E3F 10%, #fc491e 90%);
      box-shadow: 0 1px 0 rgba(153, 36, 0, .2);
      border-radius: 2px;
      color: #fff;
      display: block;
      text-align: center;
      text-decoration: none
    }
    .toiawase_d input[type=button] {
      font-size: 14px;
      font-weight: 900;
      width: 100%;
      padding: 10px;
      border: 1px solid #fb4809;
      background: linear-gradient(to bottom, #FF6E3F 10%, #fc491e 90%);
      box-shadow: 0 1px 0 rgba(153, 36, 0, .2);
      border-radius: 2px;
      color: #fff;
      display: block;
      text-align: center;
      text-decoration: none
    }
    .toiawase_d .tate {
      width: 30px;
      height: 100%;
      padding: 5px 6px 0;
      font-size: 12px;
      letter-spacing: 1px;
      line-height: 1.2;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      position: absolute;
      top: 0;
      left: 0;
      border-radius: 2px 0 0 2px;
      color: #fff;
      background-color: #E03D14;
      border-right: 1px solid #FF9D80;
    }
    .dpanel_toirbox {
      background-color: #F8F5E4;
      padding: 10px;
      margin-top: 10px
    }
}

/* 問い合わせ */
.inquiry__tel,
.inquiry__online {
  border: 1px solid #CCC;
}

.inquiry__online {
  margin-top: 16px;
}

.inquiry__inner {
  padding: 12px;
}
.inquiry__title {
  font-size: 16px;
  font-weight: 700;
  padding: 10px;
  background-color: #f1f1f1;
  border-bottom: 1px solid #CCC;
}
.inquiry__button {
  display: flex;
  align-items: center;
  background-color: #CCC;
  margin-top: 8px;
  height: 60px;
  padding: 0 8px 0 38px;
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  position: relative;
}
.inquiry__button:hover {
  cursor: pointer;
  text-decoration: none;
}
.inquiry__button--tel:not(:root){
  border: 1px solid #64C230;
  background: linear-gradient(to bottom, #64C230 10%, #479A19 90%);
  box-shadow: 0 1px 0 rgba(153, 36, 0, .2);
  color: #FFF;
  font-size: 18px;
}
.inquiry__button--tel:not(:root):hover {
  border-color:  #64C230;
  background:linear-gradient(to bottom, #f5fdeb 10%, #d7f3c7 90%);
  color:  #64C230;
}
.inquiry__icon__tel {
  fill: #FFF;
  display: block;
  text-align: center;
  width: 28px;
  margin-right: 4px;
  padding-left: 6px;
}
.inquiry__button--tel:not(:root):hover svg{
  fill:  #64C230;
}
.inquiry__button--1:not(:root) {
  border: 1px solid #fc491e;
  background: linear-gradient(to bottom, #FF6E3F 10%, #fc491e 90%);
  box-shadow: 0 1px 0 rgba(153, 36, 0, .2);
  color: #FFF;
  margin-top: 0;
}
.inquiry__button--1:not(:root):hover {
  border-color: #f5d3cb;
  background: linear-gradient(to bottom, #FFFBFA 10%, #FEE8E2 90%);
  color: #fb4809;
}
.inquiry__button--1:not(:root):hover .inquiry__button__icon {
  border-right-color: #fb4809;
}
.inquiry__button--line:not(:root) {
  border: 1px solid #06c755;
  background: linear-gradient(to bottom, #06c755 10%, #06c755 90%);
  box-shadow: 0 1px 0 rgba(153, 36, 0, .2);
  color: #FFF;
}
.inquiry__button--line:not(:root):hover {
  border-color: #06c755;
  background: linear-gradient(to bottom, #fcfefd 10%, #ebfff3 90%);
  color: #06c755;
}
.inquiry__button--tel:not(:root):hover .inquiry__button__icon {
  border-right-color: #64C230;
}

.inquiry__button--line:not(:root):hover .inquiry__button__icon {
  border-right-color: #06c755;
}
.inquiry__button--loan:not(:root) {
  border: 1px solid #ffc107;
  background: linear-gradient(to bottom, #ffffd2 10%, #fff594 90%);
  box-shadow: 0 1px 0 rgba(153, 36, 0, .2);
  color: #ff5722;
}
.inquiry__button--loan:not(:root):hover {
  border: 1px solid #ff9800;
  background: linear-gradient(to bottom, #ffc107 10%, #ff9800 90%);
  color: #FFF;
}
.inquiry__button--loan:not(:root) .inquiry__button__icon {
  border-right-color: #ffc107;
}
.inquiry__button--loan:not(:root):hover .inquiry__button__icon {
  border-right-color: #FFF;
}
.inquiry__icon__mail {
  fill: #FFF;
  display: block;
  text-align: center;
  width: 35px;
}
.inquiry__button:hover .inquiry__icon__mail {
  fill: #fb4809;
}
.inquiry__icon__loan {
  fill: #ff9800;
}
.inquiry__button:hover .inquiry__icon__loan {
  fill: #FFF;
}
.inquiry__icon__line,
.inquiry__icon__loan {
  margin-right: 4px;
}
.inquiry__button__icon {
  position: absolute;
  width: 1em;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  font-size: 14px;
  line-height: 1.2;
  border-right: 1px solid #FFF;
}
@media screen and (max-width:480px) {
  .inquiry__button__icon {
    width: 2em;
  }
}
.inquiry__button__cap {
  color: #fb4809;
  font-size: 12px;
  margin-top: 12px;
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
}
.inquiry__tel--wrap {
  display: flex;
  align-items: center;
}
.inquiry__tel__icon {
  background-color: #F00;
  color: #FFF;
  padding: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.inquiry__tel__number {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #F00;
  margin-left: 5px;
}
.button__autoloan {
  display: block;
  width: 100%;
  padding: 14px 0;
  background: -webkit-linear-gradient(top,#fff 85%,#f6f6f6 100%);
  background: linear-gradient(to bottom,#fff 85%,#f6f6f6 100%);
  color: #333;
  border: 1px solid #CCC;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgb(0 0 0 / 6%);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}

/* PR 基本情報 装備 店舗の仕切り */
@media print, screen and (max-width:480px) {
    .page_nav {
      width: 100%;
      margin: 0px 0 25px!important;
      border-top: 1px solid #ccc;
      border-bottom: 1px solid #ccc;
    }
    .page_nav ul li a {
      display: inline-block;
      float: left;
      width: 25%;
      text-align: center;
      border-left: 1px solid #ccc;
      height: 40px;
      line-height: 40px;
      color: #333;
      background: #EEE;
      font-size: 12px;
      font-weight: bold;
    }
    .page_nav ul li a:hover {
      text-decoration: none;
    }
    .page_nav ul li a:after {
      content: "▼";
      margin: 0 0 0 8px;
      font-size: 8px;
      line-height: 40px;
      color: #0055B8;
    }
    .page_nav ul li.nav_info a {
      border-left: 0px solid #ccc;
    }
}

/* 価格系 */
@media print, screen and (min-width:481px) {
    .shijosha dt{
      color: #000;
      border-top: 3px solid #0055B8;
      padding: 5px 0 0;
      margin: 0 0 4px;
      font-size: 12px;
      font-weight: bold;
    }
    .shijosha {
      width: 48%;
    }

    .shijosha::after {
      content: "";
      clear: both;
      display: block;
    }
}
@media print, screen and (max-width:480px) {
    .shijosha dd span {
      color: #0055B8;
    }
    .shijosha dt{
      color: #000;
      border-top: 3px solid #0055B8;
      padding: 5px 0 0;
      margin: 0 0 4px;
      font-size: 12px;
      font-weight: bold;
    }
    .shijosha {
      width: 48%;
    }
    .shijosha::after {
      content: "";
      clear: both;
      display: block;
    }
    .spec_itembox {
      padding: 10px 0;
      margin: 10px 0;
      border-top: 1px dotted #ccc;
    }
    .spec_itembox li {
      display: block;
      float: left;
      width: 20%;
      text-align: center;
    }
    .spec_itembox li span {
      font-size: 12px;
      line-height: 1.5;
    }
    .spec_itembox li span.unregistered {
      font-size: 12px;
      font-weight: 400;
    }
}

/* ボタン系 */
.oricotoiawase_d a {
    display: block;
    font-size: 16px;
    font-weight: 900;
    border: 1px solid #fff594;
    background: linear-gradient(to bottom, #ffffd2 10%, #fff594 90%);
    box-shadow: 0 1px 0 rgba(153, 36, 0, .2);
    color: #000000;
    border-radius: 5px;
}
.oricotoiawase_d a:hover {
  background: linear-gradient(to bottom, #ffffe0 10%, #ffffd2 90%);
  border: 1px solid #fff594;
  text-decoration: none;
}
@media print, screen and (min-width:481px) {
    .oricotoiawase_d a img {
      width: 40%;
      padding-top: 6px;
      margin: 0 10px -4px 15px;
    }
    .oricotoiawase_d a {
      padding: 10px 10px 10px;
      margin-bottom: 20px;
      margin-top: 15px;
    }
}
@media print, screen and (max-width:480px) {
    .oricotoiawase_d a img {
      width: 80px;
      margin: 0 5px -4px 20px;
    }
    .oricotoiawase_d a {
      padding: 12px 10px 10px;
      width: 100%;
      margin: 10px auto 25px;
    }
    .white_button_shape_detail_sp {
      display: block;
      width: 100%;
      padding: 12px;
      font-size: 14px;
      font-weight: 900;
      text-align: center;
    }
    .white_button_shape_detail_sp_2 {
      display: block;
      width: 16%;
      line-height: 12px;
      font-weight: 900;
      padding: 11px 0;
      outline: 0;
      float: right;
      text-align: center;
    }
    .line_button_shape_mini a {
      display: block;
      height:46px;
      font-size: 16px;
      font-weight: 900;
      border-radius: 6px;
      background-image: url(/common/v2/images/common/btn_line_inquiry_square-7c76d6fc2d537b6f8bafa1f30a063487.png);
      background-position: center center;
      text-align: center;
      padding-top: 12px;
      color:white;
    }
}

/* フローティングエリア内のボタン */
@media print, screen and (max-width:480px) {
    .flowsptelbtn span {
      width: 22px;
      height: 46px;
      padding: 12px 6px 0;
      font-size: 10px;
      letter-spacing: 1px;
      line-height: 1.2;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      border-radius: 2px 0 0 2px;
      color: #fff;
      background-color: #579236;
      margin: 0;
      border-right: 1px solid #B1E795;
      font-weight: normal;
    }
    .flowsptelbtn a {
      width: 100%;
      display: block;
      text-align: center;
      font-size: 12px;
      line-height: 12px;
      font-weight: 900;
      padding: 16px 0;
      border: 1px solid #80CA57;
      background: linear-gradient(to bottom, #80CA57 10%, #76B852 90%);
      box-shadow: 0 1px 0 rgba(153, 36, 0, .2);
      border-radius: 2px;
      color: #fff;
      outline: 0;
      -webkit-appearance: none;
      cursor: pointer
    }
    .flowtoibtn span {
      width: 22px;
      height: 46px;
      padding: 12px 6px 0;
      font-size: 10px;
      letter-spacing: 1px;
      line-height: 1.2;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      border-radius: 2px 0 0 2px;
      color: #fff;
      background-color: #E03D14;
      border-right: 1px solid #FF9D80;
      font-weight: normal;
    }
    .flowtoibtn a {
      width: 100%;
      display: block;
      text-align: center;
      font-size: 12px;
      line-height: 12px;
      font-weight: 900;
      padding: 17px 0 17px 10px;
      background: linear-gradient(to bottom, #FF6E3F 10%, #fc491e 90%);
      box-shadow: 0 1px 0 rgba(153, 36, 0, .2);
      border-radius: 2px;
      color: #fff;
      outline: 0;
      -webkit-appearance: none;
      cursor: pointer
    }
    .flowtoibtn input[type=submit], .flowtoibtn input[type=button] {
      width: 100%;
      text-align: center;
      font-size: 12px;
      line-height: 12px;
      font-weight: 900;
      padding: 7px 0 7px 0;
      border: 1px solid #ee3440;
      background: linear-gradient(to bottom, #FF6E3F 10%, #fc491e 90%);
      box-shadow: 0 1px 0 rgba(153, 36, 0, .2);
      border-radius: 2px;
      color: #fff;
      outline: 0;
      -webkit-appearance: none;
      cursor: pointer
    }
}

/* 店舗リンク追加 */
.shop-link {
  margin: 0 0 30px;
}
.shop-link__list li:not(:first-child) {
  margin-top: 8px;
}
.shop-link__link {
  display: block;
  padding: 12px 30px 12px 8px;
  background-color: #EFEFEF;
  border-radius: 4px;
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, .1);
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: #333;
  position: relative;
}
.shop-link__link::after {
  position: absolute;
  top: 45%;
  right: 10px;
  content: '';
  width: 6px;
  height: 6px;
  border-top: 2px solid #CCC;
  border-right: 2px solid #CCC;
  transform: rotate(45deg);
}
.shop-link__link--strong {
  color: #EE3440;
}

/*スタッフ紹介追加*/
.shop-staff__list li:not(:first-child) {
  margin-top: 8px;
}
.shop-staff__thum {
  margin-top: 4px;
}
.shop-staff__img {
  max-width: 100%;
  height: auto;
}

.modal-icon__icon {
  flex-basis: 45px;
  flex-shrink: 0;
}
.modal-icon__description {
  flex-shrink: 2;
}
.modal-icon__item {
  display: flex;
  align-items: center;
}
.modal-icon__description {
  font-size: 13px;
  line-height: 1.3;
  padding-left: 8px;
}
@media screen and (min-width: 480px) {
  .modal-icon__item {
    display: flex;
    align-items: center;
  }
  .modal-icon__description {
    font-size: 12px;
  }
}

.narabi_btn {
  display: none;
}
@media screen and (min-width: 480px) {
  .narabi_btn {
    display: block;
    width: auto;
    margin: 0 auto;
    background-color: #fffbd6;
    margin: 0 0 40px;
  }
}
@media screen and (min-width: 480px) {
  .narabi_btn__inner {
    width: auto;
    margin: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 24px;
  }
}

.p-detail__head::after,
.p-detail__headInner::after {
  clear: both;
  content: "";
  display: block;
}

/* フローティングエリア */
.float__block {
  position: relative;
}
.float__block .float__block--close {
  color: #333;
  background-color: #EFEFEF;
  font-size: 22px;
  display: block;
  padding: 5px 6px 4px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  text-decoration: none;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
}
.float__inner {
  width: calc(1020px - 20px);
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 0;
}
.float__car {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 38%;
  color: #333;
}
.float__car .float__car--thumb {
  width: 100px;
}
.float__car .float__car--thumb img {
  max-width: 100%;
  height: auto;
}
.float__car .float__car--data {
  width: calc(100% - 110px);
}
.float__car .float__car--name {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.float__car .float__car__meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
}
.float__car .float__car__meta .float__car--head {
  font-size: 12px;
  width: 5em;
}
.float__car .float__car__meta .float__car--body {
  font-size: 12px;
  width: calc(90% - 3em);
}
.float__car .float__car__meta .float__car--value {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
}
.float__car .float__car__meta .float__car--price {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #EE3440;
}
.float__tel {
  color: #333;
  width: 26%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.float__tel .float__tel--head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.float__tel .float__tel--icon {
  margin-right: 4px;
  color:  #fb4809;
  font-size: 13px;
  padding: 6px 4px 4px;
  border: 1px solid #fb4809;
  display: flex;
  align-items: center;
  justify-content: center;
}
.float__tel .float__tel--value {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 700;
}
.float__tel .float__tel--body {
  font-size: 12px;
  margin-top: 4px;
}
.float__element {
  width: 34%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.float__button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.float__button .float__button--item {
  width: 49%;
}
.float__button .float__button--item a {
  display: block;
  text-align: center;
  background-color: #CCC;
  padding: 16px 4px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
}
.float__button .float__button--item .kakunin {
  color: #FFF;
  border: 1px solid #fb4809;
  background: #fb4809;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #FF6E3F), color-stop(90%, #fc491e));
  background: -webkit-linear-gradient(top, #FF6E3F 10%, #fc491e 90%);
  background: -o-linear-gradient(top, #FF6E3F 10%, #fc491e 90%);
  background: linear-gradient(to bottom, #FF6E3F 10%, #fc491e 90%);
  -webkit-box-shadow: 0 1px 0 rgba(153, 36, 0, 0.2);
          box-shadow: 0 1px 0 rgba(153, 36, 0, 0.2);
}
.float__button .float__button--item .kakunin:hover {
  border: 1px solid #f5d3cb;
  background: #FFFBFA;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #FFFBFA), color-stop(90%, #FEE8E2));
  background: -webkit-linear-gradient(top, #FFFBFA 10%, #FEE8E2 90%);
  background: -o-linear-gradient(top, #FFFBFA 10%, #FEE8E2 90%);
  background: linear-gradient(to bottom, #FFFBFA 10%, #FEE8E2 90%);
  color: #fb4809;
  text-decoration: none;
}
.float__button .float__button--item .white_button_color {
    background-color: #FFF;
    padding: 17px 4px;
    margin-left: 50%;
}
.narabi_btn__inner--auto {
     width: auto;
}
.narabi_btn__inner--640 {
    width: 640px;
}

.negative-margin {
  margin-left: -10px;
  margin-right: -10px;
}

/* ITB-3341物件詳細ページ改善 */
@media screen and (max-width:480px) {
  .toiawase__button:has(.button__gust) {
    margin-top: 30px !important;
  }

  .button__gust {
    white-space: nowrap;
    display: block;
    position: absolute;
    top: -11px;
    left: 0;
    right: 0;
    background-color: #FFE942;
    border-radius: 30px;
    width: fit-content;
    margin: auto;
    color: #333;
    padding: 5px 10px;
    font-size: 11px;
    line-height: 1;
  }

  .button__text {
    display: inline-block;
    padding-top: 2px;
  }
}

/*サブパン屑*/
.subnav {
  margin: 0 0 3px;
  font-size: 11px;
  line-height: 15px;
}
.subnav li {
  display: inline-block;
}
.subnav_oya {
  display: block;
  background-color: #FCFCFC;
  padding: 20px;
  border: 1px solid #ccc;
}
@media print, screen and (max-width:480px) {
    .subnav {
      margin: 10px;
      font-size: 12px;
      line-height: 15px;
      font-weight: 400;
    }
}

/* 車両価格について */
.name__sub {
  color: #C00;
  font-size: 11px;
  margin: 0 0 0 0.5em;
  text-decoration: underline;
  cursor: pointer;
}
.name__sub--balloon {
  font-size: 12px;
  text-align: left;
  padding: 10px 40px 10px 10px;
  background-color: #ffc107;
  border-radius: 6px;
  width: 160px;
  position: absolute;
  top: -90px;
}
.name__sub--balloon::before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  margin-left: -95px;
  border: 10px solid transparent;
  border-top: 15px solid #ffc107;
  z-index: 2;
}
.name__sub--close {
  border: none;
  outline: none;
  background: none;
  position: absolute;
  right: 2px;
  top: 2px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  width: 30px;
  height: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}
@media print, screen and (max-width:480px) {
    .name__sub {
      font-size: 11px;
      color: #333;
      text-decoration: none;
      background-color: #ccc;
      width: 1.5em;
      height: 1.5em;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
    }
    .name__sub--balloon {
      width: 220px;
      right: 12px;
      top: 450px;
      padding: 10px 40px 10px 10px;
      z-index: 1;
    }
    .name__sub--balloon::before {
      margin-left: -57px;
    }
}

/* このクルマが気になりましたか？ */
.remodal_recommend_form:not(:root) {
  width: 620px;
  top: 10%;
}
@media only screen and (max-width: 480px) {
  .recommend_form {
    border-radius: 3px;
    padding: 20px !important;
    position: absolute;
    margin: auto;
    top: 15%;
    left: 0;
    right: 0;
  }
}

/* service */
.column {
  border: 1px solid #383B3C;
  border-radius: 10px;
}
@media print, screen and (min-width:481px) {
    .column {
      width: 630px;
      padding: 24px;
    }
}
@media print, screen and (max-width:480px) {
    .column {
      width: 100%;
      padding: 14px;
    }
}

.flex__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media print, screen and (max-width:480px) {
    .flex__row {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
    }
    .flex__row li {
      margin: 0 15px;
    }
    .flex__row li:not(:nth-child(-n+5)) {
      margin-top: 12px;
    }
}

.kanshu_lbox {
  float: left;
}
.kanshu_rbox {
  float: right;
  font-size: 12px;
  line-height: 17px;
}
.kanshu_rbox i {
  font-size: 24px;
  line-height: 30px;
  margin-right: 5px;
}
@media print, screen and (min-width:481px) {
    .kanshu_lbox {
      width: 120px;
    }
    .kanshu_lbox img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      margin-bottom: 10px;
    }
    .kanshu_rbox {
      width: 540px;
    }
}
@media print, screen and (max-width:480px) {
    .kanshu_lbox {
      width: 25%;
    }
    .kanshu_rbox {
      width: 67%;
    }
}

/* この車を在庫しているお店 */
.marugazo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
}
@media print, screen and (min-width:481px) {
    .marugazo img {
      width: 120px;
      height: 120px;
    }    
}
@media print, screen and (max-width:480px) {
    .marugazo img {
      width: 80px;
      height: 80px;
    }
}

/* 定義順の都合で変わってしまった部分を上書き */
.centertxt {
    text-align: center;
}