@charset "UTF-8";

:root {
  /* =========================
     Typography
  ========================= */
  --font-family-en: "Josefin Sans", sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --font-weight-black: 900;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background-color: #3E3A39;
  background-image:
    linear-gradient(to right, #231815 1px, transparent 1px),
    linear-gradient(to bottom, #231815 1px, transparent 1px);
  background-size: 130px 130px;
  background-position: center top;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "MS Ｐゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (width <=767px) {
  body {
    background-size: 85px 85px;
  }

  body:has(.side-fixed) {
    padding-bottom: 57px;
  }
}

img {
  width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

iframe {
  width: 100%;
  height: 100%;
}

.br-sp {
  display: none;
}

.br-pc {
  display: inline;
}

@media (width <=767px) {
  .br-sp {
    display: inline;
  }

  .br-pc {
    display: none;
  }
}

.no-results {
  font-size: 1.6rem;
  text-align: center;
}

@media (width <=767px) {
  .wrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100dvh;
  }
}

@media (width <=767px) {
  .scroll-area {
    flex-grow: 1;
    overflow-y: auto;
  }
}

/* ========================================
   Layout
======================================== */
.l-container {
  width: 1012px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

@media (width <=767px) {
  .l-container {
    width: 100%;
  }
}

/* ========================================
   Fixed Side Buttons
======================================== */
.side-fixed {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

@media (width <=767px) {
  .side-fixed {
    display: grid;
    gap: 0;
    width: 100%;
    top: auto;
    bottom: 0;
    transform: none;
  }

  .side-fixed.col2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .side-fixed.col3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .side-fixed.col4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.side-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  width: 47px;
  height: 217px;
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
  transition: .2s;
}

@media (width <=767px) {
  .side-btn {
    width: 100%;
    height: 57px;
    writing-mode: initial;
    font-size: 1.6rem;
    line-height: 1.3;
    text-align: center;
  }

  .side-fixed.col4 .side-btn {
    font-size: 1.4rem;
  }
}

.side-btn:hover {
  opacity: .8;
}

.side-btn--orange {
  background: linear-gradient(#f49d27 0%, #b96b00 100%);
}

.side-btn--blue {
  background: linear-gradient(#3e80b9 0%, #406a90 100%);
}

.side-btn--green {
  background: linear-gradient(#18a805 0%, #176e07 100%);
}

.side-btn--purple {
  background: linear-gradient(#843caa 0%, #482d52 100%);
}

.side-btn--h150 {
  height: 150px;
}

@media (width <=767px) {
  .side-btn--h150 {
    height: 57px;
  }
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 8px 25px 0 30px;
  z-index: 100;
}

@media (width <=767px) {
  .header {
    align-items: center;
    height: 72px;
    flex-shrink: 0;
    padding: 0 24px;
    position: static;
  }
}

.header-left {
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.catchphrase {
  position: relative;
  padding: 16px 0 0 40px;
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  color: #fff;
}

@media (width <=767px) {
  .catchphrase {
    padding: 12px 0 0 35px;
    font-size: 1.5rem;
  }
}

.catchphrase .highlight {
  position: absolute;
  top: 0;
  left: 0;
  margin-right: 2px;
  font-size: 3.2rem;
}

@media (width <=767px) {
  .catchphrase .highlight {
    top: -2px;
    font-size: 2.7rem;
  }
}

.highlight.is-active {
  animation: bound-anim .8s infinite;
}

@keyframes bound-anim {

  0%,
  100% {
    top: 0;
    transform: scale(1);
  }

  30% {
    top: -15%;
    transform: scale(0.96, 1.04);
  }

  60% {
    transform: scale(1);
  }

  90% {
    top: 0;
    transform: scale(1.1, 0.9);
  }
}

.header-logo {
  max-width: 268px;
  line-height: 1;
}

@media (width <=767px) {
  .header-logo {
    max-width: 230px;
  }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 15px;
}

.tel-button {
  display: inline-block;
  background: linear-gradient(#d63c17 0%, #ff8d72 100%);
  padding: 10px 15px 12px;
  border-radius: 8px;
  font-size: 2.8rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
  color: #fff;
  transition: .2s;
  z-index: 1;
}

@media (width <=767px) {
  .tel-button {
    padding: 10px 15px 12px;
    position: absolute;
    bottom: 15px;
    left: 24px;
    font-size: 1.9rem;
  }
}

@media (width <=767px) {
  .tel-button-pc {
    display: none;
  }
}

.tel-button:hover {
  opacity: .8;
}

.tel-label {
  margin-right: 5px;
  position: relative;
  top: -4px;
  font-size: 1.6rem;
}

@media (width <=767px) {
  .tel-label {
    margin-right: 3px;
    top: -2px;
    font-size: 1.2rem;
  }
}

/* menu button */
.menu-button {
  cursor: pointer;
  z-index: 1001;
  background: transparent;
  border: 0;
  padding: 0;
  appearance: none;
}

.menu-icon {
  position: relative;
  width: 40px;
  height: 32px;
  display: block;
}

@media (width <=767px) {
  .menu-icon {
    width: 43px;
    height: 34px;
  }
}

.menu-icon span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 4px;
  background: #fff;
  transform-origin: center;
  transition:
    transform 0.35s ease,
    opacity 0.25s ease,
    top 0.35s ease,
    background 0.35s ease;
}

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

.menu-icon span:nth-child(2) {
  top: 13px;
}

.menu-icon span:nth-child(3) {
  top: 26px;
}

/* 開いた時：ばつ印 */
.menu-button.is-open .menu-icon span:nth-child(1) {
  top: 13px;
  transform: rotate(45deg);
}

.menu-button.is-open .menu-icon span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open .menu-icon span:nth-child(3) {
  top: 13px;
  transform: rotate(-45deg);
}

/* =========================
   global menu
========================= */
.global-menu {
  position: fixed;
  inset: 0;
  background: #080808;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

@media (width <=767px) {
  .global-menu {
    padding-top: 72px;
  }
}

.global-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.global-menu__inner {
  min-height: 100vh;
}

.global-menu-sp {
  display: none;
}

@media (width <=767px) {
  .global-menu-pc {
    display: none;
  }

  .global-menu-sp {
    display: block;
  }
}

.global-menu__main {
  width: 900px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (width <=767px) {
  .global-menu__main {
    width: 100%;
    max-height: calc(100dvh - 165px);
    padding: 30px 24px 10px;
    position: static;
    transform: none;
    overflow-y: scroll;
  }
}

.global-menu__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 55px 98px;
  list-style: none;
}

@media (width <=767px) {
  .global-menu__grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}

.global-menu__item {
  position: relative;
}

.global-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 272px;
  margin-left: auto;
  position: relative;
  color: #fff;
  transition: .2s;
}

@media (width <=767px) {
  .global-menu__link {
    width: 100%;
  }
}

.global-menu__link:hover {
  opacity: 0.6;
}

.global-menu__link::after {
  content: "";
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(../img/arrow-menu.svg) no-repeat;
  background-size: contain;
  border-radius: 50%;
}

@media (width <=767px) {
  .global-menu__link::after {
    width: 28px;
    height: 28px;
  }
}

.global-menu__link::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

@media (width <=767px) {
  .global-menu__link::before {
    position: static;
    transform: none;
    margin-inline: auto;
  }
}

.global-menu__link.menu-motorcycle::before {
  width: 120px;
  height: 65px;
  left: -129px;
  background: url(../img/item/motorcycle.png) no-repeat;
  background-size: contain;
}

@media (width <=767px) {
  .global-menu__link.menu-motorcycle::before {
    width: 30%;
    height: auto;
    aspect-ratio: 120 / 65;
  }
}

.global-menu__link.menu-parts::before {
  width: 133px;
  height: 41px;
  left: -153px;
  background: url(../img/item/parts.png) no-repeat;
  background-size: contain;
}

@media (width <=767px) {
  .global-menu__link.menu-parts::before {
    width: 29%;
    height: auto;
    aspect-ratio: 133 / 41;
  }
}

.global-menu__link.menu-snowblower::before {
  width: 94px;
  height: 88px;
  left: -116px;
  background: url(../img/item/snowblower.png) no-repeat;
  background-size: contain;
}

@media (width <=767px) {
  .global-menu__link.menu-snowblower::before {
    width: 20%;
    height: auto;
    aspect-ratio: 94 / 88;
  }
}

.global-menu__link.menu-ridinggear::before {
  width: 73px;
  height: 87px;
  left: -107px;
  background: url(../img/item/ridinggear.png) no-repeat;
  background-size: contain;
}

@media (width <=767px) {
  .global-menu__link.menu-ridinggear::before {
    width: 14%;
    height: auto;
    aspect-ratio: 73 / 87;
  }
}

.global-menu__link.menu-storage::before {
  width: 90px;
  height: 67px;
  left: -114px;
  background: url(../img/item/storage2.png) no-repeat;
  background-size: contain;
}

@media (width <=767px) {
  .global-menu__link.menu-storage::before {
    width: 20%;
    height: auto;
    aspect-ratio: 90 / 67;
  }
}

.global-menu__link.menu-ridingpark::before {
  width: 86px;
  height: 93px;
  left: -120px;
  background: url(../img/item/ridingpark.png) no-repeat;
  background-size: contain;
}

@media (width <=767px) {
  .global-menu__link.menu-ridingpark::before {
    width: 16%;
    height: auto;
    aspect-ratio: 86 / 93;
  }
}

.global-menu__link.menu-maintenance::before {
  width: 83px;
  height: 86px;
  left: -116px;
  background: url(../img/item/maintenance.png) no-repeat;
  background-size: contain;
}

@media (width <=767px) {
  .global-menu__link.menu-maintenance::before {
    width: 18%;
    height: auto;
    aspect-ratio: 83 / 86;
  }
}

.global-menu__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (width <=767px) {
  .global-menu__text {
    width: 65%;
    padding-right: 50px;
  }
}

.global-menu__en {
  margin-bottom: -10px;
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
}

@media (width <=767px) {
  .global-menu__en {
    font-size: 1.2rem;
  }
}

.global-menu__jp {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
}

@media (width <=767px) {
  .global-menu__jp {
    font-size: 1.5rem;
  }
}

.global-menu__other {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 72px;
}

.global-menu__other-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 0 20px 0 24px;
  background: #fff;
  transition: .2s;
}

@media (width <=767px) {
  .global-menu__other-link {
    gap: 26px;
  }
}

.global-menu__other-link:hover {
  opacity: 0.8;
}

.global-menu__other-link::before {
  content: "";
  width: 70px;
  height: 52px;
  background: url(../img/front/car-image.png) no-repeat;
  background-size: contain;
}

.global-menu__other-link::after {
  content: "";
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: url(../img/arrow-circle-black.svg) no-repeat;
  background-size: contain;
}

@media (width <=767px) {
  .global-menu__other-link::after {
    width: 28px;
    height: 28px;
  }
}

.global-menu__other-info p {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: #3E3A39;
}

@media (width <=767px) {
  .global-menu__other-info p {
    font-size: 1.5rem;
  }
}

.global-menu__follow {
  position: absolute;
  bottom: 30px;
  right: 38px;
}

@media (width <=767px) {
  .global-menu__follow {
    bottom: 20px;
    right: 24px;
  }
}

.global-menu__follow .follow-text {
  margin-bottom: 6px;
  writing-mode: initial;
  font-size: 1.6rem;
}

@media (width <=767px) {
  .global-menu__follow .follow-text {
    font-size: 1.4rem;
  }
}

.global-menu__follow .social-icon {
  display: inline-block;
  margin-right: 16px;
  font-size: 1.6rem;
  vertical-align: middle;
}

@media (width <=767px) {
  .global-menu__follow .social-icon {
    margin-right: 12px;
    font-size: 1.3rem;
  }
}

.global-menu__follow .social-icon:last-child {
  margin-right: 0;
}

.global-menu__follow .icon-youtube {
  width: 27px;
}

.global-menu__follow .icon-instagram {
  width: 23px;
}

.global-menu__follow .icon-map {
  display: inline-block;
  width: 22px;
  position: relative;
  top: 2px;
}

@media (width <=767px) {
  .global-menu__follow .icon-map {
    width: 18px;
  }
}

.global-menu__follow .icon-map+span {
  margin-left: 8px;
  position: relative;
  top: -6px;
}

@media (width <=767px) {
  .global-menu__follow .icon-map+span {
    margin-left: 4px;
  }
}

body.is-menu-open {
  overflow: hidden;
}

/* Main Visual */
.main-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  min-height: calc(100svh - 100px);
  position: relative;
  padding-inline: 20px;
}

@media (width <=767px) {
  body.home {
    padding-bottom: 20px;
  }

  .main-visual {
    align-items: flex-start;
    min-height: 100vh;
    min-height: 100dvh;
  }
}

.main-visual__stage {
  position: relative;
  width: min(92vw, calc((100svh - 100px) * 1.58));
  max-width: 1600px;
  max-height: calc(100svh - 120px);
  aspect-ratio: 16 / 10;
}

@media (width <=767px) {
  .main-visual__stage {
    width: 100%;
    max-height: 100%;
    height: 100%;
    aspect-ratio: 7 / 10.5;
  }
}

/* Center Title */
.center-title {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
}

@media (width <=767px) {
  .center-title {
    width: 40.7%;
    top: 54%;
  }
}

.main-visual-title {
  margin: 0;
}

.main-visual-title img {
  display: block;
  width: 100%;
  height: auto;
}

/* Floating Items */
.floating-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s, opacity 0.3s;
  z-index: 5;
  transform-origin: center center;
}

.item-img {
  display: block;
  width: 100%;
  height: auto;
}

/* name */
.item-name {
  position: relative;
  display: inline-grid;
  line-height: 1;
  white-space: nowrap;
}

.item-name img {
  grid-area: 1 / 1;
  display: block;
  width: auto;
  max-width: inherit;
  height: 97%;
  transition: opacity .15s ease;
}

@media (width <=767px) {
  .item-name img {
    height: 100%;
  }
}

.item-name picture:nth-of-type(2) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
}

.item-name .hover {
  opacity: 0;
}

.floating-item:hover .item-name .hover,
.floating-item.is-active .item-name .hover {
  opacity: 1;
}

.floating-item:hover .item-name .default,
.floating-item.is-active .item-name .default {
  opacity: 0;
}

.item-balloon {
  opacity: 0;
  position: absolute;
  transition: .2s;
}

.floating-item:hover .item-balloon,
.floating-item.is-active .item-balloon {
  opacity: 1;
}

/* ===== Position & Size ===== */
.item-parts {
  top: 10%;
  left: 14%;
  width: 33%;
  align-items: flex-start;
}

@media (width <=767px) {
  .item-parts {
    top: 0%;
    left: -1%;
    width: 64.7%;
    flex-direction: column-reverse;
  }
}

.item-parts .item-name {
  margin: 0 0 4% 27%;
}

@media (width <=767px) {
  .item-parts .item-name {
    margin: -9% 0 4% 0;
  }
}

.item-parts:hover .item-img,
.floating-item.is-active.item-parts .item-img {
  transform: rotate(-6deg);
}

.item-parts .item-balloon {
  width: 32.5%;
  right: -15%;
  top: -15%;
}

@media (width <=767px) {
  .item-parts .item-balloon {
    width: 46.2%;
    right: 2%;
    top: 33%;
    z-index: 1;
  }
}

.item-motorcycle {
  top: 6%;
  right: 9%;
  width: 37%;
  align-items: flex-end;
}

@media (width <=767px) {
  .item-motorcycle {
    top: 7%;
    right: -4%;
    width: 65.6%;
  }
}

.item-motorcycle .item-name {
  margin-top: -37%;
  margin-right: -28%;
}

@media (width <=767px) {
  .item-motorcycle .item-name {
    margin-top: -2%;
    margin-right: 2%;
  }
}

.item-motorcycle:hover .item-img,
.floating-item.is-active.item-motorcycle .item-img {
  transform: rotate(-5deg);
}

.item-motorcycle .item-balloon {
  width: 29%;
  right: -29%;
  top: 117%;
}

@media (width <=767px) {
  .item-motorcycle .item-balloon {
    width: 48%;
    right: 4%;
    top: -22%;
    z-index: 1;
  }
}

.item-gear {
  top: 34%;
  left: 8%;
  width: 17.5%;
  align-items: flex-start;
}

@media (width <=767px) {
  .item-gear {
    width: 31%;
    top: 22%;
    left: 2%;
    align-items: flex-end;
    flex-direction: column-reverse;
    z-index: 10;
  }
}

.item-gear .item-name {
  margin: 0 0 -22% -74%;
}

@media (width <=767px) {
  .item-gear .item-name {
    margin: -2% 0 0 0;
  }
}

.item-gear:hover .item-img,
.floating-item.is-active.item-gear .item-img {
  transform: rotate(11deg);
}

.item-gear .item-balloon {
  width: 61%;
  left: -75%;
  top: 17%;
}

@media (width <=767px) {
  .item-gear .item-balloon {
    width: 96%;
    left: 20%;
    top: -24%;
    z-index: 1;
  }
}

.item-maintenance {
  bottom: 4%;
  left: 7%;
  width: 23%;
  align-items: flex-start;
  z-index: 10;
}

@media (width <=767px) {
  .item-maintenance {
    width: 39.5%;
    bottom: -8%;
    left: 4%;
    align-items: flex-end;
    flex-direction: column-reverse;
  }
}

.item-maintenance .item-name {
  margin: 0 0 -79% -52%;
}

@media (width <=767px) {
  .item-maintenance .item-name {
    margin: 5% -5% 0 0;
  }
}

.item-maintenance .item-img.hover {
  display: none;
}

.floating-item.item-maintenance:hover .item-img.hover,
.floating-item.is-active.item-maintenance .item-img.hover {
  display: block !important;
}

.item-maintenance:hover .item-img.default,
.floating-item.is-active.item-maintenance .item-img.default {
  display: none !important;
}

.item-maintenance .item-balloon {
  width: 46.5%;
  left: -54%;
  top: -119%;
}

@media (width <=767px) {
  .item-maintenance .item-balloon {
    width: 72%;
    left: -10%;
    top: 55%;
  }
}

.item-ridingpark {
  bottom: 5%;
  left: 33%;
  width: 14%;
  align-items: center;
  z-index: 10;
}

@media (width <=767px) {
  .item-ridingpark {
    width: 24.3%;
    bottom: 26%;
    left: 2%;
  }
}

.item-ridingpark .item-name {
  margin: 12% -10% 0 0;
}

@media (width <=767px) {
  .item-ridingpark .item-name {
    margin: 12% 0 0 -16%;
  }
}

.item-ridingpark:hover .item-img,
.floating-item.is-active.item-ridingpark .item-img {
  transform: rotate(11deg);
}

@media (width <=767px) {

  .item-ridingpark:hover .item-img,
  .floating-item.is-active.item-ridingpark .item-img {
    transform: rotate(-10deg);
  }
}

.item-ridingpark .item-balloon {
  width: 76.5%;
  left: -15%;
  top: -44%;
}

@media (width <=767px) {
  .item-ridingpark .item-balloon {
    width: 118%;
    left: 56%;
    top: -10%;
    z-index: 1;
  }
}

.item-snowblower {
  bottom: 3%;
  right: 19%;
  width: 21%;
  align-items: flex-start;
  z-index: 10;
}

@media (width <=767px) {
  .item-snowblower {
    width: 40.6%;
    bottom: -4%;
    right: 5%;
    align-items: center;
    flex-direction: column-reverse;
  }
}

.item-snowblower .item-name {
  margin: 0 0 -44% -39%;
}

@media (width <=767px) {
  .item-snowblower .item-name {
    margin: 5% -15% 0 0;
  }
}

.item-snowblower:hover .item-img,
.floating-item.is-active.item-snowblower .item-img {
  transform: rotate(-10deg);
}

.item-snowblower .item-balloon {
  width: 51%;
  right: -57%;
  top: -20%;
}

@media (width <=767px) {
  .item-snowblower .item-balloon {
    width: 64.5%;
    right: -11%;
    top: -8%;
    z-index: 1;
  }
}

.item-storage {
  top: 44%;
  right: 9%;
  width: 16%;
  align-items: flex-end;
}

@media (width <=767px) {
  .item-storage {
    width: 31%;
    top: 46%;
    right: 2%;
    z-index: 10;
  }
}

.item-storage .item-name {
  margin: -23% -68% 0 0;
}

@media (width <=767px) {
  .item-storage .item-name {
    margin: 10% 4% 0 0;
  }
}

.item-storage:hover .item-img,
.floating-item.is-active.item-storage .item-img {
  transform: rotate(8deg);
}

.item-storage .item-balloon {
  width: 67%;
  right: -84%;
  top: 30%;
}

@media (width <=767px) {
  .item-storage .item-balloon {
    width: 80%;
    right: -13%;
    top: -38%;
  }
}

/* Social Sidebar */
.social-sidebar {
  position: fixed;
  right: 22px;
  bottom: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

@media (width <=767px) {
  .social-sidebar {
    display: none;
  }
}

.follow-text {
  writing-mode: vertical-rl;
  font-size: 1.4rem;
  color: #fff;
}

.social-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.2rem;
  color: #fff;
  transition: .2s;
}

.social-icon:hover {
  opacity: .7;
}

.icon-youtube {
  width: 17px;
  height: auto;
}

.icon-instagram {
  width: 14px;
  height: auto;
}

.icon-map {
  width: 13px;
  height: auto;
}

/* Bottom Banner */
.bottom-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  min-width: 1380px;
  width: 100%;
  height: 88px;
  display: flex;
  background: rgba(255 255 255 / 25%);
  z-index: 10;
}

@media (width <=767px) {
  .bottom-banner {
    flex-wrap: wrap;
    min-width: auto;
    height: auto;
  }
}

/* ===== 営業日カレンダー ===== */
.bc-wrapper {
  position: relative;
  display: inline-flex;
  cursor: pointer;
  user-select: none;
}

@media (width <=767px) {
  .bc-wrapper {
    display: flex;
    width: 40%;
    height: 48px;
  }
}

/* カレンダースライダーの基本設定 */
.bc-slider {
  width: 100%;
  min-width: 260px;
}

.bc-slider-nav {
  display: flex;
  justify-content: space-between;
}

.bc-nav-btn {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 4px 12px;
  font-size: 12px;
  cursor: pointer;
  border-radius: 4px;
  transition: opacity 0.2s;
  color: #080808;
}

.bc-nav-btn:hover {
  background-color: #f5f5f5;
}

.bc-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.bc-slider-track-wrap {
  overflow: hidden;
  width: 100%;
}

.bc-slider-track {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.bc-slide {
  width: 100%;
  flex-shrink: 0;
}

.banner-business-day.closed {
  background: #999;
  color: #fff;
}

.bc-popup {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 10px;
  background: #fff;
  border-radius: 8px;
  padding: 12px;
  z-index: 9999;
  width: 300px;
}

@media (hover: hover) {
  .bc-wrapper:hover .bc-popup {
    display: block;
  }
}

.bc-popup.is-open {
  display: block;
}

.cal-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 4px;
  font-size: 1.4rem;
  color: #080808;
}

.cal-table th,
.cal-table td {
  text-align: center;
  padding: 6px 4px;
}

.cal-table thead tr:first-child th {
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  padding-bottom: 8px;
}

.cal-table td.open {
  background: linear-gradient(#f49d27 0%, #b96b00 100%);
  border-radius: 2px;
  font-weight: var(--font-weight-bold);
  color: #fff;
}

.cal-table td.closed {
  background: #999;
  border-radius: 2px;
  color: #fff;
}

.banner-business-day {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 138px;
  background: linear-gradient(#f49d27 0%, #b96b00 100%);
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  color: #fff;
  text-align: center;
}

@media (width <=767px) {
  .banner-business-day {
    width: 35%;
    height: 100%;
    font-size: 1.1rem;
    line-height: 1.4;
  }
}

.banner-date {
  width: 172px;
  background: #fff;
  font-weight: var(--font-weight-bold);
  line-height: 1;
  text-align: center;
}

@media (width <=767px) {
  .banner-date {
    width: 65%;
    height: 100%;
  }
}

.date-day {
  padding-top: 4px;
  font-size: 5.1rem;
  color: #080808;
}

@media (width <=767px) {
  .date-day {
    padding-top: 11px;
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    text-align: center;
  }
}

.date-day span {
  position: relative;
  font-size: 6.2rem;
}

@media (width <=767px) {
  .date-day span {
    font-size: 2.5rem;
  }
}

span.date-week {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.4rem;
  white-space: nowrap;
}

@media (width <=767px) {
  span.date-week {
    position: static;
    margin-left: 2px;
    transform: none;
    font-size: 1rem;
  }
}

.banner-news {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 22px 0 40px;
  position: relative;
  color: #fff;
}

@media (width <=767px) {
  .banner-news {
    width: 100%;
    gap: 20px;
    height: 60px;
    padding: 0 24px;
    position: fixed;
    bottom: 48px;
    left: 0;
    background: rgba(255 255 255 / 25%);
    transform: translateY(150%);
    transition: transform 0.3s ease;
    z-index: -1;
  }

  .banner-news.is-visible {
    transform: translateY(0);
  }
}

.banner-news::after {
  content: "";
  width: 1px;
  height: 46px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #fff;
}

@media (width <=767px) {
  .banner-news::after {
    content: none;
  }
}

.news-label {
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  white-space: nowrap;
}

@media (width <=767px) {
  .news-label {
    font-size: 1.3rem;
  }
}

.news-content {
  flex-grow: 1;
  padding-right: 100px;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: .2s;
}

@media (width <=767px) {
  .news-content {
    padding-right: 0;
  }
}

.news-content:hover {
  opacity: .7;
}

.news-date {
  font-size: 1.4rem;
  color: #8E8E8E;
}

.news-text {
  max-width: 336px;
  font-size: 1.6rem;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (width <=767px) {
  .news-text {
    font-size: 1.4rem;
  }
}

.news-view {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 1.4rem;
}

@media (width <=767px) {
  .news-view {
    display: none;
  }
}

.news-view::after {
  content: "";
  width: 15px;
  height: 15px;
  background: url(../img/arrow/circle-arrow-white.svg) no-repeat;
  background-size: contain;
}

.banner-tel-sp {
  display: none;
}

@media (width <=767px) {
  .banner-tel-sp {
    display: block;
    width: 30%;
    background: linear-gradient(#d63c17 0%, #ff8d72 100%);
  }

  .banner-tel-sp__button {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 48px;
    background: linear-gradient(#d63c17 0%, #ff8d72 100%);
    font-size: 1.6rem;
    font-weight: var(--font-weight-bold);
    line-height: 1;
  }

  .banner-tel-sp__button::after {
    content: "";
    width: 32px;
    height: 28px;
    background: url(../img/icons/icon-phone.svg) no-repeat;
    background-size: contain;
  }
}

.banner-shopinfo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0 30px 0 25px;
}

@media (width <=767px) {
  .banner-shopinfo {
    width: 30%;
    padding: 0;
  }
}

.banner-shopinfo__button {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  background: linear-gradient(#3e80b9 0%, #406a90 100%);
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
  color: #fff;
  transform: .2s;
}

@media (width <=767px) {
  .banner-shopinfo__button {
    width: 100%;
    height: 48px;
    justify-content: center;
    padding: 0;
    font-size: 1.6rem;
  }
}

.banner-shopinfo__button:hover {
  opacity: .8;
}

.banner-shopinfo__button::after {
  content: "";
  width: 15px;
  height: 15px;
  background: url(../img/arrow/circle-arrow-white.svg) no-repeat;
  background-size: contain;
}

@media (width <=767px) {
  .banner-shopinfo__button::after {
    display: none;
  }
}

.banner-four-wheel {
  background: #080808;
  width: 260px;
  padding-left: 20px;
  display: flex;
  align-items: center;
  transition: .2s;
}

@media (width <=767px) {
  .banner-four-wheel {
    display: none;
  }
}

.banner-four-wheel:hover {
  background: #fff;
}

.car-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.car-img {
  width: 72px;
}

.car-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.suzuki-logo {
  width: 80px;
  margin-left: -8px;
}

.car-text p {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  color: #fff;
}

.banner-four-wheel:hover .car-text p {
  color: #080808;
}

.car-text p::after {
  content: "";
  width: 15px;
  height: 15px;
  background: url(../img/arrow/circle-arrow-white.svg) no-repeat;
  background-size: contain;
}

.banner-four-wheel:hover .car-text p::after {
  background: url(../img/arrow/circle-arrow-black.svg) no-repeat;
  background-size: contain;
}

/* ========================================
   Hero
======================================== */
.hero {
  min-height: 420px;
  position: relative;
}

@media (width <=767px) {
  .hero {
    min-height: auto;
  }
}

.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 430px;
}

@media (width <=767px) {
  .hero-inner {
    flex-direction: column-reverse;
    justify-content: center;
    gap: 35px;
    min-height: 300px;
    padding-top: 30px;
  }
}

.hero-title {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 14px;
}

.hero-title span {
  display: block;
  font-size: 4rem;
  line-height: 1.2;
}

.hero-title-sub {
  font-family: var(--font-family-en);
  font-size: 7rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
}

@media (width <=767px) {
  .hero-title-sub {
    font-size: 5rem;
  }

  .hero-title-sub.title-md {
    font-size: 4rem;
  }
}

.w6 {
  width: 6em;
}

@media (width <=767px) {
  .w6 {
    width: auto;
  }
}

.hero-medium .hero-inner {
  min-height: 385px;
}

.hero-large .hero-inner {
  min-height: 560px;
}

@media (width <=767px) {

  .hero-medium .hero-inner,
  .hero-large .hero-inner {
    min-height: 300px;
  }
}

.hero-image {
  position: absolute;
  z-index: -1;
}

@media (width <=767px) {
  .hero-image {
    display: flex;
    align-items: center;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}



.hero-image1 {
  max-width: 680px;
  top: 85px;
  right: -20px;
}

@media (width <=767px) {
  .hero-image1 {
    max-width: 240px;
    margin: auto;
    top: -20px;
    right: 10px;
  }
}

.hero-image2 {
  max-width: 351px;
  top: 122px;
  right: 50px;
}

@media (width <=767px) {
  .hero-image2 {
    max-width: 154px;
    top: -30px;
    right: 10px;
  }
}

.hero-image3 {
  max-width: 390px;
  top: 152px;
  right: 48px;
}

@media (width <=767px) {
  .hero-image3 {
    max-width: 160px;
    top: -20px;
    right: 15px;
  }
}

.hero-image4 {
  max-width: 441px;
  top: 85px;
  right: 10px;
}

@media (width <=767px) {
  .hero-image4 {
    display: flex;
    align-items: center;
    max-width: 160px;
    position: absolute;
    top: -20px;
    bottom: 0;
    margin: auto;
    z-index: -1;
  }
}

.hero-image5 {
  max-width: 479px;
  top: 93px;
  right: -18px;
}

@media (width <=767px) {
  .hero-image5 {
    max-width: 220px;
    top: -20px;
    right: 10px;
  }
}

.hero-image6 {
  max-width: 680px;
  top: 85px;
  right: -20px;
}

@media (width <=767px) {
  .hero-image6 {
    max-width: 240px;
    margin: auto;
    top: -20px;
    right: 10px;
  }
}

.hero-image7 {
  max-width: 600px;
  top: 94px;
  right: -10px;
}

@media (width <=767px) {
  .hero-image7 {
    max-width: 210px;
    top: -20px;
    right: 10px;
  }
}

.hero-image8 {
  max-width: 641px;
  top: 50px;
  right: -38px;
}

@media (width <=767px) {
  .hero-image8 {
    max-width: 210px;
    top: -20px;
    right: 10px;
  }
}

.hero-image9 {
  max-width: 400px;
  top: 160px;
  right: 45px;
}

@media (width <=767px) {
  .hero-image9 {
    max-width: 160px;
    top: -20px;
    right: 15px;
  }
}

.hero-image10 {
  max-width: 394px;
  top: 94px;
  right: 0px;
}

@media (width <=767px) {
  .hero-image10 {
    max-width: 154px;
    top: -30px;
    right: 10px;
  }
}

.hero-parts-image1 {
  max-width: 514px;
  top: 110px;
  right: 0px;
}

@media (width <=767px) {
  .hero-parts-image1 {
    max-width: 174px;
    top: -120px;
    right: 10px;
  }
}

/* ========================================
     Breadcrumb
======================================== */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 56px;
  font-size: 1.4rem;
}

@media (width <=767px) {
  .breadcrumb {
    margin-top: 24px;
  }
}

.article-breadcrumb .breadcrumb {
  margin-top: 0;
}

.breadcrumb li:not(:last-child)::after {
  content: ">";
  display: inline-block;
  margin: 0 4px;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ========================================
   Section Common
======================================== */
.section {
  padding: 50px 0;
}

@media (width <=767px) {
  .section {
    padding: 25px 0;
  }
}

.hero+.section {
  padding-top: 90px;
}

@media (width <=767px) {
  .hero+.section {
    padding-top: 40px;
  }
}

.section-head {
  position: relative;
  text-align: center;
  margin-bottom: 48px;
}

@media (width <=767px) {
  .section-head {
    margin-bottom: 40px;
  }
}

.section-label {
  display: block;
  margin-bottom: 2px;
  font-family: var(--font-family-en);
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
}

@media (width <=767px) {

  .section-title.title-md {
    font-size: 3.5rem;
  }
}

.section-title::before,
.section-title::after {
  content: "";
  flex-grow: 1;
  height: 6px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  opacity: .5;
}

@media (width <=767px) {

  .section-title::before,
  .section-title::after {
    content: none;
  }
}

.section-title::before {
  margin-right: 25px;
}

.section-title::after {
  margin-left: 25px;
}

.section-title2 {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
}

.section-subtitle {
  margin-top: 8px;
  font-size: 1.6rem;
  font-weight: var(--font-weight-medium);
}

@media (width <=767px) {
  .section-subtitle {
    margin-top: 0;
  }
}

.section-desc {
  margin-top: 26px;
  font-size: 1.6rem;
}

@media (width <=767px) {
  .section-desc {
    margin-top: 16px;
  }
}

/* ========================================
   特選車 Cards
======================================== */
.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

@media (width <=767px) {
  .cars-grid {
    grid-template-columns: inherit;
    gap: 40px;
  }
}

.vehicle-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 290 / 220;
  position: relative;
}

@media (width <=767px) {
  .vehicle-card-image {
    aspect-ratio: initial;
  }
}

.vehicle-card-image img {
  width: 100%;
  height: auto;
}

.vehicle-card-badge {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #D63C17;
  font-size: 1.3rem;
  font-weight: var(--font-weight-medium);
  padding: 4px 10px;
}

.vehicle-card-badge.suzuki {
  background-color: #003787;
}

.vehicle-card-badge.honda {
  background-color: #D63C17;
}

.vehicle-card-badge.yamaha {
  background-color: #4BA32C;
}

.vehicle-card-body {
  margin-top: 20px;
}

.vehicle-card-brand {
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
}

.vehicle-card-name {
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 8px;
}

.vehicle-card-price__sub {
  font-size: 1.4rem;
  margin-bottom: 2px;
}

.vehicle-card-price__main {
  font-size: 1.6rem;
  font-weight: var(--font-weight-medium);
}

.vehicle-card-price__main span {
  font-size: 2rem;
  color: #D63C17;
}

.vehicle-card-price__tax {
  font-size: 1.4rem;
}

.vehicle-card-specs {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  padding: 14px 0;
  background: #080808;
}

.vehicle-card-spec {
  padding: 0 20px;
  border-right: 1px solid #fff;
}

.vehicle-card-spec:last-child {
  border-right: none;
}

.vehicle-card-spec-label {
  display: block;
  font-size: 1.4rem;
}

.vehicle-card-spec-value {
  display: block;
  font-size: 1.4rem;
}

/* ========================================
   Button
======================================== */
.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 412px;
  padding: 15px 20px;
  background: linear-gradient(#d63c17 0%, #ff8d72 100%);
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
  border: none;
  border-radius: 9999px;
}

@media (width <=767px) {
  .btn {
    min-width: 276px;
    font-size: 1.6rem;
  }
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 276px;
  position: relative;
  padding: 20px 74px;
  background: transparent;
  font-size: 1.6rem;
  font-weight: var(--font-weight-medium);
  line-height: 1;
  border: 1px solid #fff;
  transition: .2s;
}

.btn-outline::after {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: url(../img/arrow/circle-arrow-white.svg);
  background-size: contain;
}

.btn-outline:hover {
  background-color: #555;
}

/* ========================================
   トピックス
======================================== */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
}

@media (width <=767px) {
  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 30px;
  }
}

.topic-image {
  aspect-ratio: 290 / 190;
}

.topic-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topic-card-title {
  position: relative;
  padding-right: 50px;
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  margin-top: 12px;
}

@media (width <=767px) {
  .topic-card-title {
    padding-right: 20px;
  }
}

.topic-card-title::after {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  top: 6px;
  right: 20px;
  background: url(../img/arrow/circle-arrow-white.svg) no-repeat;
  background-size: contain;
}

@media (width <=767px) {
  .topic-card-title::after {
    right: 0;
  }
}

/* slider */
.topick-slider-container {
  width: 100%;
  overflow: hidden;
}

@media (width <=767px) {
  .topick-slider-container {
    padding: 0 24px;
  }
}

.topick-slider-wrapper {
  display: flex;
  width: 100%;
}

@media (width <=767px) {
  .topick-slider-wrapper {
    flex-direction: column;
    gap: 30px;
  }
}

.topick-slider-wrapper.is-static {
  justify-content: center;
  transform: none !important;
}

.topick-slide {
  width: 480px;
  margin: 0 17.5px;
  flex-shrink: 0;
}

@media (width <=767px) {
  .topick-slide {
    width: 100%;
    margin: 0;
  }
}

.topick-slide-image {
  aspect-ratio: 480 / 320;
}

.topick-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topick-slide-title {
  margin-top: 10px;
  padding-right: 50px;
  position: relative;
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
}

@media (width <=767px) {
  .topick-slide-title {
    font-size: 1.6rem;
  }
}

.topick-slide-title::after {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  top: 12px;
  right: 20px;
  background: url(../img/arrow/circle-arrow-white.svg) no-repeat;
  background-size: contain;
}

@media (width <=767px) {
  .topick-slide-title::after {
    width: 11px;
    height: 11px;
    top: 7px;
    right: 0;
  }
}

/* ========================================
   ラインナップ
======================================== */
.lineup-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
}

@media (width <=767px) {
  .lineup-grid {
    flex-direction: column;
    gap: 40px;
    padding: 0 25px;
  }
}

.lineup-card {
  width: 295px;
}

@media (width <=767px) {
  .lineup-card {
    width: 100%;
  }
}



/* ========================================
   販売スタッフ
======================================== */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 46px;
}

@media (width <=767px) {
  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 45px;
  }
}

.staff-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 118px;
}

@media (width <=767px) {
  .staff-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 30px;
    padding: 0;
  }
}

.staff-card {
  position: relative;
  cursor: pointer;
}

.staff-card__image {
  aspect-ratio: 200 / 220;
  margin-bottom: 18px;
  position: relative;
}

.staff-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.staff-card__position {
  font-size: 1.4rem;
}

.staff-card__name {
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
}

.staff-card__badges {
  position: absolute;
  top: -15px;
  right: -20px;
}

@media (width <=767px) {
  .staff-card__badges {
    top: -10px;
    right: -15px;
  }
}

.staff-card__badge {
  display: block;
  width: 51px;
  height: 51px;
}

@media (width <=767px) {
  .staff-card__badge {
    width: 38px;
    height: 38px;
  }
}

.staff-card__badge.badge1 {
  background: url(../img/staff-card-badge2.svg) no-repeat;
  background-size: contain;
}

.staff-card__badge.badge2 {
  background: url(../img/staff-card-badge2.svg) no-repeat;
  background-size: contain;
}

.staff-card__badge.badge3 {
  background: url(../img/staff-card-badge3.svg) no-repeat;
  background-size: contain;
}

.modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  transition: opacity .3s;
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0 0 0 / 68%);
}

