@charset "utf-8";
/* CSS Document */
/*==================================================================================================================================*/


/* TOPイメージ */

.only-pc{
display: visible;
}


.pc_only_s{
display: visible;
}


.main_image {
  background-image: url("/PC/ja/asset/img/nw/feature/sp_contact/main_pc.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 400px;
  position: relative; 
  overflow: hidden;
}

.main_image_inner {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    height: 400px;
	padding-left: 20px
}


@media (max-width:768px){
.main_image {
  background-image: url("/PC/ja/asset/img/nw/feature/sp_contact/main_sp.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 500px;
  position: relative; 
  overflow: hidden;
}
	
}	
@media (max-width:680px){
.main_image {
  background-image: url("/PC/ja/asset/img/nw/feature/sp_contact/main_sp_s.webp");
}
	
}	

@media (max-width:595px){
.main_image {
  background-image: url("/PC/ja/asset/img/nw/feature/sp_contact/main_sp_ss.webp");
}
	
}
/* SVG文字 */
.main_text {
    position: absolute;
    top: 24%;
    left: 30px;
    transform: translate(0, -30%);
    width:460px;
}

.main_sub_text {
    position: absolute;
    display: block;
    top: 52%;
     left: 30px;
    transform: translate(0, -30%);
   width:460px;
    font-size:20px;
    color:#fff;
    overflow-wrap: break-word;
    margin-top:20px;
}

.main_btn{
    position: absolute;
    display: block;
    bottom: 0;
    left: 36px;
	width: 100%;
	max-width: 300px;
}

@media (max-width: 1200px){
.main_text {
    position: absolute;
    top: 24%;
    left: 5%;
}

.main_sub_text {

    top: 52%;
    left: 5%;

}

.main_btn{

    bottom: 0;
    left: 5%;

}
.only-pc{
display: none;
}

}

@media (max-width: 768px){
.main_image_inner {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    height: 500px;
	padding-left: 20px
}

.main_text {
    position: absolute;
    top: 24%;
    left: 5%;
   width:400px;
}

.main_sub_text {
   width:300px;
    top: 52%;
    left: 5%;

}

.main_btn{

    bottom: 0;
    left: 5%;

}
.only-pc{
display: none;
}

}

@media (max-width:680px){
.pc_only_s{
display: none;
}

.main_text {
    position: absolute;
    top: 24%;
    left: 5%;
   width:300px;
}

.main_sub_text {
   width:300px;
    top: 60%;
    left: 5%;
	font-size: 18px;

}

.main_btn{
    bottom: 0;
    left: 50%;
	transform: translateX(-50%);
		width: 100%;
	max-width: 400px;

}
.only-pc{
display: none;
}
	
}
.content_block {
position: relative;
/*overflow: hidden;*/
margin: 100px auto;
}

@media (max-width:768px){
.content_block {
margin: 80px auto;
}
.content_block.block_02 {
    min-height: auto!important;
}
.block_02_visual {
        margin-right: -16%;
    }	
}

@media (max-width: 480px) {
    .content_block {
        margin: 20px auto;
    }
	

}
.skew_container{
  --overlap-right: 60%;
  max-width: 960px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  position: relative;
  margin: 0 auto;
}

/* 土台 */
.skew_visual{
  grid-column: 1 / -1;
  grid-row: 1;

  /* ★高さ固定をやめて、行の高さ（=skew_content）に追従 */
  min-height: 0;
  height: 100%;

  background: none;
  position: relative;
  z-index: 1;
}

/* 赤帯（PC：左フルブリード） */
.skew_visual::before{
  content:"";
  position:absolute;

  /* ★ここが高さ連動のキモ：帯は行いっぱい＝skew_content高さ */
  inset: 0 auto 0 auto;

  /* 左を画面端へ */
  left: calc(50% - 50vw);

  /* コンテナ左端までの差分も含めた幅 */
  width: calc(50% + (var(--overlap-right) * 0.5) + (50vw - 50%));

  background:
    url("/PC/ja/asset/img/nw/feature/sp_contact/car.webp") right bottom / cover no-repeat,
    #c40000;

  clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
  z-index: 1;
}

.skew_content{
  grid-column: 2;
  grid-row: 1;
  padding: 40px 16px 0 16px;
  position: relative;
  z-index: 2;
  color: #FFFFFF;
}

@media (max-width:850px){

  /* ★blockやめて、重ねgridにする（高さ連動のため） */
  .skew_container{
    display: grid;
    grid-template-columns: 1fr; /* 1列 */
    align-items: stretch;
    margin-top: 40px;
    position: relative;
  }

  .skew_visual{
    grid-column: 1;
    grid-row: 1;

    min-height: 0;
    height: 100%;

    width: 100%;
    margin-right: 0;
    /* ここは不要なら消してOK（疑似要素側でクリップするので） */
    clip-path: none;
    background: none;
  }

  /* ★absoluteをやめて同じ行に重ねる（帯高さ＝テキスト高さ） */
  .skew_content{
    grid-column: 1;
    grid-row: 1;
    position: relative;
    top: auto;
    left: auto;
    padding: 20px;   /* SP用の余白はここで調整 */
  }

  /* 赤帯（SP：右フルブリードへ移動） */
  .skew_visual::before{
  background:
    url("/PC/ja/asset/img/nw/feature/sp_contact/car_sp.webp") right bottom / cover no-repeat,
    #c40000;
    /* 高さは inset で維持（=skew_contentに連動） */
    inset: 0 auto 0 auto;

    /* 左フルブリード解除→右フルブリード */
    left: auto;
    right: calc(50% - 50vw);

    width: calc(50% + (var(--overlap-right) * 0.5) + (50vw - 50%));

    /* 右寄せ用の形状（お好みで微調整OK） */
    clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 100%);
  }
}
.js-slide-left,
.js-slide-right {
  opacity: 0;
  transform: translateX(60px);
  transition: 0.8s cubic-bezier(.2,.7,.2,1);
}

.js-slide-left {
  transform: translateX(-60px);
}

.is-inview {
  opacity: 1;
  transform: none;
}

.skew_content h2 {
  color:#fff;
  margin: 0 auto 20px ;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}
.skew_content p {
line-height: 2.0;
text-shadow:   1px 1px 2px rgba(0,0,0,0.9),
  3px 3px 8px rgba(0,0,0,0.7);
	}
	
.text-emphasis{
font-weight: 600;
	}

.text-emphasis-b{
font-size: 18px;
	}



.line {
  height: 3px;
  background: #fff;
  margin: 0 0 24px;
  display: block;
  width: 100%;
}

.sub_text{
width: auto;
height: 30px;
	}

.content_block.block_02{
}
/* テキストはいつも通り中央寄せ */
.block_02_inner{
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  padding: 56px 16px;
}

.block_02_visual {
    position: absolute;
    right: 0;
    top: -30%;
    z-index:-2;
    /* margin-right: -10%; */
    pointer-events: none;
}
.block_02_visual img{
  width: 680px;
  height: auto;
  max-height: 70vh;
  display: block;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,.55));
  opacity: 0.5;
}

