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

/*共通
----------------------------*/
html {
  scroll-behavior: smooth;
}

.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: #fff;
  background-color: #faf8f2;
  box-sizing: border-box;
  font-family: "Baskervville", 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: #fff;
  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 29.1666666667vw 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: #c2ced3;
  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: calc(248 * var(--pcVw));
}
#feature .rightWrap {
  background-color: #c2ced3;
  order: 3;
  position: sticky;
  top: 80px;
  height: calc(100vh - 80px);
  display: flex;
  justify-content: center;
  align-items: center;
}
#feature .rightWrap .rightWrap__all-btn {
  width: calc(214 * var(--pcVw));
}
#feature .fixed {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s linear 0.5s;
  pointer-events: none;
}
#feature .fixed.is-show {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: auto;
}

/*アニメーション PC版へのコピーここから一番下まで
----------------------------*/
#feature .fade {
  opacity: 0;
}
#feature .fade.is-show {
  animation: fade 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  opacity: 1;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#feature .fadeIn {
  opacity: 0;
  transition: all 1.5s;
  transform: translateY(5rem);
}
#feature .fadeIn.is-show {
  transform: translateY(0rem);
  opacity: 1;
}

/* splide
----------------------------*/
#feature .splide__pagination {
  position: absolute;
  top: auto;
  bottom: calc(20 * var(--vw));
  right: calc(20 * var(--vw));
  z-index: 10;
  display: flex;
  justify-content: end;
  gap: calc(10 * var(--vw));
  padding: 0;
  margin: 0;
}
#feature .splide__pagination__page {
  width: calc(10 * var(--vw));
  height: calc(10 * var(--vw));
  padding: 0;
  margin: 0;
  display: block;
  flex: none;
  border-radius: 50%;
  box-sizing: border-box;
  border: 1px solid #fff;
  background: transparent;
  opacity: 1;
  appearance: none;
  -webkit-appearance: none;
}
#feature .splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1);
}

/* credit
----------------------------*/
#feature .sec__imgWrap {
  position: relative;
  pointer-events: auto;
}
#feature .sec__imgWrap::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 0.6s;
  z-index: 5;
  pointer-events: none;
}
#feature .sec__imgWrap.active::after {
  opacity: 1;
}
#feature .sec__credit {
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  left: calc(30 * var(--vw));
  bottom: calc(30 * var(--vw));
  opacity: 0;
  transition: 1.2s;
  z-index: 10;
  pointer-events: none;
}
#feature .sec__credit .close {
  font-size: calc(21 * var(--vw));
  letter-spacing: 0.06em;
  line-height: 1;
  margin-top: calc(20 * var(--vw));
  pointer-events: auto;
  color: #fff;
  display: flex;
  gap: 0.2rem;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
#feature .sec__credit .close span {
  font-size: calc(30 * var(--vw));
  margin-top: calc(-9 * var(--vw));
}
#feature .sec__credit .item {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Baskervville", serif;
  font-weight: 400;
  font-size: calc(21 * var(--vw));
  letter-spacing: 0.05em;
  line-height: 1;
  color: #fff;
  margin: 0 calc(10 * var(--vw)) 0 0;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" on;
}
#feature .sec__credit .item.is-break, #feature .sec__credit .item:last-of-type {
  margin-right: 0;
}
#feature .sec__imgWrap.active .sec__credit {
  opacity: 1;
  pointer-events: auto;
}

/*メインビジュアル（.hero)
----------------------------*/
#feature .hero {
  position: relative;
}
#feature .hero .hero__img {
  width: calc(750 * var(--vw));
  position: relative;
  z-index: 1;
}
#feature .hero .hero__img--logo {
  width: calc(460 * var(--vw));
  position: absolute;
  z-index: 10;
  top: 51%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition-delay: 0.5s;
}
#feature .hero .hero__img--bg {
  width: 100%;
}
#feature .hero .hero__txt {
  margin: calc(96 * var(--vw)) auto 0;
}
#feature .hero .hero__txt--txt01 {
  width: calc(244 * var(--vw));
  margin: 0 auto;
}
#feature .hero .hero__txt--txt02 {
  width: calc(538 * var(--vw));
  margin: calc(38 * var(--vw)) auto 0;
}

