@charset "UTF-8";

html {
  font-size: 10px;
}

@media screen and (max-width: 2100px) {
  html {
    font-size: calc(10 * (100vw / 2100));
  }
}

/*-------------------------
 common
-------------------------*/
.pc-header-main.is-fixed {
  display: none;
}

.l-container {
  width: 100%;
  margin: auto;
}

#feature {
  margin: 0 auto;
  font-feature-settings: "palt";
  width: 100%;
  text-align: center;
  overflow: clip;
  font-family: "apparat-light", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.feature-inner {
  margin: 0 auto 25rem;
}

.feature img {
  width: 100%;
  height: auto;
  display: block;
}

.feature a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.feature a:link,
.feature a:visited {
  color: #000;
}

.feature .item a:hover,
.feature .btn a:hover {
  opacity: 0.7;
}

.feature figure a:hover {
  opacity: 0.7;
  background-color: rgba(255, 255, 255, 1);
}

.feature figure:hover {
  background-color: rgba(255, 255, 255, 1);
}

.feature .section {
  position: relative;
  margin: 0 auto;
}

/*-------------------------
 fade
-------------------------*/
/** zoom **/
.first-view {
  opacity: 0;
  visibility: inherit;
  transform: scale(1.05);
  transition: opacity 1.3s ease-out, transform 1.3s ease-out;
}

.first-view.is_show {
  opacity: 1;
  visibility: inherit;
  transform: scale(1);
}

.zoom {
  opacity: 0;
  visibility: inherit;
  transform: scale(1.05);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.zoom.is_show {
  opacity: 1;
  visibility: inherit;
  transform: scale(1);
  transition-delay: 0.6s;
}

/** line **/
#feature .liner {
  width: 0;
  height: 1px;
  background: black;
  margin: 0 auto;
  transition: width 0.5s;
}

#feature .hero-text .liner.is_show {
  width: 10rem;
  margin-top: 18.9rem;
  transition-delay: 0.8s;
}

#feature .btn .liner.is_show {
  width: 13rem;
  margin-top: 1.25rem;
}

/** title fadeIn **/
.scrollIn01,
.scrollIn02,
.scrollIn03,
.scrollIn04 {
  opacity: 0;
  transition: 2s;
}

.scrollIn01.is_show {
  opacity: 1;
}

.scrollIn02.is_show {
  transition-delay: 0.3s;
  opacity: 1;
}

.scrollIn03.is_show {
  opacity: 1;
  transition-delay: 0.6s;
}

.scrollIn04.is_show {
  transition-delay: 0.9s;
  opacity: 1;
}

/** top_bottom **/
.wrap {
  overflow: hidden;
  position: relative;
  opacity: 0;
}

.wrap.is_show {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s, opacity 2s ease-out;
  transition-delay: 0.5s;
}

.wrap.is_show:before {
  animation: wrap 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #959DA7;
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

@keyframes wrap {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(100%);
  }
}

/** left_right **/
.fadeRight {
  transform: translate(-50px, 0);
  opacity: 0;
  transition-duration: 2s;
}

.fadeRight.is_show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeRight.--1 {
  transition-delay: 0.4s;
}

.fadeRight.--2 {
  transition-delay: 0.8s;
}

.fadeRight.--3 {
  transition-delay: 1.2s;
}

.fadeRight.--4 {
  transition-delay: 1.6s;
}


/*-------------------------
  credit
-------------------------*/
#feature .credit li::after {
  content: "/";
  margin-left: 0.55rem;
  margin-right: 0.7rem;
  font-size: 1.5rem;
}

#feature .sec04 .credit li::after {
  content: "/";
  margin-left: 0.6rem;
  margin-right: 0.85rem;
  font-size: 1.5rem;
}

#feature .sec02 .credit li::after,
#feature .sec04 .credit li::after,
#feature .sec06 .credit li::after {
  color: #fff;
}


#feature .credit li:last-child::after {
  display: none;
}

#feature .creditList a {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
}

#feature .creditList .item .txt {
  margin-right: 0.4rem;
}

.sec01 .creditList {
  margin-bottom: 20rem;
}

.sec01 .creditList ul {
  width: 102rem;
  display: flex;
  justify-content: left;
  margin: 3.7rem 0 0 1.6rem;
}

.sec02 .creditList ul {
  display: flex;
  justify-content: center;
  margin-top: 3.7rem;
  position: relative;
  z-index: 10;
}

