@charset "UTF-8";
/* ブレイクポイント設定 */
/* 色設定 */
/* 配置(フレックス) */
/* transition */
/* レスポンシブ */
.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

/* 基盤 */
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 1.3037809648vw;
  }
}

body {
  color: black;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

li {
  list-style: none;
}

a {
  position: relative;
  text-decoration: none;
  color: black;
  display: block;
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
}

/* レイアウト */
.l-slide__inner {
  width: 100%;
  max-width: 110rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-slide__inner {
    width: 88%;
  }
}

/* ヘッダー(タイトル) */
.header {
  height: 12rem;
  background: green;
  color: #fff;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .header {
    height: 14rem;
    font-size: 2.2rem;
  }
}

.page-title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* スライド */
.slide01 {
  max-width: 128rem;
  margin: 0 auto;
}

.c-slide__bg {
  margin-top: 10rem;
}

.swiper-container {
  position: relative;
}

.swiper-pagination {
  bottom: -7.9rem !important;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 1.25rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 2rem 2rem;
  }
}

.swiper-pagination-bullet {
  background-color: #595756;
  width: 1rem;
  height: 1rem;
}
@media screen and (max-width: 767px) {
  .swiper-pagination-bullet {
    width: 2rem;
    height: 2rem;
  }
}

.swiper-button-prev, .swiper-button-next {
  top: auto;
  bottom: calc(-26px - 5.5rem);
}
@media screen and (max-width: 767px) {
  .swiper-button-prev, .swiper-button-next {
    bottom: calc(-15px - 5.8rem);
  }
}
.swiper-button-prev::after, .swiper-button-next::after {
  content: "";
  width: 1rem;
  height: 1rem;
}
@media screen and (max-width: 767px) {
  .swiper-button-prev::after, .swiper-button-next::after {
    width: 2.6vw;
    height: 2.6vw;
  }
}

.swiper-button-prev {
  left: 41%;
}
@media screen and (max-width: 767px) {
  .swiper-button-prev {
    left: 28%;
  }
}
.swiper-button-prev::after {
  background: url(../images/arrow-prev.svg) no-repeat 50% 50%/contain;
}

.swiper-button-next {
  right: 41%;
}
@media screen and (max-width: 767px) {
  .swiper-button-next {
    right: 28%;
  }
}
.swiper-button-next::after {
  background: url(../images/arrow-next.svg) no-repeat 50% 50%/contain;
}

/* js */
.js-fadeup {
  transform: translateY(3rem);
  opacity: 0;
  transition: 0.6s ease-out;
}

.js-fadeup.is-active {
  transform: translateY(0);
  opacity: 1;
}/*# sourceMappingURL=style.css.map */