@charset "utf-8";

.service-top::before{
  display:none;
}

.service-top > img{
  transform:none;
  width: 50%;
}

.service-top{
  padding:  2.5rem 10% 5rem;
  justify-content: center;
  flex-direction: row-reverse;
  gap:5%;
}

.service-top-txt {
  width: 45%;
  max-width: 500px;
}

.point{
  padding:3rem 0 7.5rem;
  background:#F2F1ED;
}

.point .container{
  max-width:1345px;
}

.point-wrap{
  display: flex;
  gap: 2.5rem;
  max-width:1080px;
  margin-top:5rem;
}

.point-wrap:nth-child(odd){
  margin-left:auto;
}

.point-wrap > img{
  width:40%;
  aspect-ratio:435/250;
  object-fit:cover;
  border-radius:10px;
}

.point-txt{
  width:calc(60% - 2.5rem);
  max-width: 500px;
}

.point-txt h3{
  font-size:clamp(1.25rem, 1.159rem + 0.3vw, 1.5rem);
  margin-bottom: 1.5rem;
  padding-bottom: 8px;
  border-bottom: 4px dashed #FF8238;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.point-txt h3 strong{
  font-size:clamp(3rem, 2.636rem + 1.21vw, 4rem);
  color:#FF8238;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight:900;
  line-height: 1;
}

.recommend{
  margin-top:7.5rem;
  max-width:1345px;
}

.recommend .lower-title{
  margin-bottom:3.5rem;
}

.recommend-wrap{
  display:flex;
  justify-content: space-between;
}

.recommend-item{
  width:calc((100% - 4rem)/3);
  display: flex;
  flex-direction: column;
}

.recommend-top{
  max-width: 280px;
  margin: 0 auto;
}

.recommend-top p{
  background:#fff;
  border:3px solid #FF8238;
  border-radius:1rem;
  padding:1rem 1.5rem 1.5rem;
  font-size:20px;
}

.recommend-top img{
  width:130px;
  height: 140px;
  margin:-1rem auto 0;
}

.triangle{
  width:3rem;
  margin:20px auto;
}

.recommend-box{
  background:#fff;
  border-radius:10px;
  padding:1rem 20px;
  flex: 1;
}

.recommend-box h3{
  text-align:center;
  font-size:clamp(1.25rem, 0.977rem + 0.91vw, 2rem);
}

.recommend-box h3 + p{
  text-align:center;
  font-size:1rem;
  margin:12px 0 20px;
}

.recommend-box img{
  aspect-ratio:385/275;
  object-fit:cover;
  border-radius:10px;
  margin:1rem 0 22px;
}

.recommend-box div{
  display:flex;
  gap:1rem;
  margin-top:1rem;
  align-items: center;
}

.recommend-box div .orange{
  background:#FF8238;
  border-radius:5px;
  color:#fff;
  padding: 2px;
  width: 4rem;
  text-align: center;
}

.flow{
  margin:7.5rem 0 5rem;
}

.flow-wrap{
  border-left: 1rem solid #FF8238;
}

.flow-wrap::after{
  background: url(https://kmotors.jp/system_panel/uploads/images/20251001182519913241.png) no-repeat center / contain;
}

.banner{
  text-align:center;
  color:#fff;
  margin-top:2.5rem;
  padding:2.5rem 1rem 3.5rem !important;
  background: url(https://kmotors.jp/system_panel/uploads/images/20251001182841346448.png) no-repeat center / cover;
}

.banner h2{
  font-size:1.5rem;
  margin-bottom:1rem;
}

.voice{
  margin:7.5rem auto;
  max-width:1345px;
}

.voice-wrap{
  background:#fff;
  width:90%;
  padding:2rem 1.5rem;
  border:3px solid #FF8238;
  border-radius:10px;
  display:flex;
  justify-content: space-between;
  align-items: center;
}

.voice-wrap:last-child{
  margin:3rem 0 0 auto;
}

.voice-wrap > img{
  width:18%;
  aspect-ratio: 214 / 192;
}

.voice-txt{
  width:77%;
}

.voice-txt h3{
  font-size:1.5rem;
  margin-bottom:1rem;
}

.faq{
  margin-bottom:10rem;
  max-width:1080px;
}

.faq-wrap{
  padding:1.5rem;
  background:#fff;
  border-radius:10px;
  margin-bottom:2.5rem;
}

.faq-list{
  display:flex;
  justify-content: space-between;
  align-items: flex-start;
}

.faq-list:first-child{
  margin-bottom:2rem;
}

.faq-list:first-child p{
  padding-top:8px;
  font-size:clamp(1rem, 0.909rem + 0.3vw, 1.25rem);
}

.faq-list img{
  width:3rem;
}

.faq-list p{
  width:calc(100% - 4rem);
}

@media screen and (max-width: 1279px) {
  .service-top{
    flex-direction: column-reverse;
    gap: 2.5rem;
  }
  .service-top-txt {
    width: 100%;
    max-width: none;
  }
  .service-top > img{
    margin: 0 auto;
    width: 70%;
  }
  .recommend-wrap{
    flex-direction: column;
    gap: 5rem;
    align-items: center;
  }
  .recommend-item {
    width: 100%;
    max-width: 500px;
  }
  .voice-wrap{
    width:100%;
  }
}


@media screen and (max-width: 1024px) {
  .faq-list img {
    width: 2rem;
  }
  .faq-list p {
    width: calc(100% - 3rem);
  }
  .faq-list:first-child p {
    padding-top: 2px;
  }
  .point .container{
    width:90%;
  }
  .voice-wrap{
    flex-direction: column;
    gap: 1.5rem;
  }
  .voice-wrap > img {
    width: 150px;
  }
  .voice-txt {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .service-top{
    padding: 2.5rem 5% 4rem;
  }
  .service-top-txt h2{
    font-size:20px;
  }
  .point-wrap{
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin:2.5rem 0 5rem;
  }
  .point-wrap > img,
  .point-txt{
    width: 100%;
  }
  .point-txt h3{
    font-size:18px;
  }
  .point {
    padding: 3rem 0 2rem;
  }
  .recommend {
    margin-top: 4rem;
  }
  .recommend-box h3 + p{
    font-size:14px;
  }
  .recommend-wrap{
    gap:3.5rem;
  }
  .banner{
    width:100% !important;
  }
  .voice-wrap > img {
    width: 220px;
  }
  .faq-list:first-child {
    margin-bottom: 1rem;
  }
  .faq-wrap{
    margin-bottom: 20px;
  }
  .service-top > img{
    width:105%;
  }
}