/*.sec
----------------------------*/
#feature .sec {
  position: relative;
  z-index: 10;
}
#feature .sec .sec__img, #feature .sec .sec__box {
  position: relative;
}
#feature .sec .sec__img {
  width: 100%;
}
#feature .sec01 {
  position: sticky;
  z-index: 100;
  margin-top: calc(364 * var(--vw));
}
#feature .sec01 .txt01 {
  width: calc(220 * var(--vw));
  margin: 0 auto calc(68 * var(--vw));
}
#feature .sec01 .box01 {
  width: calc(670 * var(--vw));
  margin: 0 auto;
}
#feature .sec01 .box02 {
  width: calc(670 * var(--vw));
  margin: calc(16 * var(--vw)) auto 0;
}
#feature .sec01 .box03 {
  width: calc(500 * var(--vw));
  margin: calc(148 * var(--vw)) auto 0;
}
#feature .sec01 .box03 .txt02 {
  width: calc(226 * var(--vw));
  margin: 0 auto calc(20 * var(--vw));
}
#feature .sec01 .box03 .txt03 {
  width: calc(400 * var(--vw));
  margin: calc(38 * var(--vw)) auto 0;
}
#feature .sec01 .box04 {
  width: calc(750 * var(--vw));
  margin: calc(164 * var(--vw)) auto 0;
}
#feature .sec01 .box04 .credit04 a, #feature .sec01 .box04 .credit04 .close {
  color: #000;
}
#feature .sec01 .box05 {
  width: calc(670 * var(--vw));
  margin: calc(42 * var(--vw)) auto 0;
}
#feature .sec01 .box06 {
  width: calc(670 * var(--vw));
  margin: calc(114 * var(--vw)) auto 0;
}
#feature .sec01 .box07 {
  width: calc(670 * var(--vw));
  margin: calc(16 * var(--vw)) auto 0;
}
#feature .sec01 .box08 {
  width: calc(670 * var(--vw));
  margin: calc(284 * var(--vw)) auto 0;
}
#feature .sec01 .box08 .txt04 {
  width: calc(107 * var(--vw));
  position: absolute;
  top: calc(-26 * var(--vw));
  left: 0;
}
#feature .sec01 .box08 .txt05 {
  width: calc(107 * var(--vw));
  position: absolute;
  top: calc(-26 * var(--vw));
  right: 0;
}
#feature .sec01 .box09 {
  width: calc(670 * var(--vw));
  margin: calc(16 * var(--vw)) auto 0;
}
#feature .sec01 .box10 {
  width: calc(500 * var(--vw));
  margin: calc(110 * var(--vw)) auto 0;
}
#feature .sec01 .box10 .txt06 {
  width: calc(413 * var(--vw));
  margin: calc(38 * var(--vw)) auto 0;
}
#feature .sec01 .box10 .txt07 {
  width: calc(248 * var(--vw));
  margin: calc(76 * var(--vw)) auto 0;
}
#feature .sec01 .box11 {
  width: calc(750 * var(--vw));
  margin: calc(58 * var(--vw)) auto 0;
}
#feature .sec02 {
  position: relative;
  z-index: 200;
  padding: calc(108 * var(--vw)) 0 0;
  background: url(../img/sec02_top.svg) no-repeat top #faf8f2;
  background-size: 101%;
  background-position: -1px 1px;
}
#feature .sec02 .box01 {
  width: calc(492 * var(--vw));
  margin: 0 auto 0 calc(50 * var(--vw));
}
#feature .sec02 .box01 .txt01 {
  width: calc(310 * var(--vw));
  margin: 0;
}
#feature .sec02 .box01 .txt02 {
  width: calc(492 * var(--vw));
  margin: calc(26 * var(--vw)) 0 0;
}
#feature .sec02 .box02 {
  width: calc(450 * var(--vw));
  margin: calc(104 * var(--vw)) calc(56 * var(--vw)) 0 auto;
}
#feature .sec02 .box02 .txt03 {
  width: calc(45 * var(--vw));
  margin: calc(10 * var(--vw)) 0 0 auto;
}
#feature .sec02 .box03 {
  width: calc(450 * var(--vw));
  margin: calc(88 * var(--vw)) calc(56 * var(--vw)) 0 auto;
}
#feature .sec02 .box03 .txt04 {
  width: calc(180 * var(--vw));
  margin: calc(16 * var(--vw)) auto 0 0;
}
#feature .sec02 .box03 .txt05 {
  width: calc(47 * var(--vw));
  margin: calc(-43 * var(--vw)) 0 0 auto;
}
#feature .sec02 .box04 {
  width: calc(670 * var(--vw));
  margin: calc(272 * var(--vw)) auto 0;
}
#feature .sec02 .box05 {
  width: calc(670 * var(--vw));
  margin: calc(18 * var(--vw)) auto 0;
}
#feature .sec02 .box06 {
  width: calc(670 * var(--vw));
  margin: calc(110 * var(--vw)) auto 0;
}
#feature .sec02 .box06 .txt06 {
  width: calc(220 * var(--vw));
  margin: 0 auto calc(20 * var(--vw));
}
#feature .sec02 .box07 {
  width: calc(670 * var(--vw));
  margin: calc(18 * var(--vw)) auto 0;
}
#feature .sec02 .box08 {
  width: calc(750 * var(--vw));
  margin: calc(110 * var(--vw)) auto 0;
}
#feature .sec02 .box09 {
  width: calc(670 * var(--vw));
  margin: calc(60 * var(--vw)) auto 0;
}
#feature .sec02 .box10 {
  width: calc(750 * var(--vw));
  margin: calc(140 * var(--vw)) auto 0;
}
#feature .sec02 .box11 {
  width: calc(600 * var(--vw));
  margin: calc(100 * var(--vw)) auto 0;
}
#feature .sec02 .box11 .txt07 {
  width: calc(248 * var(--vw));
  margin: calc(62 * var(--vw)) auto 0;
}
#feature .sec__last {
  z-index: 200;
  background-color: #faf8f2;
  padding: calc(304 * var(--vw)) 0 calc(60 * var(--vw));
}
#feature .sec__last .sec__all .sec__all-btn {
  width: calc(366 * var(--vw));
  margin: 0 auto;
}
#feature .sec__last .sec__staff {
  width: calc(442 * var(--vw));
  margin: calc(90 * var(--vw)) auto 0;
}

/*1400px以上 
----------------------------*/
@media screen and (min-width: 1400px) {
  :root {
    --vw: 1px * var(--ratio);
  }
  #feature .contentsWrap {
    grid-template-columns: 1fr 560px 1fr;
  }
}/*# sourceMappingURL=style.css.map */