.sec02 .creditList a {
  color: #fff;
}

.sec03 .creditList ul {
  display: flex;
  justify-content: center;
  margin-top: 3.7rem;
}

.sec04 .creditList ul {
  display: flex;
  justify-content: right;
  margin-top: 3.5rem;
}

.sec04 .creditList a {
  color: #fff;
  line-height: 1.85;
}


/*-------------------------
  top
-------------------------*/
#feature .hero {
  object-fit: cover;
  margin: 0 auto 8.7rem;
  width: 100%;
  overflow: hidden;
}


/*-------------------------
  content
-------------------------*/

/** sticky **/
#feature .sticky {
  position: relative;
}

#feature .flex {
  display: flex;
}

#feature .sec01 .flex {
  flex-direction: row-reverse;
}

#feature .sec03 .flex {
  justify-content: space-between;
  margin-top: 12.5rem;
  gap: 0.9rem;
}

#feature .hero-text h2 span:first-child {
  font-size: 7.8rem;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.6;
  font-weight: 400;
}

#feature .hero-text h2 span:last-child {
  font-size: 4rem;
  letter-spacing: 0.07em;
  display: block;
  font-weight: 400;
}

#feature .sec01 .section__ttl {
  margin-top: 19rem;
}

#feature .section__ttl p:first-child {
  font-size: 3.8rem;
  letter-spacing: 0.04em;
  margin-bottom: 1.8rem;
}

#feature .sec02 .section__ttl p:first-child,
#feature .sec04 .section__ttl p:first-child {
  margin-bottom: 2.2rem;
}

#feature .section__ttl p:last-child {
  font-size: 4.8rem;
  letter-spacing: 0.02em;
  margin: 0;
}

#feature .sec01 {
  width: 197rem;
  position: sticky;
  top: -190rem;
  margin-bottom: 30rem;
}

#feature .sec02 {
  position: sticky;
  top: -402rem;
}

#feature .sec02 .section__inner {
  width: 128rem;
  margin: auto;
  padding-bottom: 33.8rem;
}

#feature .sec03 {
  position: sticky;
  top: -175rem;
  background: #fff;
  padding-bottom: 29.5rem;
}

#feature .sec03 .section__inner {
  width: 100%;
  margin: 0 auto;
  padding-top: 19rem;
}

#feature .sec04 .section__inner {
  width: 168rem;
  margin: auto;
  padding-bottom: 30rem;
}

/** sec01 **/
#feature .img01 {
  overflow: hidden;
  width: 102rem;
  margin: 12.3rem auto 0 1.5rem;
}

#feature .img02 {
  width: 70rem;
  margin: -39.9rem -1.5rem 0 0;
}

#feature .img03 {
  width: 58rem;
  margin: 28.5rem 8rem 0 0;
}

/** sec02 **/
#feature .sec02 {
  background: #959DA7;
  margin: 0 auto;
}

#feature .sec02 .section__ttl {
  color: #fff;
  padding-top: 18.5rem;
}

#feature .img04 {
  width: 100rem;
  margin: 12.5rem auto 0;
}

#feature .img05 {
  width: 64rem;
    height:  80rem;
  margin: 24.5rem auto 0 0;
  position: sticky;
  top: 18vh;
}

#feature .img06 {
  width: 64rem;
  height:  80rem;
  margin: -0.2rem 0 0 auto;
}

#feature .sec02 .set {
  margin: 25rem auto 0;
  width: 84rem;
}

/** sec03 **/
#feature .sec03 .set {
  width: 100rem;
  margin: 25.2rem auto 0;
  overflow: hidden;
}

/** sec04 **/
#feature .sec04 {
  background: #959DA7;
  margin: 0 auto 25rem;
}

#feature .sec04 .set {
  width: 90.6rem;
  margin: auto;
  transform: translateX(7.2rem);
}

#feature .sec04 .section__ttl {
  color: #fff;
  padding-top: 18.7rem;
}

#feature .img13 {
  width: 64rem;
  height: 80rem;
  margin: 12rem auto 0;
  transform: translateX(-1rem);
}

#feature .sec04 .set {
  width: 96rem;
  margin: 40.5rem 0 0 0;
  transform: translateX(3rem);
}

/** button **/
#feature .btn {
  padding-top: 24.7rem;
  background: #fff;
}

#feature .btn a {
  font-size: 2.2rem;
  letter-spacing: 0.1rem;
}