/* 左テキスト */
.block_02_text{
  flex: 1 1 520px;
  max-width: 560px;
  text-shadow:
    1px 1px 2px rgba(0,0,0,0.9),
    3px 3px 8px rgba(0,0,0,0.7);
}

.block_02_title{
  margin: 0;
  font-weight: 700;
  line-height: 1.25;
  font-size: clamp(22px, 2.6vw, 34px);
}

.block_02_line{
  margin-top: 16px;
  width: min(360px, 85%);
  height: 2px;
  background: rgba(255,255,255,.85);
}

.block_02_desc{
  margin-top: 18px;
  line-height: 2;
  color: #FFFFFF
}

.text-emphasis{
  font-weight: 700;
}

.contact_note{
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.7;
color: #FFFFFF;
}

.block_02_visual{
  flex: 1 1 420px;
  display: grid;
  place-items: center;
}

.block_02_visual {
    position: absolute;
    right: 0;
    top: -30%;
    z-index: 1;
    /* margin-right: -10%; */
    pointer-events: none;
}

@media (max-width: 1300px){
.block_02_visual {
    top: -10%;
	margin-right: -10%;
}
.block_02_visual img {
    width: 600px;
}
}

@media (max-width: 768px){
.block_02_visual {
    top: -10%;
	margin-right: -10%;
}
.block_02_visual img {
    width: 500px;
}
}