.modal__container {
  display: flex;
  flex-direction: column;
  width: min(90%, 972px);
  max-height: 70vh;
  position: relative;
  transform: scale(.8);
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), opacity .3s;
  opacity: 0;
  z-index: 2;
}

.modal.is-open .modal__container {
  transform: scale(1);
  opacity: 1;
}

.modal__content {
  flex: 1;
  overflow-y: auto;
}

.modal__close {
  width: 52px;
  height: 52px;
  position: absolute;
  top: -78px;
  right: 10px;
  background: url(../img/common/modal-close.svg) no-repeat;
  background-size: contain;
  border: none;
}

@media (width <=767px) {
  .modal__close {
    width: 30px;
    height: 30px;
    top: -50px;
  }
}

.staff-modal__inner {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  color: #080808;
  overflow: hidden;
}

.staff-modal__image-box {
  width: 380px;
}

@media (width <=767px) {
  .staff-modal__image-box {
    width: 100%;
  }
}

.staff-modal__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

@media (width <=767px) {
  .staff-modal__image {
    aspect-ratio: 10 / 8;
  }
}

.staff-modal__body {
  flex: 1;
  padding: 34px 30px;
}

@media (width <=767px) {
  .staff-modal__body {
    padding: 30px 20px;
  }
}

.staff-modal__name {
  padding: 12px 20px;
  background: #080808;
  font-size: 2.4rem;
  font-weight: var(--font-weight-medium);
  color: #fff;
}

