@charset "UTF-8";


/* メインビジュアル
------------------------------------*/

:root{
  --hero-h: 600px;
  --parallax-speed: 0.25;
  --display-ms: 4800;
  --fade-ms: 900;
  --base-scale: 1.14;
  --max-scale: 1.25;
  --easing: cubic-bezier(.22,.61,.36,1);
}

.top__main {
  position:relative;
  height:var(--hero-h);
  overflow:hidden;
  isolation:isolate;
}
.top__main-bg{ position:absolute; inset:0; z-index:0; pointer-events:none; }
.bg{
  position:absolute; inset:0;
  background-size:cover; background-position:center top; background-repeat:no-repeat;
  opacity:0;
  transform-origin: 50% 0%;
  transform: translate3d(0, var(--ty, 0px), 0) scale(var(--scale, var(--base-scale)));
  transition:
    opacity var(--fade-ms) var(--easing),
    transform 600ms var(--easing);
  will-change: transform, opacity;
  filter:saturate(1.02) contrast(1.02);
}
.bg.is-active{ opacity:1; }
#bgA {
  background-image:url('../img/top/main_bg1.webp');
}
#bgB {
  background-image:url('../img/top/main_bg2.webp');
}
.top__main-content {
  position: relative;
  z-index: 1;
  height: 100%;
  color: #FFF;
}
img.top__main-line {
  position: absolute;
  width: 781px;
  right: -100px;
  bottom: 42px;
}
.top__main-content h1 {
  position: absolute;
  top: 195px;
  left: 44px;
  font-size: 19px;
  font-weight: bold;
}
.top__main-cc {
  position: absolute;
  font-size: 80px;
  color: var(--ft-yellow);
  line-height: 1.2em;
  top: 242px;
  left: 40px;
}
.top__main-open {
  display: block;
  position: absolute;
  z-index: 1;
  left: 50%;
  transform: translateX(200px);
  top: 180px;
  width: 380px;
	transition: all 0.3s;
}
@media (min-width: 768px) {
	.top__main-open:hover {
	  transform: translateX(200px) scale(1.15);
	}
} /* end @media */


@media (prefers-reduced-motion: reduce){
  .bg{ transition:none }
}

@media (max-width: 767px) {

  .top__main {
    height: 500px;
  }
  .top__main-content {
    height: 500px;
  }

  .top__main-content h1 {
    position: relative;
    width: 100%;
    font-size: 3.5vw;
    line-height: 1.5em;
    text-align: center;
    top: auto;
    left: auto;
    padding-top: 117px;
    margin-bottom: 14px;
  }
  .top__main-cc {
    position: relative;
    font-size: 9vw;
    line-height: 1.3em;
    top: auto;
    left: auto;
    width: 100%;
    text-align: center;
  }
  .top__main-open {
    left: auto;
    transform: none;
    top: auto;
    bottom: 20px;
    right: 20px;
    width: 240px;
  }

}
/* end @media */


.slider-container {
  position: relative;
  width: 100%;
  padding: 20px 0 70px;
  overflow: hidden;
}

.slider-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

.slide { flex: 0 0 366px; }
.slide img { width: 100%; display: block; border-radius: 6px; }

/* ▼ 左下に矢印ボタン */
.slider-arrows {
  position: absolute;
  left: 24px;
  bottom: 0px;
  display: flex;
  gap: 12px;
}

.arrow {
  background: none;
  border: none;
  padding: 0;
  width: 45px;
  height: 45px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow img {
  width: 45px;
  height: 45px;
  display: block;
}


@media (max-width: 767px) {

  .slide { flex: 0 0 230px; }

}
/* end @media */




.top__about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 80px;
  padding-bottom: 80px;
}
.top__aboutL {
  flex: 1;
  color: #FFF;
}
.top__aboutR {
  display: flex;
  width: 50%;
  max-width: 600px;
  margin-left: 50px;
  justify-content: space-between;
}
.top__aboutR > div {
  width: 45%;
}
.top__aboutR > div:nth-child(2) {
  margin-top: 100px;
}
.top__about h2 {
  font-size: 50px;
  color: var(--ft-yellow);
  margin-bottom: 34px;
  letter-spacing: 0.05em;
}
.top__aboutL > div {
  font-size: 35px;
  line-height: 1.7em;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}


