@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: 18.7rem auto 0;
}

/*-------------------------
 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;
}


/** 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: #707070;
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

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

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

/** top **/
#feature .fade-top {
  opacity: 0;
  transform: translateY(-15%);
  transition: opacity 880ms cubic-bezier(0.445, 0.05, 0.55, 0.95), transform 880ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

#feature .fade-top.is_show {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

/** bottom **/
#feature .fade-bottom {
  opacity: 0;
  transform: translateY(15%);
  transition: opacity 880ms cubic-bezier(0.445, 0.05, 0.55, 0.95), transform 880ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

#feature .fade-bottom.is_show {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

/** left **/
#feature .fade-right {
  opacity: 0;
  transform: translateX(15%);
  transition: opacity 880ms cubic-bezier(0.445, 0.05, 0.55, 0.95), transform 880ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

#feature .fade-right.is_show {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.5s;
}


/*-------------------------
  credit
-------------------------*/
#feature .credit li::after {
  content: "/";
  margin-right: 0.5rem;
}

#feature .sec04 .credit li::after {
  content: "";
}

#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 {
  display: flex;
  justify-content: center;
  margin-top: 3.7rem;
}

.sec02 .creditList ul {
  display: flex;
  justify-content: right;
  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 {
  text-align: left;
  margin-bottom: -0.5rem;
}

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

.sec05 .creditList ul {
  display: flex;
  flex-wrap: wrap;
  width: 35rem;
  justify-content: center;
  margin: 3.2rem auto 0;
}

#feature .sec05 .creditList ul li {
  line-height: 1.85;
}

#feature .sec05 .creditList ul li:nth-child(2)::after {
  display: none;
}

.sec06 .creditList ul {
  display: flex;
  justify-content: left;
  margin-top: 3.6rem;
}

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

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

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

#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.4rem;
  transition-delay: 0.8s;
}

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

/*-------------------------
  content
-------------------------*/
.sticky {
  position: relative;
}

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

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

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

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

#feature .sec01 {
  width: 123.99rem;
}

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

#feature .sec03 {
  width: 110rem;
  margin: 16.8rem auto 0;
}

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

#feature .sec05 {
  width: 156rem;
  margin: 16.7rem auto 0;
}

#feature .sec06 .section__inner {
  width: 154rem;
  margin: auto;
  padding-bottom: 27.5rem;
}

#feature .sec07 {
  width: 123.99rem;
  margin: 16.8rem auto 0;
}

/** sec01 **/
#feature .img01-1 {
  overflow: hidden;
  width: 80rem;
  margin: 8.2rem auto 0;
}

#feature .img01-1 img {
  width: 80rem;
  margin: auto;
}

#feature .img01-2 {
  width: 62rem;
  margin: 0 auto 0 0;
}

#feature .img01-3 {
  width: 62.05rem;
  margin: 0 0 0 auto;
}

.img01-2 {
  position: sticky;
  top: 18vh;
}

/** sec02 **/
#feature .sec02 {
  background: #707070;
  margin: 32rem auto 0;
}

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

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

#feature .img02-2 {
  width: 60rem;
  margin: -54.5rem auto 0 0.5rem;
}

#feature .img02-3 {
  width: 50rem;
  margin: -11.2rem auto 0 42.5rem;
}

/** sec03 **/
#feature .img03-1 {
  width: 58rem;
  margin: 10.2rem auto 0 0;
}

#feature .img03-2 {
  width: 60rem;
  margin: -47.1rem 0.4rem 0 auto;
}

#feature .img03-3 {
  width: 86rem;
  margin: 17.8rem auto 0;
}

.sec03 .set {
  position: sticky;
  top: calc((100svh - 88.8888888889vh) / 2);
}

#feature .img03-4 {
  width: 60rem;
  margin: 35.3rem auto 0;
}

.img03-4 {
  position: sticky;
  top: 0;
  transform: translateY(-21rem);
  margin: 0 auto;
}

/** sec04 **/
#feature .sec04 {
  background: #707070;
  margin: 27.5rem auto 0;
}

#feature .sec04 .set {
  display: flex;
  justify-content: center;
  align-items: end;
  width: 90.6rem;
  margin: auto;
  transform: translateX(72px);
}

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

#feature .img04-1 {
  width: 80rem;
  margin: 10rem auto 0 3rem;
}

#feature .img04-2 {
  width: 46rem;
  margin: -40rem -2.5rem 0 auto;
}

#feature .img04-3 {
  width: 66rem;
  margin: 19.8rem auto 0;
}

/** sec05 **/
#feature .img05-1 {
  overflow: hidden;
  width: 78rem;
  margin: 10.2rem -4.8rem 0 auto;
}

#feature .img05-1 img {
  width: 78rem;
}

#feature .img05-2 {
  width: 42rem;
  margin: -31.7rem auto 0 5rem;
}

#feature .img05-3 {
  width: 42rem;
  margin: 0.8rem auto 0 5rem;
}

#feature .img05-4 {
  width: 70rem;
  margin: 11.9rem auto 0;
}

/** sec06 **/
#feature .sec06 {
  background: #707070;
  margin: 27.5rem auto 0;
}

#feature .sec06 .section__ttl {
  color: #fff;
  padding-top: 16.7rem;
}

#feature .img06-1 {
  width: 74rem;
  margin: 10.5rem auto 0 0;
}

#feature .img06-2 {
  width: 74rem;
  margin: -57.5rem 0 0 auto;
}

/** sec07 **/
#feature .sec07 .section__ttl p:last-child {
  line-height: 1.5;
}

#feature .img07-1 {
  width: 62rem;
  margin: 9.7rem auto 0 0;
  position: sticky;
  top: 18vh;
}

#feature .img07-2 {
  width: 62.05rem;
  margin: 0 0 0 auto;
}

#feature .img07-3 {
  overflow: hidden;
  margin: 19.8rem auto 0;
}

#feature .img07-3 figure {
  width: 124rem;
}

#feature .btn {
  margin-top: 24.5rem;
}

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