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

@media screen and (min-width: 1400px) {
  :root {
    --vw-unit: calc((1400px * (480 / 1400)) / 750);
    --vw-pcunit: calc(1400px / 1400);
  }
}
/*アニメーション
----------------------------*/
@keyframes progressBar {
  0% {
    width: 0%;
  }
  95% {
    width: 100%;
  }
  100% {
    width: 100%;
  }
}
/*共通
----------------------------*/
.efs-system-notification {
  display: none !important;
}

.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;
  box-sizing: border-box;
  text-align: center;
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  overflow-x: clip;
  opacity: 0;
  transition: 0.3s;
  background-color: #fbefef;
}
#feature.is_show {
  opacity: 1;
}
#feature * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
#feature a {
  width: 100%;
  height: auto;
  display: block;
  color: #000;
  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 video {
  width: 100%;
  height: auto;
  display: block;
}
#feature .js_anime.is_fade {
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#feature .js_anime .is_fade {
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#feature .js_anime.is_clipleft {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.6s cubic-bezier(0.645, 0.045, 0.355, 1) 0.6s;
}
#feature .js_anime .is_clipleft {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.6s cubic-bezier(0.645, 0.045, 0.355, 1) 0.6s;
}
#feature .js_anime.is_clipright {
  clip-path: inset(0 0 0 100%);
  transition: clip-path 0.6s cubic-bezier(0.645, 0.045, 0.355, 1) 0.6s;
}
#feature .js_anime .is_clipright {
  clip-path: inset(0 0 0 100%);
  transition: clip-path 0.6s cubic-bezier(0.645, 0.045, 0.355, 1) 0.6s;
}
#feature .js_anime.is_cliptop {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.6s cubic-bezier(0.645, 0.045, 0.355, 1) 0.6s;
}
#feature .js_anime .is_cliptop {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.6s cubic-bezier(0.645, 0.045, 0.355, 1) 0.6s;
}
#feature .js_anime.is_clipbottom {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.6s cubic-bezier(0.645, 0.045, 0.355, 1) 0.6s;
}
#feature .js_anime .is_clipbottom {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.6s cubic-bezier(0.645, 0.045, 0.355, 1) 0.6s;
}
#feature .js_anime.is_show.is_fade {
  opacity: 1;
}
#feature .js_anime.is_show .is_fade {
  opacity: 1;
}
#feature .js_anime.is_show.is_clipleft {
  clip-path: inset(0);
}
#feature .js_anime.is_show .is_clipleft {
  clip-path: inset(0);
}
#feature .js_anime.is_show.is_clipright {
  clip-path: inset(0);
}
#feature .js_anime.is_show .is_clipright {
  clip-path: inset(0);
}
#feature .js_anime.is_show.is_cliptop {
  clip-path: inset(0);
}
#feature .js_anime.is_show .is_cliptop {
  clip-path: inset(0);
}
#feature .js_anime.is_show.is_clipbottom {
  clip-path: inset(0);
}
#feature .js_anime.is_show .is_clipbottom {
  clip-path: inset(0);
}

#feature .main {
  width: 100%;
  display: flex;
  position: relative;
}
#feature .main .left {
  flex: 1;
  height: calc(100vh - 80px);
  position: sticky;
  top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#feature .main .left .left__ttl {
  width: calc(326 * var(--vw-pcunit));
}
#feature .main .right {
  flex: 1;
  height: calc(100vh - 80px);
  position: sticky;
  top: 80px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
#feature .main .right .right__btn {
  width: calc(168 * var(--vw-pcunit));
  margin: 0 calc(50 * var(--vw-pcunit)) calc(40 * var(--vw-pcunit)) 0;
}
#feature .main .center {
  width: calc(480 * var(--vw-pcunit));
  overflow-x: clip;
}
#feature {
  /*メインビジュアル（.hero)
    ----------------------------*/
}
#feature .hero {
  min-height: calc(100vh - var(--header));
  padding-top: calc(20 * var(--vw-unit));
  padding-bottom: calc(50svh - 150 * var(--vw-unit));
  background-color: #d8aead;
  position: sticky;
}
#feature .hero .hero__img {
  width: 100%;
}
#feature .hero .hero__txt {
  height: calc(300 * var(--vw-unit));
  margin-top: calc(74 * var(--vw-unit));
  font-size: calc(25 * var(--vw-unit));
  line-height: calc(55 * var(--vw-unit));
  letter-spacing: 0.05em;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