@media (width <=767px) {
  .staff-modal__name {
    font-size: 2.2rem;
  }
}

.staff-modal__table {
  width: 100%;
  margin-top: 14px;
}

.staff-modal__table tr:not(:last-child) {
  border-bottom: 1px solid #707070;
}

.staff-modal__table th {
  width: 130px;
  padding: 16px 0 14px;
  font-size: 1.6rem;
  text-align: left;
  vertical-align: top;
}

.staff-modal__table td {
  padding: 16px 0 14px;
  font-size: 1.6rem;
  line-height: 1.3;
}

@media (width <=767px) {
  .staff-modal__table td {
    font-size: 1.6rem;
  }
}

/* ========================================
   Feature
======================================== */
.feature-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.feature-image {
  width: 420px;
  position: relative;
}

@media (width <=767px) {
  .feature-image {
    width: 100%;
    margin-bottom: 30px;
    padding: 26px 20px 30px 30px;
  }
}

.feature-badge {
  position: absolute;
  top: -38px;
  left: -50px;
}

@media (width <=767px) {
  .feature-badge {
    top: 0;
    left: 0;
  }

  .feature-badge img {
    width: auto;
    height: 60px;
  }
}

.maintenance-badge {
  width: 192px;
  height: 136px;
  position: absolute;
  bottom: -42px;
  right: -30px;
  background: url(../img/maintenance-badge.png) no-repeat;
  background-size: contain;
}

