@charset "UTF-8";
@-ms-viewport {
  width: device-width;
}
/*--------------------------------------------------------------------------
CSS　ROCKY MOUNTAIN(style.css) 2023.10.~
--------------------------------------------------------------------------*/
/*■■■■■■ 基本設定 ■■■■■■■*/
/*■■■■■■ 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: #cf102d;
  -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;
  }
}
/*■■■■■■ 主要タグ設定 ■■■■■■■*/
a:link {
  color: #cf102d;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

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

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

/*■■■■■■ 汎用設定 ■■■■■■■*/
.bg-main {
  background-color: rgb(208.5384615385, 215.6153846154, 229.4615384615);
}

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

.bg-dark {
  background: url(../images/common/bg-img_logo_l.png) right 16px center no-repeat #262626;
  background-size: 300px;
  color: #fff;
}

.head-cate-img-box {
  margin: 0 0 30px;
  width: 100%;
  height: 0;
  padding: 0 0 30%;
}

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

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

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

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

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

.text-ti-s {
  font-size: 1.4rem;
  font-weight: 600;
}

.link-arrow-s {
  padding: 0 0 0 15px;
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  position: relative;
  text-decoration-line: underline;
}

a.link-arrow-s:link, a.link-arrow-s:visited {
  color: #222;
}

a.link-arrow-s:hover, a.link-arrow-s:active {
  color: #666;
}

.link-arrow-s:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  left: 0;
  top: 8px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  border-style: solid;
  border-color: #666;
  border-width: 1px 1px 0 0;
}

.chilup-youtube {
  width: 100%;
  aspect-ratio: 16/9;
}

.chilup-youtube iframe {
  width: 100%;
  height: 100%;
}

/*COMING SOON バイクイメージ関連*/
.b-none {
  display: none;
  /*公開したら
  display:block;
  */
}

.coming-soon {
  display: block;
  /*公開したら
  display:none;
  */
}

.link-none {
  pointer-events: none;
  display: block;
}

/*-----パンくず-----*/
.breadcrumb-block {
  margin: 0;
  padding: 122px 0 0 0;
  width: 100%;
  display: block;
  /*border-top:solid 1px rgba(0,0,0,0.2);*/
  font-family: "Rubik", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
}

.breadcrumb {
  margin: 0;
  padding: 0;
}
.breadcrumb li {
  display: inline-block;
  padding: 10px 8px;
  position: reverse;
}
.breadcrumb li a:link, .breadcrumb li a:visited {
  color: #222;
}
.breadcrumb li a:hover, .breadcrumb li a:active {
  color: #cf102d;
}
.breadcrumb li:after {
  content: ">";
  margin-left: 8px;
}
.breadcrumb li:last-child:after {
  content: "";
}
.breadcrumb li:last-child {
  font-weight: 600;
}

/*----------------------------------
■■■■■過去サイトアラート■■■■■
----------------------------------*/
/* model year alert */
@-webkit-keyframes alertFadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes alertFadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@-webkit-keyframes alertFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes alertFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
#model-year-alert {
  visibility: hidden;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 1050;
}

#model-year-alert.active {
  -webkit-animation: alertFadein 0.5s ease-in-out 1 forwards;
          animation: alertFadein 0.5s ease-in-out 1 forwards;
}

#model-year-alert.active.close {
  visibility: visible;
  -webkit-animation: alertFadeOut 0.5s ease-in-out 1 forwards;
          animation: alertFadeOut 0.5s ease-in-out 1 forwards;
}

#model-year-alert .model-year-item {
  width: 600px;
  height: 260px;
  margin: auto;
  padding: 40px;
  text-align: center;
  background: rgba(0, 0, 0, 0);
  color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -ms-flex;
  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;
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  #model-year-alert .model-year-item {
    width: 90%;
    height: 73.3333333333vw;
    padding: 2.6666666667vw;
  }
}
#model-year-alert .model-year-item .header {
  font-size: 16px;
  font-weight: bold;
}

