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

/*アニメーション 
----------------------------*/
#feature .js-scaleDown {
  position: relative;
  overflow: hidden;
}
#feature .js-scaleDown::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transition: height 0.8s ease;
  z-index: 3;
}
#feature .js-scaleDown.is-show::before {
  height: 0;
}
#feature .js-scaleDown img {
  opacity: 0;
  transform: scale(1.2);
  transition: 0.8s ease;
}
#feature .js-scaleDown.is-show img {
  opacity: 1;
  transform: scale(1);
}
#feature .js-clipRight {
  clip-path: inset(0 100% 0 0);
  transition-duration: 2s;
}
#feature .js-clipRight.is-show {
  clip-path: inset(0);
}
#feature .js-fadeRight {
  opacity: 0;
  filter: blur(10px);
  transform: translateX(-5%);
  transition: all 1s ease-out;
}
#feature .js-fadeRight.is-show {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}

/*共通
----------------------------*/
.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 34.8214285714vw 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: #8cc8f0;
  order: 1;
  position: sticky;
  top: 80px;
  height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#feature .leftWrap .leftWrap__txt {
  width: 9.6428571429vw;
}
#feature .rightWrap {
  background-color: #8cc8f0;
  order: 3;
  position: sticky;
  top: 80px;
  height: calc(100vh - 80px);
  display: flex;
  justify-content: center;
  align-items: center;
}
#feature .rightWrap .rightWrap__txt {
  width: 19.8571428571vw;
}

/*メインビジュアル（.hero)
----------------------------*/
#feature .hero {
  position: relative;
}
#feature .hero .movie {
  width: calc(750 * var(--vw));
  aspect-ratio: 750/1000;
  opacity: 0;
  filter: blur(10px);
  transition: all 0.5s;
}
#feature .hero .movie.is-show {
  opacity: 1;
  filter: blur(0);
}
#feature .hero .movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#feature .hero .hero__txt {
  position: absolute;
  top: calc(45 * var(--vw));
  right: 0;
  left: 0;
  margin: auto;
  z-index: 10;
  text-align: center;
  pointer-events: none;
}
#feature .hero .hero__txt .hero__txt-jp {
  width: calc(288 * var(--vw));
  margin: auto auto calc(26 * var(--vw));
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 1.2s cubic-bezier(0.8, 0, 0.15, 1);
}
#feature .hero .hero__txt .hero__txt-jp.is-show {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
#feature .hero .hero__txt .hero__txt-en {
  position: relative;
  display: inline-block;
  font-family: "nimbus-sans", sans-serif;
  font-weight: 700;
  color: #fff;
  overflow: hidden;
}
#feature .hero .hero__txt .hero__txt-en span {
  display: inline-block;
  transform: translateY(200%);
}
#feature .hero .hero__txt .hero__txt-en.is-show span {
  animation: slideUp 0.5s ease forwards 2s;
}
@keyframes slideUp {
  to {
    transform: translateY(0);
  }
}
#feature .hero .hero__txt .hero__txt-en01 {
  width: calc(420 * var(--vw));
  font-size: calc(56 * var(--vw));
  letter-spacing: 0.05em;
  line-height: 0.88;
  margin-bottom: calc(14 * var(--vw));
}
#feature .hero .hero__txt .hero__txt-en02 {
  font-size: calc(44 * var(--vw));
  letter-spacing: 0.055em;
  line-height: 1;
}
#feature .hero .hero__txt .hero__txt-en02 span:nth-of-type(8) {
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 600;
  font-size: calc(38 * var(--vw));
}