@media (width <=767px) {
  .maintenance-badge {
    width: 135px;
    height: 96px;
    bottom: 0;
    right: 0;
  }
}

.feature-body {
  width: 490px;
}

@media (width <=767px) {
  .feature-body {
    width: 100%;
  }
}

.feature-head {
  margin-bottom: 20px;
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
}

.feature-desc {
  font-size: 1.6rem;
}

/* ========================================
     anchorlink
======================================== */
.anchorlink {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 980px;
  margin: 84px auto 0;
}

@media (width <=767px) {
  .anchorlink {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin: 30px 0 25px;
    padding: 0 24px;
  }
}

.anchorlink a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 39px;
  position: relative;
  font-size: 1.4rem;
  border: 1px solid #fff;
}

@media (width <=767px) {
  .anchorlink a {
    width: 100%;
  }
}

.anchorlink a::after {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  background: url(../img/arrow/arrow-bottom.svg) no-repeat;
  background-size: contain;
}



/* ========================================
   Flow
======================================== */
.flow-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}

@media (width <=767px) {
  .flow-inner {
    display: block;
  }
}

.flow-head-wrap {
  position: sticky;
  top: 100px;
  left: 0;
}

@media (width <=767px) {
  .flow-head-wrap {
    position: static;
    text-align: center;
    margin-bottom: 50px;
  }
}

