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

@media screen and (min-width: 1400px) {
  :root {
    --vw-unit: calc((1400px * (500 / 1400)) / 750);
    --vw-pcunit: calc(1400px / 1400);
  }
}
/*アニメーション
----------------------------*/
@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: #191919;
  box-sizing: border-box;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-feature-settings: "palt";
  position: relative;
  overflow-x: clip;
  opacity: 0;
  transition: 0.3s;
}
#feature::after {
  content: "";
  width: 100%;
  height: 100vh;
  background-image: url(../img/pc-bg.jpg);
  background-size: 1400px 800px;
  background-position: top center;
  background-repeat: repeat;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
#feature.is_show {
  opacity: 1;
}
#feature * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
#feature a {
  width: 100%;
  height: auto;
  display: block;
  color: #191919;
  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.is_flip {
  visibility: visible;
  transform-style: preserve-3d;
  transform: rotateY(180deg);
  opacity: 1;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#feature .js_anime.is_flip img {
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
}
#feature .js_anime.is_flip.is_d1 {
  transition-delay: 0.2s;
}
#feature .js_anime.is_flip.is_d1 img {
  transition-delay: 0.6s;
}
#feature .js_anime.is_flip.is_d2 {
  transition-delay: 0.4s;
}
#feature .js_anime.is_flip.is_d2 img {
  transition-delay: 0.8s;
}
#feature .js_anime.is_flip.is_d3 {
  transition-delay: 0.6s;
}
#feature .js_anime.is_flip.is_d3 img {
  transition-delay: 1s;
}
#feature .js_anime .is_fadetxt p {
  opacity: 0;
  transition: opacity 0.33333333s ease;
}
#feature .js_anime .is_fadetxt p:nth-child(1) {
  transition-delay: 0.2s;
}
#feature .js_anime .is_fadetxt p:nth-child(2) {
  transition-delay: 0.4s;
}
#feature .js_anime .is_fadetxt p:nth-child(3) {
  transition-delay: 0.6s;
}
#feature .js_anime .is_fadetxt p:nth-child(4) {
  transition-delay: 0.8s;
}
#feature .js_anime .is_fadetxt p:nth-child(5) {
  transition-delay: 1s;
}
#feature .js_anime.is_show.is_flip {
  visibility: visible;
  opacity: 1;
  transform: translate(0, 0) rotateY(0);
  pointer-events: inherit;
}
#feature .js_anime.is_show.is_flip img {
  opacity: 1;
}
#feature .js_anime.is_show .is_fadetxt p {
  opacity: 1;
}

#feature .main {
  display: flex;
  position: relative;
  z-index: 2;
}
#feature .main .left {
  height: calc(100vh - 80px);
  flex: 1;
  position: sticky;
  top: 80px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
#feature .main .left.is_show {
  opacity: 1;
}
#feature .main .left .left__txt {
  width: calc(383 * var(--vw-pcunit));
}
#feature .main .right {
  height: calc(100vh - 80px);
  flex: 1;
  position: sticky;
  top: 80px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
