@charset "UTF-8";
@-ms-viewport {
  width: device-width;
}
/*--------------------------------------------------------------------------
CSS　カスタム設定(style.css) 2024.10.12
--------------------------------------------------------------------------*/
/*■■■■■■ 基本設定 ■■■■■■■*/
/*■■■■■■ loading ■■■■■■■*/
#loading {
  width: 100vw;
  height: 100vh;
  -webkit-transition: all 1s;
  transition: all 1s;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  top: 0;
  left: 0;
  z-index: 9999;
}
#loading img {
  margin: auto;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

.loading-box {
  margin: auto;
  width: 200px;
  text-align: center;
}

.flashing {
  font-size: 1.5rem;
  color: #565656;
}

.animation-box {
  margin-top: 10px;
  width: 400px;
  height: 4px;
  background: #ec6833;
  -webkit-animation-name: loadbar-animation;
          animation-name: loadbar-animation;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes loadbar-animation {
  from {
    width: 0;
  }
  to {
    width: 200px;
  }
}

@keyframes loadbar-animation {
  from {
    width: 0;
  }
  to {
    width: 200px;
  }
}
/*■■■■■■ fadein ■■■■■■■*/
.fade-in {
  opacity: 0;
  -webkit-transition-duration: 1000ms;
          transition-duration: 1000ms;
}

.fade-in-up {
  -webkit-transform: translate(0, 60px);
      -ms-transform: translate(0, 60px);
          transform: translate(0, 60px);
}

.fade-in-down {
  -webkit-transform: translate(0, -60px);
      -ms-transform: translate(0, -60px);
          transform: translate(0, -60px);
}

.fade-in-left {
  -webkit-transform: translate(-60px, 0);
      -ms-transform: translate(-60px, 0);
          transform: translate(-60px, 0);
}

.fade-in-right {
  -webkit-transform: translate(60px, 0);
      -ms-transform: translate(60px, 0);
          transform: translate(60px, 0);
}

.scroll-in {
  opacity: 1;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}

/*■■■■■■ 主要タグ設定 ■■■■■■■*/
a:link {
  color: #ec6833;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

a:visited {
  color: #ffccdd;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

a:hover, a:active {
  color: #ff0000;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

/*■■■■■■ 汎用設定 ■■■■■■■*/
.bg-main {
  background-color: #fc4c02;
}

.bg-sub {
  background-color: #ff0000;
}

.f-nega-margin {
  margin-bottom: -60px;
}

/*■■■■■■ CONTENTS MAIN ■■■■■■■*/
.youtube-block {
  margin: 0;
  padding: 56.25% 0 0 0;
  background-color: #000;
  width: 100%;
  height: 0;
  position: relative;
}
.youtube-block iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*■■■■■■ TOP ■■■■■■■*/
.top-read-block {
  padding: 30px 0 40px;
  text-align: center;
  color: #FFF;
}

.ti-top {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 3.6rem;
}

.top-bu-box {
  padding: 0;
}

.top-menu-btn {
  padding: 460px 0 0 0;
  display: block;
  position: relative;
  width: 100%;
  height: 0;
  border: 1px solid #fff;
}
.top-menu-btn span {
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%); /* 中央揃えのために上に半分移動 */
  left: 30px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 4rem;
}
.top-menu-btn span small {
  display: block;
  width: 100px;
  font-size: 1.4rem;
  padding: 2px 10px;
  border: 1px solid #FFF;
  font-weight: 400;
}

a.top-menu-btn:link span, a.top-menu-btn:visited span, a.top-menu-btn:hover span, a.top-menu-btn:active span {
  color: #FFF;
}

a.top-menu-btn:link, a.top-menu-btn:visited {
  background: rgba(0, 0, 0, 0.2);
}

a.top-menu-btn:hover, a.top-menu-btn:active {
  background: rgba(0, 0, 0, 0.4);
}

/*----------------------------------
■■■■■パンくずリスト■■■■■
----------------------------------*/
.breadcrumb {
  margin: 5px;
  display: block;
}
.breadcrumb li {
  padding: 0 14px 0 10px;
  display: inline-block;
  font-size: 1.4rem;
  position: relative;
}
.breadcrumb li.active {
  font-size: 1.2rem;
  color: #000;
  font-weight: 900;
}
.breadcrumb li a:after {
  margin-top: 5px;
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-width: 1px 1px 0 0;
  border-color: #000;
  border-style: solid;
  position: absolute;
  right: 0;
  top: 5px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 30;
}

.breadcrumb li a:link,
.breadcrumb li a:visited,
.breadcrumb li a:hover,
.breadcrumb li a:active {
  font-family: "Poppins", sans-serif;
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

.head-img-box {
  margin: 0;
  padding: 26% 0 0 0;
}

.contents-block {
  margin: 40px 0;
}

/*-----<background>-----*/
.bu-road {
  background: url("../images/dropbar_gravel.jpg") top center no-repeat;
  background-size: cover;
}

.bu-mountain {
  background: url("../images/mtb.jpg") center center no-repeat;
  background-size: cover;
}

.bu-urban {
  background: url("../images/urban.jpg") center center no-repeat;
  background-size: cover;
}

.bu-ebike {
  background: url("../images/electric.jpg") center center no-repeat;
  background-size: cover;
}

.bu-kids {
  background: url("../images/kids.jpg") top center no-repeat;
  background-size: cover;
}

.bu-about {
  background: url("../images/homeabout.jpg") center center no-repeat;
  background-size: cover;
}

.bu-tech {
  background: url("../images/hometech.jpg") top center no-repeat;
  background-size: cover;
}

.bu-dealers {
  background: url("../images/homedealers.jpg") bottom center no-repeat;
  background-size: cover;
}

.bu-support {
  background: url("../images/homesupport.jpg") center center no-repeat;
  background-size: cover;
}

.bg-process {
  background: url("../images/platform_process.jpg") left center no-repeat;
  background-size: cover;
}

.bg-operator {
  background: url("../images/platform_operator.jpg") right top no-repeat;
  background-size: cover;
}

.bg-heihei {
  background: url("../images/platform_hei_hei.jpg") center top no-repeat;
  background-size: cover;
}

.bg-honzo {
  background: url("../images/platform_honzo.jpg") left bottom no-repeat;
  background-size: cover;
}

.bg-big-honzo {
  background: url("../images/platform_big_honzo.jpg") left bottom no-repeat;
  background-size: cover;
}

.bg-mtbht {
  background: url("../images/platform_mtb_hardtail.jpg") right top no-repeat;
  background-size: cover;
}

.bg-fat {
  background: url("../images/platform_fatbike.jpg") right top no-repeat;
  background-size: cover;
}

.bg-adventure {
  background: url("../images/platform_rove.jpg") right center no-repeat;
  background-size: cover;
}

.bg-jake {
  background: url("../images/platform_jake.jpg") center top no-repeat;
  background-size: cover;
}

.bg-libre {
  background: url("../images/platform_libre.jpg") right top no-repeat;
  background-size: cover;
}

.bg-rove {
  background: url("../images/platform_rove.jpg") right top no-repeat;
  background-size: cover;
}

.bg-city {
  background: url("../images/platform_urban.jpg") center center no-repeat;
  background-size: cover;
}

.bg-dj {
  background: url("../images/platform_dirtjump_pumptrack.jpg") center center no-repeat;
  background-size: cover;
}

.bg-kids {
  background: url("../images/platform_kids.jpg") center top no-repeat;
  background-size: cover;
}

.bg-ebike {
  background: url("../images/bg-img-electric.jpg") center center no-repeat;
  background-size: cover;
}

.bg-about {
  background: url("../images/bg-about.jpg") center center no-repeat;
  background-size: cover;
}

.bg-bikes {
  background: url("../images/bg-bikes.jpg?20241023") center center no-repeat;
  background-size: cover;
}

.bg-technology {
  background: url("../images/bg-technology.jpg") center center no-repeat;
  background-size: cover;
}

/*■■■■■■ 2025 ALL BIKES ■■■■■■■*/
.ti-cate {
  margin: 0 0 5px;
  font-size: 3rem;
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.ti-sub-cate {
  padding: 10px 15px;
  margin: 20px 0 5px;
  font-size: 2rem;
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  background-color: #e1e3e5;
}

.bike-list {
  margin: 10px 0;
}
.bike-list strong, .bike-list span {
  font-family: "Poppins", sans-serif;
  display: block;
  text-align: center;
}
.bike-list strong {
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
}
.bike-list span {
  font-size: 1.4rem;
  font-weight: 400;
  color: #000;
}
.bike-list a {
  display: block;
  margin: 0;
  padding: 65.4% 0 0 0;
  width: 100%;
  height: 0;
  position: relative;
}
.bike-list a:link img, .bike-list a:visited img {
  margin: 2% auto auto 2%;
  position: absolute;
  top: 0;
  left: 0;
  width: 96%;
  height: auto;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.bike-list a:hover img, .bike-list a:active img {
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

/*■■■■■■ PRODUCTS ■■■■■■■*/
/*---SWIPER---*/
.swiper-container {
  margin: 20px 0;
  width: 100%;
  text-align: center;
}
.swiper-container.slider {
  height: auto;
}
.swiper-container.slider-thumbnail {
  margin: 20px 0;
  height: auto;
}
.swiper-container.slider-thumbnail .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.swiper-container.slider-thumbnail .swiper-wrapper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.5;
  overflow: hidden;
}
.swiper-container.slider-thumbnail .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

.bike-color {
  font-family: "Rubik", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
}

.swiper-button-next {
  right: 0;
  left: auto;
}

.swiper-button-prev {
  right: auto;
  left: 0;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 40%;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.swiper-button-next img, .swiper-button-prev img {
  opacity: 0.6;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.swiper-button-next img:hover, .swiper-button-prev img:hover {
  opacity: 0.9;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

:root {
  --swiper-theme-color: #AAA;
}

/*---lightbox---*/
.lightbox__nav--next {
  right: 10px;
  background-image: url("../images/common/arrow-next.png");
  background-size: cover;
}

.lightbox__nav--prev {
  right: 10px;
  background-image: url("../images/common/arrow-prev.png");
  background-size: cover;
}

.lightbox__close {
  right: 10px;
  top: 10px;
  background-image: url("../images/common/close.png");
  background-size: cover;
}

/*バイク名・価格・説明文*/
.bike-product-box {
  margin: 20px 0;
}
.bike-product-box h1 {
  margin: 0 0 5px;
  font-size: 3rem;
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
.bike-product-box p {
  margin-top: 20px;
  padding: 20px 0 0 0;
  border-top: 1px solid #CCC;
}

.text-price {
  font-size: 1.4rem;
}

.text-price strong {
  font-size: 2rem;
}

/*テックアイコン*/
.tech-icon {
  margin: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.tech-icon li {
  margin: 0 5px;
}
.tech-icon li img {
  width: 50px;
  height: auto;
}

/*スペック*/
.spec-block {
  margin: 40px 0;
  padding: 40px 0;
  background-color: #EFEFEF;
}
.spec-block h2 {
  margin: 0 0 20px;
  font-size: 3rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-align: center;
}
.spec-block h3 {
  margin: 0 0 5px;
  font-size: 1.8rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  text-align: left;
}

.spec {
  margin: 0 0 20px;
  width: 100%;
}

.spec tr th {
  padding: 5px 10px;
  border-right: 2px solid #EFEFEF;
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
}

.spec tr td {
  padding: 5px 10px;
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
}

.spec tr:nth-child(odd) th, .spec tr:nth-child(odd) td,
.geo tr:nth-child(odd) th, .geo tr:nth-child(odd) td {
  background-color: #e1e3e5;
}

/*-----<geo>-----*/
.geo {
  margin: 0 0 20px;
  width: 100%;
}

.geo tr th {
  padding: 5px 10px;
  border-right: 2px solid #EFEFEF;
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
}

.geo tr td {
  padding: 5px 10px;
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  border-right: 2px solid #EFEFEF;
  text-align: center;
}

ol.geo-reg {
  margin: 20px auto 30px;
  width: auto;
  list-style-type: none;
  display: table;
}

ol.geo-reg li {
  width: 50%;
  display: block;
  text-align: left;
  float: left;
  font-size: 1.4rem;
  font-family: "Poppins", sans-serif;
}

ol.geo-reg li span {
  display: inline-block;
  width: 1.7em;
  height: 1.7em;
  line-height: 1.7em;
  margin: 4px 10px;
  background-color: #ec6833;
  text-align: center;
  border-radius: 50%;
  color: #FFF;
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
}

/*-----<size>-----*/
.sizing-block {
  margin: 0 0 40px;
}
.sizing-block h4 {
  margin: 0 0 20px;
  font-size: 3rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-align: center;
}

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

.sizing tr th {
  padding: 5px 10px;
  border-right: 1px solid #FFF;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  background-color: #222;
  color: #FFF;
}

.sizing tr td {
  padding: 5px 10px;
  border-right: 1px solid #FFF;
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
}

.sizing tr:nth-child(odd) td {
  background-color: #CCC;
}

.sizing tr:nth-child(even) td {
  background-color: #EFEFEF;
}

/*FEATURES*/
.features-block {
  margin: 0 0 40px;
}
.features-block h5 {
  margin: 0 0 20px;
  font-size: 3rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-align: center;
}

.material-box {
  margin: 0 0 30px;
  padding: 20px;
  border-top: 1px solid #ccc;
}
.material-box img {
  width: 60px;
}
.material-box strong {
  margin: 10px 0 0;
  display: block;
  font-size: 1.8rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
.material-box small {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 400;
  display: block;
}

.scroll {
  overflow: auto;
  white-space: nowrap;
}

.scroll::-webkit-scrollbar {
  height: 5px;
}

.scroll::-webkit-scrollbar-track {
  background: #F1F1F1;
}

.scroll::-webkit-scrollbar-thumb {
  background: #BCBCBC;
}

/*■■■■■■バイクカテゴリー別一覧■■■■■■■*/
.head-ca-img-box {
  width: 100%;
  height: 460px;
  overflow: hidden;
  position: relative;
}
.head-ca-img-box img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 80%;
  left: 0;
  -webkit-transform: translateY(-60%);
      -ms-transform: translateY(-60%);
          transform: translateY(-60%); /* 中央揃えのために上に半分移動 */
}
.head-ca-img-box .head-ca-title {
  position: absolute;
  font-size: 3.4rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #FFF;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%); /* 中央揃えのために上に半分移動 */
  left: 20px;
}

/*------タブメニュー------*/
.tab-menu-block {
  background-color: #000;
}

ul.tab-list {
  list-style-type: none;
}

.tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: space-btween;
      -ms-flex-pack: space-btween;
          justify-content: space-btween;
}

.tab-list-item a {
  padding: 10px 20px;
  display: block;
  text-align: center;
  background-color: #000;
  color: #FFF;
  cursor: pointer;
}

.tab-list-item.active a {
  display: block;
  background-color: #333;
  color: #ec6833;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.tab-contents {
  display: block;
  width: 100%;
}

.tab-contents-item {
  display: none;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.tab-contents-item.show {
  display: block;
  width: 100%;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

/*■■■■■■■■■■■■■*/
/*===============================
■■　スマホ用　■■
===============================*/
/*------------(XS)------------*/
@media (min-width: 320px) and (max-width: 566px) {
  .breadcrumb li {
    font-size: 1.2rem;
  }
  .breadcrumb li.active {
    font-size: 1rem;
  }
  .breadcrumb li a:after {
    margin-top: 3px;
  }
  ol.geo-reg li {
    width: 50%;
  }
  /*■■■■■■バイクカテゴリー別一覧(XS)■■■■■■■*/
  .head-ca-img-box {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
  }
  .head-ca-img-box img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 60%;
    left: 0;
  }
  .head-ca-img-box .head-ca-title {
    position: absolute;
    font-size: 3.4rem;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: #FFF;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); /* 中央揃えのために上に半分移動 */
    left: 20px;
  }
} /*xs*/
/*------------(SM)------------*/
@media (min-width: 567px) and (max-width: 767px) {
  /*■■■■■■バイクカテゴリー別一覧(SM)■■■■■■■*/
  .head-ca-img-box {
    width: 100%;
    height: 260px;
    overflow: hidden;
    position: relative;
  }
  .head-ca-img-box img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 60%;
    left: 0;
  }
  .head-ca-img-box .head-ca-title {
    position: absolute;
    font-size: 3.4rem;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: #FFF;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); /* 中央揃えのために上に半分移動 */
    left: 20px;
  }
} /*SM*/
/*------------(MD)------------*/
@media (min-width: 768px) and (max-width: 1023px) {
  /*■■■■■■バイクカテゴリー別一覧(SM)■■■■■■■*/
  .head-ca-img-box {
    width: 100%;
    height: 360px;
    overflow: hidden;
    position: relative;
  }
  .head-ca-img-box img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 60%;
    left: 0;
  }
  .head-ca-img-box .head-ca-title {
    position: absolute;
    font-size: 3.4rem;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: #FFF;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); /* 中央揃えのために上に半分移動 */
    left: 20px;
  }
}
/*------------(LG)------------*/
/*------------(XL)------------*/