html {
  scroll-behavior: smooth;
}
body {
  background-image: url("../images/bg_all-page.png");
  background-repeat: repeat;
  background-position: left top;
  background-size: 500px auto;
}
a {
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}
/* =========================
   fade-in 共通
========================= */
/* JSなしでも見える状態 */
.js-fadeIn {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}

.js-fadeIn.is-start {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.js-fadeIn.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* =========================
   パンクズリスト
========================= */
.c-breadcrumbs {
  padding-top: 88px;
  margin-inline: auto;
  width: 1250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 43px;
  font-size: 13px;
  color: #848484;
}
@media screen and (max-width: 1366px) {
  .c-breadcrumbs {
    margin-left: 2.196193265vw;
    width: 91.5080527086vw;
  }
}

.c-breadcrumbs__link {
  position: relative;
  cursor: pointer;
}
.c-breadcrumbs__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -28px;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  width: 7px;
  height: 7px;
  display: block;
  background-image: url("../images/icon_bread-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.c-bread__last {
  letter-spacing: 1px;
}

/* =========================
   Swiper
========================= */
.swiper-slide {
  width: 40.9956076135vw;
  height: 36.6032210835vw;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.swiper-wrapper {
  transition-timing-function: linear !important;
  display: flex;
}
