@charset "UTF-8";

* {
	box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

body {
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, sans-serif;
    font-size: 16px;
    /* background: url(../images/img_background.jpg);
	background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover; */
    background-color: #fff;
}

a {
	text-decoration: none;
}

/* ローディング */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;

    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.loading.active {
    opacity: 1;
    visibility: visible;

}

.loading img {
    width: 170px;
}

.wrap {
    letter-spacing: 0.15em;
    font-size: 17px;
    color: #000;
    font-family: 'Permanent Marker', cursive;
    margin-left: 19.5px;
}

.wrap span {
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.wrap span::before {
    content: "";
    position: absolute;
    background-color: #fff;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: block;
    animation: text_anime 3.5s infinite;
}

/* アニメーション */
@keyframes text_anime {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* ヘッダー */
.head {
    height: auto;
    width: 240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.head img {
	width: 240px;
    height: auto;
    opacity: 0.9;
    text-align: center;
    display: block;
    z-index: 20;
    margin-top: 20px;
}

.hover1 {
	transition: all 0.8s ease 0s;
}

.hover1:hover {
	transform: scale(1.1, 1.1);
}

/* ナビゲーション */
.home .nav_home>a,
.motor .nav_motor>a,
.asite .nav_asite>a {
    background-color: #233;
    color: #fff;
}

.nav ul {
    margin: 40px;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-evenly;
    list-style: none;
    align-items: center;
    margin-left: 91px;
}

.nav li {
    font-family: 'Shadows Into Light', cursive;
    transition: 0.5s;
}

.nav li:hover {
    opacity: 0.8;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 70%;
}

/* body {
  padding: 30px;
} */

.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  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: #000;
  border-radius: 0.5rem;
}

a.btn-border {
    border-radius: 0;
}
  
a.btn-border:before,
a.btn-border:after {
    position: absolute;
  
    width: 100%;
    height: 2px;
  
    content: '';
    -webkit-transition: all .3s;
    transition: all .3s;
  
    background: #000;
}
  
a.btn-border:before {
    top: 0;
    left: 0;
}
  
a.btn-border:after {
    right: 0;
    bottom: 0;
}
  
a.btn-border:hover:before,
a.btn-border:hover:after {
    width: 0;
}

/* スライダー */
.slide {
    background-image: url(../images/background_image.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}


/* フッターコピーライト */
.foot {
	width: 100%;
	height: auto;
	padding-bottom: 25px;
	margin-top: 55px;
	border-top: dotted 5px #000;
}

.foot_copy {
	width: 300px;
	height: 135px;
	position: relative;
	float: left;
}

.foot_copy p {
	position: absolute;
	bottom: 28px;
	font-size: 14px;
    font-family: 'Shadows Into Light', cursive;
    font-weight: bold;
}

.foot_copy p span {
	font-size: 18px;
    font-family: 'Permanent Marker', cursive;
}

/* ニュースリスト */

.newslist {
    max-width: 500px;
    margin: 0 auto;
    margin-top: 100px;
    margin-bottom: 100px;
  }
   
  @media screen and (max-width: 800px) {
    .newslist {
      font-size: 12px;
      padding: 0 15px;
    }
  }
   
  .newslist li {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 20px 10px;
    border-top: 2px solid black;
    line-height: 1.5;
  }
   
  .newslist li:last-child {
    border-bottom: 2px solid black;
  }
   
  .newslist li time {
    padding-right: 20px;
  }
   
  .newslist li a {
    color: cornflowerblue;
    text-decoration: none;
  }

/* フッターナビゲーション */
.foot_nav {
	width: 660px;
	height: 156px;
	position: relative;
	float: right;
}

.foot_nav ul {
	position: absolute;
	bottom: 4px;
	right: 0;
	float: right;
}

.foot_nav li {
	display: inline-block;
    font-family: 'Shadows Into Light', cursive;
    transition: 0.5s;
}

.foot_nav li:hover {
    opacity: 0.8;
}

.btn2,
a.btn2,
button.btn2 {
  font-size: 13px;
  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: #000;
  border-radius: 0.5rem;
}

a.btn-border2 {
    border-radius: 0;
}
  
a.btn-border2:before,
a.btn-border2:after {
    position: absolute;
  
    width: 100%;
    height: 2px;
  
    content: '';
    -webkit-transition: all .3s;
    transition: all .3s;
  
    background: #000;
}
  
a.btn-border2:before {
    top: 0;
    left: 0;
}
  
a.btn-border2:after {
    right: 0;
    bottom: 0;
}
  
a.btn-border2:hover:before,
a.btn-borde2r:hover:after {
    width: 0;
}

/* セレクト */
.select {
    height: auto;
    width: 100%;
    margin: auto;
    background-image: url(../images/background_image3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.select img {
    width: 400px;
    margin: auto;
}

.selects1 {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
}

.select1 {
    justify-content: space-around;
    flex-direction: column;
    margin-bottom: 80px;
    transition: 0.5s;
}

.select1 p {
    margin-top: 20px;
    font-size: 35px;
    font-weight: bold;
    font-family: 'Shadows Into Light', cursive;
    color: #000;
    text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
                -1px 1px 0 #FFF, 1px -1px 0 #FFF,
                0px 1px 0 #FFF,  0-1px 0 #FFF,
                -1px 0 0 #FFF, 1px 0 0 #FFF;
}

.select1:hover {
    opacity: 0.87;
}

.selects2 {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
}

.select2 {
    justify-content: space-around;
    flex-direction: column;
    margin-bottom: 80px;
    transition: 0.5s;
}

.select2 p {
    margin-top: 20px;
    font-size: 35px;
    font-weight: bold;
    font-family: 'Shadows Into Light', cursive;
    color: #000;
    text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
                -1px 1px 0 #FFF, 1px -1px 0 #FFF,
                0px 1px 0 #FFF,  0px -1px 0 #FFF,
                -1px 0 0 #FFF, 1px 0 0 #FFF;
}

.select2:hover {
    opacity: 0.87;
}

.hover3 {
    transition: all 0.8s ease 0s;
}

.hover3:hover {
    transform: scale(1.1, 1.1);
}

/* アバウトサイト */
.about {
    width: 100%;
    height: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.about img {
    width: 270px;
    height: auto;
    text-align: center;
    display: block;
    box-shadow: 0 0 48px #000;
}

.about p {
    font-size: 25px;
    line-height: 50px;
    font-weight: bold;
    text-shadow: 0 0 14px #aaa;
}

.about_text {
    width: auto;
    text-align: center;
    display: block;
    margin-top: 20px;
}

.about_text p {
    font-size: 20px;
    line-height: 50px;
    font-weight: bold;
    text-shadow: 0 0 14px #aaa;
}

/* タイトルエフェクト */
.popout {
    font-family: 'Permanent Marker', cursive;
    font-size: 60px;
    font-weight: bold;
    padding: 5px;
    text-align: center;
    margin-bottom: 10px;
}
  
@-webkit-keyframes ani {
    0% {
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
      text-shadow: 0em 0em 0 #ff0048;
      color: black;
    }
    30% {
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
      text-shadow: 0em 0em 0 #ff0048;
      color: black;
    }
    70% {
      -webkit-transform: translate3d(0.08em, -0.08em, 0);
              transform: translate3d(0.08em, -0.08em, 0);
      text-shadow: -0.08em 0.08em #ff0048;
      color: black;
    }
    100% {
      -webkit-transform: translate3d(0.08em, -0.08em, 0);
              transform: translate3d(0.08em, -0.08em, 0);
      text-shadow: -0.08em 0.08em #ec59fd;
      color: black;
    }
}
  
@keyframes ani {
    0% {
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
      text-shadow: 0em 0em 0 #ec59fd;
      color: black;
    }
    30% {
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
      text-shadow: 0em 0em 0 #ec59fd;
      color: black;
    }
    70% {
      -webkit-transform: translate3d(0.08em, -0.08em, 0);
              transform: translate3d(0.08em, -0.08em, 0);
      text-shadow: -0.08em 0.08em #ec59fd;
      color: black;
    }
    100% {
      -webkit-transform: translate3d(0.08em, -0.08em, 0);
              transform: translate3d(0.08em, -0.08em, 0);
      text-shadow: -0.08em 0.08em #ff0048;
      color: black;
    }
}
  
.popout span {
    position: relative;
    display: inline-block;
    -webkit-animation: ani 1s infinite alternate cubic-bezier(0.86, 0, 0.07, 1);
            animation: ani 1s infinite alternate cubic-bezier(0.86, 0, 0.07, 1);
}
  
.popout span:nth-last-child(1n) {
    -webkit-animation-delay: -0.16667s;
            animation-delay: -0.16667s;
}
  
.popout span:nth-last-child(2n) {
    -webkit-animation-delay: -0.33333s;
            animation-delay: -0.33333s;
}
  
.popout span:nth-last-child(3n) {
    -webkit-animation-delay: -0.5s;
            animation-delay: -0.5s;
}

/* タイトルエフェクト2 */
.popout_2 {
    font-family: 'Permanent Marker', cursive;
    font-size: 45px;
    font-weight: bold;
    padding: 5px;
}
  
@-webkit-keyframes ani {
    0% {
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
      text-shadow: 0em 0em 0 #ff0048;
      color: black;
    }
    30% {
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
      text-shadow: 0em 0em 0 #ff0048;
      color: black;
    }
    70% {
      -webkit-transform: translate3d(0.08em, -0.08em, 0);
              transform: translate3d(0.08em, -0.08em, 0);
      text-shadow: -0.08em 0.08em #ff0048;
      color: black;
    }
    100% {
      -webkit-transform: translate3d(0.08em, -0.08em, 0);
              transform: translate3d(0.08em, -0.08em, 0);
      text-shadow: -0.08em 0.08em #ec59fd;
      color: black;
    }
}
  
@keyframes ani {
    0% {
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
      text-shadow: 0em 0em 0 #ec59fd;
      color: black;
    }
    30% {
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
      text-shadow: 0em 0em 0 #ec59fd;
      color: black;
    }
    70% {
      -webkit-transform: translate3d(0.08em, -0.08em, 0);
              transform: translate3d(0.08em, -0.08em, 0);
      text-shadow: -0.08em 0.08em #ec59fd;
      color: black;
    }
    100% {
      -webkit-transform: translate3d(0.08em, -0.08em, 0);
              transform: translate3d(0.08em, -0.08em, 0);
      text-shadow: -0.08em 0.08em #ff0048;
      color: black;
    }
}
  
.popout_2 span {
    position: relative;
    display: inline-block;
    -webkit-animation: ani 1s infinite alternate cubic-bezier(0.86, 0, 0.07, 1);
            animation: ani 1s infinite alternate cubic-bezier(0.86, 0, 0.07, 1);
}
  
.popout_2 span:nth-last-child(1n) {
    -webkit-animation-delay: -0.16667s;
            animation-delay: -0.16667s;
}
  
.popout_2 span:nth-last-child(2n) {
    -webkit-animation-delay: -0.33333s;
            animation-delay: -0.33333s;
}
  
.popout_2 span:nth-last-child(3n) {
    -webkit-animation-delay: -0.5s;
            animation-delay: -0.5s;
}

.head_2 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 7px;
}

.nav_2 {
    display: flex;
}

.nav_2 ul{
    display: flex;
}

.nav_2 ul li {
    font-family: 'Shadows Into Light', cursive;
}

.nav_2 li:hover {
    opacity: 0.8;
}

/* バイク詳細 */
.bonneville .first_one {
    width: 100%;
    height: auto;
    margin: auto;
    background-image: url(../images/bike1-1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.sr400 .first_one {
    width: 100%;
    height: auto;
    margin: auto;
    background-image: url(../images/bike2-1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.rninet .first_one {
    width: 100%;
    height: auto;
    margin: auto;
    background-image: url(../images/bike3-1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.rebel1100 .first_one {
    width: 100%;
    height: auto;
    margin: auto;
    background-image: url(../images/bike4-1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.iron883 .first_one {
    width: 100%;
    height: auto;
    margin: auto;
    background-image: url(../images/bike5-1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.katana .first_one {
    width: 100%;
    height: auto;
    margin: auto;
    background-image: url(../images/bike6-1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.first_text {
    width: 25%;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.7);
    animation-name: faderight;
    animation-duration: 6s;
}

@keyframes faderight {
    from {
        opacity: 0;
        transform: translateX(-150px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
    }

.text_1 {
    text-align: center;
}

.texts {
    text-align: left;
	display: inline-block;
}

.texts a {
    color: #000;
    text-shadow:0.5px 0.5px 0 #FFF, -0.5px -0.5px 0 #FFF,
                -0.5px 0.5px 0 #FFF, 0.5px -0.5px 0 #FFF,
                0px 0.5px 0 #FFF,  0px -0.5px 0 #FFF,
                -0.5px 0 0 #FFF, 0.5px 0 0 #FFF;
    text-decoration: underline;
}

.texts h1 {
    margin-top: 120px;
    font-size: 35px;
    font-weight: bold;
    font-family: 'Shadows Into Light', cursive;
}

.text_1 h2 {
    margin-top: 10px;
    font-size: 35px;
    font-weight: bold;
    font-family: 'Shadows Into Light', cursive;
}

.text_1 h3 {
    margin-top: 70px;
    font-size: 20px;
    font-weight: bold;
    font-family: 'Shadows Into Light', cursive;
}

.text_1 h4 {
    margin-top: 70px;
    font-size: 20px;
    font-weight: bold;
    font-family: 'Shadows Into Light', cursive;
}

.text_1 p {
    font-size: 20px;
    font-weight: bold;
    font-family: 'Shadows Into Light', cursive;
}

.text_1 h5 {
    margin-top: 50px;
    font-size: 20px;
    font-weight: bold;
    font-family: 'Shadows Into Light', cursive;
}

.bonneville .text_1 h6 {
    margin-top: 125px;
    margin-bottom: 30px;
    font-size: 10px;
    font-weight: bold;
}

.sr400 .text_1 h6 {
    margin-top: 170px;
    margin-bottom: 30px;
    font-size: 10px;
    font-weight: bold;
}

.iron883 .text_1 h6 {
    margin-top: 170px;
    margin-bottom: 30px;
    font-size: 10px;
    font-weight: bold;
}

.text_1 h6 {
    margin-top: 190px;
    margin-bottom: 30px;
    font-size: 10px;
    font-weight: bold;
}

.hover4:hover {
    color: #ff0048;
}

.hover4 {
    transition: all 0.6s ease 0s;
}

.hover5:hover {
    color: #ec59fd;
}

.hover5 {
    transition: all 0.6s ease 0s;
}

.text_2 {
    width: 100%;
    text-align: center;
    margin-top: 200px;
}

/* fadeUp */

.fadeUp{
    animation-name:fadeUpAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity:0;
}
    
    @keyframes fadeUpAnime{
      from {
        opacity: 0;
      transform: translateY(100px);
      }
    
      to {
        opacity: 1;
      transform: translateY(0);
      }
    }
     
.fadeUpTrigger {
    opacity: 0;
}

.text_2 h1 {
    font-size: 60px;
    font-weight: bold;
    font-family: 'Shadows Into Light', cursive;
    
}

.text_2 h2 {
    margin-top: 10px;
    font-size: 20px;
    font-weight: bold;
    font-family: 'Shadows Into Light', cursive;
}

.img_text_1 {
    width: 100%;
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 左から */

.fadeLeft{
    animation-name:fadeLeftAnime;
    animation-duration:1.5s;
    animation-fill-mode:forwards;
    opacity:0;
}
    
    @keyframes fadeLeftAnime{
      from {
        opacity: 0;
      transform: translateX(-100px);
      }
    
      to {
        opacity: 1;
      transform: translateX(0);
      }
    }

.fadeLeftTrigger {
    opacity: 0;
}

.img_text_1 img {
    width: 600px;
}

.text3 {
    width: 600px;
    display:flex;
    flex-flow: column;
    font-size: 20px;
    font-family: 'Shadows Into Light', cursive;
    margin-left: 60px;
    line-height: 25px;
}

/* 右から */

.fadeRight{
    animation-name:fadeRightAnime;
    animation-duration:1.5s;
    animation-fill-mode:forwards;
    opacity:0;
}
    
    @keyframes fadeRightAnime{
      from {
        opacity: 0;
      transform: translateX(100px);
      }
    
      to {
        opacity: 1;
      transform: translateX(0);
      }
    }

.fadeRightTrigger {
    opacity: 0;
}

.text3 h2 {
    margin-top: 20px;
}

.text3 h3 {
    margin-top: 20px;
}

.second_one {
    width: 100%;
}

.text_4 {
    width: 100%;
    text-align: center;
    margin-top: 250px;
    margin-bottom: 30px;
}

.text_4 h1 {
    font-size: 60px;
    font-weight: bold;
    font-family: 'Shadows Into Light', cursive;
}

.bonneville .perform {
    width: 100%;
    background-image: url(../images/bike1-3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.sr400 .perform {
    width: 100%;
    background-image: url(../images/bike2-3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.rninet .perform {
    width: 100%;
    background-image: url(../images/bike3-3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.rebel1100 .perform {
    width: 100%;
    background-image: url(../images/bike4-3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.iron883 .perform {
    width: 100%;
    background-image: url(../images/bike5-3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.katana .perform {
    width: 100%;
    background-image: url(../images/bike6-3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}


.performs_1 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    font-weight: bold;
    font-family: 'Shadows Into Light', cursive;
    gap: 800px;
    color: #fff;
}

.perform_1 h1 {
    margin-top: 150px;
    border-bottom: 3px solid #fff;
    padding-bottom: 12px;
}

.perform_1 h2 {
    margin-top: 12px;
}

.perform_2 h1 {
    margin-top: 150px;
    border-bottom: 3px solid #fff;
    padding-bottom: 12px;
}

.perform_2 h2 {
    margin-top: 12px;
}

.performs_2 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -30px;
    font-size: 40px;
    font-weight: bold;
    font-family: 'Shadows Into Light', cursive;
    gap: 800px;
    color: #fff;
}

.perform_3 h1 {
    margin-top: 150px;
    border-bottom: 3px solid #fff;
    padding-bottom: 12px;
}

.perform_4 h1 {
    margin-top: 150px;
    border-bottom: 3px solid #fff;
    padding-bottom: 12px;
}

.perform_3 h2 {
    margin-top: 12px;
    margin-bottom: 350px;
}

.perform_4 h2 {
    margin-top: 12px;
    margin-bottom: 350px;
}