.model-year-item .header span {
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  #model-year-alert .model-year-item .header {
    font-size: 3.7333333332vw;
  }
}
#model-year-alert .model-year-item .select-area {
  width: 100%;
  margin: 20px auto 0;
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

#model-year-alert .model-year-item .select-area button {
  width: 100%;
  border: none;
  border-radius: 6px;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  #model-year-alert .model-year-item .select-area button {
    font-size: 3.1999999999vw;
  }
}
#model-year-alert .model-year-item .select-area button.ok-button {
  background: #cf102d;
  color: #fff;
  padding: 14px 16px;
  margin-bottom: 20px;
}

#model-year-alert .model-year-item .select-area button.cancel-button {
  background: #FFF;
  color: #545454;
  padding: 14px 16px;
}

/*■■■■■■ CONTENTS MAIN ■■■■■■■*/
/*■■■■■■ INDEX TOP page ■■■■■■■*/
.btn-box {
  margin: 0 0 20px;
}
.btn-box a {
  margin: 0;
  padding: 0 0 66.666%;
  display: block;
  width: 100%;
  height: 0;
  position: relative;
}
.btn-box a strong {
  position: absolute;
  width: 100%;
  text-align: center;
  font-size: 3rem;
  color: #FFF;
  font-family: "Rubik", sans-serif;
  line-height: 1;
  bottom: 50%;
  margin-bottom: -1rem;
}
.btn-box a p {
  position: absolute;
  width: 100%;
  text-align: center;
  font-size: 1.4rem;
  color: #FFF;
  line-height: 1;
  bottom: 45%;
  margin-bottom: -2rem;
}
.btn-box a:link, .btn-box a:visited {
  background: rgba(2, 2, 2, 0.2);
}
.btn-box a:hover, .btn-box a:active {
  background: rgba(2, 2, 2, 0);
}

/*■■■■■■ 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 詳細----*/
.bike-description-block {
  margin: 20px 0;
  padding: 20px 0;
}

.text-bike-name {
  margin: 20px 0;
  font-size: 3.8rem;
  line-height: 1.2;
  font-family: "Rubik", sans-serif;
  font-weight: 600;
}

.text-bike-size {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
}
.text-bike-size span {
  font-weight: 300;
  display: inline-block;
}
.text-bike-size span b {
  padding: 0;
  margin: 0 5px;
  padding: 2px 4px;
  font-weight: 500;
}

.text-bike-price {
  margin: 6px 0 20px 0;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
}
.text-bike-price span {
  margin-left: 4px;
  font-size: 1.4rem;
}

.text-description {
  margin: 20px 0 20px 0;
  font-size: 1.6rem;
  font-weight: 300;
}

/*---common---*/
.ti-dot-m {
  margin: 5px 0;
  padding: 10px 0 10px 50px;
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 600;
  font-family: "Rubik", sans-serif;
  background: url("../images/common/rocky_mountain_logo.png") left top 10px no-repeat;
  background-size: 40px;
}
.ti-dot-m span {
  margin: 5px 0;
  font-size: 1.6rem;
  display: block;
}

/*---SPEC---*/
.spec {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 20px;
}
.spec tr {
  position: relative;
}
.spec tr::before {
  content: "";
  position: absolute;
  left: 0;
  top: -10px;
  display: block;
  width: 100%;
  height: 0;
  border-top: solid 1px rgba(0, 0, 0, 0.2);
}
.spec th {
  padding: 10px 20px;
  min-width: 20%;
  vertical-align: middle;
  background-color: #EFEFEF;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  text-align: center;
}
.spec td {
  padding: 10px 20px;
  vertical-align: middle;
  font-weight: 400;
  font-size: 1.5rem;
}

.spec tr:last-child {
  position: relative;
}

.spec tr:last-child::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  display: block;
  width: 100%;
  height: 0;
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
}

/*------RIDE-4/6　アイコン------*/
.ride-no-box {
  margin: 20px 0;
}
.ride-no-box img {
  width: 120px;
  height: auto;
}

