@charset "UTF-8";

/* CSS Document */

/******************************* 
Root
*******************************/

/* 
Fonts

// <weight>: Use a value from 100 to 900
// <uniquifier>: Use a unique and descriptive class name

.noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.audiowide-regular {
  font-family: "Audiowide", sans-serif;
  font-weight: 400;
  font-style: normal;
}


*/

:root {
  --main-font:  "Noto Sans JP", sans-serif;
  --sub-font: "Audiowide", sans-serif;
  font-optical-sizing: auto;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-gray: #252525;
}

/******************************* 
Common
*******************************/

* {
    margin: 0px;
    padding: 0px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  color: var(--color-white);
  font-family: var(--main-font);
  letter-spacing: 0.3px;
  line-height: 1.4;
  background-color: var(--color-black);
  /* cursor: none; もともとあるカーソルは非表示に */
}

@media screen and (max-width: 480px){
.body {
  cursor: auto;
}
}


body, html {
  height: 100%;
}

body{
  animation: fadein .8s forwards;
}

@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}

h1,
h2,
h3,
h4,
h5,
.topMenu li,
.bodykit-headMenu li{
  font-family: var(--sub-font);
}

.details table th{
  font-family: var(--sub-font);
}

a {text-decoration: none;}

li{list-style: none;}

@media screen and (min-width: 481px){
.br-sp {display: none; }
}

@media screen and (max-width: 480px){
.br-pc {display: none; }
}

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

.shutter{
  width: 100%;
  height: 100%;
  position: fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  margin: auto;
  background-color:var(--color-black);
  z-index:80;
  -webkit-animation: byeShutter 3s forwards;
  animation: byeShutter 3s forwards;
}

.logo {
  position: absolute;
  width: 200px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-animation: logo 1s forwards;
  animation: logo 1s forwards;
  animation-delay: 1s;
}

@keyframes byeShutter {
70% {
  opacity: 1;
}
100% {
  display: none;
  opacity: 0;
  z-index: -1;
}
}
@keyframes logo {
0% {
  opacity: 1;
}

50% {
  transform: rotate(0deg);
}
  100% {
  transform: scale(1.1);
  }
}

.topHead{
  text-align: center;
  background-color: var(--color-black);
}


@media screen and (max-width: 650px){
.topHead{
  padding-bottom: 20%;
  }
}

@media screen and (max-width: 389px){
.topHead{
  padding-bottom: 15%;
  }
}


.headLogo{
  margin-top: 20px;
  width: 250px;
  transition: .4s;
}

@media screen and (max-width: 480px){
  .headLogo{
    width: 180px;
  }
}

.headLogo:hover{
 opacity: 60%;
}

.dropdown__body{
  position: absolute;
   right: 0px;
   margin-right: 30px;
   display: none;

}


.dropdown__body.is-open {
  display: block;
  z-index: 4;
}

.dropdown__body.is-open {
  animation: fadeIn;
  animation-duration:0.5s;
}
 
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.dropdown__body li{
 margin-bottom: 20px;
}


.dropdown__body a{
  font-weight: 600;
  color: var(--color-white);
  border-bottom:solid 2px var(--color-white);
  padding-bottom: 4px;
  transition: 0.3s;
}

.dropdown__body a:hover{
  opacity: 60%;
}


main a {
  background-color: var(--color-black);
  color: var(--color-white);
}


/* 
TOP
*/

