@charset "UTF-8";
:root {
  --vw-unit: calc((var(--vw) * (1110 / 1110)) / 750);
  --vw-pcunit: calc(var(--vw) / 1110);
}

@media screen and (min-width: 1110px) {
  :root {
    --vw-unit: calc((1110px * (1110 / 1110)) / 750);
    --vw-pcunit: calc(1110px / 1110);
  }
}
/*アニメーション
----------------------------*/
@keyframes fadeInSimple {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes sliderPagination {
  0% {
    transform: scaleX(0);
    opacity: 0;
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}
/*共通
----------------------------*/
.l-container {
  width: 100%;
}

.l-header {
  padding: 0;
  position: relative;
  z-index: 999;
  background-color: #fff;
  overflow-x: clip;
}

.l-footer {
  padding: 0;
  position: relative;
  z-index: 999;
  background-color: #fff;
  overflow-x: clip;
}

.pc-footer {
  margin: 0;
}

#feature {
  width: 100%;
  margin: 0 auto;
  color: #000;
  box-sizing: border-box;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-feature-settings: "palt";
  position: relative;
  overflow-x: clip;
  opacity: 0;
  transition: 0.3s;
}
#feature.is_show {
  opacity: 1;
}
#feature * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
#feature a {
  width: 100%;
  height: auto;
  display: block;
  color: #000;
  transition: 0.3s;
}
#feature a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#feature figure {
  background-color: #fff;
}
#feature img {
  width: 100%;
  height: auto;
  display: block;
}
#feature .js_anime {
  opacity: 0;
  transition: all 0.5s;
}
#feature .js_anime.is_show {
  opacity: 1;
}

#feature .main {
  width: calc(750 * var(--vw-unit));
  margin: 0 auto;
}
#feature {
  /*メインビジュアル（.hero)
    ----------------------------*/
}
#feature .hero {
  position: relative;
}
#feature .sec {
  margin-bottom: calc(108 * var(--vw-unit));
  position: relative;
  z-index: 2;
}
#feature .sec .sec__logo {
  width: calc(100 * var(--vw-pcunit));
  margin: calc(30 * var(--vw-pcunit)) 0 0 calc(10 * var(--vw-pcunit));
}
#feature .sec .sec__ttl {
  margin: calc(9 * var(--vw-pcunit)) 0 0 calc(9 * var(--vw-pcunit));
  font-size: calc(20 * var(--vw-pcunit));
  line-height: calc(35 * var(--vw-pcunit));
  letter-spacing: -0.007em;
}
#feature .sec .sec__imglist {
  width: 100%;
  margin-top: calc(35 * var(--vw-unit));
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: calc(4 * var(--vw-unit)) 0;
}
#feature .sec .sec__img {
  width: calc(373 * var(--vw-unit));
  position: relative;
}
#feature .sec .sec__img.is_full {
  width: 100%;
}
#feature .sec .sec__btnarea {
  width: calc(743 * var(--vw-pcunit));
  margin: calc(81 * var(--vw-pcunit)) auto 0;
  display: flex;
  justify-content: space-between;
}
#feature .sec .sec__btn {
  width: calc(330 * var(--vw-pcunit));
  position: relative;
  z-index: 2;
}/*# sourceMappingURL=style.css.map */