.flow-head {
  font-size: 4rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
}

@media (width <=767px) {
  .flow-head {
    font-size: 3.6rem;
  }
}

/* ドットのスタイル */
.flow-dots {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

@media (width <=767px) {
  .flow-dots {
    display: none;
  }
}

.flow-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #fff;
  background-color: transparent;
  transition: all 0.3s ease;
}

.flow-dot.current {
  background-color: #D63C17;
}

.flow-body {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 490px;
}

@media (width <=767px) {
  .flow-body {
    width: 100%;
  }
}

.flow-item__image {
  margin-bottom: 22px;
  position: relative;
}

.flow-item__image.add-support {
  border: 5px solid #fff;
  border-radius: 5px;
}

.flow-item__image.add-support::before {
  content: "追加対応";
  padding: 6px 7px;
  background: #fff;
  position: absolute;
  top: -4px;
  left: -4px;
  font-size: 1.6rem;
  line-height: 1;
  color: #D63C17;
}

.flow-item__head {
  margin-bottom: 25px;
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
}

.flow-item__text {
  font-size: 1.6rem;
}

/* ========================================
   Bike Price
======================================== */
.vehicle-price-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (width <=767px) {
  .vehicle-price-inner {
    flex-direction: column;
    gap: 30px;
  }
}

.vehicle-price-inner+.btn-wrap {
  margin-top: 100px;
}

@media (width <=767px) {
  .vehicle-price-inner+.btn-wrap {
    margin-top: 50px;
  }
}

.vehicle-price__image-box {
  width: 414px;
}

@media (width <=767px) {
  .vehicle-price__image-box {
    width: 100%;
  }
}

.vehicle-price__image {
  border: 1px solid #707070;
}

.vehicle-price__total {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 1.6rem;
  font-weight: var(--font-weight-medium);
}

@media (width <=767px) {
  .vehicle-price__total {
    margin-top: 10px;
  }
}

.vehicle-price__total span {
  font-size: 4rem;
  font-weight: var(--font-weight-bold);
  color: #D63C17;
}

.vehicle-price__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 490px;
}

@media (width <=767px) {
  .vehicle-price__content {
    width: 100%;
  }
}

.vehicle-price__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: 51px;
  padding: 0 18px;
  background: #fff;
  font-size: 1.6rem;
  color: #080808;
  border-bottom: 1px solid #D63C17;
}

.vehicle-price__item:nth-child(n+2) {
  border-left: 1px solid #D63C17;
  border-right: 1px solid #D63C17;
}

.vehicle-price__item.item-head {
  background: #D63C17;
  font-weight: var(--font-weight-medium);
  color: #fff;
}

.vehicle-price__card:nth-child(2) .vehicle-price__item.item-head {
  background: #F19C33;
}

.vehicle-price__item.item-head .vehicle-price__value span {
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
}

/* ========================================
   Footer
======================================== */
.footer {
  background: #080808;
  margin-top: 50px;
  padding: 56px 48px 28px;
}

@media (width <=767px) {
  .footer {
    padding: 50px 24px 45px;
  }
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto 40px;
  position: relative;
}

.footer-logo {
  width: 350px;
  margin-bottom: 50px;
}

@media (width <=767px) {
  .footer-logo {
    width: 100%;
  }
}

.footer-address {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 5px;
}

.footer-tel {
  font-size: 4rem;
  font-weight: var(--font-weight-bold);
}

@media (width <=767px) {
  .footer-tel {
    font-size: 3.8rem;
  }
}

.footer-map {
  width: 50vw;
  max-height: 240px;
  aspect-ratio: 690 / 240;
  margin-right: calc((100vw - 960px) / -2);
  position: absolute;
  top: 0;
  right: 0;
}