/*.sec
----------------------------*/
#feature .sec {
  position: relative;
  z-index: 10;
}
#feature .sec .sec__img, #feature .sec .sec__box {
  position: relative;
}
#feature .sec__txt {
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 600;
  font-size: calc(23 * var(--vw));
  letter-spacing: 0.05em;
  line-height: 1.872;
}
#feature .sec__ttl {
  width: -moz-fit-content;
  width: fit-content;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 600;
  font-size: calc(40 * var(--vw));
  letter-spacing: 0.051em;
  line-height: 1;
  background: linear-gradient(transparent 50%, #50aaff 50%);
  padding: 0 0.2em 0.2em;
}
#feature .sec__credit {
  text-align: center;
}
#feature .sec__credit .item {
  display: inline-block;
  font-family: "nimbus-sans", sans-serif;
  font-weight: 500;
  font-size: calc(19.7 * var(--vw));
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 0 calc(8 * var(--vw)) calc(12 * 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 .sec01 .box01 {
  margin: 0 auto calc(134 * var(--vw));
  display: flex;
  flex-wrap: wrap;
}
#feature .sec01 .txt01 {
  text-align: center;
  font-size: calc(28 * var(--vw));
  letter-spacing: 0.075em;
  line-height: 1.714;
  margin: calc(105 * var(--vw)) auto calc(112 * var(--vw));
}
#feature .sec01 .img01 {
  width: calc(400 * var(--vw));
  margin: 0 auto 0 0;
}
#feature .sec01 .img02 {
  width: calc(330 * var(--vw));
  margin: calc(270 * var(--vw)) 0 0 calc(20 * var(--vw));
}
#feature .sec01 .img03 {
  width: calc(320 * var(--vw));
  margin: calc(-186 * var(--vw)) auto 0 calc(40 * var(--vw));
}
#feature .sec01 .txt02 {
  width: calc(320 * var(--vw));
  margin: calc(26 * var(--vw)) auto 0 0;
}
#feature .sec01 .credit01 {
  margin: calc(44 * var(--vw)) auto 0;
}
#feature .sec01 .img04 {
  width: calc(600 * var(--vw));
  margin: 0 auto;
}
#feature .sec01 .credit02 {
  margin: calc(50 * var(--vw)) auto 0;
}
#feature .sec02 {
  margin: calc(66 * var(--vw)) 0;
}
#feature .sec02 .ttl01 {
  margin: 0 auto calc(46 * var(--vw));
}
#feature .sec02 .box01 {
  margin-bottom: calc(140 * var(--vw));
}
#feature .sec02 .txt01 {
  width: calc(600 * var(--vw));
  text-align: justify;
  font-size: calc(23 * var(--vw));
  letter-spacing: 0.075em;
  line-height: 1.87;
  margin: 0 auto calc(74 * var(--vw));
}
#feature .sec02 .img01 {
  width: calc(600 * var(--vw));
  margin: 0 auto calc(42 * var(--vw));
}
#feature .sec02 .box02 {
  margin-bottom: calc(146 * var(--vw));
}
#feature .sec02 .img02 {
  width: calc(750 * var(--vw));
  margin: 0 auto calc(48 * var(--vw));
}
#feature .sec02 .img02 .sec__img-txt {
  display: inline-block;
  font-family: "nimbus-sans", sans-serif;
  font-weight: 700;
  font-size: calc(45 * var(--vw));
  letter-spacing: 0.015em;
  line-height: 1;
  color: #fff;
  position: absolute;
  top: calc(26 * var(--vw));
  right: calc(24 * var(--vw));
  z-index: 20;
  pointer-events: none;
}
#feature .sec02 .txt02 {
  width: calc(600 * var(--vw));
  text-align: justify;
  margin: calc(30 * var(--vw)) auto;
}
#feature .sec02 .box03 {
  margin-bottom: calc(140 * var(--vw));
}
#feature .sec02 .img03 {
  width: calc(750 * var(--vw));
  margin: 0 auto calc(44 * var(--vw));
}
#feature .sec02 .img03 .sec__img-txt {
  display: inline-block;
  font-family: "nimbus-sans", sans-serif;
  font-weight: 700;
  font-size: calc(45 * var(--vw));
  letter-spacing: 0.015em;
  line-height: 1;
  color: #fff;
  position: absolute;
  top: calc(24 * var(--vw));
  left: calc(20 * var(--vw));
  z-index: 20;
  pointer-events: none;
}
#feature .sec02 .txt03 {
  width: calc(600 * var(--vw));
  text-align: justify;
  margin: calc(30 * var(--vw)) auto;
}
#feature .sec02 .box04 {
  margin-bottom: calc(138 * var(--vw));
}
#feature .sec02 .img04 {
  width: calc(600 * var(--vw));
  margin: 0 auto calc(46 * var(--vw)) calc(28 * var(--vw));
}
#feature .sec02 .img05 {
  width: calc(550 * var(--vw));
  margin: 0 calc(58 * var(--vw)) calc(46 * var(--vw)) auto;
}
#feature .sec03 {
  text-align: center;
}
#feature .sec03 .ttl01 {
  margin: 0 auto calc(44 * var(--vw));
}
#feature .sec03 .box01 {
  margin-bottom: calc(142 * var(--vw));
}
#feature .sec03 .box02 {
  margin-bottom: calc(142 * var(--vw));
}
#feature .sec03 .txt01 {
  width: calc(600 * var(--vw));
  text-align: justify;
  margin: 0 auto calc(78 * var(--vw));
  letter-spacing: 0.09em;
}
#feature .sec03 .img01 {
  width: calc(600 * var(--vw));
  margin: 0 auto calc(42 * var(--vw));
}
#feature .sec03 .img02 {
  width: calc(600 * var(--vw));
  margin: 0 auto calc(44 * var(--vw)) calc(30 * var(--vw));
}
#feature .sec03 .img03 {
  width: calc(600 * var(--vw));
  margin: 0 auto calc(44 * var(--vw));
}
#feature .sec__all-btn {
  margin: calc(246 * var(--vw)) auto calc(260 * var(--vw));
  position: relative;
  display: inline-block;
  font-family: "nimbus-sans", sans-serif;
  font-weight: 400;
  font-size: calc(26 * var(--vw));
  letter-spacing: 0.057em;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 calc(6 * var(--vw)) calc(6 * var(--vw));
}
#feature .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 487.5px 1fr;
  }
  #feature .leftWrap .leftWrap__txt {
    width: 135px;
  }
  #feature .rightWrap .rightWrap__txt {
    width: 278px;
  }
}/*# sourceMappingURL=style.css.map */