@charset "UTF-8";
:root {
  --vw: (100vw / 1400) * var(--ratio);
  --ratio: calc(var(--pc-width) / 750);
  --pc-width: 450;
}

/*アニメーション 
----------------------------*/
html {
  scroll-behavior: smooth;
}

#feature .fadeIn {
  opacity: 0;
  transform: translateY(5%);
  transition: opacity 1s ease, transform 1s ease;
}
#feature .fadeIn.is-show {
  opacity: 1;
  transform: translateY(0);
}
#feature .slideIn {
  opacity: 0;
  transform: translate(-100px, 0px);
  transition: all 0.5s ease;
}
#feature .slideIn.is-show {
  opacity: 1;
  transform: translate(0px, 0px);
}
#feature .fadeTxt {
  opacity: 0;
  transition: opacity 880ms 440ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#feature .fadeTxt.is-show {
  opacity: 1;
  transform: translate(0px, 0px);
}
#feature .clipRight {
  clip-path: inset(0 100% 0 0);
  transition-duration: 2s;
}
#feature .clipRight.is-show {
  clip-path: inset(0);
}
#feature .js-ttl {
  opacity: 0;
  transition: opacity 880ms 440ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#feature .js-ttl::after {
  transition: 1s;
  transform-origin: left;
  transform: scaleX(0);
}
#feature .js-ttl.is-show {
  opacity: 1;
}
#feature .js-ttl.is-show::after {
  transform: scaleX(1);
}
#feature .swiper {
  width: calc(650 * var(--vw));
  margin: 0 auto;
}
#feature .swiper .swiper-pagination {
  display: flex;
  justify-content: center;
  gap: calc(8 * var(--vw));
  position: absolute;
  width: 100%;
  height: calc(15 * var(--vw));
  bottom: calc(16 * var(--vw));
}
#feature .swiper .swiper-pagination-bullet {
  width: calc(15 * var(--vw));
  height: calc(15 * var(--vw));
  background-color: #c8c8c8;
  border-radius: 0;
  opacity: 1 !important;
  margin: 0 !important;
  cursor: pointer;
}
#feature .swiper .swiper-pagination-bullet-active {
  background-color: #000;
}

/*共通
----------------------------*/
.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;
  background-color: #fff;
  box-sizing: border-box;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";
  position: relative;
  overflow: clip;
}
#feature * {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
}
#feature a {
  width: 100%;
  height: auto;
  display: block;
  color: #000;
  text-decoration: none;
}
#feature a:hover {
  opacity: 1;
}
#feature img, #feature svg {
  width: 100%;
  height: auto;
  display: block;
}
#feature .inner {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

/*Wrap センターに共通コンテンツの場合
----------------------------*/
#feature .contentsWrap {
  display: grid;
  grid-template-columns: 1fr 32.1428571429vw 1fr;
  width: 100%;
  position: relative;
}
#feature .mainWrap {
  order: 2;
}
#feature .mainWrap .inner {
  margin: 0 auto;
  position: relative;
  overflow: clip;
  z-index: 2;
}
#feature .leftWrap {
  background-color: #a6a6a6;
  order: 1;
  position: sticky;
  top: 80px;
  height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#feature .leftWrap .leftWrap__logo {
  width: 14.2142857143vw;
  margin: 0 auto;
}
#feature .rightWrap {
  background-color: #a6a6a6;
  order: 3;
  position: sticky;
  top: 80px;
  height: calc(100vh - 80px);
  display: flex;
  justify-content: center;
  align-items: center;
}
#feature .rightWrap .rightWrap__logo {
  width: 14.2142857143vw;
  margin: 0 auto;
}

