@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: 'Noto Sans JP', serif;
  background-color: #222222;
}


a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: hidden;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  background: transparent;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.table {
  display: table;
  width: 100%;
}

.table .th,
.table .td {
  display: table-cell;
}

.main {
  width: 100%;
  height: 100%;
  background-size: contain;
  position: relative;
}

a {
  color: #000;
}

body .l-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9000;
}
body .l-transition::after {
  content: "";
  display: block;
  height: 200vh;
  width: 200vw;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #0F0F0F;
  transform: translate(0, 0);
}
body.is-loading .l-transition::after {
  transform: translate(0, 0);
}
body.is-loaded .l-transition::after {
  animation: transition-fadein 0.8s linear 0s 1 both;
}
body.is-leave .l-transition::after {
  animation: transition-fadeout 0.8s linear 0.5s 1 both;
}
body .l-transition .transition-wrap {
  position: relative;
  z-index: 9999;
  height: 100%;
  width: 100%;
}
body .l-transition .transition-logo {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 24%;
  min-width: 410px;
}
body .l-transition .transition-logo img {
  width: 100%;
}
body.is-loaded .l-transition .transition-logo {
  animation: logo-fadein 1s linear 0s 1 both;
}
body.is-leave .l-transition .transition-logo {
  animation: logo-fadeout 1s linear 0.5s 1 both;
}
body .l-transition .transition-anime {
  position: relative;
  margin: 8rem auto 0 auto;
  width: 6.7rem;
  height: 6.7rem;
}
body.is-loading .l-transition .transition-anime, body.is-leave .l-transition .transition-anime {
  opacity: 1;
  transition: opacity 0.5s linear;
}
body.is-loaded .l-transition .transition-anime {
  opacity: 0;
}
body .l-transition .transition-anime-logo {
  width: 4rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
body .l-transition .transition-anime-img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
body.is-loading .l-transition .transition-anime-img img {
  animation: loadingimg 0.5s linear infinite;
}

@keyframes transition-fadein {
  0% {
    transform: skewX(0) translate(0, 0);
  }
  10% {
    transform: skewX(-10deg) translate(10%, 0);
  }
  80% {
    transform: skewX(-5deg) translate(80%, 0);
  }
  100% {
    transform: skewX(0) translate(100%, 0);
  }
}
@keyframes transition-fadeout {
  0% {
    transform: skewX(0) translate(-100%, 0);
  }
  10% {
    transform: skewX(-10deg) translate(-90%, 0);
  }
  80% {
    transform: skewX(-5deg) translate(-20%, 0);
  }
  100% {
    transform: skewX(0) translate(0, 0);
  }
}
@keyframes logo-fadein {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes logo-fadeout {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes loadingimg {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 896px) {
  body .l-transition .transition-logo {
    width: 90%;
    min-width: inherit;
  }
}
@media screen and (max-width: 480px) {
  body .l-transition .transition-anime {
    width: 10rem;
    height: 10rem;
    margin-top: 3.8rem;
  }
  body .l-transition .transition-anime-logo {
    width: 5rem;
  }
}

.header {
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100vw;
  background-color: #0F0F0F;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.header__logo {
  width: 104px;
  height: 24px;
  display: flex;
  align-items: center;
}

.header-name{
  display: flex;
  align-items: center;
}

.header_logo a {
  display: flex;
}

.header_nav {
  margin-right: auto;
  margin-left: auto;
}

.header__items{
  display: flex;
}

.header__item:not(:first-child){
  margin-left: 30px;
}

.header__link{
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.logo__sub{
  color: #ffffff;
  font-size: 12px;
  font-weight: 400;
  margin-left: 20px;
}

.hamburger {
  position: fixed;
  z-index: 9999;
  top: 24px;
  right: 40px;
  width: 34px;
  height: 24px;
  cursor: pointer;
}

.hamburger.is-active {
  top: 24px;
  right: 40px;
}

.hamburger span {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 3px;
  transition: transform 0.3s, background-color 0.3s;
  background-color: #ffffff;
}

.hamburger.is-active span {
  background-color: #fff;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 12px;
  transition: opacity 0.3s;
}

.hamburger span:nth-child(3) {
  top: 24px;
}

.hamburger.is-active span:nth-child(1) {
  top: 15px;
  transform: rotate(-45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 15px;
  transform: rotate(45deg);
}

@media screen and (max-width: 550px) {
  .header__inner {
    padding-left: 10px;
  }
  .hamburger {
    right: 10px;
  }
  .logo__sub{
    font-size: 10px;
  }
}

.drawer-menu {
  position: fixed;
  z-index: 5000;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  background-color: #0F0F0F;
}

.drawer-menu_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: inherit;
}

.drawer-menu_items {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.drawer-menu_item {
  display: inline-block;
}

.drawer-menu_item:not(:first-child) {
  margin-top: 25px;
}

.drawer-menu_link {
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  letter-spacing: 0.05em;
  line-height: 1.875;
  color: #fff;
  width: 200px;
  text-align: center;
  padding-bottom: 25px;
  border-bottom: 1px solid #868686;
}

.mv{
  position: relative;
  margin-top: 71px;
}

.mv .swiper{
  position: relative;
  width: 83.333%;
  height: auto;
  margin-right: 0;
  padding-bottom: 24px;
}

.mv .swiper-pagination{
  bottom: -14px;
  max-width: 100%;
  right: 0;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  left: initial;
}

.mv .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  right: 0;
  width: 100%;
}

.mv .swiper-pagination-bullet {
  height: 8px;
  width: 30%;
  border-radius: 0;
}

.mv .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
  margin: 0 6px;
}

.mv .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(1) {
  margin-right: 6px;
  margin-left: 0;
}

.mv .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(2) {
  margin-right: 0;
  margin-left: 0;
}
.mv .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(3) {
  margin-right: 0;
  margin-left: 6px;
}

.mv .swiper-pagination-bullet {
  border-radius: 0;
  margin:0 6px 0 0;
  width: calc((100% - 12px) / 3);
  height: 8px;
  background-color: #D2D2D2;
}
.mv .swiper-pagination-bullet-active {
  background-color: #222222;
}

.mv .swiper-pagination{
  text-align: initial;
}

.mv__title-wrap{
  position: absolute;
  top: 239px;
  left: 40px;
  z-index: 10;
}

.mv__logo1{
  width: 398px;
}

.mv__title-sub{
  font-size: 40px;
  font-weight: 700;
  font-family:'Hind', sans-serif;
  margin-top: 17px;
  color: #ffffff;
}

.mv__logo2{
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 650px;
}

.swiper-slide img{
  object-fit: cover;
}

@media screen and (max-width: 1020px) {
  .mv__title-wrap{
    top: 60%;
  }

  .mv__logo1{
    width: 310px;
  }

  .mv__title-sub{
    font-size: 30px;
  }

  .mv__logo2{
    width: 15%;
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .mv__title-wrap{
    top: 48%;
  }

  .mv__logo1{
    width: 30%;
  }

  .mv__title-sub{
    font-size: 26px;
    margin-top: 10px;
  }

  .mv__logo2{
    width: 15%;
    height: auto;
  }
}

/* top about us */
.section__topAboutus{
  position: relative;
  background-image: url(../images/top-aboutus.png);
  background-repeat: no-repeat;
  background-size:cover;
  text-align: center;
  color: #ffffff;
  z-index: 2;
}

.section__topAboutus-inner{
  padding-top: 80px;
  padding-bottom: 100px;
}

.aboutus__head{
  font-size: 32px;
  font-weight: 700;
  margin-top: 40px;
}

.aboutus__text{
  font-size: 16px;
  font-weight: 400;
  margin-top: 40px;
  line-height: 1.75;
}

@media screen and (max-width: 768px) {
  .section__topAboutus-inner{
    padding-top: 40px;
    padding-bottom: 60px;
    padding-right: 20px;
    padding-left: 20px;
  }
  .aboutus__head{
    font-size: 24px;
    margin-top: 24px;
  }
  
  .aboutus__text{
    font-size: 14px;
    margin-top: 20px;
  }
}

@media screen and (max-width: 500px) {
  .aboutus__head{
    font-size: 18px;
    margin-top: 16px;
  }
  .aboutus__text{
    font-size: 12px;
  }
}

/* product swiper */
.product__swiper{
  position: relative;
}

.product__swiper .swiper2{
  padding-bottom: 40px;
}

.product__swiper .product__swiper-slide{
  position: relative;
  width: 53%;
  max-height: 384px;
  height: 100%;
  color: #ffffff;
}

.product__swiper .product__swiper-slide img{
  height: 384px;
}

.product__slide-wrap{
  position: absolute;
  bottom: 40px;
  right: 48px;
  text-align: right;
}

.product__name-wrap{
  border-right: 2px solid #ffffff;
  padding-right: 16px;
}

.product__name-en{
  font-size: 40px;
  font-family:'Hind', sans-serif;
  font-weight: 700;
}

.product__name-jp{
  font-size: 16px;
  font-weight: 700;
}

.learnmore__botton{
  width: 121px;
  height: 32px;
  display:flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffff;
  border-radius: 100px;
  font-size: 12px;
  color: #ffffff;
  margin-left: auto;
  margin-top: 24px;
}

.learnmore__botton svg{
  margin-left: 4px;
  margin-top: 2px;
}

.product__swiper .swiper-pagination{
  bottom: -14px;
  max-width: 466px;
  margin-right: auto;
  margin-left: auto;
}

.product__swiper .swiper-pagination-bullet {
  height: 4px;
  width: 150px;
  border-radius: 0;
}

.product__swiper .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
  margin: 0 8px;
}

.product__swiper .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(1) {
  margin-right: 8px;
  margin-left: 0;
}

.product__swiper .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(2) {
  margin-right: 0;
  margin-left: 0;
}
.product__swiper .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(3) {
  margin-right: 0;
  margin-left: 8px;
}

.product__swiper .swiper-pagination-bullet {
  background-color: #D2D2D2;
}
.product__swiper .swiper-pagination-bullet-active {
  background-color: #797979;
}

.product__swiper .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 0;
}

@media screen and (max-width: 1080px) {
  .product__swiper .product__swiper-slide img {
    height: 300px;
}
}
@media screen and (max-width: 900px) {
  .product__swiper .product__swiper-slide img {
    height: 240px;
  }
  .product__name-en {
    font-size: 25px;
  }
  .product__name-jp {
    font-size: 12px;
  }
  .product__slide-wrap {
    bottom: 20px;
  }
  .learnmore__botton{
    width: 100px;
    height: 25px;
    font-size: 10px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .product__swiper .product__swiper-slide img {
    height: 150px;
  }
  .product__name-en {
    font-size: 18px;
  }
  .product__name-jp {
    font-size: 10px;
  }
  .product__slide-wrap {
    bottom: 20px;
  }
  .learnmore__botton{
    width: 110px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 500px) {
  .product__swiper .product__swiper-slide img {
    height: 200px;
  }
  .product__swiper .swiper-pagination-bullet {
    width:calc(90% / 3);
  }
}

/* top dealer */
.dealer{
  background-image: url(../images/dealer-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 100px;
}

.dealer__inner{
  padding-top: 80px;
  padding-bottom: 100px;
  text-align: center;
}

.dealer__logo-wrap{
  display: flex;
  max-width: 1160px;
  justify-content: space-between;
  margin-top: 40px;
  margin-right: auto;
  margin-left: auto;
  flex-wrap: wrap;
}

.dealer__logo{
  width: 174px;
  height: auto;
}

@media screen and (max-width: 1200px){
  .dealer__logo-wrap{
    width: 90%;
    row-gap: 20px;
    column-gap: 20px;
    justify-content: center;
  }
}
@media screen and (max-width: 630px){
  .dealer__logo-wrap{
    width: 370px;
  }
}
@media screen and (max-width: 400px){
  .dealer__logo-wrap{
    width: 280px;
  }
  .dealer__logo{
    width: 130px;
  }
}

/* top service */
.top__service-items{
  display: flex;
}

.top__service-item{
  width: calc(100% / 3);
  position: relative;
}

.top__service-wrap{
  position: absolute;
  left: 40px;
  bottom: 32px;
  color: #ffffff;
  text-align: left;
}

.top__serviceName{
  font-size: 32px;
  font-weight: 700;
  font-family:'Hind', sans-serif;
}

.top__serviceName-sub{
  font-size: 14px;
  font-weight: 700;
}

.top__service-wrap .learnmore__botton{
  margin-right: auto;
  margin-left: 0;
}

@media screen and (max-width: 900px) {
  .top__service-wrap{
    left: 20px;
    bottom: 20px;
  }
  
  .top__serviceName{
    font-size: 25px;
  }
  
  .top__serviceName-sub{
    font-size: 12px;
  }
}
@media screen and (max-width: 800px) {
  .top__service-items{
    padding: 0 2%;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
  }

  .top__service-item{
    width: 48%;
  }
}
@media screen and (max-width: 520px) {
  .top__service-items{
    padding: 0 2%;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
    margin-top: 20px;
  }

  .top__service-item{
    width: 90%;
  }
}

/* new arrival */
.new__arrivalinner{
  margin-top: 100px;
  padding-right: 140px;
  padding-left: 140px;
  text-align: left;
}

.newarrival__items{
  margin-top: 65px;
}

.newarrival__item{
  padding-bottom: 32px;
  border-bottom:1px solid #4B4B4B ;
  padding-left: 32px;
}

.newarrival__item:not(:first-child){
  margin-top: 32px;
}

.newarrival__link{
  color:#FFFFFF ;
  display: flex;
  align-items: center;
}

.newarrival__date{
  color:#909090;
  font-size: 18px;
  font-family:'Hind', sans-serif;
  font-weight: 600;
}

.newarrival__category{
  margin-left: 56px;
  font-size: 14px;
  font-family:'Hind', sans-serif;
  font-weight: 400;
}

.newarrival__text{
  font-size: 16px;
  font-weight: 700;
  margin-left: 55px;
}

@media screen and (max-width:1100px) {
  .new__arrivalinner{
    margin-top: 100px;
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
    width: 90%;
  }
}
@media screen and (max-width:550px) {
  .newarrival__item{
    padding-left: 0;
    padding-bottom: 20px;
  }
  .newarrival__date{
    font-size: 14px;
    width: 65px;
  }
  .newarrival__category {
    margin-left: 30px;
    font-size: 12px;
    width: 300px;
  }
  .newarrival__text {
    font-size: 14px;
    margin-left: 0;
    margin-top: 10px;
  }
  .newarrival__link{
    flex-wrap: wrap;
  }
}

@media screen and (max-width:450px) {
  .newarrival__category {
    margin-left: 30px;
    font-size: 12px;
    width: 190px;
  }
}

/* news */
.news__inner{
  margin-top: 100px;
  padding-right: 140px;
  padding-left: 140px;
  text-align: left;
}

.news-content{
  margin-top: 40px;
}

.news__wrap{
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.news__link{
  color: #ffffff;
}

.news__link1{
  width: 40%;
}

.news__wrap-right{
  width: 57%;
}

.news__link2{
  display: flex;
  padding-bottom: 16px;
  border-bottom: 1px solid #4B4B4B;
  margin-bottom: 16px;
}


.news__content-right{
  margin-left: 16px;
}

.news__date{
  font-size: 18px;
  font-family:'Hind', sans-serif;
  font-weight: 600;
  color: #AFAFAF;
}

.news__date1{
  display: block;
  margin-top: 20px;
}

.news__img-left{
  width: 100%;
}
.news__img-right{
  width: 187px;
  height: 120px;
}

@media screen and (max-width:1100px) {
  .news__inner{
    margin-top: 100px;
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
    width: 90%;
  }
}
@media screen and (max-width:768px) {
  .news__wrap{
    flex-direction: column;
  }
  .news__link1{
    width: 100%;
    display: flex;
    padding-bottom: 16px;
    border-bottom: 1px solid #4B4B4B;
    margin-bottom: 16px;
  }
  .news__wrap-right{
    width: 100%;
  }
  .news__date1{
    margin-top: 0;
  }
  .news__content-left{
    margin-left: 16px;
  }
  .news__img-left{
    width: 50%;
  }
  .news__img-right{
    width: 50%;
    height: auto;
  }
}
@media screen and (max-width:550px) {
  .news__link1{
    width: 100%;
    display: flex;
    padding-bottom: 16px;
    border-bottom: 1px solid #4B4B4B;
    margin-bottom: 16px;
  }
  .news__wrap-right{
    width: 100%;
  }
  .news__img-left{
    width: 40%;
  }
  .news__img-right{
    width: 40%;
    height: auto;
  }
}
@media screen and (max-width:450px) {
  .news__link1 {
    flex-direction: column;
  }
  .news__link2 {
    flex-direction: column;
    margin-bottom: 30px;
  }
  .news__content-left {
    margin-left: 0;
    margin-top: 10px;
  }
  .news__content-right {
    margin-left: 0;
    margin-top: 10px;
  }
  .news__img-left {
    width: 100%;
  }
  .news__img-right {
    width: 100%;
  }
}

/* other */
.other__inner{
  margin-top: 100px;
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 80px;
}

.other__items{
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-template-rows: auto;
  column-gap: 30px;
}

@media screen and (max-width: 1200px) {
  .other__inner{
    width: 90%;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  .other__inner{
    margin-top: 80px;
    padding-bottom: 60px;
  }
  .other__items{
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    justify-content: center;
    row-gap: 30px;
  }
  .other__item{
    width: 47%;
  }
}
@media screen and (max-width: 560px) {
  .other__item{
    width: 45%;
  }
}

/* sns */
.sns__list{
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #0F0F0F;
}

.sns__items{
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-template-rows: auto;
  column-gap: 30px;
}

@media screen and (max-width: 1200px) {
  .sns__items{
    width: 90%;
    margin-right: auto;
    margin-left: auto;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-template-rows: auto;
    column-gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .sns__items{
    width: 90%;
    grid-template-columns: repeat(2,1fr);
    column-gap: 30px;
    row-gap: 30px;
  }
  .sns__list{
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

/* about service */
.about__service{
  position: relative;
  padding-top: 80px;
}

.about__service-left{
  background-color:#0F0F0F ;
  padding-left: 48px;
  padding-top: 56px;
  padding-bottom: 56px;
  padding-right: 184px;
  z-index: 1;
  color: #ffffff;
  width: 669px;
  margin-left: 135px;
}

.about__serviceTitle-wrap{
  height: 75px;
}

.about__serviceTitle-sub{
  font-size: 16px;
  color: #9D9D9D;
  font-family:'Hind', sans-serif;
  font-weight: 700;
}

.about__serviceTitle{
  font-size: 40px;
  font-weight: 700;
}

.about__serviceText{
  margin-top: 40px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
}

.aboutservice__img{
  position: absolute;
  top: 0;
  right: 0;
  width: 53%;
  margin-left: auto;
  z-index: 3;
}

.servicelearnmore__botton{
  width: 150px;
  height: 44px;
  display:flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffff;
  border-radius: 100px;
  font-size: 16px;
  color: #ffffff;
  margin-right: auto;
  margin-top: 40px;
}

.servicelearnmore__botton svg{
  margin-left: 4px;
  margin-top: 2px;
}
@media screen and (max-width: 1400px) {
  .aboutservice__img {
    width: 48%;
  }
  .about__service-left {
    width: 50%;
    margin-left: 75px;
    padding-right: 95px;
  }
}
@media screen and (max-width: 1200px) {
  .about__serviceTitle {
    font-size: 32px;
  }
  .about__serviceTitle-wrap{
    height: auto;
  }
  .about__serviceText {
    margin-top: 20px;
    font-size: 14px;
  }
  .servicelearnmore__botton {
    width: 130px;
    font-size: 14px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .about__service-left {
    padding-top: 30px;
    padding-bottom: 30px;
    width: 50%;
    padding-right: 65px;
    padding-left: 40px;
    margin-left: 60px;
  }
  .about__service{
    padding-top: 40px;
  }
}
@media screen and (max-width: 900px) {
  .about__service-left {
    margin-top: 0;
    margin-left: 0;
    width: 56%;
  }
  .about__service{
    padding-top: 70px;
  }
}

@media screen and (max-width: 768px) {
  .aboutservice__img{
    width: 90%;
    position: static;
    margin-right: auto;
  }
  .about__service-left {
    margin-top: 0;
    margin-left: 0;
    width: 100%;
    padding-right: 30px;
    padding-left: 30px;
  }
}


/* access */
.access{
  margin-top: 100px;
}

.access__inner{
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
}

.access__wrap{
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.access__table{
  color: #ffffff;
  text-align: left;
}

.access__tr{
  display: flex;
align-items: start;
}

.access__tr:not(:first-child){
  margin-top: 24px;
}

.access__th{
  font-size: 16px;
  font-weight: 700;
  width: 100px;
}

.access__td{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
}

.access__wrap-right{
  width: 57%;
}

.google-maps{
  margin-top: 64px;
  width: 100%;
  height:400px ;
}

.access__icon{
  display: inline-block;
  margin-right: 20px;
}

.access__icon img{
  width: 30px;
}


@media screen and (max-width: 1200px) {
  .access__inner{
    width:90% ;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 1000px) {
  .access__tr:not(:first-child) {
    margin-top: 14px;
  }
  .access__wrap-right {
    width: 49%;
  }
  .access__wrap {
    align-items: flex-end;
  }
}
@media screen and (max-width: 768px) {
  .access__wrap-right {
    margin-top: 20px;
    width: 100%;
  }
  .access__wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .google-maps{
    height:300px ;
  }
}

/* calendar */

.widget_bizcalendar {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.widget_bizcalendar .biz_calendar {
  width: 375px;
  max-width: 100%;
  margin: 0;
}

.widget_bizcalendar .biz_calendar table.bizcal {
  margin: 0 0 10px 0;
}

#calendar .widgettitle {
  font-size: 1.3em;
  color: #ffffff;
}

.biz_calendar table.bizcal th, .widget_bizcalendar .biz_calendar table.bizcal td {
  margin: 10px;
}

td.holiday, span.boxholiday {
  background-color: #FE5050;
  border-radius: 50%;
}

td.today {
  color: #ffffff !important;
}

.calendar{
  margin-top: 80px;
}

.calendar__inner{
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  margin-top: 22px;
  margin-bottom: 100px;
}

.holiday__wrap{
  margin-top: 40px;
  text-align: center;
}

.holiday__circle{
  width: 30px;
  height: 30px;
  background-color: #FE5050;
  border-radius: 50%;
  margin-inline: auto;
}

.holiday__text{
  font-size: 14px;
  margin-top: 6px;
  font-weight: 700;
}

.calendar .biz_calendar p{
  display: none;
}

.calendar .biz_calendar table.bizcal .holiday {
  color: #ffffff;
  position: relative;
  background-color: #FE5050;
  border-radius: 50%;
  z-index: 3;
}


.calendar .biz_calendar table.bizcal td {
  text-align: center;
  border-width: 0;
  color: #fff;
  padding: 0.7em;
}

.calendar .biz_calendar table.bizcal tr:not(:first-child){
  padding: 10px;
}

.calendar .biz_calendar table.bizcal {
  margin: 10px 0;
  width: 100%;
  background-color: #222;
  table-layout: fixed;
  border: none;
  color: #fff;
  line-height: 1.6;
  cursor: default;
  vertical-align: middle;
  border-spacing: 5px 11px;
}

.calendar .biz_calendar table.bizcal .calmonth {
  text-align: center;
  font-weight: bold;
  padding: 16px 7px;
  color: #fff;
  border: none;
}

.calendar .biz_calendar table.bizcal th:first-child {
  color: #fff;
}


.calendar .biz_calendar table.bizcal th:nth-last-of-type(1) {
  color: #fff;
}

.calendar .biz_calendar table.bizcal th {
  text-align: center;
  border-width: 0;
  padding: 2px;
  color: #fff;
  background-color: #222;
}

@media screen and (max-width: 1200px) {
  .calendar__inner{
    width: 780px;
    max-width: 100%;
    margin-inline: auto;
  }
}

@media screen and (max-width: 800px) {
  .calendar__inner{
    width: 375px;
    max-width: 90%;
  }
}

@media screen and (max-width: 400px) {
  .calendar__inner {
    width: 315px;
    max-width: 90%;
  }
  .widget_bizcalendar .biz_calendar {
    width: 315px;
  }
  .calendar .biz_calendar table.bizcal td {
    font-size: 14px;
  }
  .calendar .biz_calendar table.bizcal {
    border-spacing: 5px 10px;
  }
}


/* low mv */
.lowmv{
  position: relative;
  color: #ffffff;
  margin-top: 71px;
  height: 360px;
}

.lowmv__title-wrap{
  position: absolute;
  top: 50%;
  left: 140px;
  height: 160px;
  transform: translateY(-50%);
  -webkit-transform:
  translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 1;

}

.lowmv__title{
  font-size: 100px;
  font-family:'Hind', sans-serif;
  font-weight: 700;
  height: 130px;
}

.lowmv__japanese{
  font-size: 20px;
  font-weight: 700;
  color: #a8a8a8;
}

.lowmv__img{
  position: absolute;
  width: 705px;
  top: -70px;
  right: 0;
}

.lowmv__lead{
  position: absolute;
  width: 140px;
  top: 0;
  left: 0;
}


.motorcycle-cont{
  margin-left: 48px;
}
.motorcycle-cont2{
  margin-left: 0;
  margin-right: 48px;
}

.motorcycle__img{
  width: 44%;
  height: 100%;
}

.motorcycle-wrap{
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  margin-right: 140px;
  z-index: 2;
}

.motorcycle-wrap1{
  margin-top: 62px;
}

.motorcycle-wrap2{
  display: flex;
  justify-content: space-between;
  color: #ffffff;
  flex-direction: row-reverse;
  margin-left: 140px;
  margin-top: 53px;
}

.motorcycle-title{
  font-size: 28px;
  font-weight: 700;
}

.motorcycle-text{
  font-size: 16px;
  font-weight: 400;
  margin-top: 32px;
}

.motorcycle__botton{
  display: flex;
}

.lowlearnmore__botton{
  width: 160px;
  height: 44px;
  display:flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffff;
  border-radius: 100px;
  font-size: 16px;
  color: #ffffff;
  margin-top: 40px;
}

.lowlearnmore__botton svg{
  margin-left: 8px;
  margin-top: 2px;
}

.aprilia_botton{
  margin-right: 32px;
}

.aprilia_botton svg{
  margin-left: 16px;
}

.goobike{
  margin-top: 112px;
}

.goobike__link{
  width: 364px;
  margin-top: 43px;
  display: block;
  margin-inline: auto;
}

.trikesidecar__items{
  display: grid;
  width: 1150px;
  grid-template-columns: repeat(3,1fr);
  grid-template-rows: auto;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 50px;
  margin-inline: auto;
  margin-top: 40px;
}

.trikesidecar__link{
  color: #ffffff;
  text-align: left;
}

.trikesidecar__name{
  margin-top: 15px;
  font-size: 20px;
  font-weight: 700;
}

.trikesidecar__price{
  font-size: 16px;
  font-weight: 400;
  margin-top: 8px;
}

.lineuplearnmore__botton{
  margin-top: 56px;
  width: 150px;
  height: 44px;
  display:flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffff;
  border-radius: 100px;
  font-size: 16px;
  color: #ffffff;
  margin-inline: auto;
  margin-top: 40px;
}

.lineuplearnmore__botton svg{
  margin-left: 4px;
  margin-top: 2px;
}

@media screen and (max-width: 1200px) {
  .motorcycle-wrap{
    width: 95%;
  }

  .motorcycle-wrap2{
    width: 95%;
    margin-left: auto;
  }
  .lowmv__title {
    font-size: 80px;
    height: 125px;
  }
  .trikesidecar__items{
    width: 90%;
  }
}

@media screen and (max-width: 1080px){
  .motorcycle-title {
    font-size: 24px;
  }
  .lowmv__img {
    width: 70%;
  }
  .motorcycle-text {
    font-size: 12px;
    margin-top: 20px;
  }
  .motorcycle__img {
    width: 40%;
    height: 100%;
  }
  .trikesidecar__name {
    font-size: 18px;
  }
  .trikesidecar__price {
    font-size: 15px;
  }
}

@media screen and (max-width: 768px) {
  .lowmv{
    height: auto;
  }
  .lowmv__lead{
    width: 100px;
  }
  .lowmv__title-wrap{
    left: 100px;
    height: 100px;
  }
  .lowmv__title {
    font-size: 50px;
    height: 65px;
  }
  .motorcycle-cont{
    margin-left: 25px;
  }
  .motorcycle-cont2{
    margin-left: 0;
    margin-right: 25px;
  }
  .motorcycle-title {
    font-size: 18px;
  }
  .motorcycle-text {
    font-size: 10px;
    margin-top: 15px;
  }
  .lowlearnmore__botton {
    width: 140px;
    height: 35px;
    font-size: 14px;
    margin-top: 30px;
  }
  .motorcycle-wrap{
    align-items: center;
  }
  .goobike {
    margin-top: 100px;
  }
  .lowmv__img {
    position: relative;
    width: 70%;
    margin-left: auto;
    top: 0;
  }
  .trikesidecar__items {
    grid-template-columns: repeat(2,1fr);
    -moz-column-gap: 10px;
    column-gap: 10px;
    width: 95%;
    row-gap: 30px;
  }
}

@media screen and (max-width: 620px) {
  .lowmv__title-wrap{
    left: 7%;
  }
  .motorcycle{
    margin-top: 60px;
  }
  .motorcycle-wrap{
    flex-direction: column;
    margin-right: 0;
    width: 100%;
  }
  .motorcycle-wrap2{
    flex-direction: column;
    margin-left: 0;
    width: 100%;
  }
  .motorcycle-inner{
    width: 90%;
    margin-inline: auto;
  }
  .motorcycle__img {
    width: 90%;
    margin-inline: auto;
  }
  .motorcycle-cont {
    margin-left: 0;
    margin-top: 20px;
  }
  .motorcycle-cont2 {
    margin-right: 0;
  }
  .motorcycle-text {
    font-size: 14px;
  }
  .motorcycle-title {
    font-size: 20px;
  }
  .trikesidecar__name {
    font-size: 16px;
  }
  .trikesidecar__price {
    font-size: 13px;
    margin-top: 5px;
  }
}

@media screen and (max-width: 500px){
  .motorcycle {
    margin-top: 30px;
  }
  .lowmv__title-wrap{
    height: 80px;
  }
  .lowmv__title {
    font-size: 35px;
    height: 50px;
  }
}

@media screen and (max-width: 400px){
  .goobike__link {
    width: 300px;
  }
  .lowmv__lead {
    width: 80px;
  }
  .trikesidecar__name {
    font-size: 14px;
  }
  .trikesidecar__price {
    font-size: 12px;
  }
}

.spyderyoutube__img{
  width: 100%;
}

.spyder__youtube{
  height: 100%;
}

.service{
  margin-top: 18px;
}

.service__items{
  display: grid;
  max-width: 1150px;
  grid-template-columns: repeat(2,1fr);
  grid-template-rows: auto;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 70px;
  margin-inline: auto;
  color: #ffffff;
}

.service__title{
  font-size: 28px;
  font-weight: 700;
  margin-top: 24px;
}

.service__text{
  width: 80%;
  font-size: 16px;
  font-weight: 400;
  margin-top: 24px;
}

@media screen and (max-width: 1200px) {
  .service__items{
    width: 95%;
  }
}

@media screen and (max-width: 768px) {
  .service__text{
    width: 100%;
    font-size: 14px;
    margin-top: 20px;
  }
  .service__title{
    font-size: 20px;
  }
  .service__items {
    row-gap: 35px;
  }
}

@media screen and (max-width: 500px) {
  .service__items{
    display: block;
    width: 90%;
  }
  .service__item:not(:first-child){
    margin-top: 50px;
  }
  .service__text {
    font-size: 16px;
    margin-top: 12px;
  }
  .service__title {
    font-size: 23px;
    margin-top: 15px;
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  position: absolute;
  top:0;
  left:0;
  font-size: 16px;
  width: max-content;
}

/* showroom */
.showroommv{
  position: relative;
  background-image: url(../images/main_shop.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
  margin-top: 71px;
}

.showroommv__small{
  font-weight: 500;
  text-indent: 0;
  font-size: 2rem;
  font-family:'Hind', sans-serif;
}

.showroommv__title{
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
  font-family:'Hind', sans-serif;
}

.showroommv__title-wrap{
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  box-sizing: border-box;
  padding: 0 10%;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .showroommv{
    height: 400px;
  }
  .showroommv__title-wrap{
    top: 55%;
    left: 0;
  }
}

@media screen and (max-width: 500px) {
  .showroommv__small{
    font-size: 1.6rem;
  }
  
  .showroommv__title{
    font-size: 2.8rem;
    line-height: 1.2;
  }
  .showroommv{
    height: 300px;
  }
}

/* news */
.newsmv{
  position: relative;
  background-image: url(../images/mv-img1.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
  margin-top: 71px;
}

@media screen and (max-width: 768px) {
  .newsmv{
    height: 400px;
  }
}

@media screen and (max-width: 500px) {
  .newsmv{
    height: 300px;
  }
}

.singlenews__inner{
  width: 100%;
  max-width: 1000px;
  margin: 100px auto 150px;
  background-color: #fff;
  border: 1px solid #999;
}

.newsarchive__wrap{
  width: 100%;
  max-width: 1000px;
  margin: 100px auto 150px;
  background-color: #fff;
  border: 1px solid #999;
}

.singlenews__wrap{
  padding: 40px 20px;
}

.newsarchive__content{
  padding: 40px 20px;
  border-bottom: 1px solid #999;
}

.newsarchive__category{
  margin-top: 20px;
}

.newsarchive__link{
  display: flex;
  justify-content: space-between;
}

.newsarchive__left{
  width: 40%;
}

.newsarchive__right{
  width: 55%;
}

.news__title{
  font-size: 1.6rem;
  font-weight: 700;
}

.newstime-box{
  color: #999;
  margin-left: 5px;
}

.news__text-wrap{
  font-size: 14px;
  padding-bottom: 20px;
  margin-top: 20px;
  border-bottom: 1px solid #999;
}

.prevnext__botton{
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.news__img{
  width: 40%;
  margin-top: 30px;
}

.newsarchive__img{
  width: 100%;
}

.singlenews__flex{
  display: flex;
  margin-top: 10px;
  border-bottom: 1px solid #999;
  padding-bottom: 1px;
}

.newsarchive__text-wrap{
  margin-top: 20px;
}

.tag{
  margin-top: 20px;
}

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

@media screen and (max-width: 768px) {
  .news__title{
    font-size: 18px;
  }
  .singlenews__inner{
    margin: 40px auto;
  }
  .news__img{
    width: 60%;
  }
  .singlenews__wrap{
    padding: 20px 15px;
  }
  .newsarchive__content{
    padding: 20px 15px;
  }
  .newsarchive__category {
    margin-top: 10px;
  }
  .newsarchive__text-wrap {
    margin-top: 10px;
  }
}
@media screen and (max-width: 500px) {
  .news__img{
    width:100%;
  }
}

@media screen and (max-width: 400px) {
  .newsarchive__link {
    flex-direction: column;
  }
  .newsarchive__left {
    width: 100%;
  }
  .newsarchive__right {
    margin-top: 20px;
    width: 100%;
  }
}

/* gallery */
.gallery__inner{
  width: 100%;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-bottom: 100px;
}

.gallery__logo-wrap{
  display: grid;
  grid-template-columns: repeat(5,1fr);
  row-gap: 20px;
  column-gap: 20px;
}

@media screen and (max-width: 1200px) {
  .gallery__inner{
    width: 100%;
    max-width: 90%;
  }
}

@media screen and (max-width: 1000px) {
  .gallery__logo-wrap{
    grid-template-columns: repeat(4,1fr);
  }
}
@media screen and (max-width: 1000px) {
  .gallery__logo-wrap{
    grid-template-columns: repeat(4,1fr);
  }
}

@media screen and (max-width: 800px) {
  .gallery__logo-wrap{
    grid-template-columns: repeat(3,1fr);
  }
}

@media screen and (max-width: 600px) {
  .gallery__logo-wrap{
    grid-template-columns: repeat(2,1fr);
  }
}

/* 総合TOP */
.header__top {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 45px;
}

.header__top h1{
  font-size: 18px;
  font-weight: 400;
}

@media (max-width: 767px) {
  .header__top {
    height: 30px;
  }
}
.header__top a {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 20px;
  width: calc( 100% - 20px );
  height: 100%;
  display: flex;
  align-items: center;
  background-image: url(/images/top/logo.png);
  background-size: auto 18px;
  background-repeat: no-repeat;
  background-position: 0% 50%;
}
@media (max-width: 767px) {
  .header__top a {
    left: 10px;
  }
}

.header__top-sub{
  font-size: 14px;
  color: #000;
  margin-left: 40px;
}

@media screen and (max-width: 1300px) {
  .headertop__span2{
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .headertop__span1{
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .header__top-sub{
    display: none;
  }
}

.box {
  position: absolute;
  width: 100%;
  height: calc( 100% - 45px );
  top: 45px;
}
@media (max-width: 980px) {
  .box {
    margin-top: 45px;
    position: relative;
    height: auto;
    top: 0;
  }
}
@media (max-width: 767px) {
  .box {
    height: calc( 100% - 30px );
    margin-top: 30px;
  }
}
.box .more {
  width: 70%;
  margin: 3em 0 0 0;
  border: 1px solid #aaa;
  text-align: center;
  line-height: 2.8;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Oswald", "Arial", "Hiragino Kaku Gothic ProN", "Segoe UI", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  text-transform: uppercase;
}
.box .more span {
  position: relative;
  padding-right: 1.5em;
  color: #fefffe;
}
.box .more span:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border: 0 none;
  border-bottom: 2px solid #ddd;
  border-left: 2px solid #ddd;
  transform: translateX(-5px) rotate(-135deg);
  margin: -4px 0 0 0;
  transition: 0.3s transform;
}
.box--1 {
  width: 57.5%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.box--1 .col {
  height: 50%;
}

@media (max-width: 767px) {
.box--1 .col {
  height: 75%;
}
}

@media (max-width: 980px) {
  .box--1 {
    width: 100%;
    position: relative;
    height: 100vh;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  .box--1 {
    height: 200vh;
  }
}
.box--1 dl {
  width: 70%;
  max-width: 240px;
}
@media (max-width: 980px) {
  .box--1 dl {
    max-width: 200px;
  }
}
@media (max-width: 767px) {
  .box--1 dl {
    width: 85%;
  }
}
.box--2 {
  width: 42.5%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 980px) {
  .box--2 {
    width: 100%;
    position: relative;
    height: auto;
    padding-top: 100vh;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  .box--2 {
    padding-top: 200vh;
  }
}
.box--2 dl {
  width: 60%;
}
@media (max-width: 980px) {
  .box--2 dl {
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .box--2 dl {
    width: 80%;
  }
}
.box--2 dl dt {
  padding: 0 10%;
}
.box--2 .more {
  width: 50%;
  margin-top: 10em;
}
@media (max-width: 980px) {
  .box--2 .more {
    margin-top: 12.5em;
  }
}
@media (max-width: 767px) {
  .box--2 .more {
    margin-top: 7em;
  }
}
.box .col2 .col__box {
  margin-right: 0;
  width: 50%;
}
@media (max-width: 767px) {
  .box .col2 .col__box {
    margin-top: 0 !important;
      width: 100%!important;
  }
}
.box .title {
  text-transform: uppercase;
  line-height: 2.4;
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  font-weight: 500;
  font-size: 13px;
  font-family: "Oswald", "Arial", "Hiragino Kaku Gothic ProN", "Segoe UI", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
}
@media (max-width: 767px) {
  .box .title {
    font-size: 3.5vw;
  }
}
.box .box-bg {
  overflow: hidden;
}
.box .box-bg:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: 0.3s transform;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.box .box-bg:hover:before {
  transform: translate(-50%, -50%) scale(1.08);
}
.box .box-bg--1:before {
  background-image: url(../images/product-trike-sidecar_line1-img.png);
}
.box .box-bg--2:before {
  background-image: url(../images/indian.png);
}
.box .box-bg--3:before {
  background-image: url(../images/can-am.png);
}
.box .box-bg--4:before {
  background-image: url(../images/bubuzuke.png);
}
.box .box-bg--5:before {
  background-image: url(../images/bg-5.jpg);
}
.box a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.box a:hover .more span:after {
  transform: translateX(0) rotate(-135deg);
}
.box dl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  margin: -2em 0 0 0;
  padding: 0;
}
.box dt {
  margin: 0;
  padding: 0;
}
.box dt img {
  width: 100%;
}
.box dd {
  line-height: 1.6;
  margin: 1.5em auto 0 auto;
  padding: 0 0  5em 0;
  max-width: 500px;
  color: #fefffe;
  font-size: 15px;
}
@media (max-width: 1110px) {
  .box dd {
    font-size: 13px;
  }
}
@media (max-width: 980px) {
  .box dd {
    max-width: 100%;
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .box dd {
    margin-top: 1em;
    padding-bottom: 0;
  }
}
@media (max-width: 500px) {
  .box dd {
    margin-top: 2em;
  }
}

@media (max-width: 450px) {
  .box dd {
    font-size: 11px;
  }
}
.box .comingsoon {
  position: relative;
}
.box .comingsoon:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1;
  border-radius: 0;
}
.box .comingsoon:after {
  content: 'Coming Soon!';
  color: #ddd;
  font-weight: bold;
  font-size: 20px;
  text-shadow: #fff;
  text-align: center;
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .box .comingsoon:after {
    left: 50%;
    font-size: 5vw;
  }
}

.col {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.col__box {
  position: relative;
}

.col7 .col__box {
  width: calc( 14.25% - 17px );
  margin-right: 20px;
}
@media (max-width: 767px) {
  .col7 .col__box {
    width: 100%;
    margin-right: 0;
  }
}
.col7 .col__box:nth-child(7n) {
  width: calc( 14.5% - 18px );
  margin-right: 0;
}
@media (max-width: 767px) {
  .col7 .col__box:nth-child(7n) {
    width: 100%;
    margin-right: 0;
  }
}

.col5 .col__box {
  width: calc( 20% - 16px );
  margin-right: 20px;
}
@media (max-width: 767px) {
  .col5 .col__box {
    width: 100%;
    margin-right: 0;
  }
}
.col5 .col__box:nth-child(5n) {
  margin-right: 0;
}

.col4 .col__box {
  width: calc( 25% - 15px );
  margin-right: 20px;
}
@media (max-width: 767px) {
  .col4 .col__box {
    width: 100%;
    margin-right: 0;
  }
}
.col4 .col__box:nth-child(4n) {
  margin-right: 0;
}

.col3 .col__box {
  width: calc( 33.3% - 13px );
  margin-right: 20px;
}
@media (max-width: 767px) {
  .col3 .col__box {
    width: 100%;
    margin-right: 0;
  }
}
.col3 .col__box:nth-child(3n) {
  width: calc( 33.4% - 14px );
  margin-right: 0;
}
@media (max-width: 767px) {
  .col3 .col__box:nth-child(3n) {
    width: 100%;
    margin-right: 0;
  }
}

.col2 .col__box {
  width: calc( 50% - 15px );
  margin-right: 30px;
}
@media (max-width: 767px) {
  .col2 .col__box {
    width: 100%;
    margin-right: 0;
  }
}
.col2 .col__box:nth-child(2n) {
  margin-right: 0;
}

.col5 .col__box:nth-child(n+6),
.col4 .col__box:nth-child(n+5),
.col3 .col__box:nth-child(n+4),
.col2 .col__box:nth-child(n+3) {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .col5 .col__box:nth-child(n+2),
  .col4 .col__box:nth-child(n+2),
  .col3 .col__box:nth-child(n+2),
  .col2 .col__box:nth-child(n+2) {
    margin-top: 2em;
  }
}

/* 製品詳細 */
.single__main{
  padding: 80px 0;
}

.single__inner{
    width: 100%;
    height: auto;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.single-content{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.single__main .single__gallery{
  width: 49%;
}

.single__main .single__info{
  width: 49%;
  background:rgba(255,255,255,.8) ;
}

.single__ul{
  display: flex;
  flex-wrap: wrap;
}

.single__ul li{
  width: 24%;
  margin-right: 1%;
  margin-bottom: 10px;
}

.single__ul li:nth-child(5), .single__ul li:nth-child(9) {
  margin-right: 0;
}
.single__ul li:first-child{
  width: 100%;
}

.single__infoinner{
  padding: 40px;
}

.single__infoinner h3{
  font-size: 16px;
}

.shortline{
  width: 30%;
  height: 2px;
  margin-top: 20px;
  margin-bottom: 20px;
  background: #000;
}

.product__info-content{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.product__info-content h4{
  width: 20%;
  color: #666;
  font-style: italic;
  font-weight: normal;
  font-size: 15px;
  padding: 4px 7px;
}

.product__info-content p{
  width: 75%;
  color: #333;
  font-size: 15px;
  margin-bottom: 10px;
  text-align: left;
}

.product_text h4{
  color: #666;
  font-style: italic;
  margin-bottom: 10px;
  font-size: 15px;
  padding: 4px 7px;
}

.pnavi {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
}

.pnavi{
   margin:40px 0 0;
}
.nav-links{
   display:flex;
}
.pnavi .page-numbers{
   display:inline-block;
   margin-right:20px;
   padding:20px 25px;
   color:#333;
   border-radius:3px;
   box-shadow:0 3px 3px #999;
   background:#c4c4c4;
}
.pnavi .current{
   padding:20px 25px;
   background:#fff;
   color:#333;
}
.pnavi .prev,
.pnavi .next{
   background:transparent;
   box-shadow:none;
   color:#fff;
}
.pnavi .dots{
   background:transparent;
   box-shadow:none;
}

@media screen and (max-width: 1000px) {
  .product__info-content{
    flex-direction: column;
  }
  .product__info-content h4 {
    width: 100%;
  }
  .product__info-content p{
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .single-content {
    flex-direction: column;
  }
  .single__main .single__gallery{
    width: 100%;
  }
  
  .single__main .single__info{
    width: 100%;
    background:rgba(255,255,255,.8) ;
  }
  .product__info-content{
    flex-direction: row;
  }
  .product__info-content h4 {
    width: 30%;
  }
  .product__info-content p{
    width: 65%;
  }
  .shortline {
    width: 40%;
    margin-top: 15px;
    margin-bottom: 15px;
}
}


/* contact */
button, input, select, textarea {
  background-color: transparent;
  color: inherit;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
}
.contact{
  margin-top: 100px;
}
.contact__inner{
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  position: relative;
  color: #ffffff;
}

.contact-top {
  margin-bottom: 3.5em;
}

.formFlow {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  -moz-flex-flow: row nowrap;
  -o-flex-flow: row nowrap;
  flex-flow: row nowrap;
  align-items: stretch;
  align-content: stretch;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 3em;
  list-style: none;
}

.formFlow li:first-child {
  background: #ffffff;
  color: #0F0F0F;
}

.formFlow li {
  width: 30%;
  height: 60px;
  line-height: 60px;
  color: #fff;
  position: relative;
  box-sizing: border-box;
  background: #c4c4c4;
  text-align: center;
  position: relative;
}

.formFlowli::after {
  width: 13px;
  height: 19px;
  position: absolute;
  top: 50%;
  right: -2em;
  transform: translateY(-50%);
  content: "";
  background: url(../images/white-arrow.svg) no-repeat 0 0;
  background-size: cover;
}

.tel-num {
  margin-top: 2em;
}

.tel-num .num {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
}

.tel-num .num a {
  color: #ffffff;
}

.contact-middle {
  display: none;
  margin-bottom: 3.5em;
}

.mw_wp_form_input #contactform .row{
  color: #000;
}

.mw_wp_form_confirm #contactform .row{
  color: #ffffff;
}

#contactform .row {
  margin-bottom: 2em;
}

#contactform .ttl {
  color: #ffffff;
  margin-bottom: 0.5em;
}
.flex {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  -moz-flex-flow: row nowrap;
  -o-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  -ms-align-items: stretch;
  -moz-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  align-content: stretch;
  color: #ffffff;
}

#contactform .flex {
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}

#contactform .flex .item {
  width: 48%;
}

#contactform .sub {
  margin-bottom: 1em;
  font-size: 1rem;
  padding: 0.5em 1em;
  background: #c1bebe;
  color: #000;
}

span.req {
  display: inline-block;
  margin-left: 8px;
  color: red;
  font-size: 1rem;
}

#contactform input[type=text], #contactform input[type=password], #contactform input[type=email], #contactform input[type=url], #contactform input[type=tel], #contactform input[type=number], #contactform input[type=range], #contactform input[type=date], #contactform textarea, #contactform input.text {
  background: #fff;
  border: 1px solid #e3e3e3;
  color: inherit;
  padding: 12px 15px;
  display: block;
  font-size: 16px !important;
  margin: 10px 0 10px;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  outline: none !important;
}

#contactform .selection-box {
  display: block;
  position: relative;
  background-color: #fff;
  color: #000;
  background-position: center right;
  background-repeat: no-repeat;
  border: 1px solid #e3e3e3;
  cursor: pointer;
  display: block;
  height: 50px;
  margin: 10px 0;
  padding: 0 10px;
  outline: none;
  text-indent: 0.01px;
  text-overflow: "";
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

#contactform .selection-box::before, #contactform .selection-box::after {
  content: "";
  pointer-events: none;
  position: absolute;
}

#contactform .selection-box::before {
  z-index: 1;
  right: 20px;
  top: 3px;
  bottom: 0;
  height: 0;
  margin: auto;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid rgba(0, 0, 0, 0.2);
}

#contactform .selection-box select {
  background: #fff;
  display: block;
  padding: 10px 10px;
  width: 100%;
  box-sizing: border-box;
  border: none;
}

#contactform .selection-box::after {
  width: 48px;
  height: 47px;
  right: 0px;
  top: 1px;
  border-left: 1px solid #e3e3e3;
  background: #fff;
}
.mwform-checkbox-field {
  line-height: 1;
  display: inline-block;
  padding: 5px 10px;
  border: #d0d0d0 3px solid;
  box-sizing: border-box;
  min-width: 250px;
  margin-top: 1em;
  margin-right: 10px;
  background: #fff;
}

#contactform .btns {
  text-align: center;
}

#contactform input[type=submit] {
  display: inline-block;
  padding: 15px 3em;
  font-size: 1rem;
  background: #fff;
  color: #4F4F53;
  cursor: pointer;
}

.mw_wp_form_input .flex{
  color: #000;
}

.mw_wp_form_confirm .flex{
  color: #ffffff;
}

.mwform-checkbox-field span {
  font-size: 1rem;
  color: #000;
}

.mw_wp_form_confirm .formFlow li:first-child {
  background: #d4d4d4;
  color: #ffffff;
}

.mw_wp_form_confirm .formFlow li:nth-child(2) {
  background: #ffffff;
  color: #0F0F0F;
}

.form_input{
  color: #ffffff;
}

#contactform.border .row {
  padding-bottom: 2em;
  border-bottom: #ddd 1px dashed;
}

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

@media screen and (max-width: 768px) {
  .formFlowli::after {
    width: 9px;
    height: 13px;
    right: -1.1em;
  }
}

@media screen and (max-width: 550px) {
  .formFlow li{
    height: 40px;
    line-height: 40px;
  }
  #contactform .flex {
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    -o-flex-flow: row wrap;
    flex-flow: row wrap;
    flex-direction: column;
  }

  #contactform .flex .item {
    width: 100%;
  }
  #contactform .sub {
    margin-bottom: 0.5em;
  }
  .tel-num .num {
    font-size: 2rem;
  }
}

@media screen and (max-width: 400px) {
  .showroommv__title {
    font-size: 2.5rem;
  }
  #contactform .sub {
    font-size: 14px;
  }
  .formFlowli::after {
    width: 6px;
    height: 10px;
    right: -0.7em;
  }
}

/* footer */
.footer{
  position: relative;
  background-color: #313131;
  padding-top: 80px;
  padding-bottom: 32px;
}
.footer__inner{
  display: flex;
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
  justify-content: space-between;
}

.footer__logo{
  width: 104px;
}

.footer__address{
  text-align: left;
  margin-top: 32px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: #ffffff;
}

.footer__navi{
  width: 264px;
  margin-top: 9px;
}

.footer__items{
  display: flex;
  flex-flow: row wrap;
}

.footer__item{
  width: 50%;
}

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

.footer__link{
  font-size: 14px;
  font-family:'Hind', sans-serif;
  font-weight: 700;
  color: #ffffff;
}

.footer__tel{
  display: flex;
  align-items: center;
  color: #ffffff;
}
.footer__number{
  font-size: 32px;
  font-family:'Hind', sans-serif;
  font-weight: 700;
}

.footer__tel-logo{
  width: 24px;
  height: 24px;
  margin-right: 12px;
}


.footer__contactlink{
  position: relative;
  width: 250px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border:2px solid #ffffff;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  font-family:'Hind', sans-serif;
  padding-left: 24px;
  padding-right: 89px;
  margin-top: 32px;
}

.footer__contactlink::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 16px;
  background: url(../images/contact_img.png) no-repeat;
  background-size: contain;

}

.footer__copyright{
  margin-top: 70px;
  font-size: 14px;
  font-weight: 700;
  color: #A8A8A8;
  margin-right: auto;
  margin-left: auto;
  display: block;
  text-align: center;
}

.footer__dealer{
  margin-top: 0;
}

.footer__snslist{
  margin-top: 130px;
}

@media screen and (max-width: 1200px) {
  .footer__inner{
    width: 95%;
  }
}
@media screen and (max-width: 900px) {
  .footer__inner{
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .footer__logo{
    margin-inline: auto;
  }
  .footer__address{
    text-align: center;
  }
  .footer__navi{
    margin-inline: auto;
    margin-top: 40px;
  }
  .footer__contact{
    text-align: center;
    margin-top: 40px;
  }
  .footer__tel{
    justify-content: center;
  }
  .footer__contactlink{
    margin-inline: auto;
  }
}

/* 共通 */
.section__title-wrap{
  text-align: center;
  color: #ffffff;
}

.section__title-left{
  text-align: left;
}

.section__title{
  font-size: 56px;
  font-weight: 700;
  font-family:'Hind', sans-serif;
}

.section__title-sub{
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .section__title{
    font-size: 40px;
  }
  
  .section__title-sub{
    font-size: 15px;
  }
  .footer__snslist {
    margin-top: 100px;
  }
}

.xll-show {
  display: none;
}
@media screen and (max-width: 1400px) {
  .xll-show {
    display: block;
  }
}

.xl2-show {
  display: none;
}
@media screen and (max-width: 1300px) {
  .xl2-show {
    display: block;
  }
}

@media screen and (max-width: 1250px){
  .xll-show{
    display: none;
  }
}



.xl2-show {
  display: none;
}

@media screen and (max-width: 1200px) {
  .xl2-show {
    display: block;
  }
  .xl2-none {
    display: none;
  }
}


.xl-show {
  display: none;
}

@media screen and (max-width: 1150px) {
  .xl-show {
    display: block;
  }
}

@media screen and (max-width: 1150px) {
  .xl-none {
    display: none;
  }
}
.lg-show {
  display: none;
}

@media screen and (max-width: 1020px) {
  .lg-show {
    display: block;
  }
}

@media screen and (max-width: 1020px) {
  .lg-none {
    display: none;
  }
}
.md2-show {
  display: none;
}
@media screen and (max-width: 900px) {
  .md2-show {
    display: block;
  }
  .md2-none{
    display: none;
  }
}
.md1-show {
  display: none;
}
@media screen and (max-width: 800px) {
  .md1-show {
    display: block;
  }
}

.md-show {
  display: none;
}

@media screen and (max-width: 768px) {
  .md-show {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .md-none {
    display: none;
  }
}

.md0-show {
  display: none;
}
@media screen and (max-width: 750px) {
  .md0-show {
    display: block;
  }
}

@media screen and (max-width: 650px) {
  .sp2-none {
    display: none;
  }
}

.sp1-show {
  display: none;
}
@media screen and (max-width: 550px) {
  .sp1-show {
    display: block;
  }
}
.sp0-show {
  display: none;
}
@media screen and (max-width: 450px) {
  .sp0-show {
    display: block;
  }
}

@media screen and (max-width: 550px) {
  .sp1-none {
    display: none;
  }
}

@media screen and (max-width: 375px) {
  .sp-none {
    display: none;
  }
}

.about__breadcrumb {
  position: absolute;
  top: 90px;
  left: 40px;
  color: #fff;
  font-size: 16px;
  z-index: 10;
}

.about__breadcrumb a{
  color: #fff;
  text-decoration: none;
}

.about__breadcrumb .post-page{
  text-decoration: none;

}


.breadcrumb__between {
  display: inline-block;
  width: 12px;
  height: 2px;
  margin: 0 8px;
  background-color: #fff;
}



@media screen and (max-width: 768px) {
  .about__breadcrumb {
    top: 80px;
    left: 15px;
    font-size: 14px;
  }
  .breadcrumb {
    font-size: 14px;
  }
}
@media screen and (max-width: 500px) {
  .about__breadcrumb {
    display: none;
  }
}