@media (max-width: 600px) {
.block_02_visual {
    top:50%;
	transform: translateY(-50%);
}

.block_02_visual img {
    width: 420px;
}	
	  }
@media (max-width: 540px) {
.block_02_visual {
margin-right: -30%;
}

.block_02_visual img {
    width: 420px;
}	
	  }
@media (max-width: 480px) {
    .block_02_visual img {
        width: 360px;
    }
}

.content_block.block_02{
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
}


.block_02_container{
width: 100%;
max-width:960px; 
padding: 0 16px;
margin: 0 auto;
display: -webkit-box;
display: flex;
-webkit-box-pack: start;
justify-content: flex-start;

}

.block_02_container_content{
width: 50%;
margin-right: auto;
color: #FFFFFF;
text-shadow:1px 1px 2px rgba(0,0,0,0.9),
  3px 3px 8px rgba(0,0,0,0.7);
}

.block_02_container_content p{
line-height: 2.0;
position: relative;
text-align: left;
}

.contact_note{
display: block;
position: relative;
margin-top: 1em
}

.contact_note p{
font-size: 13px;
text-indent: -1em;
margin-left: 1em;
line-height: 20px;
}

.block_03_container {
position: relative;
z-index: 2;
margin-top: 160px;
}

.block_03_container {
    position: relative;
    z-index: 2;
    margin-top: 160px;
}

.block_03_container h2{
display: -webkit-box;
display: flex;
width: 100%;
-webkit-box-pack: center;
justify-content: center;
}

@media (max-width:840px){
.block_03_container h2{
display: -webkit-box;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
flex-direction: column;
width: 100%;
-webkit-box-pack: center;
justify-content: center;
}
.block_03_container h2 img{
margin-top: 14px;
}

}

@media (max-width:768px){
.block_03_container {
position: relative;
z-index: 2;
margin-top: 0!important;
}
}

.block_03_container > .line {
  height: 3px;
  background: #fff;
  margin: 0 auto 24px;
  padding: 0 16px;
  
}

.car_text{
font-size: 16px;
text-align: center;
line-height: 2.0;
color: #FFFFFF;
padding: 0 20px;
  
}

.block_03_container h3 {
  position: relative;
  padding: 0 65px;
  text-align: center;
  display: block;
  margin-top: 40px;
  color: #FFFFFF
}

.block_03_container h3:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 1px;
  content: '';
  color: #FFFFFF;
  background: #FFFFFF;
}

.block_03_container h3 span {
  position: relative;
  padding: 0 1em;
  background: #000;
}

.block_03_title{
display: -webkit-box;
display: flex;
flex-wrap: wrap;
-webkit-box-pack: center;
justify-content: center;
width: 100%;
max-width: 960px;
margin: 0 auto;
padding: 0 20px;
}

.loop-gallery{
margin-top:40px;
}

.loop-gallery__viewport{ overflow:hidden; position:relative; }
.loop-gallery__track{
  display:flex;
  width:max-content;
  will-change:transform;
  gap: 0; /* gapはset内に持たせる */
  animation: lg-marquee linear infinite;
  animation-duration: var(--lg-duration, 30s);
}
.loop-gallery__set{
  display:flex;
  align-items:center;
  gap: clamp(12px, 2vw, 28px);
}
.loop-gallery__item{ flex:0 0 auto;overflow:hidden; display:block; }
.loop-gallery__item img{ height: clamp(120px, 18vw, 220px); width:auto; display:block; object-fit:cover; }