/*メインビジュアル（.hero)
----------------------------*/
#feature .hero {
  position: relative;
}
#feature .hero .hero__img {
  width: 100%;
  opacity: 0;
  transition: opacity 1s, transform 2s;
  transform: scale(1.1);
}
#feature .hero .hero__img.is-show {
  opacity: 1;
  transform: scale(1);
}
#feature .hero .hero__logo {
  width: 21.7142857143vw;
  position: absolute;
  top: 53.5%;
  left: 50%;
  right: 50%;
  opacity: 0;
  transform: translate(-50%, 1em);
}
#feature .hero .hero__logo.is-show {
  opacity: 1;
  transition: opacity 1s, transform 1s;
  transform: translate(-50%, 0);
}
#feature .hero .hero__txt {
  margin: calc(120 * var(--vw)) auto calc(118 * var(--vw));
  font-size: calc(26 * var(--vw));
  font-weight: 600;
  line-height: 1.769;
  letter-spacing: 0.065em;
  text-align: center;
}
#feature .hero .hero__link {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: calc(56 * var(--vw)) calc(10 * var(--vw));
  width: calc(610 * var(--vw));
  margin: 0 auto calc(132 * var(--vw));
}
#feature .hero .hero__link li:nth-of-type(1), #feature .hero .hero__link li:nth-of-type(3) {
  width: calc(236 * var(--vw));
}
#feature .hero .hero__link li:nth-of-type(2), #feature .hero .hero__link li:nth-of-type(4) {
  width: calc(294 * var(--vw));
}
#feature .hero .product__img {
  width: calc(750 * var(--vw));
}