@media (width <=767px) {
  .footer-map {
    width: calc(100% + 48px);
    aspect-ratio: 393 / 136;
    max-height: auto;
    margin-top: 40px;
    margin-right: auto;
    margin-left: -24px;
    position: static;
  }
}

.footer-map iframe {
  width: 100%;
  height: 100%;
}

.footer-nav {
  max-width: 986px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, auto);
  gap: 14px 40px;
}

@media (width <=767px) {
  .footer-nav {
    grid-template-columns: repeat(2, auto);
    gap: 14px 30px;
  }
}

.footer-nav a {
  font-size: 1.4rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 94px;
}

@media (width <=767px) {
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column-reverse;
    margin-top: 34px;
  }
}

.footer-copy {
  font-size: 1.2rem;
  color: #8E8E8E;
}

@media (width <=767px) {
  .footer-copy {
    margin-top: 12px;
  }
}

.footer-sub-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

@media (width <=767px) {
  .footer-sub-link {
    gap: 14px;
  }
}

.footer-sub-link a {
  font-size: 1.2rem;
  color: #8E8E8E;
}


/* ============================================================
   MOTORCYCLE PARTS
============================================================ */

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

@media (width <=767px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 24px;
  }
}

.product-item {
  aspect-ratio: 178 / 141;
  position: relative;
  background: #fff;
  color: #080808;
  border-bottom: 5px solid #D63C17;
  border-radius: 50% 50% 0 0;
  overflow: hidden;
  z-index: 1;
}

.product-item:hover,
.product-item.current {
  color: #fff;
}

.product-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #D63C17;
  z-index: -1;
  transform: translateY(100%);
  transition: transform .2s ease;
}

.product-item:hover::before,
.product-item.current::before {
  transform: translateY(0);
}

.product-item__image {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 24px 24px 34px;
}

@media (width <=767px) {
  .product-item__image {
    padding: 20px 20px 28px;
  }
}

.product-item__image img {
  width: auto;
  height: auto;
  max-height: 100%;
}

.product-item__label {
  width: 100%;
  padding: 0 12px;
  position: absolute;
  bottom: 10px;
  left: 0;
  font-size: 1.2rem;
  font-weight: var(--font-weight-medium);
}

@media (width <=767px) {
  .product-item__label {
    font-size: 1rem;
  }
}

.product-item__label::after {
  content: "";
  width: 13px;
  height: 13px;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  background: url(../img/arrow/circle-arrow-black.svg) no-repeat;
  background-size: contain;
}

.product-item:hover .product-item__label::after,
.product-item.current .product-item__label::after {
  background: url(../img/arrow/circle-arrow-white.svg) no-repeat;
  background-size: contain;
}

.custom-body {
  max-width: 960px;
  margin: 32px auto 0;
  padding: 20px 55px 20px 474px;
  position: relative;
  background: #fff;
  border: 1px solid #707070;
  border-radius: 50px;
}

@media (width <=767px) {
  .custom-body {
    max-width: 100%;
    margin: 20px 0 45px;
    padding: 36px 34px 0;
    border-radius: 37px;
  }
}

.custom-body::after {
  content: "";
  display: block;
  width: 408px;
  height: 289px;
  position: absolute;
  bottom: -1px;
  left: 36px;
  background: url(../img/custom-staff-image.png) no-repeat;
  background-size: contain;
}

@media (width <=767px) {
  .custom-body::after {
    width: 298px;
    height: 211px;
    margin: 0 auto;
    position: static;
  }
}

.custom-body-text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #080808;
}

.refusal-badge {
  width: 262px;
  height: 87px;
  position: absolute;
  bottom: -45px;
  right: -36px;
  background: url(../img/refusal-badge.svg) no-repeat;
  background-size: contain;
}

@media (width <=767px) {
  .refusal-badge {
    right: -18px;
  }
}

.auto-slider-container {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 70px;
  overflow: hidden;
}

.auto-slider-track {
  display: flex;
  gap: 15px;
  padding-right: 15px;
  width: max-content;
  animation: scroll-left 50s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.box {
  height: 328px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box1 {
  width: 490px;
}

.box2 {
  width: 490px;
}

.box3 {
  width: 483px;
}

.box4 {
  width: 490px;
}

/* ============================================================
   MOTORCYCLE MAINTENANCE
============================================================ */

.maintenance-list {
  border-top: 1px solid #ddd;
}

.maintenance-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
}

.maintenance-item-name {
  font-size: 15px;
  font-weight: 600;
  color: #222;
}

.maintenance-item-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #bbb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #888;
  flex-shrink: 0;
  line-height: 1;
}

/* ============================================================
   STORAGE
============================================================ */

.storage-head {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  text-align: center;
}

@media (width <=767px) {
  .storage-head {
    font-size: 2.4rem;
  }
}

.storage-image__box {
  margin-top: 55px;
}

.dress-price-box {
  aspect-ratio: 980 / 300;
  background: #8E8E8E;
}


/* ============================================================
   COMPANY INFO
============================================================ */

.company-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
}

@media (width <=767px) {
  .company-top-grid {
    grid-template-columns: auto;
  }
}

.company-top__content {
  width: 430px;
}

@media (width <=767px) {
  .company-top__content {
    width: 100%;
  }
}

.company-top-image {
  margin-bottom: 20px;
}

.company-top-info {
  margin-bottom: 18px;
  font-size: 1.6rem;
  line-height: 2;
}

.company-top-tel {
  font-size: 4rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
}

@media (width <=767px) {
  .company-top-tel {
    font-size: 3.8rem;
  }
}

.company-top-map {
  width: 50vw;
  margin-right: calc((100vw - 972px) / -2);
  position: absolute;
  top: 0;
  right: 0;
  padding-top: 50%;
}

.company-top-map iframe {
  position: absolute;
  top: 0;
  left: 0;
}

@media (width <=767px) {
  .company-top-map {
    width: 100%;
    aspect-ratio: 344 / 194;
    margin-top: 60px;
    margin-right: auto;
    padding-top: 0;
    position: static;
  }

  .company-top-map iframe {
    position: static;
  }
}

.company-locations {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

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

.company-loc-name {
  margin-bottom: 28px;
  font-size: 4rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
}

@media (width <=767px) {
  .company-loc-name {
    font-size: 3rem;
  }
}

.company-loc-name a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 10px;
}

.company-loc-name a:hover {
  text-decoration: none;
}

.company-loc-info {
  margin-bottom: 20px;
  font-size: 1.6rem;
  line-height: 2;
}

.company-loc-tel {
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
}

.company-loc-map {
  width: 490px;
  aspect-ratio: 490 / 277;
}

@media (width <=767px) {
  .company-loc-map {
    width: 100%;
    aspect-ratio: 344 / 194;
    margin-top: 45px;
  }
}

.president-section {
  display: grid;
  grid-template-columns: 237px 1fr;
  gap: 66px;
  align-items: start;
}

@media (width <=767px) {
  .president-section {
    display: flex;
    flex-direction: column-reverse;
  }

  .president-section div {
    width: 100%;
  }
}

@media (width <=767px) {
  .president-image {
    max-width: 344px;
    margin: 0 auto;
  }
}

.president-section-text {
  font-size: 1.6rem;
  line-height: 2;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}

@media (width <=767px) {
  .company-table {
    width: calc(100% + 48px);
    margin-left: -24px;
  }
}

.company-table tr:nth-child(odd) {
  background: #2E2B2B;
}

@media (width <=767px) {
  .company-table tr {
    display: block;
    padding: 20px 24px;
  }
}

.company-table th,
.company-table td {
  padding: 12px 25px 13px;
  font-size: 1.6rem;
  line-height: 2;
}

@media (width <=767px) {

  .company-table th,
  .company-table td {
    display: block;
    padding: 0;
  }
}

.company-table th {
  width: 180px;
  font-weight: var(--font-weight-regular);
  text-align: left;
  vertical-align: top;
}

.guidance-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 50px;
  font-size: 1.4rem;
}

@media (width <=767px) {
  .guidance-link {
    justify-content: flex-start;
    gap: 10px 14px;
    margin-top: 30px;
  }
}

@media (width <=767px) {
  .chart {
    width: calc(100% + 48px);
    margin-left: -24px;
  }

  .chart-image {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .chart-image img {
    display: block;
    width: 960px;
    max-width: none;
  }
}

.history-list {
  width: 782px;
  margin: 0 auto;
}

@media (width <=767px) {
  .history-list {
    width: 100%;
  }
}

.history-item {
  display: flex;
  font-size: 1.6rem;
  line-height: 2;
}

@media (width <=767px) {
  .history-item {
    flex-direction: column;
  }
}

.history-date {
  flex-basis: 136px;
  flex-shrink: 0;
  border-right: 1px solid #fff;
}

@media (width <=767px) {
  .history-date {
    flex-basis: auto;
    border-right: none;
  }
}

.history-content {
  flex-grow: 1;
  padding-left: 50px;
}

@media (width <=767px) {
  .history-content {
    padding-left: 0;
  }
}

.dress-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px 50px;
}

@media (width <=767px) {
  .dress-grid {
    grid-template-columns: auto;
    gap: 30px;
  }
}

.dress-item {
  display: block;
}

.dress-item-image {
  width: 100%;
  aspect-ratio: 294 / 166;
  position: relative;
}

@media (width <=767px) {
  .dress-item-image {
    aspect-ratio: 342 / 166;
  }
}

.dress-item-image::after {
  content: "";
  width: 70px;
  height: 70px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../img/play-button.png) no-repeat;
  background-size: contain;
  pointer-events: none;
}

.dress-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dress-item-label {
  margin-top: 10px;
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  text-align: center;
}

.dress-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding-bottom: 102px;
  position: relative;
}

@media (width <=767px) {
  .dress-cta {
    padding-bottom: 50px;
  }
}