#feature .main .right.is_show {
  opacity: 1;
}
#feature .main .right .right__btn {
  width: calc(300 * var(--vw-pcunit));
}
#feature .main .center {
  width: calc(490 * var(--vw-pcunit));
  position: relative;
  overflow-x: clip;
  z-index: 4;
}
#feature {
  /*メインビジュアル（.hero)
    ----------------------------*/
}
#feature .hero {
  position: relative;
}
#feature .hero .hero__head {
  position: relative;
}
#feature .hero .hero__ttl {
  width: calc(656 * var(--vw-unit));
  position: absolute;
  top: 51%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#feature .hero .hero__txt {
  margin-top: calc(120 * var(--vw-unit));
}
#feature .hero .hero__txt p {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}
#feature .hero .hero__txt p:nth-child(1) {
  font-size: calc(34 * var(--vw-unit));
  line-height: calc(59.5 * var(--vw-unit));
  letter-spacing: 0.1em;
  position: relative;
}
#feature .hero .hero__txt p:nth-child(1)::before {
  content: "";
  width: calc(13 * var(--vw-unit));
  height: calc(59 * var(--vw-unit));
  border-top: calc(2 * var(--vw-unit)) solid #191919;
  border-left: calc(2 * var(--vw-unit)) solid #191919;
  position: absolute;
  top: 0;
  left: calc(-40 * var(--vw-unit));
}
#feature .hero .hero__txt p:nth-child(1)::after {
  content: "";
  width: calc(13 * var(--vw-unit));
  height: calc(59 * var(--vw-unit));
  border-bottom: calc(2 * var(--vw-unit)) solid #191919;
  border-right: calc(2 * var(--vw-unit)) solid #191919;
  position: absolute;
  bottom: calc(2 * var(--vw-unit));
  right: calc(-42 * var(--vw-unit));
}
#feature .hero .hero__txt p:nth-child(2) {
  margin-top: calc(50 * var(--vw-unit));
  font-size: calc(26 * var(--vw-unit));
  line-height: calc(45.5 * var(--vw-unit));
  letter-spacing: 0.13em;
}
#feature .sec {
  position: relative;
  z-index: 2;
}
#feature .sec .sec__credit {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  z-index: 20;
  left: 50%;
  transform: translateX(-50%);
}
#feature .sec .sec__credit .credit {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 calc(26 * var(--vw-unit));
}
#feature .sec .sec__credit .credit .item {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
#feature .sec .sec__credit .credit .item .link {
  width: -moz-fit-content;
  width: fit-content;
}
#feature .sec .sec__credit .credit .item .link p {
  font-family: "cronos-pro", sans-serif;
  font-weight: 400;
  font-size: calc(28 * var(--vw-unit));
  line-height: calc(48 * var(--vw-unit));
  letter-spacing: 0.02em;
}
#feature .sec .sec__credit.sec__credit01 {
  width: calc(600 * var(--vw-unit));
  top: calc(100% + 32 * var(--vw-unit));
}
#feature .sec .sec__credit.sec__credit02 {
  width: calc(450 * var(--vw-unit));
  top: calc(100% + -176 * var(--vw-unit));
}
#feature .sec .sec__credit.sec__credit03 {
  width: calc(700 * var(--vw-unit));
  top: calc(100% + 32 * var(--vw-unit));
}
#feature .sec .sec__credit.sec__credit04 {
  width: calc(600 * var(--vw-unit));
  top: calc(100% + 32 * var(--vw-unit));
}
#feature .sec .sec__credit.sec__credit05 {
  width: calc(550 * var(--vw-unit));
  top: calc(100% + 32 * var(--vw-unit));
}
#feature .sec .sec__credit.sec__credit06 {
  width: calc(600 * var(--vw-unit));
  top: calc(100% + 32 * var(--vw-unit));
}
#feature .sec .sec__credit.sec__credit07 {
  width: calc(750 * var(--vw-unit));
  top: calc(100% + 32 * var(--vw-unit));
}
#feature .sec .sec__credit.sec__credit07 .credit .item:nth-child(1) {
  margin-left: calc(100 * var(--vw-unit));
}
#feature .sec .sec__credit.sec__credit07 .credit .item:nth-child(2) {
  margin-right: calc(100 * var(--vw-unit));
}
#feature .sec .sec__block {
  width: 100%;
  position: relative;
}
#feature .sec .sec__ttl p {
  color: #ad0930;
  text-align: center;
}
#feature .sec .sec__ttl p:nth-child(1) {
  font-family: "cronos-pro", sans-serif;
  font-weight: 400;
  font-size: calc(38 * var(--vw-unit));
  line-height: calc(48 * var(--vw-unit));
  letter-spacing: 0.025em;
}
#feature .sec .sec__ttl p:nth-child(2) {
  margin-top: calc(20 * var(--vw-unit));
  font-family: "loretta", serif;
  font-weight: 500;
  font-size: calc(72 * var(--vw-unit));
  line-height: calc(48 * var(--vw-unit));
  letter-spacing: 0.025em;
}
#feature .sec .sec__txt p {
  width: -moz-fit-content;
  width: fit-content;
  font-family: "loretta", serif;
  font-weight: 500;
  font-size: calc(54 * var(--vw-unit));
  line-height: calc(48 * var(--vw-unit));
  letter-spacing: 0.025em;
  color: #ad0930;
  position: absolute;
}
#feature .sec .sec__productslist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 calc(50 * var(--vw-unit));
}
#feature .sec .sec__item .sec__itemimg {
  width: calc(190 * var(--vw-unit));
  height: calc(238 * var(--vw-unit));
  border: calc(6 * var(--vw-unit)) solid #ffffff;
  background: #f3f4f0;
  overflow: hidden;
  position: relative;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