/*.sec
----------------------------*/
#feature .sec {
  position: relative;
}
#feature .sec .sec__img, #feature .sec .sec__box {
  position: relative;
  z-index: 1;
}
#feature .sec .sec__ttl {
  position: absolute;
  top: calc(-20 * var(--vw));
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
#feature .sec .txt01 {
  width: calc(650 * var(--vw));
  font-size: calc(23 * var(--vw));
  font-weight: 300;
  line-height: 1.87;
  letter-spacing: 0.07em;
  text-align: justify;
  margin: calc(68 * var(--vw)) auto calc(58 * var(--vw));
}
#feature .sec .txt02 {
  font-size: calc(25 * var(--vw));
  font-weight: 600;
  line-height: 1.68;
  letter-spacing: 0.065em;
  margin: 0 auto calc(20 * var(--vw));
  text-align: center;
}
#feature .sec__model {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin: 0 auto calc(26 * var(--vw));
}
#feature .sec__credit {
  text-align: center;
}
#feature .sec__credit .item {
  display: inline-block;
  font-family: "nimbus-sans", sans-serif;
  font-weight: 400;
  font-size: calc(24 * var(--vw));
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 0 calc(4 * var(--vw)) calc(20 * var(--vw)) 0;
  color: #000;
  border-bottom: 1px solid currentColor;
}
#feature .sec__credit .item.-mr0, #feature .sec__credit .item:last-of-type {
  margin-right: 0;
}
#feature .sec__chart {
  width: calc(650 * var(--vw));
  margin: 0 auto calc(96 * var(--vw));
}
#feature .sec__chart .sec__chart--ttl {
  position: relative;
  font-family: "nimbus-sans", sans-serif;
  font-weight: 700;
  font-size: calc(30 * var(--vw));
  letter-spacing: 0.02em;
  margin: 0 auto calc(36 * var(--vw));
}
#feature .sec__chart .sec__chart--ttl::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  left: 0;
  bottom: calc(-1 * var(--vw));
}
#feature .sec__chart .sec__chart--list {
  position: relative;
  overflow-x: clip;
  width: calc(650 * var(--vw));
}
#feature .sec__chart .sec__chart--list li {
  position: relative;
  margin-top: calc(50 * var(--vw));
}
#feature .sec__chart .sec__chart--list li:nth-of-type(1) {
  margin-top: 0;
}
#feature .sec__chart .sec__chart--dot {
  position: absolute;
  width: calc(33 * var(--vw));
  z-index: 10;
  transition: 1s;
  top: calc(35 * var(--vw));
  left: calc(-33 * var(--vw));
}
#feature .sec01 {
  padding: calc(176 * var(--vw)) 0 calc(80 * var(--vw));
  scroll-margin-top: calc(100 * var(--vw));
}
#feature .sec01 .ttl01 {
  width: calc(242 * var(--vw));
}
#feature .sec01 .box01 {
  width: calc(650 * var(--vw));
  margin: 0 auto;
}
#feature .sec01 .img01 {
  width: calc(650 * var(--vw));
  margin: 0 auto;
}
#feature .sec01 .credit01 {
  position: absolute;
  bottom: calc(8 * var(--vw));
  left: calc(30 * var(--vw));
  z-index: 10;
}
#feature .sec01 .txt01 {
  margin: calc(68 * var(--vw)) auto calc(58 * var(--vw));
}
#feature .sec01 .txt02 {
  margin: 0 auto calc(20 * var(--vw));
}
#feature .sec01 .sec__chart--list li:nth-of-type(1) .sec__chart--dot.is-show {
  left: calc(370 * var(--vw));
}
#feature .sec01 .sec__chart--list li:nth-of-type(2) .sec__chart--dot.is-show {
  left: calc(545 * var(--vw));
}
#feature .sec01 .sec__chart--list li:nth-of-type(3) .sec__chart--dot.is-show {
  left: calc(370 * var(--vw));
}
#feature .sec01 .sec__chart--list li:nth-of-type(4) .sec__chart--dot.is-show {
  left: calc(370 * var(--vw));
}
#feature .sec01 .img02 {
  width: calc(200 * var(--vw));
  margin: 0 0 calc(10 * var(--vw)) calc(114 * var(--vw));
}
#feature .sec01 .img03 {
  width: calc(272 * var(--vw));
  margin: 0 0 0 calc(74 * var(--vw));
}
#feature .sec02 {
  padding: calc(80 * var(--vw)) 0 calc(80 * var(--vw));
  scroll-margin-top: calc(100 * var(--vw));
}
#feature .sec02 .ttl01 {
  width: calc(312 * var(--vw));
  top: calc(-18 * var(--vw));
}
#feature .sec02 .box01 {
  width: calc(650 * var(--vw));
  margin: 0 auto;
}
#feature .sec02 .img01 {
  width: calc(650 * var(--vw));
  margin: 0 auto;
}
#feature .sec02 .credit03 {
  position: absolute;
  bottom: calc(8 * var(--vw));
  left: calc(30 * var(--vw));
  z-index: 10;
}
#feature .sec02 .txt01 {
  margin: calc(72 * var(--vw)) auto calc(73 * var(--vw));
}
#feature .sec02 .txt02 {
  margin: calc(116 * var(--vw)) auto calc(20 * var(--vw));
}
#feature .sec02 .sec__chart--list li:nth-of-type(1) .sec__chart--dot.is-show {
  left: calc(370 * var(--vw));
}
#feature .sec02 .sec__chart--list li:nth-of-type(2) .sec__chart--dot.is-show {
  left: calc(370 * var(--vw));
}
#feature .sec02 .sec__chart--list li:nth-of-type(3) .sec__chart--dot.is-show {
  left: calc(370 * var(--vw));
}
#feature .sec02 .sec__chart--list li:nth-of-type(4) .sec__chart--dot.is-show {
  left: calc(370 * var(--vw));
}
#feature .sec02 .sec__model {
  margin: calc(34 * var(--vw)) auto calc(20 * var(--vw));
}
#feature .sec02 .img02 {
  width: calc(258 * var(--vw));
  margin: 0 0 0 calc(100 * var(--vw));
}
#feature .sec02 .img03 {
  width: calc(204 * var(--vw));
  margin: 0 0 calc(24 * var(--vw)) calc(68 * var(--vw));
}
#feature .sec03 {
  padding: calc(98 * var(--vw)) 0 calc(80 * var(--vw));
  scroll-margin-top: calc(100 * var(--vw));
}
#feature .sec03 .ttl01 {
  width: calc(158 * var(--vw));
}
#feature .sec03 .box01 {
  width: calc(650 * var(--vw));
  margin: 0 auto;
}
#feature .sec03 .img01 {
  width: calc(650 * var(--vw));
  margin: 0 auto;
}
#feature .sec03 .credit05 {
  position: absolute;
  bottom: calc(8 * var(--vw));
  left: calc(30 * var(--vw));
  z-index: 10;
}
#feature .sec03 .txt01 {
  margin: calc(68 * var(--vw)) auto calc(60 * var(--vw));
}
#feature .sec03 .txt02 {
  margin: calc(114 * var(--vw)) auto calc(20 * var(--vw));
}
#feature .sec03 .sec__chart--list li:nth-of-type(1) .sec__chart--dot.is-show {
  left: calc(200 * var(--vw));
}
#feature .sec03 .sec__chart--list li:nth-of-type(2) .sec__chart--dot.is-show {
  left: calc(200 * var(--vw));
}
#feature .sec03 .sec__chart--list li:nth-of-type(3) .sec__chart--dot.is-show {
  left: calc(542 * var(--vw));
}
#feature .sec03 .sec__chart--list li:nth-of-type(4) .sec__chart--dot.is-show {
  left: calc(200 * var(--vw));
}
#feature .sec03 .sec__model {
  margin: calc(36 * var(--vw)) auto calc(32 * var(--vw));
}
#feature .sec03 .img02 {
  width: calc(256 * var(--vw));
  margin: 0 0 0 calc(105 * var(--vw));
}
#feature .sec03 .img03 {
  width: calc(286 * var(--vw));
  margin: 0 0 0 calc(32 * var(--vw));
}
#feature .sec03 .credit06 {
  width: calc(460 * var(--vw));
  margin: 0 auto;
}
#feature .sec04 {
  padding: calc(82 * var(--vw)) 0 0;
  scroll-margin-top: calc(100 * var(--vw));
}
#feature .sec04 .ttl01 {
  width: calc(104 * var(--vw));
  top: calc(-14 * var(--vw));
}
#feature .sec04 .box01 {
  width: calc(650 * var(--vw));
  margin: 0 auto;
}
#feature .sec04 .img01 {
  width: calc(650 * var(--vw));
  margin: 0 auto;
}
#feature .sec04 .credit07 {
  position: absolute;
  bottom: calc(8 * var(--vw));
  left: calc(30 * var(--vw));
  z-index: 10;
}
#feature .sec04 .txt01 {
  margin: calc(70 * var(--vw)) auto calc(65 * var(--vw));
}
#feature .sec04 .txt02 {
  margin: calc(110 * var(--vw)) auto calc(20 * var(--vw));
}
#feature .sec04 .sec__chart--ttl::after {
  bottom: calc(2 * var(--vw));
}
#feature .sec04 .sec__chart--list li:nth-of-type(1) .sec__chart--dot.is-show {
  left: calc(370 * var(--vw));
}
#feature .sec04 .sec__chart--list li:nth-of-type(2) .sec__chart--dot.is-show {
  left: calc(370 * var(--vw));
}
#feature .sec04 .sec__chart--list li:nth-of-type(3) .sec__chart--dot.is-show {
  left: calc(370 * var(--vw));
}
#feature .sec04 .sec__chart--list li:nth-of-type(4) {
  margin-top: calc(55 * var(--vw));
}
#feature .sec04 .sec__chart--list li:nth-of-type(4) .sec__chart--dot.is-show {
  left: calc(542 * var(--vw));
}
#feature .sec04 .sec__model {
  margin: 0 auto calc(38 * var(--vw));
}
#feature .sec04 .img02 {
  width: calc(336 * var(--vw));
  margin: 0 0 0 calc(70 * var(--vw));
}
#feature .sec04 .img03 {
  width: calc(220 * var(--vw));
  margin: 0 0 calc(-4 * var(--vw)) calc(20 * var(--vw));
}
#feature .sec04 .credit08 {
  width: calc(460 * var(--vw));
  margin: 0 auto;
}
#feature .sec__all {
  padding: calc(98 * var(--vw)) 0 calc(200 * var(--vw));
  text-align: center;
}
#feature .sec__all .sec__all-btn {
  position: relative;
  display: inline-block;
  font-family: "nimbus-sans", sans-serif;
  font-weight: 400;
  font-size: calc(30 * var(--vw));
  letter-spacing: 0.057em;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
}
#feature .sec__all .sec__all-btn::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  left: calc(0 * var(--vw));
  bottom: calc(-4 * var(--vw));
}

/*1400px以上 センターに共通コンテンツの場合
----------------------------*/
@media screen and (min-width: 1401px) {
  :root {
    --vw: 1px * var(--ratio);
  }
  #feature .contentsWrap {
    grid-template-columns: 1fr 450px 1fr;
  }
  #feature .leftWrap .leftWrap__logo {
    width: 199px;
  }
  #feature .rightWrap .rightWrap__logo {
    width: 199px;
  }
}/*# sourceMappingURL=style.css.map */