@media (max-width: 767px) {

  .top__about {
    display: block;
    padding-bottom: 0vw;
  }
  .top__aboutL,
  .top__aboutR {
    width: 100%;
    margin-left: 0;
  }
  .top__aboutR > div {
    width: 47.5%;
  }


  .top__aboutL {
    margin-bottom: 20vw;
  }
  .top__about h2 {
    font-size: 14vw;
    margin-bottom: 8vw;
  }
  .top__aboutL > div {
    font-size: 6.5vw;
    line-height: 1.5em;
    margin-bottom: 6vw;
  }

}


.banner{
  padding:32px 0;
  position:relative;
  overflow:hidden;
}
.banner::before{
  content:"";
  position:absolute; inset:-40% -10% auto -10%;
  height:70%;
  transform:skewY(-12deg);
  pointer-events:none;
}

.marquee{
  overflow:hidden;
  width:100%;
}
.marquee__track{
  display: flex;
  gap: var(4rem);
  width: max-content;
  white-space: nowrap;
  will-change: transform;
  animation-name: marquee;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 40s;
}

@keyframes marquee{
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - var(--gap))); }
}

.marquee__item{
  color: var(--ft-yellow);
  font-size: 130px;
  line-height: 1.05;
  display:inline-block;
  padding-inline: .2em;
}

.top__shop {
  position: relative;
  display: flex;
  margin-top: 100px;
  margin-bottom: 200px;
}
.top__shopL {
  position: relative;
  left: -50px;
  width: 661px;
  margin-right: 30px;
}
.top__shopR {
  position: relative;
  flex: 1;
  padding-top: 80px;
}
.top__shopL1,
.top__shopL2 {
  display: flex;
  justify-content: space-between;
}
.top__shopL1 {
  margin-bottom: 20px;
}
.top__shopL1 > div,
.top__shopL2 > div {
  margin-right: 20px;
  border-radius: 2px;
}

.top__shopR-subttl {
  font-size: 18px;
  color: var(--ft-yellow);
  margin-bottom: 18px;
}
.top__shopR h2 {
  font-size: 50px;
  margin-bottom: 30px;
  color: var(--ft-yellow);
}
.top__shopR p {
  color: #FFF;
  font-size: 14px;
  margin-bottom: 50px;
}
.top__shop-bg {
  width: 100%;
}


@media (max-width: 767px) {

  .top__shop {
    display: block;
    margin-top: 10vw;
    margin-bottom: 20vw;
  }
  .top__shopL {
    left: 0;
    width: 100%;
    margin-right: 0;
  }
  .top__shopR {
    position: relative;
    flex: 1;
    padding-top: 10vw;
  }

  .top__shopL1 > div:nth-child(2),
  .top__shopL2 > div:nth-child(2){
    margin-right: 0;
  }
  .top__about7 {
    height: 390px;
    background: url(../img/top/about7.webp);
    background-position: center;
    background-size: cover;
  }
  .top__about7 img {
    display: none;
  }
  
}