.dress-cta::before {
  content: "";
  width: 224px;
  height: 216px;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/cta-staff.svg) no-repeat;
  background-size: contain;
}

@media (width <=767px) {
  .dress-cta::before {
    width: 140px;
    height: 135px;
    top: 92px;
    left: auto;
    right: 18px;
  }
}

@media (width <=767px) {
  #price .section-head {
    padding-right: 150px;
  }
}

.dress-price {
  display: flex;
  justify-content: center;
  gap: 18px;
}

@media (width <=767px) {
  .dress-price {
    flex-direction: column;
    gap: 0;
  }
}

.dress-price-table {
  width: 100%;
  max-width: 480px;
  border-collapse: collapse;
  background: #3E3A39;
}

@media (width <=767px) {
  .dress-price-table+.dress-price-table {
    margin-top: -1px;
  }
}

.dress-price-table th,
.dress-price-table td {
  width: 50%;
  padding: 14px 20px;
  font-size: 1.6rem;
  font-weight: var(--font-weight-regular);
  text-align: center;
  border: 1px solid #fff;
}

@media (max-width: 768px) {
  .dress-price-container {
    flex-direction: column;
    padding: 20px;
  }

  .dress-price-table {
    max-width: 100%;
  }
}

/* ============================================================
   PAGE 7 — NEWS LIST
============================================================ */

.news-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 980px;
  margin: 0 auto;
}

.news-item {
  padding: 18px 30px;
  position: relative;
  background: #2E2B2B;
}

.news-item::after {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  background: url(../img/arrow/circle-arrow-white.svg) no-repeat;
  background-size: contain;
}

.news-item-date {
  font-size: 1.2rem;
}

.news-item-title {
  margin-top: 2px;
  font-size: 1.6rem;
}

.btn-more-wrap {
  text-align: center;
  margin-top: 50px;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-more::after {
  transform: translateY(-50%) rotate(95deg);
}

/* ============================================================
   NEWS DETAIL
============================================================ */

.article {
  max-width: 990px;
  margin: 0 auto;
}

@media (width <=767px) {
  .article {
    padding: 120px 24px 0;
  }
}

.article-section {
  padding-bottom: 50px;
}

.article-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 430px;
}

@media (width <=767px) {
  .article-inner {
    min-height: auto;
  }
}

.article-date {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 12px;
}

@media (width <=767px) {
  .article-date {
    font-size: 1.5rem;
  }
}

.article-title {
  font-size: 4rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 72px;
}

@media (width <=767px) {
  .article-title {
    font-size: 2.4rem;
  }
}

.article-breadcrumb {
  font-size: 1.4rem;
  margin-bottom: 50px;
}

.article-body {
  padding: 55px 70px 75px;
  background: #2E2B2B;
  font-size: 1.6rem;
  line-height: 1.8;
}

@media (width <=767px) {
  .article-body {
    width: calc(100% + 48px);
    margin-left: -24px;
    padding: 32px 24px 45px;
  }
}

.article-body>*:last-child {
  margin-bottom: 0;
}

.article-body p {
  margin-bottom: 2em;
}

/* --- 見出し --- */
.article-body h2,
.article-body h3,
.article-body h4,
.article-body h5,
.article-body h6 {
  margin-top: 2.5em;
  margin-bottom: 1em;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
}

.article-body h2 {
  font-size: 2.4rem;
  padding-bottom: 0.5em;
}

.article-body h3 {
  font-size: 2rem;
}

.article-body h4 {
  font-size: 1.8rem;
}

/* 見出しの直後が段落の場合は上余白を詰める */
.article-body h2+p,
.article-body h3+p,
.article-body h4+p {
  margin-top: -0.5em;
}

/* --- リスト（箇条書き） --- */
.article-body ul,
.article-body ol {
  margin-top: 0;
  margin-bottom: 1.5em;
  padding-left: 1.5em;
}

.article-body ul {
  list-style-type: disc;
}

.article-body ol {
  list-style-type: decimal;
}

.article-body li {
  margin-bottom: 0.5em;
}

.article-body li:last-child {
  margin-bottom: 0;
}

/* --- 画像・メディア --- */
.article-body img {
  display: block;
  max-width: 100%;
  margin: 5em auto;
}

.article-body figcaption {
  font-size: 1.1rem;
  text-align: center;
  margin-top: 5px;
}

/* --- YouTubeなどの埋め込み --- */
.article-body iframe,
.article-body embed,
.article-body video {
  max-width: 100%;
  margin-bottom: 1.5em;
}

/* --- 引用（ブロッククオート） --- */
.article-body blockquote {
  margin: 0 0 1.5em 0;
  padding: 15px 20px;
  background-color: #f9f9f9;
  border-left: 4px solid #ccc;
  color: #555;
}

.article-body blockquote p {
  margin-bottom: 0;
}

.article-body blockquote cite {
  display: block;
  font-size: 1.3rem;
  text-align: right;
  margin-top: 10px;
  color: #999;
}

/* --- 表（テーブル） --- */
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5em;
}

.article-body th,
.article-body td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}

.article-body th {
  background-color: #f2f2f2;
  font-weight: bold;
}

/* --- コード・整形済みテキスト --- */
.article-body pre {
  background-color: #fff;
  color: #333;
  padding: 15px;
  overflow-x: auto;
  margin-bottom: 1.5em;
  border-radius: 4px;
}

.article-body code {
  font-family: Consolas, Monaco, monospace;
  background-color: #f4f4f4;
  padding: 2px 4px;
  border-radius: 3px;
  font-size: 0.9em;
  color: #d14;
}

/* preの中のcodeは背景色をリセット */
.article-body pre code {
  background-color: transparent;
  color: inherit;
  padding: 0;
}

/* --- 水平線 --- */
.article-body hr {
  border: 0;
  border-top: 1px solid #eee;
  margin: 2em 0;
}

/* --- 強調テキスト --- */
.article-body strong,
.article-body b {
  font-weight: bold;
}

.article-body em,
.article-body i {
  font-style: italic;
}

.article-topics-inner {
  display: grid;
  grid-template-columns: 296px 1fr;
  align-items: center;
  gap: 70px;
  margin-bottom: 50px;
}

@media (width <=767px) {
  .article-topics-inner {
    grid-template-columns: auto;
    gap: 30px;
  }
}

.article-topics-inner .article-title {
  margin-bottom: 0;
}

.article-topics-thumbnail {
  aspect-ratio: 296 / 193;
}

.article-topics-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-image {
  width: 100%;
  height: 300px;
  background-color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 13px;
  margin: 40px 0;
}

/* ============================================================
   BIKE LIST
============================================================ */

.filter-bar {
  background: #080808;
  margin: 50px 0 40px;
  padding: 50px 0;
}

@media (width <=767px) {
  .filter-bar {
    margin: 40px 0 25px;
  }
}

.filter-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 30px;
  max-width: 980px;
  margin: 0 auto;
}

@media (width <=767px) {
  .filter-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.filter-label {
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
}

@media (width <=767px) {
  .filter-label {
    font-size: 1.4rem;
  }
}

.filter-select {
  width: 100%;
  padding: 9px 12px;
  font-size: 1.6rem;
  color: #fff;
  border: 1px solid #fff;
  appearance: none;
  -webkit-appearance: none;
  background-color: #080808;
  background-image: url(../img/arrow/arrow-select.svg);
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 7px 8px;
  cursor: pointer;
}

@media (width <=767px) {
  .filter-select {
    font-size: 1.4rem;
  }
}

.filter-select option {
  background: #080808;
  color: #fff;
}

.filter-btn {
  display: block;
  width: 276px;
  margin: 50px auto 0;
  padding: 15px 20px;
  background: #080808;
  font-size: 1.6rem;
  font-weight: var(--font-weight-medium);
  border: 1px solid #fff;
  cursor: pointer;
  transition: .2s;
}

@media (width <=767px) {
  .filter-btn {
    font-size: 1.4rem;
  }
}

.filter-btn:hover {
  background: #555;
}

/* ============================================================
   DETAIL
============================================================ */

.detail-head {
  margin: 70px 0 50px;
  text-align: center;
}

@media (width <=767px) {
  .detail-head {
    margin: 30px 0 25px;
    text-align: left;
  }
}

.detail-head-label {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: -4px;
}

.detail-head-page {
  font-family: var(--font-family-en);
  font-size: 4rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 30px;
}

@media (width <=767px) {
  .detail-head-page {
    margin-bottom: 10px;
  }
}

.detail-head-maker {
  font-family: var(--font-family-en);
  font-size: 7rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
}

@media (width <=767px) {
  .detail-head-maker {
    font-size: 5rem;
  }
}

.detail-head-breadcrumb {
  font-size: 1.4rem;
}

.detail-box {
  margin-top: 50px;
  margin-bottom: 40px;
  padding: 65px 65px 50px;
  background: #080808;
  overflow: hidden;
}

@media (width <=767px) {
  .detail-box {
    width: calc(100% + 48px);
    margin-left: -24px;
    padding: 50px 24px;
  }
}

.detail-inner {
  display: grid;
  grid-template-columns: 484px 1fr;
  gap: 50px;
}

@media (width <=767px) {
  .detail-inner {
    grid-template-columns: auto;
    gap: 10px;
  }
}

.detail-card-image {
  width: 100%;
  position: relative;
}

.detail-card-image img {
  width: 100%;
  height: auto;
}

.detail-card-brand {
  font-size: 2.6rem;
  font-weight: var(--font-weight-bold);
}

.detail-card-name {
  margin-bottom: 15px;
  font-size: 3.9rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
}

.detail-card-price__sub {
  font-size: 1.4rem;
}

.detail-card-price__main {
  font-size: 1.6rem;
}

.detail-card-price__main span {
  font-size: 2rem;
  font-weight: var(--font-weight-medium);
  color: #D63C17;
}

.detail-card-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 0;
  margin-top: 34px;
  font-size: 1.6rem;
  line-height: 1.3;
  text-align: center;
}

