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

/*アニメーション 
----------------------------*/
.js-show.blur {
  opacity: 0;
  -webkit-filter: var(--blur-hover) brightness(1.1);
  filter: var(--blur-hover) brightness(1.1);
}
.js-show.blur.is-show {
  -webkit-animation: blurPic 1s ease forwards;
  animation: blurPic 1s ease forwards;
}

@-webkit-keyframes blurPic {
  0% {
    opacity: 0;
    -webkit-filter: var(--blur-hover) brightness(1.1);
    filter: var(--blur-hover) brightness(1.1);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0) brightness(1);
    filter: blur(0) brightness(1);
  }
}

@keyframes blurPic {
  0% {
    opacity: 0;
    -webkit-filter: var(--blur-hover) brightness(1.1);
    filter: var(--blur-hover) brightness(1.1);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0) brightness(1);
    filter: blur(0) brightness(1);
  }
}
.js-show.slideIn {
  clip-path: inset(0 100% 0 0);
}
.js-show.slideIn.is-show {
  -webkit-animation: revealText 0.75s forwards ease-out;
          animation: revealText 0.75s forwards ease-out;
}

@-webkit-keyframes revealText {
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes revealText {
  to {
    clip-path: inset(0 0 0 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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  position: relative;
  overflow: clip;
}
#feature * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 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;
}

/*メインビジュアル（.hero)
----------------------------*/
#feature .top-content {
  width: 100%;
  position: relative;
  z-index: 2;
}
#feature .hero.js-show .hero__img img {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
  -webkit-transform-origin: top left;
          transform-origin: top left;
}
#feature .hero.js-show.is-show .hero__img img {
  -webkit-transition: opacity 2s cubic-bezier(0.77, 0, 0.175, 1), -webkit-transform 3.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 2s cubic-bezier(0.77, 0, 0.175, 1), -webkit-transform 3.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 2s cubic-bezier(0.77, 0, 0.175, 1), transform 3.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 2s cubic-bezier(0.77, 0, 0.175, 1), transform 3.8s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 3.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
#feature .hero.js-show .showUp {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}
#feature .hero.js-show.is-show .showUp {
  -webkit-transition: opacity 1.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: opacity 1.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
  opacity: 1;
}
#feature .hero__logo {
  width: 22.9285714286vw;
  position: absolute;
  top: 28.2857142857vw;
  left: 53.3214285714vw;
  pointer-events: none;
}

/*.credit
----------------------------*/
#feature .sec__credit {
  text-align: center;
  margin-top: calc(50 * var(--vw));
}
#feature .sec__credit .item {
  display: inline-block;
  font-family: "nimbus-sans", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: calc(19.69 * var(--vw));
  letter-spacing: 0.05em;
  line-height: 1;
  border-bottom: 1px solid #000;
  margin-right: calc(10 * var(--vw));
  margin-bottom: calc(20 * var(--vw));
}
#feature .sec__credit .item.-mr0, #feature .sec__credit .item:last-of-type {
  margin-right: 0;
}

