@media(max-width:750px){
    .pc{
        display: none !important;
    }
}

/* sale-card */
.sale-container {
  display: flex;
  gap: 24px;
  justify-content: left;
  flex-wrap: wrap;
}

.card {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 48%;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 12px;
  background-color: #fff;
  box-sizing: border-box;
}

.card img {
  width: 40%;
  height: auto;
}

.card-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-text h3 {
  color: #90BD81;
  margin: 0 0 8px;
}

.card-text p {
  color: #333;
  margin: 0;
}


@media(max-width:750px){
  .sale-container {
    flex-direction: column;
    gap: 16px;
  }

  .card {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
  }

  .card img {
    width: 100%; 
    height: auto;
  }

  .card-text {
    width: 100%;
  }
}


/* 中古車販売 */
.textlink08 {
  text-align: center;
  margin-bottom: 10px;
}

.textlink08 a {
  padding-right: 30px;
  font-size: 14px;
  font-weight: 700;
  position: relative;   
  display: inline-block; 
  color: #90BD81;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  border-bottom: 1px solid #90BD81;
}

.textlink08 a::after {
  content: '';
  position: absolute;
  top: calc(50% - 3px);
  right: 9px;
  transform: rotate(45deg);
  width: 6px;
  height: 6px;
  border-width: 2px 2px 0 0;
  border-style: solid;
  border-color: #90BD81 #90BD81 transparent transparent; 
}

.textlink08 a:hover {
  color: #5F5E5E; 
}

.textlink08 a:hover::after {
  border-color: #5F5E5E #5F5E5E transparent transparent; 
}
