@charset "UTF-8";
/* ================================================= *
 *        	common
 * ================================================= */
.car-search-results {
  width: min(92%, 1180px);
  margin-inline: auto;
  padding: min(8vw, 60px) 0;
  color: #626262;
}
.car-search-results a {
  /* display: block; */
  color: currentColor;
}
.car-search-results-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
}

/* ================================================= *
 *        	検索条件
 * ================================================= */
.search-conditions {
  width: 256px;
  min-width: 256px;
  height: 100%;
}
.search-conditions-inner {
  margin-top: 10px;
  padding: 20px 17.5px 15px;
  background-color: #EEE;
  color: #626262;
  font-size: 1.4rem;
  font-weight: bold;
}
.search-conditions__title {
  font-size: 2.3rem;
  font-weight: bold;
}
.search-conditions__reset-btn {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid #ccc;
}
.search-conditions__reset-btn button {
  width: 100%;
  padding: 0.5em;
  border: 1px solid #ccc;
  border-radius: 2px;
  background-color: #fff;
  color: #626262;
  font-weight: bold;
  cursor: pointer;
}
.search-conditions__btn {
  position: relative;
  margin-top: 10px;
}
.search-conditions__btn button {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 2.041px;
  background-color: #CD0E22;
  -webkit-box-shadow: 2.9519px 2.9519px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 2.9519px 2.9519px 0 rgba(0, 0, 0, 0.15);
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
}
.search-conditions__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 25px;
  width: 20px;
  height: 20px;
  background: url(../img/car_search/search_icon.svg) no-repeat center/contain;
}

.search-conditions-head {
  padding: 20px 17.5px;
  border-radius: 2px;
  background-color: #CD0E22;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
}
.search-conditions-head__total .count {
  position: relative;
  top: 1px;
  padding: 0.2em;
  font-size: 23.8653px;
}
.search-conditions-head__number {
  margin-top: 15px;
  padding: 0 6px;
  border-radius: 2px;
  background-color: #fff;
  color: #626262;
  font-size: 1.7rem;
}
.search-conditions-head__number .count {
  position: relative;
  top: 1px;
  padding-right: 0.05em;
  color: #CD0E22;
  font-size: 3.6rem;
}

.search-conditions-list {
  margin-top: 10px;
  border-top: 1px solid #ccc;
}
.search-conditions-list__group:not(:first-of-type) {
  margin-top: 20px;
  border-top: 1px solid #ccc;
}
.search-conditions-list__title {
  padding-top: 15px;
  font-size: 1.6rem;
  font-weight: bold;
}
.search-conditions-list__title.price-range {
  padding-top: 30px;
}

