
.pattern1 {
  position: relative;
  overflow: hidden; /* これも入れておくと余計なはみ出しを防ぐ */
}
.pattern1::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  z-index: 2;
  transition: 0.5s;
}
.pattern1.show::before {
  transform: translateX(100%);
}
.pattern1 img {
  opacity: 0;
  transition: 0.5s;
}
.pattern1.show img {
  opacity: 1;
}
.pattern1 p {
  color: #fff;
  opacity: 0;
  transform: translateX(-40px);
  transition: 0.5s;
  transition-delay: 0.5s;
  z-index: 1;
  overflow: hidden;
}
.pattern1.show p {
  opacity: 1;
  transform: translateX(0);
}
.pattern1 p::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  transition: 0.5s;
  transition-delay: 1s;
}
.pattern1.show p::before {
  transform: translateX(100%);
}

#mv {
  padding-top: 7vw;
}

#carlist {
  background: linear-gradient(to bottom, #373737, #222222);
  padding-top: 8vw;
  padding-bottom: 10vw;
}
.car-list-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 自動調整 */
  gap: 1vw; /* 要素間の隙間 */
}

.car-list-section__item {
  width: 100%; /* gridでは自動調整されるので幅指定は100% */
}

.car-list-section__item img {
  width: 100%; /* 画像がカードの幅に合わせて拡大・縮小 */
}
.car-list-section__info {
  padding: 2vw;
  background-color: #fff;
}
.car-list-section__info p {
  font-size: 1vw;
  font-weight: bold;
}
.car-list-section__info dl {
  margin-bottom: 1vw;
  border-left: solid 6px #666;
  padding-left: 5px;
}
.car-list-section__info dt {
  display: flex;
  align-items: center;
  font-size: 1vw;
}
.total_price {
  font-weight: bold;
}
.color_red_big {
  color: #b40a0a;
  font-size: 2vw;
}
.color_red {
  color: #b40a0a;
}
.car-list-section__info a {
  color: #fff;
  text-align: center;
  padding: 0.6vw;
  font-size: 0.9vw;
  display: block;
  width: 49%;
  transition: all 0.5s;
}
.car-list-section__info a:hover {
  transform: translateY(4px);
  box-shadow: none;
}
.other-list .car-list-section__info a {
  width: 100%;
  padding: 20px 0;
}
.goo_btn {
  background-color: #df1b1f;
  box-shadow: 0px 4px 0px #aa1316;
}
.carsensor_btn {
  background-color: #ff6010;
  box-shadow: 0px 4px 0px #c74a0c;
}

#reason {
  background: linear-gradient(to bottom, #d9d9d9, #fff);
  padding-top: 8vw;
  padding-bottom: 10vw;
  position: relative;
  overflow: hidden;
}

.reason_box_item {
  width: 30%;
  margin-top: 2vw;
}
.reason_box_item h3 {
  background-color: #f50313;
  color: #fff;
  text-align: center;
  padding: 0.2vw 1vw;
  width: 100%;
  font-weight: bold;
  font-size: 1.3vw;
}
.reason_box_item img{
    margin: 2vw 0;
    width: 100%;
}
.reason_box_item .text{
    color: #5A5A5A;
    text-align: center;
    font-size: 1vw;
    padding: 0.5vw 1vw;
    font-weight: bold;
    background-color: #fff;
    box-shadow: 3px 3px 3px #bfbfbf;
}
.flex_area{
    margin-top: 4vw;
}
.flex_area img{
    width: 48%;
}
.flex_area_text{
    width: 48%;
}
.flex_area_text h2{
    font-size:2vw;
    position: relative;
    overflow: hidden;
    line-height: 1.2;
}
.flex_area_text h2::after{
    content:"" ;
    position: absolute;
    top: 50%;
    height: 2px;
    width: 60vw;
    background-color: #000;
}
.position_text{
    font-size: 7vw;
    color: #F50313;
    font-weight: bold;
    bottom: 0;
    right: -2vw;
    position: absolute;
}
#business{
    padding-top: 8vw;
    padding-bottom: 10vw;
}

.faq_list{
    margin: 3vw 0;
}
.faq_list li{
    padding:2vw 0;
    display: flex;
    align-items: center;
    border-top: 1px solid #000;
}
.faq_list dt{
    font-weight: bold;
    font-size: 2vw;
}
.faq_list dd{
    font-size: 1vw;
    margin-left: 1vw;
}
.faq_list dt.answer{
    color: #ff2d2d;
}
.our_vision{
  margin-top: 15vw;
}
.other-list{
  margin-top: 4rem;
}
.btn__area{
  width: 100%;
}
.car-list-section__info a.btn_one{
  width: 100%;
}