#feature .sec {
  position: sticky;
  z-index: 2;
}
#feature .sec .sec__credit {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  z-index: 20;
}
#feature .sec .sec__credit .credit {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: calc(32 * var(--vw-unit)) calc(20 * var(--vw-unit));
}
#feature .sec .sec__credit .credit .item {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
#feature .sec .sec__credit .credit .item.is_notrelease {
  pointer-events: none;
}
#feature .sec .sec__credit .credit .item::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.6);
  position: absolute;
  bottom: calc(-8 * var(--vw-unit));
  left: 0;
}
#feature .sec .sec__credit .credit .item .link {
  width: -moz-fit-content;
  width: fit-content;
}
#feature .sec .sec__credit .credit .item .link p {
  font-family: "kudryashev-d-contrast", sans-serif;
  font-size: calc(24 * var(--vw-unit));
  line-height: calc(24 * var(--vw-unit));
  color: #ffffff;
  letter-spacing: 0.05em;
}
#feature .sec .sec__credit.sec__credit01 {
  width: calc(600 * var(--vw-unit));
  top: calc(100% + 50 * var(--vw-unit));
  left: 50%;
  transform: translateX(-50%);
}
#feature .sec .sec__credit.sec__credit01 .credit {
  justify-content: center;
}
#feature .sec .sec__credit.sec__credit01 .credit .item:nth-child(1) {
  margin-left: calc(50 * var(--vw-unit));
}
#feature .sec .sec__credit.sec__credit01 .credit .item:nth-child(2) {
  margin-right: calc(50 * var(--vw-unit));
}
#feature .sec .sec__credit.sec__credit02 {
  width: calc(600 * var(--vw-unit));
  top: calc(100% + 70 * var(--vw-unit));
  left: 50%;
  transform: translateX(-50%);
}
#feature .sec .sec__credit.sec__credit02 .credit {
  justify-content: center;
}
#feature .sec .sec__credit.sec__credit02 .credit .item:nth-child(1) {
  margin-left: calc(50 * var(--vw-unit));
}
#feature .sec .sec__credit.sec__credit02 .credit .item:nth-child(2) {
  margin-right: calc(50 * var(--vw-unit));
}
#feature .sec .sec__credit.sec__credit03 {
  width: calc(600 * var(--vw-unit));
  top: calc(100% + 50 * var(--vw-unit));
  left: calc(40 * var(--vw-unit));
}
#feature .sec .sec__credit.sec__credit03 .credit {
  justify-content: flex-start;
}
#feature .sec .sec__credit.sec__credit03 .credit .item:nth-child(2) {
  margin-right: calc(50 * var(--vw-unit));
}
#feature .sec .sec__credit.sec__credit04 {
  width: calc(700 * var(--vw-unit));
  top: calc(100% + 244 * var(--vw-unit));
  left: 50%;
  transform: translateX(-50%);
}
#feature .sec .sec__credit.sec__credit04 .credit {
  justify-content: center;
}
#feature .sec .sec__credit.sec__credit04 .credit .item:nth-child(1) {
  margin-left: calc(50 * var(--vw-unit));
}
#feature .sec .sec__credit.sec__credit04 .credit .item:nth-child(2) {
  margin-right: calc(50 * var(--vw-unit));
}
#feature .sec .sec__credit.sec__credit05 {
  width: 100%;
  top: calc(100% + 70 * var(--vw-unit));
  left: 0;
}
#feature .sec .sec__credit.sec__credit05 .credit {
  justify-content: center;
}
#feature .sec .sec__credit.sec__credit06 {
  width: calc(600 * var(--vw-unit));
  top: calc(100% + 70 * var(--vw-unit));
  left: 50%;
  transform: translateX(-50%);
}
#feature .sec .sec__credit.sec__credit06 .credit {
  justify-content: center;
}
#feature .sec .sec__credit.sec__credit07 {
  width: calc(500 * var(--vw-unit));
  top: calc(100% + 50 * var(--vw-unit));
  left: calc(130 * var(--vw-unit));
}
#feature .sec .sec__credit.sec__credit07 .credit {
  justify-content: flex-start;
}
#feature .sec .sec__credit.sec__credit07 .credit .item:nth-child(1) {
  margin-right: calc(150 * var(--vw-unit));
}
#feature .sec .sec__credit.sec__credit08 {
  width: calc(500 * var(--vw-unit));
  top: calc(100% + 52 * var(--vw-unit));
  left: 50%;
  transform: translateX(-50%);
}
#feature .sec .sec__credit.sec__credit08 .credit {
  justify-content: center;
}
#feature .sec .sec__credit.sec__credit08 .credit .item::after {
  background-color: rgba(77, 61, 61, 0.8);
}
#feature .sec .sec__credit.sec__credit08 .credit .item .link p {
  color: #4d3d3d;
}
#feature .sec .sec__credit.sec__credit09 {
  width: 100%;
  top: calc(100% + 72 * var(--vw-unit));
  left: 0;
}
#feature .sec .sec__credit.sec__credit09 .credit {
  justify-content: center;
}
#feature .sec .sec__credit.sec__credit09 .credit .item::after {
  background-color: rgba(77, 61, 61, 0.8);
}
#feature .sec .sec__credit.sec__credit09 .credit .item .link p {
  color: #4d3d3d;
}
#feature .sec .sec__credit.sec__credit10 {
  width: calc(450 * var(--vw-unit));
  top: calc(100% + 70 * var(--vw-unit));
  left: 50%;
  transform: translateX(-50%);
}
#feature .sec .sec__credit.sec__credit10 .credit {
  justify-content: center;
}
#feature .sec .sec__credit.sec__credit10 .credit .item::after {
  background-color: rgba(77, 61, 61, 0.8);
}
#feature .sec .sec__credit.sec__credit10 .credit .item .link p {
  color: #4d3d3d;
}
#feature .sec .sec__credit.sec__credit11 {
  width: calc(450 * var(--vw-unit));
  top: calc(100% + 52 * var(--vw-unit));
  left: 50%;
  transform: translateX(-50%);
}
#feature .sec .sec__credit.sec__credit11 .credit {
  justify-content: center;
}
#feature .sec .sec__credit.sec__credit11 .credit .item::after {
  background-color: rgba(77, 61, 61, 0.8);
}
#feature .sec .sec__credit.sec__credit11 .credit .item .link p {
  color: #4d3d3d;
}
#feature .sec .sec__credit.sec__credit12 {
  width: calc(450 * var(--vw-unit));
  top: calc(100% + 50 * var(--vw-unit));
  left: calc(40 * var(--vw-unit));
}
#feature .sec .sec__credit.sec__credit12 .credit {
  justify-content: flex-start;
}
#feature .sec .sec__credit.sec__credit13 {
  width: calc(500 * var(--vw-unit));
  top: calc(100% + 304 * var(--vw-unit));
  left: 50%;
  transform: translateX(-50%);
}
#feature .sec .sec__credit.sec__credit13 .credit {
  justify-content: center;
}
#feature .sec .sec__credit.sec__credit14 {
  width: calc(650 * var(--vw-unit));
  top: calc(100% + 50 * var(--vw-unit));
  right: calc(40 * var(--vw-unit));
}
#feature .sec .sec__credit.sec__credit14 .credit {
  justify-content: flex-end;
}
#feature .sec .sec__credit.sec__credit14 .credit .item:nth-child(1) {
  margin-left: calc(100 * var(--vw-unit));
}
#feature .sec .sec__credit.sec__credit15 {
  width: calc(700 * var(--vw-unit));
  top: calc(100% + 70 * var(--vw-unit));
  left: 50%;
  transform: translateX(-50%);
}
#feature .sec .sec__credit.sec__credit15 .credit {
  justify-content: center;
}
#feature .sec .sec__block {
  width: 100%;
  position: relative;
}
#feature .sec .sec__txt {
  margin: 0 auto;
  position: relative;
}
#feature .sec .sec__txt.sec__txt01 {
  width: calc(364 * var(--vw-unit));
}
#feature .sec .sec__txt.sec__txt02 {
  width: calc(507 * var(--vw-unit));
}
#feature .sec .sec__txt.sec__txt03 {
  width: calc(436 * var(--vw-unit));
}
#feature .sec .sec__txt.sec__txt04 {
  width: calc(345 * var(--vw-unit));
}
#feature .sec .sec__txt.sec__txt05 {
  width: calc(413 * var(--vw-unit));
}
#feature .sec .sec__txt.sec__txt06 {
  width: calc(321 * var(--vw-unit));
}
#feature .sec .sec__txt.sec__txt07 {
  width: calc(397 * var(--vw-unit));
}
#feature .sec .sec__txt.sec__txt08 {
  width: calc(357 * var(--vw-unit));
}
#feature .sec .sec__txt.sec__txt09 {
  width: calc(376 * var(--vw-unit));
}
#feature .sec .sec__txt.sec__txt10 {
  width: calc(543 * var(--vw-unit));
}
#feature .sec .sec__txt.sec__txt11 {
  width: calc(407 * var(--vw-unit));
}
#feature .sec .sec__txt.sec__txt12 {
  width: calc(429 * var(--vw-unit));
}
#feature .sec .sec__txt.sec__txt13 {
  width: calc(362 * var(--vw-unit));
}
#feature .sec .sec__txt.sec__txt14 {
  width: calc(458 * var(--vw-unit));
}
#feature .sec .sec__txt.sec__txt15 {
  width: calc(364 * var(--vw-unit));
}
#feature .sec .sec__ttl {
  position: relative;
}
#feature .sec .sec__ttl.sec__ttl01 {
  width: calc(581 * var(--vw-unit));
}
#feature .sec .sec__ttl.sec__ttl02 {
  width: calc(374 * var(--vw-unit));
}
#feature .sec .sec__ttl.sec__ttl03 {
  width: calc(591 * var(--vw-unit));
}
#feature .sec .sec__ttl.sec__ttl04 {
  width: calc(658 * var(--vw-unit));
}
#feature .sec .sec__ttl.sec__ttl05 {
  width: calc(414 * var(--vw-unit));
}
#feature .sec .sec__txtimg {
  position: absolute;
}
#feature .sec .sec__txtimg.sec__txtimg01 {
  width: calc(232 * var(--vw-unit));
}
#feature .sec .sec__txtimg.sec__txtimg02 {
  width: calc(171 * var(--vw-unit));
}
#feature .sec .sec__txtimg.sec__txtimg03 {
  width: calc(82 * var(--vw-unit));
}
#feature .sec .sec__txtimg.sec__txtimg04 {
  width: calc(230 * var(--vw-unit));
}
#feature .sec .sec__txtimg.sec__txtimg05 {
  width: calc(127 * var(--vw-unit));
}
#feature .sec .sec__txtimg.sec__txtimg06 {
  width: calc(153 * var(--vw-unit));
}
#feature .sec .sec__txtimg.sec__txtimg07 {
  width: calc(526 * var(--vw-unit));
}
#feature .sec .sec__txtimg.sec__txtimg08 {
  width: calc(184 * var(--vw-unit));
}
#feature .sec .sec__txtimg.sec__txtimg09 {
  width: calc(184 * var(--vw-unit));
}
#feature .sec .sec__txtimg.sec__txtimg10 {
  width: calc(146 * var(--vw-unit));
}
#feature .sec .sec__txtimg.sec__txtimg11 {
  width: calc(229 * var(--vw-unit));
}
#feature .sec .sec__txtimg.sec__txtimg12 {
  width: calc(117 * var(--vw-unit));
}
#feature .sec .sec__txtimg.sec__txtimg13 {
  width: calc(231 * var(--vw-unit));
}
#feature .sec .sec__txtimg.sec__txtimg14 {
  width: calc(311 * var(--vw-unit));
}
#feature .sec .sec__txtimg.sec__txtimg15 {
  width: calc(584 * var(--vw-unit));
}
#feature .sec .sec__txtimg.sec__txtimg16 {
  width: calc(79 * var(--vw-unit));
}
#feature .sec .sec__txtimg.sec__txtimg17 {
  width: calc(292 * var(--vw-unit));
}
#feature .sec .sec__txtimg.sec__txtimg18 {
  width: calc(381 * var(--vw-unit));
}
#feature .sec .sec__txtimg.sec__txtimg19 {
  width: calc(236 * var(--vw-unit));
}
#feature .sec .sec__txtimg.sec__txtimg20 {
  width: calc(151 * var(--vw-unit));
}
#feature .sec .sec__txtimg.sec__txtimg21 {
  width: calc(121 * var(--vw-unit));
}
#feature .sec .sec__txtimg.sec__txtimg22 {
  width: calc(79 * var(--vw-unit));
}
#feature .sec .sec__txtimg.sec__txtimg23 {
  width: calc(234 * var(--vw-unit));
}
#feature .sec .sec__txtimg.sec__txtimg24 {
  width: calc(229 * var(--vw-unit));
}
#feature .sec .sec__txtimg.sec__txtimg25 {
  width: calc(122 * var(--vw-unit));
}
#feature .sec .sec__txtimg.sec__txtimg26 {
  width: calc(149 * var(--vw-unit));
}
#feature .sec .sec__img {
  position: relative;
}
#feature .sec .sec__img.sec__img01 {
  width: calc(660 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img02 {
  width: calc(720 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img02 figure {
  background-color: transparent;
}
#feature .sec .sec__img.sec__img03 {
  width: calc(560 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img04 {
  width: calc(750 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img05 {
  width: calc(680 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img06 {
  width: calc(600 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img07 {
  width: calc(720 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img08 {
  width: calc(580 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img09 {
  width: calc(750 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img10 {
  width: calc(692 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img10 figure {
  background-color: transparent;
}
#feature .sec .sec__img.sec__img11 {
  width: calc(700 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img12 {
  width: calc(700 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img13 {
  width: calc(700 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img14 {
  width: calc(620 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img15 {
  width: calc(700 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img16 {
  width: calc(750 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img17 {
  width: calc(540 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img18 {
  width: calc(700 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img19 {
  width: calc(680 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img19 figure {
  background-color: transparent;
}
#feature .sec .sec__img.sec__img20 {
  width: calc(750 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img21 {
  width: calc(692 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img21 figure {
  background-color: transparent;
}
#feature .sec .sec__img.sec__img22 {
  width: calc(700 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img23 {
  width: calc(640 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img24 {
  width: calc(750 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img25 {
  width: calc(560 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img26 {
  width: calc(680 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img27 {
  width: calc(772 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img27 figure {
  background-color: transparent;
}
#feature .sec .sec__img.sec__img28 {
  width: calc(680 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img29 {
  width: calc(680 * var(--vw-unit));
}
#feature .sec .splide .splide__pagination {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  gap: 0 calc(10 * var(--vw-unit));
  left: 0;
}
#feature .sec .splide .splide__pagination li {
  width: calc(64 * var(--vw-unit));
  height: calc(4 * var(--vw-unit));
}
#feature .sec .splide .splide__pagination li .splide__pagination__page {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.45);
  transform: scale(1) !important;
  border: none;
  border-radius: 0;
}
#feature .sec .splide .splide__pagination li .splide__pagination__page::before {
  content: "";
  width: 0%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgb(255, 255, 255);
  transition: width ease 0s;
  border-radius: 0;
  border: none;
  box-sizing: border-box;
}
#feature .sec .splide .splide__pagination li .splide__pagination__page.is-active::before {
  animation: progressBar 3.5s linear forwards;
}
#feature .sec .sec__btn {
  width: calc(540 * var(--vw-unit));
  position: relative;
  z-index: 2;
}
#feature .sec .sec__sticky .sec__stickyitem {
  position: sticky;
  display: flex;
  align-items: center;
  justify-content: center;
}
#feature .sec .sec__sticky.sec__sticky01 .sec__stickyitem {
  height: calc(900 * var(--vw-unit));
}
#feature .sec .sec__sticky.sec__sticky02 .sec__stickyitem {
  height: calc(938 * var(--vw-unit));
}
#feature .sec.sec01 {
  padding-top: calc(72 * var(--vw-unit));
  padding-bottom: calc(474 * var(--vw-unit));
  background-color: #d8aead;
}
#feature .sec.sec01 .sec__ttl {
  margin-left: calc(85 * var(--vw-unit));
}
#feature .sec.sec01 .sec__img.sec__img01 {
  margin: calc(40 * var(--vw-unit)) 0 0 auto;
}
#feature .sec.sec01 .sec__img.sec__img02 {
  margin: calc(90 * var(--vw-unit)) auto 0;
}
#feature .sec.sec01 .sec__img.sec__img03 {
  margin: calc(256 * var(--vw-unit)) auto 0;
}
#feature .sec.sec01 .sec__img.sec__img03 .splide .splide__pagination {
  top: calc(100% + 6 * var(--vw-unit));
  justify-content: flex-start;
}
#feature .sec.sec01 .sec__img.sec__img04 {
  margin: calc(208 * var(--vw-unit)) auto 0;
}
#feature .sec.sec01 .sec__img.sec__img04 .splide .splide__pagination {
  padding-right: calc(14 * var(--vw-unit));
  top: calc(8 * var(--vw-unit));
  justify-content: flex-end;
}
#feature .sec.sec01 .sec__img.sec__img05 {
  margin: calc(360 * var(--vw-unit)) 0 0 auto;
}
#feature .sec.sec01 .sec__img.sec__img06 {
  margin: calc(90 * var(--vw-unit)) 0 0 0;
}
#feature .sec.sec01 .sec__img.sec__img07 {
  margin: 0 auto;
}
#feature .sec.sec01 .sec__img.sec__img08 {
  margin: 0 auto;
}
#feature .sec.sec01 .sec__img.sec__img09 {
  margin: calc(508 * var(--vw-unit)) 0 0 0;
}
#feature .sec.sec01 .sec__img.sec__img10 {
  margin: calc(100 * var(--vw-unit)) auto 0;
}
#feature .sec.sec01 .sec__img.sec__img11 {
  margin: calc(8 * var(--vw-unit)) auto 0;
}
#feature .sec.sec01 .sec__img.sec__img12 {
  margin: calc(16 * var(--vw-unit)) auto 0;
}
#feature .sec.sec01 .sec__img.sec__img13 {
  margin: calc(316 * var(--vw-unit)) 0 0 0;
}
#feature .sec.sec01 .sec__img.sec__img13 .splide .splide__pagination {
  padding-left: calc(36 * var(--vw-unit));
  top: calc(100% + 8 * var(--vw-unit));
  justify-content: flex-start;
}
#feature .sec.sec01 .sec__img.sec__img14 {
  margin: calc(90 * var(--vw-unit)) 0 0 auto;
}
#feature .sec.sec01 .sec__txtimg.sec__txtimg01 {
  top: calc(228 * var(--vw-unit));
  left: calc(60 * var(--vw-unit));
}
#feature .sec.sec01 .sec__txtimg.sec__txtimg02 {
  bottom: calc(156 * var(--vw-unit));
  right: calc(18 * var(--vw-unit));
}
#feature .sec.sec01 .sec__txtimg.sec__txtimg03 {
  top: calc(-46 * var(--vw-unit));
  left: calc(54 * var(--vw-unit));
}
#feature .sec.sec01 .sec__txtimg.sec__txtimg04 {
  top: calc(200 * var(--vw-unit));
  right: calc(54 * var(--vw-unit));
}
#feature .sec.sec01 .sec__txtimg.sec__txtimg05 {
  top: calc(480 * var(--vw-unit));
  left: calc(18 * var(--vw-unit));
}
#feature .sec.sec01 .sec__txtimg.sec__txtimg06 {
  bottom: calc(40 * var(--vw-unit));
  right: calc(14 * var(--vw-unit));
}
#feature .sec.sec01 .sec__txtimg.sec__txtimg07 {
  margin: calc(268 * var(--vw-unit)) auto 0;
  position: relative;
}
#feature .sec.sec01 .sec__txtimg.sec__txtimg08 {
  top: calc(24 * var(--vw-unit));
  left: calc(50 * var(--vw-unit));
}
#feature .sec.sec01 .sec__txtimg.sec__txtimg09 {
  top: calc(24 * var(--vw-unit));
  right: calc(74 * var(--vw-unit));
}
#feature .sec.sec01 .sec__txt.sec__txt01 {
  margin-top: calc(84 * var(--vw-unit));
}
#feature .sec.sec01 .sec__txt.sec__txt02 {
  margin-top: calc(86 * var(--vw-unit));
}
#feature .sec.sec01 .sec__txt.sec__txt03 {
  margin-top: calc(86 * var(--vw-unit));
}
#feature .sec.sec01 .sec__txt.sec__txt04 {
  position: absolute;
  top: calc(100% + 86 * var(--vw-unit));
}
#feature .sec.sec01 .sec__txt.sec__txt05 {
  margin-top: calc(86 * var(--vw-unit));
}
#feature .sec.sec01 .sec__txt.sec__txt06 {
  margin-top: calc(84 * var(--vw-unit));
}
#feature .sec.sec01 .sec__txt.sec__txt07 {
  margin-top: calc(114 * var(--vw-unit));
}
#feature .sec.sec01 .sec__sticky {
  margin-top: calc(316 * var(--vw-unit));
}
#feature .sec.sec02 {
  padding-top: calc(84 * var(--vw-unit));
  padding-bottom: calc(402 * var(--vw-unit));
  background-color: #fbefef;
}
#feature .sec.sec02 .sec__ttl {
  margin-left: calc(180 * var(--vw-unit));
}
#feature .sec.sec02 .sec__img.sec__img15 {
  margin: calc(38 * var(--vw-unit)) auto 0;
}
#feature .sec.sec02 .sec__img.sec__img16 {
  margin: calc(106 * var(--vw-unit)) auto 0;
}
#feature .sec.sec02 .sec__img.sec__img16 .splide .splide__pagination {
  padding-right: calc(14 * var(--vw-unit));
  top: calc(8 * var(--vw-unit));
  justify-content: flex-end;
}
#feature .sec.sec02 .sec__img.sec__img16 .splide .splide__pagination__page {
  background-color: rgba(77, 61, 61, 0.45);
}
#feature .sec.sec02 .sec__img.sec__img16 .splide .splide__pagination__page::before {
  background-color: rgb(77, 61, 61);
}
#feature .sec.sec02 .sec__img.sec__img17 {
  margin: calc(334 * var(--vw-unit)) auto 0;
}
#feature .sec.sec02 .sec__txtimg.sec__txtimg10 {
  top: calc(264 * var(--vw-unit));
  left: calc(52 * var(--vw-unit));
}
#feature .sec.sec02 .sec__txtimg.sec__txtimg11 {
  top: calc(430 * var(--vw-unit));
  right: calc(42 * var(--vw-unit));
}
#feature .sec.sec02 .sec__txtimg.sec__txtimg12 {
  bottom: calc(188 * var(--vw-unit));
  left: calc(148 * var(--vw-unit));
}
#feature .sec.sec02 .sec__txtimg.sec__txtimg13 {
  top: calc(-68 * var(--vw-unit));
  left: calc(26 * var(--vw-unit));
  z-index: -1;
}
#feature .sec.sec02 .sec__txtimg.sec__txtimg14 {
  top: calc(646 * var(--vw-unit));
  right: calc(30 * var(--vw-unit));
}
#feature .sec.sec02 .sec__txt.sec__txt08 {
  margin-top: calc(86 * var(--vw-unit));
}
#feature .sec.sec02 .sec__txt.sec__txt09 {
  margin-top: calc(116 * var(--vw-unit));
}
#feature .sec.sec03 {
  padding-top: calc(80 * var(--vw-unit));
  padding-bottom: calc(476 * var(--vw-unit));
  background-color: #fbefef;
}
#feature .sec.sec03 .sec__ttl {
  margin-left: calc(80 * var(--vw-unit));
}
#feature .sec.sec03 .sec__img.sec__img18 {
  margin: calc(38 * var(--vw-unit)) 0 0 0;
}
#feature .sec.sec03 .sec__img.sec__img19 {
  margin: calc(60 * var(--vw-unit)) auto 0;
}
#feature .sec.sec03 .sec__img.sec__img20 {
  margin: calc(334 * var(--vw-unit)) auto 0;
}
#feature .sec.sec03 .sec__img.sec__img21 {
  margin: calc(84 * var(--vw-unit)) auto 0;
}
#feature .sec.sec03 .sec__txtimg.sec__txtimg15 {
  margin: calc(56 * var(--vw-unit)) 0 0 calc(82 * var(--vw-unit));
  position: relative;
}
#feature .sec.sec03 .sec__txtimg.sec__txtimg16 {
  top: calc(32 * var(--vw-unit));
  right: calc(16 * var(--vw-unit));
}
#feature .sec.sec03 .sec__txt.sec__txt10 {
  margin-top: calc(86 * var(--vw-unit));
}
#feature .sec.sec03 .sec__txt.sec__txt11 {
  margin-top: calc(102 * var(--vw-unit));
}
#feature .sec.sec04 {
  padding-top: calc(84 * var(--vw-unit));
  padding-bottom: calc(690 * var(--vw-unit));
  background-color: #d8aead;
}
#feature .sec.sec04 .sec__ttl {
  margin-left: calc(50 * var(--vw-unit));
}
#feature .sec.sec04 .sec__img.sec__img22 {
  margin: calc(38 * var(--vw-unit)) auto 0;
}
#feature .sec.sec04 .sec__img.sec__img23 {
  margin: calc(92 * var(--vw-unit)) 0 0 0;
}
#feature .sec.sec04 .sec__txtimg.sec__txtimg17 {
  top: calc(260 * var(--vw-unit));
  left: calc(-8 * var(--vw-unit));
}
#feature .sec.sec04 .sec__txtimg.sec__txtimg18 {
  top: calc(408 * var(--vw-unit));
  right: calc(-20 * var(--vw-unit));
}
#feature .sec.sec04 .sec__txtimg.sec__txtimg19 {
  top: calc(610 * var(--vw-unit));
  left: calc(78 * var(--vw-unit));
}
#feature .sec.sec04 .sec__txtimg.sec__txtimg20 {
  top: calc(-2 * var(--vw-unit));
  left: calc(-20 * var(--vw-unit));
}
#feature .sec.sec04 .sec__txtimg.sec__txtimg21 {
  top: calc(548 * var(--vw-unit));
  right: calc(-16 * var(--vw-unit));
}
#feature .sec.sec04 .sec__txt.sec__txt12 {
  margin-top: calc(86 * var(--vw-unit));
}
#feature .sec.sec04 .sec__txt.sec__txt13 {
  position: absolute;
  top: calc(100% + 86 * var(--vw-unit));
}
#feature .sec.sec04 .sec__sticky {
  margin-top: calc(314 * var(--vw-unit));
}
#feature .sec.sec05 {
  margin: 0;
  padding-bottom: calc(180 * var(--vw-unit));
  background-color: #fbefef;
  position: relative;
}
#feature .sec.sec05 .sec__bg {
  padding-top: calc(80 * var(--vw-unit));
  padding-bottom: calc(296 * var(--vw-unit));
  background-color: #d8aead;
}
#feature .sec.sec05 .sec__ttl {
  margin-left: calc(156 * var(--vw-unit));
}
#feature .sec.sec05 .sec__img.sec__img26 {
  margin: calc(38 * var(--vw-unit)) 0 0 0;
}
#feature .sec.sec05 .sec__img.sec__img27 {
  margin: calc(90 * var(--vw-unit)) 0 0 calc(100 * var(--vw-unit));
}
#feature .sec.sec05 .sec__img.sec__img28 {
  margin: calc(316 * var(--vw-unit)) auto 0;
}
#feature .sec.sec05 .sec__img.sec__img29 {
  margin: calc(14 * var(--vw-unit)) auto 0;
}
#feature .sec.sec05 .sec__txtimg.sec__txtimg22 {
  top: calc(514 * var(--vw-unit));
  right: calc(22 * var(--vw-unit));
}
#feature .sec.sec05 .sec__txtimg.sec__txtimg23 {
  top: calc(80 * var(--vw-unit));
  left: calc(64 * var(--vw-unit));
}
#feature .sec.sec05 .sec__txtimg.sec__txtimg24 {
  top: calc(208 * var(--vw-unit));
  right: calc(19 * var(--vw-unit));
}
#feature .sec.sec05 .sec__txtimg.sec__txtimg25 {
  top: calc(466 * var(--vw-unit));
  left: calc(94 * var(--vw-unit));
}
#feature .sec.sec05 .sec__txtimg.sec__txtimg26 {
  top: calc(720 * var(--vw-unit));
  right: calc(63 * var(--vw-unit));
}
#feature .sec.sec05 .sec__txt.sec__txt14 {
  margin-top: calc(106 * var(--vw-unit));
}
#feature .sec.sec05 .sec__txt.sec__txt15 {
  margin-top: calc(86 * var(--vw-unit));
}
#feature .sec.sec05 .sec__btn {
  margin: calc(140 * var(--vw-unit)) auto 0;
}/*# sourceMappingURL=style.css.map */