.check-list {
  margin-top: 15px;
}
.check-list__item {
  margin-top: 10px;
}
.check-list input[type=radio],
.check-list input[type=checkbox] {
  position: relative;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  border: 1px solid #ccc;
  border-radius: 2px;
  background-color: #fff;
  vertical-align: -6px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.check-list input[type=radio]:checked,
.check-list input[type=checkbox]:checked {
  border: none;
  background-color: #CD0E22;
}
.check-list input[type=radio]:checked::before,
.check-list input[type=checkbox]:checked::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 8px;
  -webkit-transform: rotate(50deg);
          transform: rotate(50deg);
  width: 6px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.select-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 5px;
}
.select-box .manufacturer, .select-box .car-name,
.select-box .lower-limit, .select-box .upper-limit,
.select-box .shop, .select-box .car_classification {
  width: 100%;
  height: 50px;
  padding: 0.5em 1em;
  border: 1px solid #ccc;
  border-radius: 2px;
  background: url(../img/car_search/select_arrow.svg) no-repeat right 15px center/13px;
  background-color: #fff;
/*  color: #CCC;*/
  font-size: 1.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.select-box .manufacturer option, .select-box .car-name option,
.select-box .lower-limit option, .select-box .upper-limit option,
.select-box .shop option, .select-box .car_classification option {
  color: #000;
  background-color: #E5E4E2;
}
.select-box .select-box-text {
  color: #B3B3B3;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.check-color-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}
.check-color-list__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 2px;
  border: 1px solid #fff;
  background-color: #fff;
  -webkit-box-shadow: 1.9871px 1.9871px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 1.9871px 1.9871px 0 rgba(0, 0, 0, 0.15);
}
.check-color-list__item:has(input[type=checkbox]:checked) {
  border: 1px solid #CD0E22;
}
.check-color-list__item input[type=checkbox] {
  position: relative;
  width: 33px;
  height: 33px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 4.5px solid #fff;
}
.check-color-list__item:first-of-type input[type=checkbox] {
  background-color: #fff;
}
.check-color-list__item:first-of-type input[type=checkbox]::before {
  content: "";
  top: -1px;
  left: -1px;
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid #CCC;
}
.check-color-list__item:nth-of-type(2) input[type=checkbox] {
  background-color: #000;
}
.check-color-list__item:nth-of-type(3) input[type=checkbox] {
  background-color: #999;
}
.check-color-list__item:nth-of-type(4) input[type=checkbox] {
  background-color: #ED1C24;
}
.check-color-list__item:nth-of-type(5) input[type=checkbox] {
  background-color: #0061E2;
}
.check-color-list__item:nth-of-type(6) input[type=checkbox] {
  background-color: #009245;
}
.check-color-list__item:nth-of-type(7) input[type=checkbox] {
  background-color: #FCEE21;
}
.check-color-list__item:nth-of-type(8) input[type=checkbox] {
  background-color: #FF95FF;
}
.check-color-list__item:nth-of-type(9) input[type=checkbox] {
  background-color: #8A5EAB;
}
.check-color-list__item:nth-of-type(10) input[type=checkbox] {
  background-color: #754C24;
}
.check-color-list__item:nth-of-type(11) input[type=checkbox] {
  background-color: #F7931E;
}
.check-color-list__item:nth-of-type(12) input[type=checkbox] {
  background-color: #FCE8C2;
}
.check-color-list__label {
  position: absolute;
  visibility: hidden;
}

.panel-btn {
  display: none;
}

@media screen and (max-width: 768px) {
  .search-panel {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    background-color: #fff;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    z-index: 999;
  }
  .search-panel.active {
    left: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .panel-btn {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4px;
    left: 15px;
    bottom: 160px;
    width: 60px;
    height: 60px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    border-radius: 50%;
    background-color: #CD0E22;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    z-index: 9;
  }
  .panel-btn__icon {
    width: 20px;
  }
  .panel-btn__text {
    font-size: 1rem;
  }
  .close-btn {
    position: absolute;
    top: 5px;
    left: 200px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 9999;
  }
  .close-btn span {
    display: inline-block;
    position: absolute;
    left: 15px;
    height: 2px;
    background-color: #fff;
    width: 45%;
  }
  .close-btn span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    -webkit-transform: translateY(6px) rotate(-45deg);
            transform: translateY(6px) rotate(-45deg);
  }
  .close-btn span:nth-of-type(2) {
    top: 30px;
    left: 18px;
    -webkit-transform: translateY(-6px) rotate(45deg);
            transform: translateY(-6px) rotate(45deg);
  }
}
@media screen and (max-width: 640px) {
  .search-conditions {
    width: 100%;
  }
  .search-conditions__reset-btn button {
    height: 45px;
  }
  .search-conditions__btn button {
    height: 60px;
  }
  .search-panel {
    left: -120%;
    width: 100%;
  }
  .close-btn {
    left: unset;
    right: 10px;
  }
}
/* ================================================= *
 *        	検索結果
 * ================================================= */
.search-results {
  width: min(75.2542372881%, 888px);
  height: 100%;
}
@media screen and (max-width: 768px) {
  .search-results {
    width: 100%;
  }
}
.search-results-read {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .search-results-read {
    font-size: 1.8rem;
  }
}
.search-results-read__title {
  font-size: inherit;
  font-weight: bold;
}
.search-results-read__total .count {
  padding: 0 0.2em;
}
.search-results-read::before {
  content: "";
  display: inline-block;
  width: 51px;
  margin-right: 0.5em;
  aspect-ratio: 103/69;
  background: url(../img/car_search/title_icon09@2x.png) no-repeat center/contain;
  vertical-align: middle;
}
@media screen and (max-width: 640px) {
  .search-results-read::before {
    width: 30px;
  }
}

.search-results-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 30px;
  padding: 15px 25px;
  border: 1px solid #ccc;
  border-radius: 2px;
  font-size: 1.2rem;
}
@media screen and (max-width: 640px) {
  .search-results-detail {
    padding: 4%;
    font-size: 1rem;
  }
}
.search-results-detail__title {
  width: 100px;
  min-width: 100px;
  margin-top: 3px;
}
@media screen and (max-width: 640px) {
  .search-results-detail__title {
    width: 82px;
    min-width: 82px;
  }
}
.search-results-detail__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
}
.search-results-detail__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.3em 0.5em;
  border-radius: 2px;
  background-color: #444;
  color: #fff;
}

.search-results-sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px 25px;
  margin-top: 30px;
}
@media screen and (max-width: 640px) {
  .search-results-sort {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: min(4vw, 30px);
    font-size: 1.4rem;
  }
}

.search-results-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px 30px;
  margin-top: 40px;
}
@media screen and (max-width: 640px) {
  .search-results-list {
    gap: 30px 15px;
    margin-top: min(5.3333333333vw, 40px);
  }
}
.search-results-list__item {
  position: relative;
  width: 272px;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .search-results-list__item {
    width: calc((100% - 15px) / 2);
  }
}
.search-results-list__img {
  max-width: 100%;
  height: auto;
}