.footerFixed {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.footerFixed main {
  flex: 1;
}


.topOuter{
  width: 100vw;
  position: relative;
}

.mainVisual{
  width: 100%;
  text-align: center;
  overflow: hidden;
}


.mainVisual img{
  width: 100%;
}

@media screen and (max-width: 480px){
  .mainVisual img{
    width: 130%;
    transform: translate(-13%, 0%);
  }
}

.topAbout{
  width: 80%;
  margin: 0 auto;
  font-size: 15px;
  transform: translateY(-20px);
}
.topAbout p{
  text-align: center;
  line-height: 1.7;	
  letter-spacing: 0.08em;
}

@media screen and (max-width: 850px){
  .topAbout{
    width: 90%;
    font-size: 13px;
  }
}

.topMenu{
  width: 100%;
}

.topMenu ul{
  margin: 30px auto 20px;
  width: 80%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 480px){
  .topMenu{
  margin-top: 20px;
  }
}

@media screen and (max-width: 650px){
  .topMenu ul{
    flex-direction: column;
  } 
  .topMenu li{
    margin: 20px 0px 0px;
  }
}
@media screen and (max-width: 1000px){
  .topMenu ul{
    width: 90%;
    margin: 0 auto;
    text-align: center;
  }

}

.topMenu li:nth-child(1){
  margin-left:0;
}

.topMenu li:nth-child(2){
  margin-right:0;
}

.topMenu a{
 font-size: 20px;
 color: var(--color-white);
 display: inline-block;
 transition: .8s;
}

.topMenu a:hover{
  -webkit-transform: rotateX(360deg);
  transform: rotateX(360deg);
  color: var(--color-gray);
}

.topMenu a.topGyouhan{
  font-size: 16px;
  margin-top: 3px;
 }

.footerFixed footer{
  background-color: var(--color-black);
  text-align: center;
  width: 100%;
  color: var(--color-white);
}

footer {
  margin-top: auto;
}

.topFootContent{
  width: 90%;
  font-size: 10px;
  font-weight: 300;
  padding-bottom: 20px;
  margin-right: auto;
  margin-left: auto;
}

/*///////////////BODY KIT///////////////*/

.arrowFixed{
  position: fixed;
  bottom: 3vh;
  right: 20px;
}

.arrowFixed img{
  width: 60px;
  opacity: 80%;
}


.container{
  width: 1000px;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  text-align: left;
}

@media screen and (max-width: 1000px){
  .container{
    width: 90%;
  }
}

.bodykit-Head{
  width: 100%;
  height: 65px;
  text-align: center;
}


.bodykit-headLogo{
  width: 180px;
  transition: .4s;
  margin-top: 15px;
   margin-left: auto;
   margin-right: auto;
}

@media screen and (max-width: 735px){
  .bodykit-headLogo{
    margin-top: 0;
     position: absolute;
     top: 15px;
     left: 15px;
     width: 150px;
    }
}

@media screen and (max-width: 480px){
  .bodykit-headLogo{
    width: 140px;
  }
}

.bodykit-headLogo:hover{
 opacity: 60%;
}

.bodykit-headMenu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  position: absolute;
    top: 22px;
    right: 40px;
}

.bodykit-headMenu li {
  margin-left:15px;
  margin-right:15px;
}

@media screen and (max-width: 1000px){
  .bodykit-headMenu {
    display: flex;
    flex-direction: column;
    top: 15px;
    right: 20px;
  }
  .bodykit-headMenu li {
  margin-left:0px;
  margin-right:0px;
}
}

@media screen and (max-width: 480px){
  .bodykit-headMenu {
    position: absolute;
    top: 15px;
    right: 20px;
  }
}


.bodykit-headMenu li:nth-child(1){
  margin-left:0;
}

.bodykit-headMenu li:nth-child(2){
  margin-right:0;
}

.bodykit-headMenu a{
 font-size: 18px;
 color: var(--color-white);
 display: inline-block;
 transition: .8s;
}

.bodykit-headMenu a:hover{
  -webkit-transform: rotateX(360deg);
  transform: rotateX(360deg);
  color: #9B9B9B;
}


.List{
  margin-top: 60px;
}


.List-Item {
  color: var(--color-white);
  display: inline;
  font-size: 14px;
  transition: .3s;
}

.List-Item:hover {
 opacity: 50%;
}

.List-Item::after {
  content: '＞';
  padding: 0;
}

.List-Item:last-child::after {
  content: '';
}

