@charset "utf-8";

.about{
  overflow:hidden;
}

.about-top{
  max-width:800px;
  display:flex;
  align-items: flex-end;
  width: 45%;
  margin: 0 auto;
  opacity:0;
  transition:1.5s ease-in-out;
  transform:translate(150%);
}

.about-top.fadeUp{
  transform:translate(25%);
  opacity:1;
}

.about-top img:first-child{
  width:45%;
}

.about-top img:last-child{
  width:55%;
  transform: translateY(15%);
}

.about-orange{
  background:#FF8237;
  color:#fff;
  padding:5rem 5%;
  display:flex;
  align-items:center;
  justify-content: space-between;
}

.about-img{
  width:28%;
}

.about-img img{
  width:73%;
  aspect-ratio:340/210;
  object-fit:cover;
  border-radius:10px;
}

.about-img:first-child img:last-child{
  margin:2.5rem 0 0 auto;
}

.about-img:last-child img:first-child{
  margin: 0 0 2.5rem auto;
}

.about-txt{
  width:40%;
  text-align:center;
  font-size:18px;
}

.about-txt p{
  line-height:1.8;
}

.about-txt h2{
  font-size:clamp(1.5rem, 0.955rem + 1.82vw, 3rem);
  margin-bottom:2.5rem;
}

.support-txt {
  text-align:center;
}

.support-wrap{
  padding: 0 5% 0 15%;
  margin: 4rem 0 7.5rem;
}

.support-wrap > img {
  width: 18%;
  bottom: auto;
  left: 5%;
  top: 5%;
}

.support-txt > img{
  margin:0 auto 3rem;
  width:50%;
}

.support-txt h3{
  font-size:clamp(1.25rem, 0.977rem + 0.91vw, 2rem);
  margin-bottom:2.5rem;
}

.support-txt p:not(:last-child){
  margin-bottom:1.5rem;
}

.feature{
  padding:7.5rem 0 10rem;
  background:#F2F1ED;
}

.support{
  margin: 0 5% 7.5rem 0;
}

.support:nth-of-type(even) {
  margin: 0 0 7.5rem 5%;
}

.support:last-child {
  margin-bottom: 0;
}

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

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

.support-top-detail h3.orange{
  border-bottom: 4px dashed #FF8238;
}

.support-top-detail h3.orange strong {
  color: #FF8238;
}

.support::before,
.support-top-img::before{
  display:none;
}

.support-top-img img{
  border-radius: 0 100px 0 0;
  aspect-ratio: 885 / 360;
}

.support:nth-of-type(even) .support-top-img img{
  border-radius: 100px 0 0 0  ;
}

.support-top-img{
  padding: 0;
  width: 54%;
}

.support-top-detail {
  width: 100%;
  margin: 0;
}

.support-top{
  margin-bottom: 0;
  justify-content: flex-start;
  gap: 5%;
}

.support-top-txt {
  width: 40%;
  max-width:500px;
}

.about-btn{
  display:flex;
  margin-top:2.5rem;
  gap:2.5rem;
}

.about-btn.orange .btn{
  background: #FF8238;
}

.about-btn.orange .btn::before{
  background: url(https://kmotors.jp/system_panel/uploads/images/20250929141152509659.png) no-repeat center / contain;
}

.about-btn .btn{
  min-width: 220px;
  padding: 1rem 2.5rem 1rem 1.5rem;
  margin:0 ;
}

.about-btn .btn::before{
  right: 1rem;
}

.about-swiper .swiper-wrapper {
  height: 40vw;
  transition-timing-function: linear;
}

.about-swiper .swiper-slide, .about-swiper .swiper-slide img {
  height: auto !important;
  width: 100%;
  aspect-ratio: 520 / 255;
  object-fit: cover;
  border-radius: 1.5rem;
}

@media screen and (max-width: 1400px) {
  .about-orange{
    padding: 5rem 2%;
  }
}

@media screen and (max-width: 1279px) {
  .about-orange {
    padding: 5rem 2%;
    flex-direction: column;
    gap: 2.5rem;
  }
  .about-img {
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .about-img img {
    width: 45%;
  }
  .about-img:first-child img:last-child,
  .about-img:last-child img:first-child{
    margin: 5rem 0 0;
  }
  .about-txt{
    width: 100%;
  }
  .about-btn {
    gap: 1.5rem;
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 1024px) {
  .support-wrap{
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    padding:0;
  }
  .support-txt {
    width: 100%;
    padding: 0 5%;
  }
  .support-txt > img{
    width: 250px;
  }
  .support-img {
    width: 100%;
  }
  .about-swiper .swiper-wrapper{
    height:auto;
  }
  .support-top, .support:nth-of-type(even) .support-top {
    flex-direction: column;
    gap:2.5rem;
  }
  .support {
    margin: 0 0 7.5rem 0;
  }
  .support-top-img {
    width: 80%;
  }
  .support-top-txt {
    width: 70%;
    max-width: none;
    margin: 0 auto;
  }
  .about-btn{
    flex-direction: row;
  }
}

@media screen and (max-width: 767px) {
  .about-btn{
    flex-direction: column;
  }
  .about-top {
    width: 100%;
  }
  .about-orange {
    padding: 5rem 5% 4rem;
  }
  .about-img {
    width: 100%;
  }
  .about-img img {
    width: 47.5%;
  }
  .about-img:first-child img:last-child, .about-img:last-child img:first-child {
    margin: 2rem 0 0;
  }
  .about-txt h2 {
    margin-bottom: 1.5rem;
  }
  .support-wrap > img {
    width: 40%;
    bottom: auto;
    left: -1%;
    top: 0%;
  }
  .support-txt > img {
    margin: 0 auto 2rem;
  }
  .support-txt h3 {
    margin-bottom: 1.5rem;
  }
  .support-txt{
    font-size:14px;
  }
  .support-wrap{
    margin-bottom:5rem;
  }
  .feature {
    padding: 4rem 0 5rem;
  }
  .support-top-img {
    width: 95%;
  }
  .support-top-txt {
    width: 100%;
  }
  .support-top, .support:nth-of-type(even) .support-top {
    gap: 0;
  }
  .support,
  .support:nth-of-type(even){
    margin: 0 0 5rem 0;
  }
  .support-top-detail h3 strong {
    font-size: 2.5rem;
  }
  .support-top-detail h3 {
    font-size: 16px;
  }
}