.search-results-list-read .shop {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 640px) {
  .search-results-list-read .shop {
    font-size: min(2.1333333333vw, 1.6rem);
  }
}
.search-results-list-read .manufacturer {
  margin-top: -2px;
  color: #999;
  font-size: 1.4rem;
  letter-spacing: 0.11em;
}
@media screen and (max-width: 640px) {
  .search-results-list-read .manufacturer {
    font-size: min(2.2666666667vw, 1.7rem);
  }
}
.search-results-list-read .car-name {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.11em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .search-results-list-read .car-name {
    font-size: min(2.2666666667vw, 1.7rem);
  }
}

.search-results-list-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 10px;
  padding-top: 5px;
  border-top: 2px solid #C7C7C7;
}
@media screen and (max-width: 640px) {
  .search-results-list-price {
    margin-top: min(1.3333333333vw, 10px);
    padding-top: min(0.6666666667vw, 5px);
    border-top: 1px solid #C7C7C7;
  }
}
.search-results-list-price .total-amount {
  width: 100%;
  font-size: 1.2rem;
}
@media screen and (max-width: 640px) {
  .search-results-list-price .total-amount {
    font-size: min(2.4vw, 1.8rem);
  }
}
.search-results-list-price .total-amount__number {
  color: #CF011C;
  font-size: 2.28685833em;
}
.search-results-list-price .total-amount__tax {
  margin-left: -0.5em;
  font-size: 1rem;
}
@media screen and (max-width: 640px) {
  .search-results-list-price .total-amount__tax {
    font-size: min(2.1333333333vw, 1.6rem);
  }
}
.search-results-list-price .total-amount__yen {
  font-size: 1.4rem;
}
@media screen and (max-width: 640px) {
  .search-results-list-price .total-amount__yen {
    font-size: min(1.8666666667vw, 1.4rem);
  }
}
.search-results-list-price .main-unit, .search-results-list-price .cost {
  font-size: 1.2rem;
  line-height: 1;
}
@media screen and (max-width: 640px) {
  .search-results-list-price .main-unit, .search-results-list-price .cost {
    font-size: min(2.4vw, 1.8rem);
  }
}
.search-results-list-price .main-unit__number, .search-results-list-price .cost__number {
  font-size: 1.40896667em;
}
.search-results-list-price .main-unit__yen, .search-results-list-price .cost__yen {
  font-size: 1.1rem;
}
@media screen and (max-width: 640px) {
  .search-results-list-price .main-unit__yen, .search-results-list-price .cost__yen {
    font-size: min(1.4666666667vw, 1.1rem);
  }
}

.search-results-list-table {
  width: 100%;
  margin-top: 10px;
  border: 1px solid #C7C7C7;
  border-collapse: collapse;
  font-size: 1.2rem;
}
@media screen and (max-width: 640px) {
  .search-results-list-table {
    font-size: min(1.8666666667vw, 1.4rem);
  }
}
.search-results-list-table th {
  width: 54px;
  border: 1px solid #C7C7C7;
  background-color: #F0F0F2;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .search-results-list-table th {
    width: 20%;
  }
}
.search-results-list-table td {
  position: relative;
  border: 1px solid #C7C7C7;
  padding: 0.2em;
}
.search-results-list-table .color-chip {
  position: absolute;
  top: 50%;
  right: 2px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 13px;
  height: 13px;
  aspect-ratio: 1;
  background-color: #ccc;
}
@media screen and (max-width: 640px) {
  .search-results-list-table .color-chip {
    width: auto;
    height: 75%;
  }
}

.search-results-list-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}
.search-results-list-btn__item {
  width: 50%;
  text-align: center;
}
.search-results-list-btn__item .contact, .search-results-list-btn__item .phone {
  display: block;
  padding: 0.6em 0.5em;
  color: #fff;
  font-size: 1.4rem;
}
@media screen and (max-width: 640px) {
  .search-results-list-btn__item .contact, .search-results-list-btn__item .phone {
    font-size: min(2vw, 1.5rem);
  }
}
.search-results-list-btn__item .contact i, .search-results-list-btn__item .phone i {
  margin-right: 3px;
}
.search-results-list-btn__item .contact {
  background-color: #CF001B;
}
.search-results-list-btn__item .phone {
  background-color: #2D3034;
}

.featured-car-icon {
  position: absolute;
  top: -8px;
  right: 0;
  padding: 0.3em 0.8em 0.3em 1.2em;
  background-color: #FF4500;
  font-size: 1.4rem;
  letter-spacing: 0.01em;
  -webkit-box-shadow: 1.9925px 1.9925px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 1.9925px 1.9925px 0 rgba(0, 0, 0, 0.15);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 10px 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 10px 100%);
}
@media screen and (max-width: 640px) {
  .featured-car-icon {
    font-size: min(2.8vw, 2.1rem);
  }
}
.featured-car-icon__period {
  color: #fff;
}
.featured-car-icon__text {
  color: #FFFF00;
}
.featured-car-icon.period01 {
  background-color: #FF773A;
}

/* ================================================= *
 *        	banner-area
 * ================================================= */
.banner-area {
  margin-top: min(12vw, 90px);
  text-align: center;
}
.banner-area img {
  max-width: 100%;
  height: auto;
}