/*.sec
----------------------------*/
#feature .contentsWrap {
  width: 100%;
  position: relative;
}
#feature .mainWrap {
  padding-top: calc(112 * var(--vw));
}
#feature .mainWrap .lp_bg01, #feature .mainWrap .lp_bg02 {
  position: fixed;
  top: 51px;
  left: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  width: 100%;
  height: 100vh;
}
#feature .mainWrap .lp_bg01 img, #feature .mainWrap .lp_bg02 img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
#feature .mainWrap .lp_bg01.is-show, #feature .mainWrap .lp_bg02.is-show {
  opacity: 1;
}
#feature .mainWrap .inner {
  width: calc(750 * var(--vw));
  margin: 0 auto;
  position: relative;
  overflow: clip;
  z-index: 2;
}
#feature .sec {
  position: relative;
  z-index: 10;
}
#feature .sec .sec__img, #feature .sec .sec__box {
  position: relative;
}
#feature .sec .sec__txt {
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: calc(25 * var(--vw));
  letter-spacing: 0.055em;
  line-height: 1.8;
  text-align: center;
}
#feature .sec01 .box01 {
  padding: 0 0 calc(100 * var(--vw));
}
#feature .sec01 .box01 .txt01 {
  margin: calc(4 * var(--vw)) auto calc(90 * var(--vw));
}
#feature .sec01 .box01 .img01 {
  width: calc(650 * var(--vw));
  margin: 0 auto calc(70 * var(--vw));
}
#feature .sec01 .box01 .txt02 {
  margin: 0 auto calc(70 * var(--vw));
}
#feature .sec01 .box01 .img02 {
  width: calc(600 * var(--vw));
  margin: 0 auto 0 calc(50 * var(--vw));
}
#feature .sec01 .box01 .credit01 {
  width: calc(500 * var(--vw));
  margin: calc(45 * var(--vw)) auto calc(30 * var(--vw));
}
#feature .sec01 .box01 .credit01 .item:nth-of-type(2) {
  margin-right: 0;
}
#feature .sec01 .box01 .img03 {
  width: calc(550 * var(--vw));
  margin: 0 calc(50 * var(--vw)) 0 auto;
}
#feature .sec01 .box02 {
  width: calc(750 * var(--vw));
  background: url("../img/box02_bg.jpg") no-repeat;
  background-size: 100%;
  padding: calc(70 * var(--vw)) 0 calc(100 * var(--vw));
}
#feature .sec01 .box02 .ttl01 {
  width: calc(260 * var(--vw));
  margin: 0 auto calc(54 * var(--vw));
}
#feature .sec01 .box02 .img04 {
  width: calc(500 * var(--vw));
  margin: 0 auto calc(56 * var(--vw));
}
#feature .sec01 .box02 .sec__txt-wrap {
  background-color: rgba(0, 0, 0, 0.5);
  padding: calc(28 * var(--vw)) 0;
}
#feature .sec01 .box02 .txt03 {
  width: calc(648 * var(--vw));
  margin: 0 auto;
  color: #fff;
  text-align: justify;
  font-size: calc(23 * var(--vw));
  letter-spacing: 0.05em;
  line-height: 1.87;
}
#feature .sec01 .box03 {
  padding: 0 0 calc(65 * var(--vw));
}
#feature .sec01 .box03 .img05 {
  width: calc(650 * var(--vw));
  margin: 0 auto calc(47 * var(--vw));
}
#feature .sec01 .box03 .credit02 {
  width: calc(500 * var(--vw));
  margin: 0 auto calc(54 * var(--vw));
}
#feature .sec01 .box03 .credit02 .item:nth-of-type(2) {
  margin-right: 0;
}
#feature .sec01 .box03 .txt04 {
  margin: 0 auto;
}
#feature .sec01 .box04 {
  padding: 0 0 calc(64 * var(--vw));
}
#feature .sec01 .box04 .img06 {
  width: calc(600 * var(--vw));
  margin: 0 calc(50 * var(--vw)) calc(80 * var(--vw)) auto;
}
#feature .sec01 .box04 .sec__ttl-wrapper {
  background: url("../img/box04_bg.png") no-repeat;
  background-size: 100%;
  padding: calc(240 * var(--vw)) 0 calc(220 * var(--vw));
  margin-top: calc(-195 * var(--vw));
}
#feature .sec01 .box04 .ttl02 {
  width: calc(385 * var(--vw));
  margin: 0 calc(196 * var(--vw)) calc(20 * var(--vw)) auto;
}
#feature .sec01 .box04 .img07 {
  width: calc(650 * var(--vw));
  margin: calc(-118 * var(--vw)) auto calc(70 * var(--vw));
}
#feature .sec01 .box04 .txt05 {
  margin: 0 auto;
}
#feature .sec01 .box05 {
  padding: 0 0 calc(100 * var(--vw));
}
#feature .sec01 .box05 .img08 {
  width: calc(600 * var(--vw));
  margin: 0 auto calc(50 * var(--vw)) calc(50 * var(--vw));
}
#feature .sec01 .box05 .credit03 {
  margin: 0 auto calc(30 * var(--vw));
}
#feature .sec01 .box05 .img09 {
  margin: 0 auto;
}
#feature .sec01 .box06 {
  width: calc(750 * var(--vw));
  background: url("../img/box06_bg.jpg") no-repeat;
  background-size: 100%;
  padding: calc(74 * var(--vw)) 0 calc(96 * var(--vw));
}
#feature .sec01 .box06 .ttl03 {
  width: calc(466 * var(--vw));
  margin: 0 auto calc(60 * var(--vw));
}
#feature .sec01 .box06 .img10 {
  width: calc(500 * var(--vw));
  margin: 0 auto calc(45 * var(--vw));
}
#feature .sec01 .box06 .sec__txt-wrap {
  background-color: rgba(0, 0, 0, 0.5);
  padding: calc(50 * var(--vw)) 0;
}
#feature .sec01 .box06 .txt06 {
  width: calc(648 * var(--vw));
  margin: 0 auto;
  color: #fff;
  text-align: justify;
  font-size: calc(23 * var(--vw));
  letter-spacing: 0.05em;
  line-height: 1.87;
}
#feature .sec01 .box07 {
  padding: 0 0 calc(40 * var(--vw));
}
#feature .sec01 .box07 .img11 {
  width: calc(650 * var(--vw));
  margin: 0 auto calc(70 * var(--vw));
}
#feature .sec01 .box07 .txt07 {
  margin: 0 auto calc(68 * var(--vw));
}
#feature .sec01 .box07 .img12 {
  width: calc(600 * var(--vw));
  margin: 0 auto calc(46 * var(--vw));
}
#feature .sec01 .box07 .credit04 {
  margin: 0 auto;
}
#feature .sec01 .sec__all {
  text-align: center;
  padding: calc(184 * var(--vw)) 0 calc(240 * var(--vw));
}
#feature .sec01 .sec__all .sec__all-btn {
  position: relative;
  font-family: "nimbus-sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(25 * var(--vw));
  letter-spacing: 0.057em;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
#feature .sec01 .sec__all .sec__all-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
  display: inline-block;
}

/*1400px以上
----------------------------*/
@media screen and (min-width: 1401px) {
  :root {
    --vw: 1px * var(--ratio);
  }
}/*# sourceMappingURL=style.css.map */