@keyframes lg-marquee{
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-1 * var(--lg-distance, 1000px))); }
}
.loop-gallery__viewport:hover .loop-gallery__track{ animation-play-state:paused; }
@media (prefers-reduced-motion: reduce){ .loop-gallery__track{ animation:none; } }  justify-content:center;
}
.lg-lightbox[aria-hidden="false"]{ display:flex; }

.lg-lightbox__img{
  max-width: 92vw;
  max-height: 92vh;
}

.lg-lightbox__close{
  position:absolute;
  top: 18px;
  right: 22px;
  font-size: 36px;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
}
.loop-gallery__track{
  display:flex;
  width:max-content;
  will-change:transform;
  gap: 0; /* ← track gapは使わない */
  animation: lg-marquee linear infinite;
  animation-duration: var(--lg-duration, 30s);
}

.loop-gallery__set{
  display:flex;
  align-items:center;
  gap: clamp(12px, 2vw, 28px); /* ← 1周目のgapはここ */
}

/* 境目用に set2 の先頭に余白を作る（境目gapになる） */
.loop-gallery__set[data-set="2"]{
  padding-left: clamp(12px, 2vw, 28px);
}
@media (max-width: 600px) {
.skew_content p {
 font-size: 14px;
}
.block_02_desc {
 font-size: 14px;
}
.car_text {
    font-size: 14px;

}
}
.block_04_wrapper{
 width: 96%;
max-width: 960px;
margin: 0 auto;
color: #FFFFFF;
text-align: center;
border: #FFFFFF double 5px;
padding: 40px;
}

@media (max-width:768px){
.block_04_wrapper{
padding: 20px;
}


}
@media (max-width:600px){
.block_04_wrapper{
font-size: 14px;
}
	.block_04_content_title {
    font-size: 14px;

}
.block_04_content p {
font-size: 14px;
}
}


p.block_04_hd{
width: 100%!important;
display: block;
margin-bottom: 20px;

}
.block_04_content p{
width: 100%;
display: block;
padding: 40px 0;

}

.block_04_content_title{
font-size: 16px;
display: block;
margin-bottom: 20px;
width: 100%;
}

.block_04_content p span{
display: inline-block;
}

.block_04_content{
display: -webkit-box;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
flex-direction: column;
flex-wrap: wrap;
margin: 0 auto;
width: 100%;
max-width: 600px;
}


.block_04_content img{
width: 100%
}

.form_btn{
width: 100%;
max-width:400px;
margin: 0 auto;
}

.content_block.block_04{
padding-bottom: 60px;
margin-bottom: 0!important;
}


/*全体*/
html {scroll-behavior: smooth;}

.fearure-container{
width: 100%;

overflow: hidden;
}



.fearure-container > *{
box-sizing: border-box;
image-rendering: -webkit-optimize-contrast;
}
.fearure-wrapper{
background-color: #000000;
  background-image: url("/PC/ja/asset/img/nw/feature/sp_contact/bg_s.webp");
  background-size: cover;
  background-position: center;
}



.fearure-inner{
width: 100%;
max-width: 960px;
margin: 0 auto;
padding: 0;
background-color:#000000;
overflow: hidden;
}

.fearure-inner section{
width: 100%;
margin: 0 auto 60px;

}


.p_anchor{
padding-top: 0;
margin-top: 0;

}
.item_block{

width: 100%;
display: -webkit-box;
display: flex;
flex-wrap: wrap;
-webkit-box-align: start;
align-items: flex-start;
-webkit-box-align: start;
align-items: flex-start;
overflow: hidden;
position: relative;

}

.wheel_header{
width: 100%;
height: 420px;
display: -webkit-box;
display: flex;
-webkit-box-align: end;
align-items: flex-end;

}
.wheel_header_inner{
padding: 20px;
background:linear-gradient(90deg,rgba(137, 101, 17, 1) 0%, rgba(172, 153, 109, 1) 100%);
height: 90%;
}
.wheel_topic{
width: calc(100% - 450px);
position: relative;
z-index: 1;
padding-right: 20px;
}