.List-Item-Link {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

.bodykitAbout{
  width: 90%;
  margin: 70px auto 50px;
  text-align: center;
  font-size: 16px;
}

.bodykitAbout p{
  text-align: center;
  line-height: 1.7;	
  letter-spacing: 0.08em;
}
.bodykitAbout p.jp{
  margin-top: 15px;
  font-size: 12px;
}


@media (max-width: 480px){
.bodykitAbout{
  font-size: 14px;
}
.bodykitAbout p{
font-size: 13px;
}
.bodykitAbout p.jp{
  font-size: 11px;
}
}

.bodykitTitle{
   margin-top: 50px;
   font-size: 50px;
   margin-bottom: 10px;
}

@media screen and (max-width: 480px){
  .bodykitTitle{
     margin-top: 30px;
     font-size: 46px;
     margin-bottom: 10px;
  }
}

.factoryTittle{
  font-size: 28px;
  margin-top: 30px;
  width: 100%;
  border-bottom: solid 1px var(--color-white);
}

.gallery{
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.galleyContentWrap{
  text-align: center;
  margin-bottom: 20px;
  width: 320px;
  margin-right: 20px;
}


@media screen and (min-width: 736px) and (max-width: 1000px){
  .galleyContentWrap{
    text-align: center;
    margin-bottom: 20px;
    width: 32%;
    margin-right: 2%;
  }
}

@media screen and (max-width: 735px){
  .galleyContentWrap{
    width: 100%;
    margin-right: 0;
  }
}

.gallery:last-child{
  margin-bottom: 30px;
}

.galleyContentWrap:nth-child(3n){
  margin-right: 0;
}

.galleryImgWrap{
  width: 320px;
  height: 170px;
  text-align: center;
  overflow: hidden;
  object-position: center;
}

@media screen and (min-width: 736px) and (max-width: 1000px){
    .galleryImgWrap{
      width: 100%;
      height: auto;
    }
  }



@media screen and (max-width: 735px){
  .galleryImgWrap{
    width: 100%;
    height: auto;
  }
}

.galleyContentImg{
  width: 100%;
  transition: .3s;
}

.galleyContentWrap:hover .galleyContentImg{
    transform:scale(1.1);
      }

.galleyContentWrap p{
    font-size: 20px;
    margin-top: 10px;
    transition: .3s;
    white-space: normal;
  }

.galleyContentWrap:hover p{
  color: var(--color-gray);
}



      .bodykit-footer{
        width: 100%;
        padding-bottom: 40px;
        padding-top: 40px;
        text-align: center;
      }

      .deals{
        margin-top:50px;
        margin-bottom: 70px;
      }


      .deals h2{
        font-size: 30px;
        line-height: 1.5;
        letter-spacing: 0.06em;
        margin-bottom: 0;
      }

      @media screen and (max-width: 1000px){
        .deals h2{
          font-size: 26px;
        }
      }

      .deals p{
        margin-top:0;
        margin-bottom: 40px;
      }

      .deals .buttons{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 0 10px;
      }

      .deals button,
      .deals .btn{
      background-color: var(--color-gray);
	    color: var(--color-white);
      font-size: 30px;
      border: solid 1px var(--color-white);
      width: 49%;
      height: 70px;
      border-radius: 0;
      transition: 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      text-decoration: none;
      }

      .deals button.mail{
        margin-top: 20px;
        width: 100%;
      }

      .deals button .text__icon,
      .deals .btn .text__icon{
        width: 30px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 1em;
        position: relative;
      }

      @media screen and (max-width: 1000px){
      .deals .buttons{
        flex-direction: column;
      }
      .deals button.mail{
        margin-top: unset;
      }
      .deals button,
      .deals .btn{
        font-size: 20px;
        width: 100%;
        height: 70px;
      }
      .deals button:nth-child(n +2){
        margin-top: 20px;
      }
      }

      .deals button:hover, 
      .deals .btn:hover{
	    background-color: var(--color-white);
	    color: var(--color-gray);
      }

      .dealsIcon{
        transition: 0.3s;
        position: absolute;
        top:50%;
        transform: translateY(-50%);
      }

      @media screen and (max-width: 1000px){
        .dealsIcon{
          width: 25px;
        }
      }


      .deals button:hover .dealsIcon, 
      .deals .btn:hover .dealsIcon{
        filter: invert();
        }


      .footLogo{
        width: 150px;
        transition: .4s;
        margin-top: 15px;
         margin-left: auto;
         margin-right: auto;
      }

      @media screen and (max-width: 480px){
        .footLogo{
          width: 130px;
        }
      }

      .footLogo:hover{
       opacity: 60%;
      }

      .footMenu {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin-top:30px;
      }

      .footMenu  li {
        margin-left:15px;
        margin-right:15px;
      }

      @media screen and (max-width: 480px){
      .footMenu  li{
        margin-left:8px;
        margin-right:8px;
        }
      }

      .footMenu  li:nth-child(1){
        margin-left:0;
      }

      .footMenu  li:nth-child(2){
        margin-right:0;
      }

      .footMenu  a{
       font-size: 18px;
       color: var(--color-white);
       display: inline-block;
       transition: .8s;
      }

      .footMenu  a:hover{
        -webkit-transform: rotateX(360deg);
        transform: rotateX(360deg);
        color: var(--color-gray);
      }

      .bodykit-footer p{
        margin-top: 30px;
        font-size: 14px;
      }



/*///////////////Dealer///////////////*/

.dealer{
	width: 100%;
  margin-top: 60px;
}

.dealerListWrap h3{
  text-align: left;
	border-bottom: 2px solid var(--color-white);
	margin-top: 50px;
	margin-bottom: 25px;
}

.dealerListWrap{
	padding-top: 30px;
	padding-bottom: 70px;
}

.dealerList{
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 15px;
 }

.dealerItem{
  min-width: 0;
	width: 49%;
	height: auto;
  min-height: 200px;
	padding: 25px;
	text-align: left;
  background-color: var(--color-gray);
  white-space: normal;
}

.dealerItem:nth-child(n+3){
  margin-top: 20px;
}

.dealerItem .dealerName{
 font-size: 1.3rem;
 font-weight: 600;
 color: var(--color-white);
 background: unset;
 letter-spacing: 0.03rem;
 transition: color .3s;
}

.dealerItem .dealerName a{
  display: block;
  background: unset;
}

.dealerItem .dealerName a:hover {
  color: var(--color-white);
}

.dealerItem h2{
font-size: 1.1rem;
font-weight: 500;
}

.dealerItem p{
  font-size: 0.9rem;
  padding-bottom: 10px;
  letter-spacing: 0.03rem;
  background: unset;
}

@media screen and ( max-width : 1000px ){
 .dealerItem{
  padding: 20px;
}
}


@media screen and ( max-width : 480px ){
.dealerListWrap{
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
 padding-bottom: 20px;
}
.dealerList{
  flex-direction: column;
  text-align: center;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
 }

.dealerItem{
	width: 100%;
	height: auto;
	padding-left: 25px;
	padding-top: 20px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 20px;
	padding-bottom: 25px;
}
}

/*///////////////product///////////////*/

.slideWrap{
  margin-top: 30px;
}

@media screen and (max-width: 480px){
  .slideWrap{
    margin-top: 20px;
  }
}

 .slick{
   width: 100%;
   height: 530px;
   overflow: hidden;
  }

  .slick div{
    height: 100%;
  }

 .slideImg{
  width: 100%;
  height: 100%;
  object-fit: cover;      /* ← サイズ統一の要 */
  object-position: center;/* ← 中央基準 */
 }

 @media screen and (max-width: 1000px){
   .slick{
     height: auto;
   }
 }

 @media screen and (max-width: 1000px){
   .slick-slide{
     height: auto;
   }
 }


.thumbnail {
  width: 100%;
  height: 130px;
  margin-top: 20px;
  overflow: hidden;
}

.thumbnail div{
  height: 100%;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

 @media screen and (max-width: 1000px){
   .thumbnail{
      height: auto;
   }
 }

/* 
 .thumbnail div{
   margin-left:13px;
 } */

 .thumbnail .slick-list {
  margin: 0 -10px;
}
 .thumbnail .slick-slide {
  margin: 0 10px;
}

.slick-prev:before, .slick-next:before {
    color: var(--color-white);
    opacity: 1;/*デフォルトは.75が指定されている*/
}

.parts_title.common{
  margin-bottom: 5px;
}

.details table{
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-top: 80px;
}

.details th {
  padding: 10px;
  background: var(--color-white);
  color: var(--color-gray);
  font-size: 18px;
  text-align: left;
  line-height: 20px;
}

.details th .small{
  font-size: 12px;
}


.cell_parts{
  width: 30%;
}

.cell_price{
  width: 15%;
}

.details td {
  padding: 15px;
  border-bottom: solid 1px var(--color-white);
  font-size: 18px;
  font-weight: 300;
}

.details p{
  font-size: 16px;
  font-weight: 300;
}

.details .tax_info{
  margin-top: 5px;
  font-size: 14px;
}

.supplement {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 100px;
}

.supplement p{
  font-size: 16px;
  font-weight: 300;
}


  @media screen and (max-width: 1000px){
  .details table{
    margin-top: 60px;
  }

    .details th {
    font-size: 16px;
    padding: 10px 8px;
    }

  .details td {
    font-size: 15px;
    padding: 10px 8px;
    }

  .details p {
    font-size: 14px;
    }

  .supplement {
    margin-bottom: 50px;
  }
  }

@media screen and (max-width: 480px){
    .details th {
    font-size: 14px;
    padding: 10px 5px;
    }
    .details td {
    font-size: 13px;
    padding: 10px 5px;
    }
    .details .tax_info{
  font-size: 11px;
}

}

.parts_title.common{
  margin-top: 50px;
}

.details.common table{
  margin-top: 0px;
}