/*---geometory---*/
.geo-block {
  margin: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.geo-img, .geo-num {
  padding: 0 16px;
  width: 50%;
}

.geo-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.geo-img img {
  width: 100%;
  height: auto;
}

.geo {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.geo th, .geo td {
  padding: 10px 15px;
}
.geo th {
  background-color: #EFEFEF;
  text-align: center;
  font-size: 1.4rem;
  border-top: 5px solid #fff;
  border-bottom: 5px solid #fff;
}
.geo td {
  text-align: center;
  border-right: solid 1px rgba(0, 0, 0, 0.2);
}
.geo td span {
  font-size: 1.4rem;
  font-weight: 400;
  display: inline-block;
}

.geo tr:first-child th {
  background-color: #FFF;
  border-top: 0;
  border-bottom: 0;
}

.geo tr:first-child th {
  border-right: solid 1px rgba(0, 0, 0, 0.2);
}

.geo tr:first-child td {
  font-weight: 600;
}

/*■SWIPER　詳細用■*/
.bg-color-detail {
  margin: -20px 0 0 0;
  padding: 20px;
  background: rgb(245, 245, 245);
  background-color: #262626;
}

.swiper-container {
  margin-inline: auto;
  width: 100%;
  position: relative;
  text-align: center;
}

.swiper .swiper-slide {
  margin: 0;
  height: auto;
}

/* ページネーションと矢印を横並びに */
.swiper-control {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px; /* 矢印とページネーションの間隔 */
  margin-top: 20px;
  height: 48px;
}

.swiper-pagination-bullet {
  width: 9px; /* ドットの横幅 */
  height: 9px; /* ドットの縦幅 */
}

/* ページネーション（中央寄せ） */
.swiper-pagination {
  position: static !important; /* Swiperのabsolute指定を打ち消す */
  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;
  gap: 6px;
}

/* 既存の矢印デザインをそのまま使う */
.swiper-button-next1,
.swiper-button-prev1 {
  margin: auto;
  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;
  width: 48px;
  min-width: 48px;
  height: 48px;
  border-radius: 24px;
  position: static; /* ? 絶対位置を解除 */
  -webkit-transform: none;
      -ms-transform: none;
          transform: none; /* ? Y方向移動を解除 */
}

/* Swiperデフォルト矢印非表示（既にOKですが念のため） */
.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

.swiper-button-prev1:after,
.swiper-button-next1:after {
  display: none;
}

.swiper-button-next1.swiper-button-disabled, .swiper-button-prev1.swiper-button-disabled {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

/* 次ページボタンのスタイル */
.swiper-button-next1, .swiper-button-prev1 {
  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-next1:before {
  content: "";
  margin-right: 7px;
  display: block;
  width: 14px;
  height: 14px;
  border-width: 4px 4px 0 0;
  border-color: #FFF;
  border-style: solid;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* 前ページボタンのスタイル */
.swiper-button-prev1:before {
  content: "";
  margin-left: 7px;
  display: block;
  width: 14px;
  height: 14px;
  border-width: 0 0 4px 4px;
  border-color: #FFF;
  border-style: solid;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*カテゴリー別ボタンとページネーションカラー*/
.swiper-button-next1,
.swiper-button-prev1 {
  background-color: #cf102d;
}

.swiper-pagination1 .swiper-pagination-bullet-active {
  background-color: #cf102d;
}

/*■■■■■■2025 ALL BIKES ■■■■■■■*/
.bike-list-box {
  margin: 10px 0 20px;
  text-align: center;
  font-family: "Rubik", sans-serif;
}
.bike-list-box a:hover img {
  opacity: 0.8;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.bike-list-box p {
  font-weight: 900;
  font-size: 1.8rem;
  text-transform: capitalize;
}
.bike-list-box p span {
  margin: 0 10px;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 400;
}

.ti-bike-cate {
  margin: 30px 0 10px;
  padding: 5px 15px 3px;
  font-family: "Rubik", sans-serif;
  color: #cf102d;
  text-align: center;
  font-size: 3.6rem;
  line-height: 1.2;
  font-weight: 300;
}
.ti-bike-cate span {
  font-weight: 600;
  color: #000;
}
.ti-bike-cate span:before {
  content: "/";
  font-weight: 300;
}

p.text-bike-price-s {
  margin: 0;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
}

/*■■■■■■ BIKE CATEGOLY ■■■■■■■*/
/*bg-bike*/
.head-bike-img-box {
  margin: 0;
  width: 100%;
  padding: 0 0 56%;
  padding: 0;
  height: 100vh;
  position: relative;
}
.head-bike-img-box h1 {
  font-family: "Rubik", sans-serif;
  font-size: 6rem;
  line-height: 1.2;
  font-weight: 600;
  color: #FFF;
  position: absolute;
  bottom: 40px;
  left: 30px;
}
.head-bike-img-box h1 small {
  display: block;
  font-size: 2.4rem;
  font-weight: 300;
}
.head-bike-img-box .breadcrumb-block {
  color: #FFF;
}
.head-bike-img-box .breadcrumb-block a:link, .head-bike-img-box .breadcrumb-block a:visited {
  color: #FFF;
}
.head-bike-img-box .breadcrumb-block a:hover, .head-bike-img-box .breadcrumb-block a:active {
  color: #cf102d;
}

.bg-slayer {
  display: block;
  background: url(../images/bg-slayer.jpg) center center no-repeat;
  background-size: cover;
}

.bg-altitude {
  display: block;
  background: url(../images/bg-altitude.jpg) center center no-repeat;
  background-size: cover;
}

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

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

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

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

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

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

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

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

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

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

.bike-cate-description-box {
  padding: 40px 0 60px;
  background-color: #262626;
  color: #FFF;
}
.bike-cate-description-box h1 {
  font-family: "Rubik", sans-serif;
  font-size: 3.6rem;
  font-weight: 900;
}
.bike-cate-description-box {
  font-weight: 300;
}

.bike-s-box {
  margin: 10px 0 20px;
  padding: 10px 10px 10px;
  background: rgb(229, 229, 229);
  border-radius: 3px;
}

/*===============================
■■　スマホ用　■■
===============================*/
/*------------(XS)------------*/
@media (min-width: 320px) and (max-width: 566px) {
  /*■COMMON(XS)■*/
  .head-cate-img-box {
    margin: 0 0 30px;
    width: 100%;
    height: 0;
    padding: 0 0 65%;
  }
  .bg-dark {
    background: url(../images/common/bg-img_logo_l.png) top 16px center no-repeat #262626;
    background-size: 300px;
    color: #fff;
  }
  /*-----パンくず-----*/
  .breadcrumb-block {
    padding: 92px 0 0 0;
  }
  .breadcrumb li {
    padding: 10px 8px 0 10px;
  }
  /*■PRODUCT(XS)■*/
  .text-bike-name {
    font-size: 2.8rem;
  }
  /*specifications*/
  .spec th, .spec td {
    display: block;
    width: 100%;
  }
  /*---geometory---*/
  .geo {
    width: 100%;
  }
  .geo th, .geo td {
    padding: 10px 5px;
  }
  .geo th {
    font-size: 1.2rem;
  }
  .geo td {
    vertical-align: middle;
    font-size: 1.4rem;
  }
  .geo-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
  .geo-img, .geo-num {
    padding: 0 16px;
    width: 100%;
  }
  /*■SWIPER　詳細用 (XS)■*/
  .bg-color-detail {
    padding: 20px;
    background: rgb(245, 245, 245);
    background-color: #262626;
  }
  .swiper-container {
    margin: auto;
    width: 100%;
    position: relative;
    text-align: center;
  }
  .swiper .swiper-slide {
    margin: 0;
    height: auto;
  }
  /* ページネーションと矢印を横並びに */
  .swiper-control {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px; /* 矢印とページネーションの間隔 */
    margin-top: 20px;
    height: auto;
  }
  .swiper-pagination-bullet {
    width: 6px; /* ドットの横幅 */
    height: 6px; /* ドットの縦幅 */
  }
  /* ページネーション（中央寄せ） */
  .swiper-pagination {
    position: static !important; /* Swiperのabsolute指定を打ち消す */
    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;
    gap: 1px;
  }
  /* 既存の矢印デザインをそのまま使う */
  .swiper-button-next1,
  .swiper-button-prev1 {
    margin: auto;
    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;
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 24px;
    position: static; /* ? 絶対位置を解除 */
    -webkit-transform: none;
        -ms-transform: none;
            transform: none; /* ? Y方向移動を解除 */
  }
  /* Swiperデフォルト矢印非表示（既にOKですが念のため） */
  .swiper-button-prev1:after,
  .swiper-button-next1:after {
    display: none;
  }
  /* 次ページボタンのスタイル */
  .swiper-button-next1, .swiper-button-prev1 {
    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-next1:before {
    content: "";
    margin-right: 6px;
    display: block;
    width: 12px;
    height: 12px;
    border-width: 4px 4px 0 0;
    border-color: #FFF;
    border-style: solid;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  /* 前ページボタンのスタイル */
  .swiper-button-prev1:before {
    content: "";
    margin-left: 6px;
    display: block;
    width: 12px;
    height: 12px;
    border-width: 0 0 4px 4px;
    border-color: #FFF;
    border-style: solid;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  /*■2025 ALL BIKES(XS)■*/
  .ti-bike-cate {
    font-size: 2rem;
  }
  /*■BIKE CATEGORY(XS)■*/
  .head-bike-img-box {
    margin: 0;
    width: 100%;
    padding: 0 0 100%;
    height: 0;
  }
  .head-bike-img-box h1 {
    font-size: 4rem;
    bottom: 10px;
    left: 20px;
  }
  .bike-cate-description-box h1 {
    font-size: 2.8rem;
    font-weight: 500;
  }
  .bike-cate-description-box P {
    font-size: 1.4rem;
    font-weight: 300;
  }
}
/*------------(SM)------------*/
@media (min-width: 567px) {
  /*■COMMON(SM)■*/
  .head-cate-img-box {
    margin: 0 0 30px;
    width: 100%;
    height: 0;
    padding: 0 0 50%;
  }
  .head-bike-img-box {
    margin: 0;
    width: 100%;
    padding: 0 0 56%;
  }
  .bg-dark {
    background: url(../images/common/bg-img_logo_l.png) right 16px center no-repeat #262626;
    background-size: 300px;
    color: #fff;
  }
  /*■2023 ALL BIKES(SM)■*/
  .ti-bike-cate {
    font-size: 2.8rem;
  }
  /*■PRODUCT(SM)■*/
  .text-bike-name {
    font-size: 3.8rem;
  }
  /*specifications*/
  .spec th, .spec td {
    display: table-cell;
    width: auto;
  }
  /*---geometory---*/
  .geo th, .geo td {
    padding: 10px 10px;
  }
  .geo th {
    font-size: 1.4rem;
  }
  .geo td {
    vertical-align: middle;
    font-size: 1.6rem;
  }
}
/*------------(MD)------------*/
@media (min-width: 768px) {
  .head-bike-img-box {
    margin: 0;
    width: 100%;
    padding: 0 0 46%;
  }
  .head-bike-img-box h1 {
    font-size: 6rem;
    font-weight: 600;
    bottom: 40px;
    left: 30px;
  }
  /*■BIKE CATEGORY(MD)■*/
  .bike-cate-description-box h1 {
    font-size: 3.8rem;
    font-weight: 500;
  }
  .bike-cate-description-box P {
    font-size: 1.6rem;
    font-weight: 300;
  }
}
/*------------(LG)------------*/
@media (min-width: 1024px) {
  /*■PRODUCT■*/
  /*---geometory---*/
  .geo-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .geo-img, .geo-num {
    padding: 0 16px;
    width: 50%;
  }
}
/*------------(XL)------------*/