.item_block h2{
display: block;
width: 100%;
margin: 0;
padding: 0

}

.item_block h2 img{
vertical-align: top;

}

.item_05_hd{
  position: relative;
  display:block;
  margin: 20px auto 40px;
  padding: 7px 10px;
  width: 100%;
  color: #555;
  background: #272727;
}

.item_05 h2:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #272727;
}

.item_05_hd h2 {
  margin: 0;
  padding: 0;
  font-size: 20px;
text-align: center;
color: #FFFFFF;
font-weight: 300;
}
.item_05_hd span {
  font-size: 18px;
}


.wheel_topic p{
color: #FFFFFF;
font-size: 14px;
}

.wheel_image{
position: absolute;
width: 60%;
max-width: 500px;
right: -5%;
bottom: -80px;

}
.wheel_image img {
width: 100%;
}

.ltd_color{
width: 100%;
display: -webkit-box;
display: flex;
flex-wrap: wrap;
-webkit-box-pack: start;
justify-content: flex-start;
-webkit-box-align: center;
align-items: center;
margin-bottom: 10px;
}

.ltd_color img{
width: 40%;
max-width: 81px;
margin-right: 10px;
}

.ltd_color span{
display: block;
width: calc(60% - 10px);
color: #FFFFFF;
font-size: 18px;
font-weight: 500;
}

.image_cut{
display: -webkit-box;
display: flex;
width: 100%;
flex-wrap: wrap;
-webkit-box-pack: justify;
justify-content: space-between;
padding: 20px;
margin-top: 40px;
}

.image_cut_each{
position: relative;
width: calc(100% / 3 - 20px);
margin-bottom: 40px;
}
.image_cut_each a{
position: relative;
display: block;
}
.image_cut_each img{
width: 100%;
vertical-align: top;
}

.zoom_icon{
position: absolute;
    top: 10px;
    right: 10px;
    width: 36px !important;
    height: 36px !important;
    display: block;
}


.w_item_info{
width: 100%;
display: -webkit-box;
display: flex;
flex-wrap: wrap;
-webkit-box-pack: center;
justify-content: center;
-webkit-box-align: center;
align-items: center;
margin: 20px 0;
padding: 0 20px;
}
.w_item_info h3{
width: 100%;
text-align: center;
padding: 0 0 10px;
color: #FFFFFF;
border-bottom: #FFFFFF solid 3px;

}
.w_item_info h3 span{
display: inline-block;
}

.w_item_info h3 span.mk_name{
font-size: 16px;
display: block;

}

.item_image{
margin-right: 60px;
width: calc(46% - 60px);
max-width: 300px;
}


.item_details{
width: 54%;
margin: 0;
padding: 0;
}

.w_item_info_icon{
margin: 0;
padding: 0;
width: 80px;
}


.w_item_info p{
display: block;
margin: 0 0 10px;
padding: 0;
font-size: 16px;
color: #FFFFFF;
}

.w_item_info p span{
display: inline-block;
}


.item_btn,
a.item_btn,
button.btn {
width: 96%;
max-width: 480px;
margin: 20px auto;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
  font-weight: normal;
  color: #fff;
  border-radius: 0;
}