.top__service {
  margin-top: 200px;
}
.top__service h2 {
  font-size: 50px;
  margin-bottom: 160px;
  color: var(--ft-yellow);
}
.top__service-fx {
  display: flex;
  justify-content: space-between;
  color: #FFF;
}
.top__service-fx > div {
  position: relative;
  max-width: 530px;
  width: 49%;
}
.top__service-link {
  position: absolute;
  display: block;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.top__service-no {
  position: relative;
  z-index: 1;
  top:-10px;
  font-size: 60px;
  color: var(--ft-yellow);
  margin-bottom: 20px;
}
.top__service h3 {
  font-size: 24px;
  font-weight: bold;
  transition: all 0.3s;
}
.top__service h3 span {
  font-size: 14px;
  font-weight: normal;
}
.top__service .right{
  position: relative;
  z-index: 2;
  margin-top: -30px;
}

.top__service-fx > div img {
  transition: all 0.5s!important;
}
.top__service-fx > div:hover img {
  transform: scale(1.05);
}
.top__service-fx > div:hover {
  color: var(--ft-yellow);
}
.top__service-fx > div:nth-child(1) {
  margin-top: -90px;
}
.top__service-fx > div:nth-child(2) {
  margin-top: 200px;
}

.top__service-bnr {
  display: block;
  max-width: 940px;
  margin: 100px auto;
  width: 100%;
}
  .top__service-bnr.sp {
    display: none;
  }


@media (max-width: 767px) {

  .top__service {
    margin-top: 20vw;
  }
  .top__service h2 {
    margin-bottom: 16vw;
  }
  .top__service-fx {
    display: block;
  }
  .top__service-fx > div {
    max-width: none;
    width: 100%;
  }
  .top__service-fx > div:nth-child(1) {
      margin-top: 12vw;
  }
  .top__service-fx > div:nth-child(2) {
      margin-top: 12vw;
    }
  .top__service .right{
      margin-top: 4vw;
  }
  .top__service-bnr {
    margin: 15vw 0;
  }
  .top__service-bnr.pc {
    display: none;
  }
  
}



.top__maintenance {
  display: flex;
  background: url("../img/top/maintenance_bg.webp");
  background-size: cover;
  border: 2px solid var(--ft-yellow);
  border-radius: 20px;
  padding: 50px;
  margin-bottom: 100px;
}
.top__maintenanceL {
  width: 388px;
  margin: 20px 50px 0 20px;
}
.top__maintenanceL img {
  width: 100%;
}
.top__maintenanceR h3 {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.5em;
  margin-bottom: 30px;
}
.top__maintenanceR p {
  font-size: 16px;
}


@media (max-width: 767px) {

  .top__maintenance {
    display: block;
    padding: 40px 20px;
    margin-bottom: 100px;
  }
  .top__maintenanceL {
    width: 100%;
    margin: 0 0 30px;
  }
  .top__maintenanceR h3 {
    font-size: 4.5vw;
    text-align: center;
    margin-bottom: 20px;
  }

}




.top__stock {
  padding: 150px 0;
  background: rgba(0,0,0,0.5);
}
.top__stock h2 {
  font-size: 50px;
  text-align: center;
  color: var(--ft-yellow);
  margin-bottom: 50px;
}
.top__stock .right {
  margin-top: -50px;
}


@media (max-width: 767px) {

  .top__stock {
    padding: 70px 0;
  }
  .top__stock h2 {
    font-size: 50px;
    text-align: center;
    color: var(--ft-yellow);
    margin-bottom: 50px;
  }
  .top__stock .right {
    margin-top: -50px;
  }

}



.top__news {
  display: flex;
  padding: 150px 0;
}
.top__newsL {
  width: 300px;
}
.top__newsR {
  flex: 1;
}
.top__newsL h2 {
  font-size: 50px;
  color: var(--ft-yellow);
  margin-bottom: 30px;
}


@media (max-width: 767px) {

  .top__news {
    display: block;
    padding: 70px 20px;
  }
  .top__newsL {
    width: 100%;
    margin-bottom: 50px;
  }

}
/* end @media */


.top__access h2 {
  font-size: 50px;
  color: var(--ft-yellow);
  padding-left: 40px;
  margin-bottom: 10px;
}
.top__access-ad {
  font-size: 12px;
  color: #FFF;
  padding-left: 40px;
}
.top__access .right {
  margin-top: -30px;
  margin-right: 40px;
}
.top__access-map {
  margin-top: 10px;
}
.top__access-map iframe {
  filter: grayscale(100%);
}



@media (max-width: 767px) {

  .top__access h2 {
    font-size: 8vw;
    text-align: center;
    color: var(--ft-yellow);
    padding-left: 0;
  }
  .top__access-ad {
    padding-left: 0;
    text-align: center;
  }
  .top__access .right {
    margin-top: 10px;
    margin-right: 20px;
  }
  .top__access-map {
    margin-top: 20px;
  }

}
/* end @media */




.top__racing {
  display: flex;
  max-width: 940px;
  margin: 100px auto;
  padding: 40px;
  background: #FFF;
  border-radius: 4px;
}
.top__racingL {
  width: 320px;
  margin-right: 40px;
}
.top__racingR {
  flex: 1;
  text-align: center;
}
.top__racingR img {
  width: 167px;
  margin-bottom: 20px;
}
.top__racingR p {
  margin-bottom: 10px;
  line-height: 1.7em;
  font-weight: bold;
}
.top__racingR a {
  display: inline-block;
  background: var(--ft-yellow) url("../img/arr_ex.webp") no-repeat;
  background-size: 17.5px 17.5px;
  background-position: top 10px right 12px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1em;
  padding: 14px 40px 14px 25px;
  margin-top: 10px;
}


@media (max-width: 767px) {

  .top__racing {
    display: block;
    max-width: auto;
    margin: 50px auto 70PX;
    padding: 20px 20px 50px;
  }
  .top__racingL {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .top__racingR p {
    text-align: left;
  }

}
/* end @media */