.detail-card-fields div {
  padding: 5px 10px;
  position: relative;
}

.detail-card-fields div:nth-child(odd) {
  border-right: 1px solid #fff;
}

.detail-card-fields div:first-child:after {
  content: "";
  width: 200%;
  height: 1px;
  position: absolute;
  bottom: -14px;
  left: 0;
  background: #fff;
}

.detail-card-field-label {
  display: block;
  margin-bottom: 4px;
}

.spec-wrap {
  margin-top: 50px;
}

@media (width <=767px) {
  .spec-wrap {
    margin-top: 30px;
  }
}

.spec-label {
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
}

.spec-table-wrap {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

@media (width <=767px) {
  .spec-table-wrap {
    display: block;
    margin-top: 12px;
  }
}

.spec-table {
  width: 100%;
  max-width: 480px;
  margin: 0 -1px;
  border-collapse: collapse;
  background: #3E3A39;
}

.spec-table th,
.spec-table td {
  width: 50%;
  padding: 6px 14px;
  font-size: 1.4rem;
  font-weight: var(--font-weight-regular);
  text-align: left;
  border: 1px solid #707070;
}

@media (width <=767px) {

  .spec-table th,
  .spec-table td {
    font-size: 1.2rem;
    vertical-align: top;
  }
}

.spec-table th {
  background: #3E3A39;
}

.spec-table td {
  background: #080808;
}

.vehicle-feature-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 20px;
}

@media (width <=767px) {
  .vehicle-feature-wrap {
    grid-template-columns: auto;
  }
}

.vehicle-feature-item__image {
  width: 100%;
  aspect-ratio: 400 / 222;
  background: #8E8E8E;
  margin-bottom: 24px;
}

.vehicle-feature-item__head {
  margin-bottom: 12px;
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
}

.vehicle-feature-item__text {
  font-size: 1.6rem;
}

.btn-inquiry {
  display: block;
  width: 100%;
  background-color: #e8870d;
  text-align: center;
  padding: 20px;
  font-size: 16px;
  font-weight: 700;
  margin-top: 32px;
}

.btn-inquiry:hover {
  background-color: #c87000;
}

.btn-back-wrap {
  text-align: center;
  margin-top: 24px;
}

.btn-back::after {
  right: auto;
  left: 20px;
  transform: translateY(-50%) rotate(185deg);
}

.parts-detail-list {
  margin-top: 20px;
}

.parts-detail-list li {
  font-size: 1.6rem;
}

/* ============================================================
   Form Styles (Snow Monkey Forms & Custom)
============================================================ */

/* -------------------------------------------
  Layout (Form Wrapper & Items)
------------------------------------------- */
.form-group,
.smf-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-field,
.smf-item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 17px;
}

.form-control,
.smf-item__col--controls {
  flex: 1;
}

@media (width <=767px) {

  .form-group,
  .smf-form {
    gap: 20px;
  }

  .form-field,
  .smf-item {
    display: block;
  }
}

/* -------------------------------------------
  Labels & Required Badges
------------------------------------------- */
.form-label,
.smf-item__label {
  position: relative;
  width: 260px;
  padding: 8px 70px 8px 0;
  font-size: 1.6rem;
}

/* 必須マーク */
.form-label.required::after,
.required .smf-item__label::after,
.smf-required {
  content: "必須";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 57px;
  height: 25px;
  background: #D63C17;
  font-size: 1.6rem;
  font-weight: var(--font-weight-medium);
}

@media (width <=767px) {

  .form-label,
  .smf-item__label {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  /* 必須マーク（スマホ時） */
  .form-label.required::after,
  .required .smf-item__label::after,
  .smf-required {
    position: static;
    transform: translateY(0);
    width: 48px;
    height: 24px;
    font-size: 1.4rem;
  }
}

/* -------------------------------------------
  Input Controls (Text, Textarea, Select)
------------------------------------------- */
.form-input,
.smf-text-control__control,
.form-textarea,
.smf-textarea-control__control,
.smf-form .smf-select-control__control {
  width: 100%;
  background: transparent !important;
  font-size: 1.6rem !important;
  border-radius: 0 !important;
}

/* Text */
.form-input,
.smf-text-control__control {
  height: 44px;
  padding: 9px 14px !important;
  border: 1px solid #fff !important;
}

/* Textarea */
.form-textarea,
.smf-textarea-control__control {
  min-height: 250px;
  padding: 11px 14px !important;
  border: 1px solid #fff !important;
}

/* Select */
.smf-select-control {
  width: 100%;
}

.smf-form .smf-select-control__control {
  height: 44px;
  padding: 8px 14px !important;
  border: 1px solid #fff !important;
}

.smf-form .smf-select-control__toggle {
  display: none;
}

/* Placeholder */
.smf-placeholder {
  font-size: 1.6rem;
}

.smf-form input[data-custom-date="true"]::placeholder {
  color: #fff;
  opacity: 1;
}

/* -------------------------------------------
  Radio Buttons
------------------------------------------- */
.form-radio-group {
  padding: 11px 0;
}

input[type=radio],
.form-radio-group .form-radio-input {
  display: none;
}

.smf-radio-buttons-control__control {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 30px;
  padding: 4px 0;
}

.smf-radio-button-control {
  padding: 2px 0;
  gap: 5px !important;
}

.smf-radio-button-control__label {
  font-size: 1.6rem;
}

/* ラジオボタンのカスタムデザイン */
.smf-radio-button-control__control {
  width: 19px !important;
  height: 19px !important;
  background-color: transparent !important;
  border-color: #fff !important;
}

.smf-radio-button-control__control:checked::after {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 9px !important;
  height: 9px !important;
  border-radius: 50% !important;
  background-color: #D63C17 !important;
}

/* -------------------------------------------
  Button
------------------------------------------- */
.form-actions,
.smf-action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}

.smf-action .smf-button-control+.smf-button-control {
  margin-left: 0 !important;
}

.form-button,
.smf-button-control__control {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 412px !important;
  padding: 15px 20px !important;
  background: linear-gradient(#d63c17 0%, #ff8d72 100%) !important;
  color: #fff !important;
  font-size: 2.4rem !important;
  font-weight: var(--font-weight-bold) !important;
  border: none !important;
  border-radius: 9999px !important;
  transition: opacity .2s;
}

/* ホバーエフェクト */
.form-button:hover,
.smf-button-control__control:hover {
  opacity: .8;
}

/* 戻るボタン */
.smf-button-control [data-action="back"] {
  background: #000 !important;
}

@media (width <=767px) {
  .smf-action {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .form-button,
  .smf-button-control__control {
    min-width: 300px !important;
  }
}

/* -------------------------------------------
  States (Confirm, Error, Complete)
------------------------------------------- */
[data-screen="confirm"] .smf-placeholder {
  padding: 8px 0;
}

[data-screen="confirm"] .smf-item__controls .is-layout-flex {
  gap: 0 !important;
  width: 220px;
}

.smf-error-messages {
  font-size: 1.6rem;
  font-weight: bold;
}

.smf-complete-content,
.smf-system-error-content {
  font-size: 1.6rem;
  line-height: 2.2;
  text-align: center;
}

/* -------------------------------------------
  Others (Custom specific classes)
------------------------------------------- */
.maker-all {
  margin-top: 40px;
  font-size: 1.6rem;
  line-height: 2;
}

.desired-label {
  margin: 6px 0 14px;
  font-size: 1.6rem;
}

/* -------------------------------------------
   Date Input
------------------------------------------- */
.smf-form input[type="date"] {
  display: block;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background-color: transparent !important;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 0 !important;
  height: 44px !important;
  padding: 12px 14px !important;
  font-size: 1.6rem !important;
  text-align: left !important;
  position: relative;
  background-image: url("../img/icons/icon-calendar.svg") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 20px !important;
  padding-right: 40px !important;
  cursor: pointer;
}

.smf-form input[type="date"]::-webkit-datetime-edit {
  display: flex !important;
  width: 100% !important;
  justify-content: flex-start !important;
  padding: 0 !important;
  margin: 0 !important;
  text-align: left !important;
}

.smf-form input[type="date"]::-webkit-datetime-edit-fields-wrapper {
  display: flex !important;
  justify-content: flex-start !important;
  padding: 0 !important;
  margin: 0 !important;
}

.smf-form input[type="date"]::-webkit-clear-button,
.smf-form input[type="date"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  display: none;
}

.smf-form input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: pointer;
}

.guidance-body,
.recruit-body {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.guidance-body h2,
.recruit-body h2 {
  margin-bottom: .8em;
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
}

.guidance-body p,
.recruit-body p {
  font-size: 1.6rem;
  line-height: 1.9;
}

.recruit-body p.recruit-head {
  margin-bottom: .8em;
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.6;
}

.guidance-item,
.recruit-item {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* フッターカレンダーポップアップ */
.footer-cal-wrap {
  position: relative;
  display: inline-block;
}

.footer-calendar-popup {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 8px;
  padding: 12px;
  z-index: 9999;
  width: 300px;
}

@media (width <=767px) {
  .footer-calendar-popup {
    left: 0;
    transform: none;
  }
}

.footer-calendar-popup.is-open {
  display: block;
}

.footer-calendar-slider .bc-slider-track-wrap {
  overflow: hidden;
}

.footer-calendar-slider .bc-slider-track {
  display: flex;
  transition: transform 0.3s ease;
}

.footer-calendar-slider .bc-slide {
  min-width: 100%;
}

.footer-calendar-close {
  display: block;
  margin-left: auto;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #333;
  margin-bottom: 8px;
}