#feature .sec .sec__item .sec__itemimg img {
  width: calc(170 * var(--vw-unit));
}
#feature .sec .sec__item .sec__itemcolor {
  margin-top: calc(8 * var(--vw-unit));
  font-family: "cronos-pro", sans-serif;
  font-weight: 400;
  font-size: calc(28 * var(--vw-unit));
  line-height: calc(48 * var(--vw-unit));
  letter-spacing: 0.025em;
  text-align: center;
}
#feature .sec .sec__flex {
  display: flex;
  position: relative;
}
#feature .sec .sec__flex.is_reverse {
  flex-direction: row-reverse;
}
#feature .sec .sec__slider {
  width: 100%;
  position: relative;
}
#feature .sec .sec__slider.sec__slider01 .splide .splide__slide {
  width: calc(630 * var(--vw-unit));
  margin-right: calc(30 * var(--vw-unit));
}
#feature .sec .sec__slider.sec__slider02 .splide .splide__slide {
  width: calc(650 * var(--vw-unit));
  margin-right: calc(30 * var(--vw-unit));
}
#feature .sec .sec__img {
  position: relative;
}
#feature .sec .sec__img.sec__img01 {
  width: calc(670 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img02 {
  width: calc(430 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img03 {
  width: calc(590 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img04 {
  width: calc(510 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img05 {
  width: 100%;
}
#feature .sec .sec__img.sec__img06 {
  width: 100%;
}
#feature .sec .sec__img.sec__img07 {
  width: calc(630 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img08 {
  width: calc(630 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img09 {
  width: calc(630 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img10 {
  width: 100%;
}
#feature .sec .sec__img.sec__img11 {
  width: calc(550 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img12 {
  width: calc(650 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img13 {
  width: calc(650 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img14 {
  width: 100%;
}
#feature .sec .sec__logo {
  width: calc(290 * var(--vw-unit));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
#feature .sec .sec__btn {
  width: calc(750 * var(--vw-unit));
  position: relative;
  z-index: 2;
}
#feature .sec .sec__staff {
  font-family: "cronos-pro", sans-serif;
  font-weight: 400;
  font-size: calc(28 * var(--vw-unit));
  line-height: calc(49 * var(--vw-unit));
  letter-spacing: 0.025em;
  color: #ad0930;
  text-align: center;
}
#feature .sec.sec01 {
  margin-top: calc(144 * var(--vw-unit));
}
#feature .sec.sec01 .sec__productslist {
  margin-top: calc(86 * var(--vw-unit));
}
#feature .sec.sec01 .sec__img.sec__img01 {
  margin: calc(66 * var(--vw-unit)) auto 0;
}
#feature .sec.sec01 .sec__img.sec__img02 {
  margin: calc(40 * var(--vw-unit)) 0 0 auto;
  z-index: 3;
}
#feature .sec.sec01 .sec__img.sec__img03 {
  margin: calc(-60 * var(--vw-unit)) 0 0 0;
}
#feature .sec.sec01 .sec__img.sec__img04 {
  margin: calc(50 * var(--vw-unit)) auto 0;
}
#feature .sec.sec01 .sec__txt.sec__txt01 p:nth-child(1) {
  top: calc(70 * var(--vw-unit));
  left: calc(50 * var(--vw-unit));
}
#feature .sec.sec01 .sec__txt.sec__txt01 p:nth-child(2) {
  top: calc(370 * var(--vw-unit));
  left: calc(440 * var(--vw-unit));
}
#feature .sec.sec01 .sec__txt.sec__txt01 p:nth-child(3) {
  top: calc(548 * var(--vw-unit));
  left: calc(20 * var(--vw-unit));
}
#feature .sec.sec01 .sec__txt.sec__txt01 p:nth-child(4) {
  top: calc(648 * var(--vw-unit));
  left: calc(118 * var(--vw-unit));
}
#feature .sec.sec01 .sec__bg {
  width: 100%;
  padding-top: calc(50 * var(--vw-unit));
  padding-bottom: calc(208 * var(--vw-unit));
  margin-top: calc(278 * var(--vw-unit));
  background-color: #f3f4f0;
  position: relative;
  z-index: 2;
}
#feature .sec.sec02 {
  margin-top: calc(156 * var(--vw-unit));
}
#feature .sec.sec02 .sec__productslist {
  margin-top: calc(86 * var(--vw-unit));
}
#feature .sec.sec02 .sec__img.sec__img05 {
  margin: calc(66 * var(--vw-unit)) 0 0 0;
}
#feature .sec.sec02 .sec__txt.sec__txt02 p {
  font-size: calc(42 * var(--vw-unit));
}
#feature .sec.sec02 .sec__txt.sec__txt02 p:nth-child(1) {
  top: calc(398 * var(--vw-unit));
  left: calc(522 * var(--vw-unit));
}
#feature .sec.sec02 .sec__txt.sec__txt02 p:nth-child(2) {
  top: calc(644 * var(--vw-unit));
  left: calc(24 * var(--vw-unit));
}
#feature .sec.sec02 .sec__txt.sec__txt02 p:nth-child(3) {
  top: calc(838 * var(--vw-unit));
  left: calc(492 * var(--vw-unit));
}
#feature .sec.sec02 .sec__bg {
  width: 100%;
  padding-top: calc(50 * var(--vw-unit));
  padding-bottom: calc(208 * var(--vw-unit));
  margin-top: calc(278 * var(--vw-unit));
  background-color: #f3f4f0;
  position: relative;
  z-index: 2;
}
#feature .sec.sec03 {
  margin-top: calc(272 * var(--vw-unit));
}
#feature .sec.sec03 .sec__productslist {
  margin-top: calc(88 * var(--vw-unit));
}
#feature .sec.sec03 .sec__slider {
  margin-top: calc(64 * var(--vw-unit));
}
#feature .sec.sec03 .sec__img.sec__img09 {
  margin: 0 auto;
}
#feature .sec.sec03 .sec__bg {
  width: 100%;
  padding-top: calc(88 * var(--vw-unit));
  padding-bottom: calc(88 * var(--vw-unit));
  margin-top: calc(278 * var(--vw-unit));
  background-color: #f3f4f0;
  position: relative;
  z-index: 2;
}
#feature .sec.sec04 {
  margin-top: calc(242 * var(--vw-unit));
}
#feature .sec.sec04 .sec__productslist {
  margin-top: calc(86 * var(--vw-unit));
}
#feature .sec.sec04 .sec__img.sec__img10 {
  margin: calc(66 * var(--vw-unit)) 0 0 0;
}
#feature .sec.sec04 .sec__img.sec__img11 {
  margin: calc(278 * var(--vw-unit)) auto 0;
}
#feature .sec.sec04 .sec__txt.sec__txt03 p {
  font-size: calc(42 * var(--vw-unit));
}
#feature .sec.sec04 .sec__txt.sec__txt03 p:nth-child(1) {
  top: calc(68 * var(--vw-unit));
  left: calc(542 * var(--vw-unit));
}
#feature .sec.sec04 .sec__txt.sec__txt03 p:nth-child(2) {
  top: calc(248 * var(--vw-unit));
  left: calc(46 * var(--vw-unit));
}
#feature .sec.sec04 .sec__txt.sec__txt03 p:nth-child(3) {
  top: calc(558 * var(--vw-unit));
  left: calc(520 * var(--vw-unit));
}
#feature .sec.sec05 {
  margin-top: calc(156 * var(--vw-unit));
}
#feature .sec.sec05 .sec__productslist {
  margin-top: calc(86 * var(--vw-unit));
}
#feature .sec.sec05 .sec__ttl p:nth-child(2) {
  letter-spacing: 0.03em;
}
#feature .sec.sec05 .sec__slider {
  margin-top: calc(66 * var(--vw-unit));
}
#feature .sec.sec06 {
  margin-top: calc(274 * var(--vw-unit));
  padding-bottom: calc(142 * var(--vw-unit));
}
#feature .sec.sec06 .sec__productslist {
  width: calc(500 * var(--vw-unit));
  margin: calc(86 * var(--vw-unit)) auto 0;
  gap: calc(40 * var(--vw-unit)) calc(38 * var(--vw-unit));
}
#feature .sec.sec06 .sec__img.sec__img14 {
  margin: calc(66 * var(--vw-unit)) 0 0 0;
}
#feature .sec.sec06 .sec__txt.sec__txt04 p:nth-child(1) {
  top: calc(154 * var(--vw-unit));
  left: calc(90 * var(--vw-unit));
}
#feature .sec.sec06 .sec__txt.sec__txt04 p:nth-child(2) {
  top: calc(276 * var(--vw-unit));
  left: calc(130 * var(--vw-unit));
}
#feature .sec.sec06 .sec__txt.sec__txt04 p:nth-child(3) {
  top: calc(446 * var(--vw-unit));
  left: calc(562 * var(--vw-unit));
}
#feature .sec.sec06 .sec__txt.sec__txt04 p:nth-child(4) {
  top: calc(626 * var(--vw-unit));
  left: calc(528 * var(--vw-unit));
}
#feature .sec.sec06 .sec__txt.sec__txt04 p:nth-child(5) {
  top: calc(666 * var(--vw-unit));
  left: calc(598 * var(--vw-unit));
}
#feature .sec.sec06 .sec__btn {
  margin-top: calc(278 * var(--vw-unit));
}
#feature .sec.sec06 .sec__staff {
  margin-top: calc(112 * var(--vw-unit));
}/*# sourceMappingURL=style.css.map */