a.btn-gradient_01 {
  background-image: -webkit-gradient(
linear,
left top,
right top,
 color-stop(40%, #896511),
to(#D9A429)
  );
  background-image: -webkit-linear-gradient(left, #896511, #D9A429);
background: linear-gradient(90deg,rgba(137, 101, 17, 1) 0%, rgba(217, 164, 41, 1) 100%);
}

a.btn-gradient_01:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#896511),
    color-stop(#A58B51),
    to(#896511)
  );
  background-image: -webkit-linear-gradient(left, #896511, #A58B51, #896511);
  background-image: linear-gradient(90deg,rgba(137, 101, 17, 1) 0%, rgba(165, 139, 81, 1) 50%, rgba(137, 101, 17, 1) 100%);
}

a.btn-gradient_02 {
  background-image: -webkit-gradient(
linear,
left top,
right top,
 color-stop(40%, #464A4C),
to(#76787E)
  );
  background-image: -webkit-linear-gradient(left, #464A4C, #76787E);
background: linear-gradient(90deg,rgba(70, 74, 76, 1) 0%, rgba(118, 120, 126, 1) 63%);
}

a.btn-gradient_02:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#464A4C),
    color-stop(#76787E),
    to(#464A4C)
  );
  background-image: -webkit-linear-gradient(left, #464A4C, #76787E, #464A4C);
background: linear-gradient(90deg,rgba(70, 74, 76, 1) 0%, rgba(118, 120, 126, 1) 50%, rgba(70, 74, 76, 1) 100%);
}

a.btn-gradient_03 {
  background-image: -webkit-gradient(
linear,
left top,
right top,
 color-stop(40%, #212221),
to(#5d5d5e)
  );
  background-image: -webkit-linear-gradient(left, #212221, #5d5d5e);
background: linear-gradient(90deg,rgba(33, 34, 33, 1) 0%, rgba(93, 93, 94, 1) 63%);
}

a.btn-gradient_03:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#212221),
    color-stop(#5d5d5e),
    to(#212221)
  );
  background-image: -webkit-linear-gradient(left, #212221, #5d5d5e, #212221);
background: linear-gradient(90deg,rgba(33, 34, 33, 1) 0%, rgba(93, 93, 94, 1) 50%, rgba(33, 34, 33, 1) 100%);
}

a.btn-gradient_04 {
  background-image: -webkit-gradient(
linear,
left top,
right top,
color-stop(40%, #716252),
to(#928374)
  );
  background-image: -webkit-linear-gradient(left, #716252, #928374);
background: linear-gradient(90deg,rgba(113, 98, 82, 1) 0%, rgba(146, 131, 116, 1) 63%);
}

a.btn-gradient_04:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#716252),
    color-stop(#928374),
    to(#716252)
  );
  background-image: -webkit-linear-gradient(left, #716252, #928374, #716252);
background: linear-gradient(90deg,rgba(113, 98, 82, 1) 0%, rgba(146, 131, 116, 1) 50%, rgba(113, 98, 82, 1) 100%);
}
a.btn-gradient span {
  position: relative;
  z-index: 1;
display: -webkit-box;
display: flex;
-webkit-box-align: center;
align-items: center;
-webkit-box-pack: center;
justify-content: center;

}

a.btn-gradient:hover {
  color: #fff;
}

a.btn-gradient:hover:after {
  opacity: 0;
}

.link_icon{
width: 8px!important;
display: inline-block;
margin-left: 10px;
}

.car_slider_container {
  margin: 0 auto 20px;
  max-width: 960px;
  width: 100%;
  display: block;
}
.car_slider_container img {
  height: auto;
  width: 100%;
}
.car_thumbnail .slick-track {
  transform: unset !important;
}
.car_thumbnail-img {
  opacity: 0.3;
transition: opacity .3s linear;
width: calc(100% / 6 - 20px)!important;
margin: 0 10px;
}
.car_thumbnail .slick-current {
  opacity: 1;
}

.car_thumbnail .slick-list{
display: -webkit-box;
display: flex;
flex-wrap: wrap;
 min-height: 0!important;
-webkit-box-pack: start;
justify-content: flex-start;
}

.car_thumbnail .slick-list .slick-track{
width: 100%!important;
max-width: 960px!important;
}
.car_slider .slick-img{
position: relative;
}
.car_slider .slick-list {
padding: 0;
min-height: 0!important;
}

.slick-track{
cursor: pointer;
}


.other_item_wrapper{
width: 100%;
padding: 20px;
display: -webkit-box;
display: flex;
flex-wrap: wrap;
-webkit-box-pack: justify;
justify-content: space-between;
}

.other_item_each{
width: calc(50% - 10px);
margin: 10px 0;
background-color: #FFFFFF;
display: -webkit-box;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
flex-direction: column;
-webkit-box-align: start;
align-items: flex-start;
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
border-radius: 12px;
padding: 20px;
}

.other_item_each_info{
display: -webkit-box;
display: flex;
flex-wrap: wrap;
-webkit-box-pack: justify;
justify-content: space-between;
}

.other_item_each_info h3{
font-family: "din-2014", sans-serif;
font-size: 36px;
margin: 0;
line-height: 1.2;
}



.other_item_each_info div{
width: calc(50% - 10px);
display: -webkit-box;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
flex-direction: column;
}

.other_item_each_info div .item_details{
width: 100%;
margin: 0;
padding: 0;
}

.other_item_each_info div .item_details p {
    margin: 0 0 10px;
}


.other_item_each_info img{
width:50%;
max-width: 100%;
display: block;
}
.mycar_image img{
width:100%;
max-width: 100%;
margin-top: 20px;
vertical-align: top;
}

.mycar_image_link,
a.mycar_image_link,
button.mycar_image_link {
width: 100%;
margin: 0;
background-color: var(--clr-prime);
color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
}
a.mycar_image_link span {
  position: relative;
  z-index: 1;
display: -webkit-box;
display: flex;
-webkit-box-align: center;
align-items: center;
-webkit-box-pack: center;
justify-content: center;

}
a.mycar_image_link span .link_icon {
margin: 0 0 0 10px;

}
a.mycar_image_link:hover{
background-color: #ef0149;

}

.other_link{
margin-top: 20px!important;

}
.top_car_slider {
  width:100%;
  max-width: 960px;
  height: 430px;
  overflow: hidden;
  margin: 0 auto;
}
.top_car_slider-img img {
  width: 100%;
}
@keyframes fdzm {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.animation {
  animation: fdzm 4s 0s forwards;
}

/*==================================================================================================================================*/
@media screen and (max-width: 1020px) {
.p_anchor{
padding-top: 80px;
margin-top: -80px;
}
}
@media screen and (max-width: 768px) {
.item_image{
margin-right: 40px;
width: calc(46% - 40px);
max-width: 260px;
}
.w_item_info p {
    font-size: 14px;
margin-top: -5px;
}

}
@media screen and (max-width: 650px) {
.item_image{
margin: 0 auto;
width:100%;
max-width: 260px;
}
.w_item_info p {
    font-size: 14px;
margin-top: -5px;
}
	
.item_details{
width: 100%;
max-width: 400px;
margin: 20px auto 0;

}
.item_btn, a.item_btn, button.btn {
    margin:0 auto 20px;

}
.other_item_each{
width:100%;

}
}

@media screen and (max-width: 600px) {

.car_thumbnail-img {
    opacity: 0.3;
    transition: opacity .3s linear;
    width: calc(100% / 4 - 20px) !important;
    margin: 0 10px;
}
}

.item_color{
text-align: center;
font-weight: 600;
color: #FFFFFF;
font-size: 13px;

}
.item_color span{
display: inline-block;

}
.item_note{
font-size: 13px;
line-height: 1.8;

}

.item_text {
  display: block;
  width: 100%;
  margin: 0 auto 20px;
  text-align: center;
}


.text_img{
  display: block;
  width: 100%;
}

.text_img img{
  display: block;
  width: 100%;
  max-width: 540px;
  margin: 40px auto;
}


.text_img_02{
  display: block;
  width: 100%;
  max-width: 664px;
  margin: 20px auto 0;
}

.car_note{
font-size: 13px;
display: block;
margin-top: 5px;
}




@media screen and (max-width: 940px) {
  .item_text {
    display: block;
    width: 100%;
    margin: 20px auto 0;
    text-align: center;
  }
.text_img img{
  margin: 0 auto 20px;
}
}
@media screen and (max-width: 768px) {
.text_img img{
  width: 100%;
  max-width: 520px;
  margin: 0 auto 20px;
}
}
@media screen and (max-width: 600px) {
  .item_text {
    margin: 0 auto;
    text-align: center;
  }	
	}