:root {
  --color-white: #ffffff;
}

.slideAnimeLeftRight,
.slideAnimeRightLeft {
  animation-duration: 1s;
}

p.lead-text {
  width: 800px;
  margin: 0 auto;
  line-height: 2.5;
  font-size: 18px;
  font-family: "ヒラギノ明朝 W3 JIS2004", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif;
}


p.lead-text span {
  display: inline-block;
  transition-timing-function: linear;
  transition-duration: 2s;
  transition-property: background-position;
  color: transparent;
  background-image: linear-gradient(to bottom, var(--color-white) 0%, var(--color-white) 33.3%, transparent 66.6%, transparent 100%);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-clip: text;
  background-size: 100% 300%;
}

p.lead-text.animation span {
  background-position: 0 0;
}

.en-page p.lead-text {
  width: 900px;
  margin: 0 auto;
  line-height: 2.5;
  font-size: 20px;
  text-align: center;
}

@media all and (max-width: 896px) {
  .en-page p.lead-text {
    width: 100%;
    line-height: 2;
    font-size: 3.3vw;
  }

  p.lead-text {
    width: 100%;
    line-height: 2;
    font-size: 3.1vw;
  }
}


#main {
  background-color: #000;
}


.mv {
  width: 100%;
  height: 100vh;
  padding-bottom: 20vh;
  box-sizing: initial;
  color: #fff;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.mv figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/parts/lz6/mv-bg.jpg');
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100%;
  transform: scale(1.1);
  z-index: 1;
  transition: all 15s ease;
}

.mv.animation figure {
  transform: scale(1);
}

.mv::before {
  content: '';
  background-color: #fff;
  width: 100%;
  height: 100%;
  filter: opacity(1) contrast(400%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: filter 2s ease;
}

.mv.animation::before {
  filter: opacity(0) contrast(0);
}

.mv .mv-contents {
  position: relative;
  z-index: 3;
}

.mv .mv-contents .image {
  width: 640px;
  margin: 0 auto;
  opacity: 0;
  transition: all 1.5s;
  position: relative;
}

.mv.animation .mv-contents .image {
  opacity: 1;
  transition-delay: 2s;
}

.mv .mv-contents .text-contents {
  margin-top: 0;
  text-align: center;
  opacity: 0;
  transition: all 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}



.mv .mv-contents .text-contents h1 {
  font-size: 120px;
  line-height: 1;
  margin-bottom: 0;
  color: #fff;
  font-weight: normal;
  position: relative;
  z-index: 2;
}

.mv.animation .mv-contents .text-contents {
  opacity: 1;
  transition-delay: 1.5s;
}


.mv .mv-contents .text-contents h1 span:first-of-type {
  transform: translateX(6rem);
  display: inline-block;
  transition: all 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.mv .mv-contents .text-contents h1 span:last-of-type {
  transform: translateX(-6rem);
  display: inline-block;
  transition: all 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.mv.animation .mv-contents .text-contents h1 span {
  transition-delay: 1.5s;
  transform: translateX(0);
}

.mv .mv-contents .text-contents p {
  font-size: 24px;
  transform: translateY(-40px);
  transition: all 1s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: 1.5s;
}

.mv.animation .mv-contents .text-contents p {
  transform: translateY(0);
}

.mv .scroll-box {
  position: absolute;
  left: 50%;
  bottom: 2vh;
  transform: translate(-50%, 0);
  z-index: 10;
  padding-bottom: 60px;
}


.mv .scroll-box p {
  font-size: 20px;
  line-height: 1;
  color: #fff;
  text-align: center;
  font-family: "ヒラギノ明朝 W3 JIS2004", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  margin-bottom: 0.8em;
}

.mv .scroll-box p.head {
  font-size: 30px;
}

.mv .scroll-box p:last-of-type {
  font-size: 16px;
}

/*スクロールダウン全体の場所*/
.scroll-down {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 50%;
  bottom: -10%;
  /*全体の高さ*/
  height: 50px;
}


/* 線の描写 */
.scroll-down::before {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 1px;
  height: 30px;
  background: #eee;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

/* 線の描写 */
.scroll-down::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 1px;
  height: 15px;
  transform: rotate(-45deg);
  transform-origin: bottom;
  background: #eee;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: arrowmove 1.4s ease-in-out infinite;
  opacity: 0;
}


/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  70% {
    opacity: 1;
  }

  100% {
    height: 50px;
    opacity: 0;
  }
}

@keyframes arrowmove {
  0% {
    opacity: 0;
    top: -15px;
  }

  70% {
    opacity: 1;
  }

  100% {
    top: 35px;
    opacity: 0;
  }
}



@media all and (max-width: 896px) {
  .mv {
    display: flex;
    align-items: center;
    padding-top: 0;
  }

  .mv .mv-contents {
    width: 100%;
    padding: 0;
    text-align: center;
  }

  .mv .mv-contents .image {
    width: 80%;
  }

  .mv figure {
    top: 50%;
    transform: translateY(-50%);
    background-image: url('../images/parts/lz6/mv-bg_sp.jpg');
    background-size: cover;
    transform: translateY(-50%) scale(1.1);
  }

  .mv.animation figure {
    transform: translateY(-50%) scale(1);
  }

  .mv .mv-contents .text-contents {
    top: 0;
    left: 0;
    position: relative;
    width: 100%;
    margin-bottom: 8vw;
  }

  .mv .mv-contents .text-contents p {
    font-size: 4vw;
  }

  .mv .mv-contents .text-contents h1 {
    font-size: 20vw;
    margin-bottom: 0;
    text-align: center;
  }
}




.intro {
  padding: 60px 0 160px;
  top: 0;
}

.intro h2 {
  font-size: 60px;
  text-align: center;
  color: #fff;
  font-weight: normal;
  margin-bottom: 60px;
}

@media all and (max-width: 896px) {
  .intro {
    padding: 12vw 2vw 24vw;
  }

  .intro h2 {
    font-size: 8vw;
    margin-bottom: 4vw;
  }
}


.parallax p {
  overflow: hidden;
}

.par-img01 {
  z-index: 10;
  background: #000;
}

.par-img02 {
  z-index: 30;
}

@media all and (max-width: 896px) {
  .parallax {
    height: 40vw;
  }

  .par-img01 {
    padding-bottom: 0;
  }

  .parallax p {
    overflow: hidden;
    width: 100%;
    height: 100%;
  }

  .parallax p img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}



.about {
  background-color: #000;
  padding: 160px 0;
  z-index: 20;
}


.about h2 {
  font-size: 60px;
  text-align: center;
  color: #fff;
  font-weight: normal;
  margin-bottom: 40px;
}

.about h3 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
  font-feature-settings: "palt";
  font-family: "ヒラギノ明朝 W3 JIS2004", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif
}


.about .image {
  width: 100%;
  max-width: 800px;
  margin: 60px auto 0;
}

@media all and (max-width: 896px) {
  .about {
    padding: 12vw 2vw 24vw;
  }

  .about h2 {
    font-size: 8vw;
    margin-bottom: 0vw;
  }

  .about h3 {
    font-size: 6vw;
    margin-bottom: 2vw;
  }

  .about .image {
    margin: 6vw auto 0;
  }
}



.development {
  background-color: #000;
  padding: 160px 0;
  z-index: 40;
  position: relative;
}

.development h2 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 80px;
  color: #fff;
  font-feature-settings: "palt";
  font-family: "ヒラギノ明朝 W3 JIS2004", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif
}


@media all and (max-width: 896px) {
  .development {
    padding: 12vw 2vw;
  }

  .development h2 {
    font-size: 8vw;
    margin-bottom: 4vw;
  }
}

.triple-img {
  background-color: #000;
  z-index: 40;
  position: relative;
}

.triple-img ul {
  display: flex;
  gap: 2%;
}


.triple-img ul li {
  width: 32%;
  aspect-ratio: 39/35;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
  overflow: hidden;
}

.triple-img ul li img {
  transform: scale(1);
  transition: all 1s ease;
}


.triple-img ul li.animation {
  opacity: 1;
  transform: translateY(0);
}

.triple-img ul li.animation img {
  transform: scale(1.02);
  transition-delay: 1s;
}


.triple-img ul li.animation:nth-of-type(2) {
  transition-delay: 0.3s;
}

.triple-img ul li.animation:nth-of-type(2) img {
  transition-delay: 1.3s;
}

.triple-img ul li.animation:nth-of-type(3) {
  transition-delay: 0.6s;
}


.triple-img ul li.animation:nth-of-type(3) img {
  transition-delay: 1.6s;
}

.outlook {
  padding: 160px 0;
  background-color: #000;
  z-index: 40;
  position: relative;
}

.outlook h2 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 80px;
  color: #fff;
  font-feature-settings: "palt";
  font-family: "ヒラギノ明朝 W3 JIS2004", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif
}


@media all and (max-width: 896px) {
  .outlook {
    padding: 12vw 2vw;
  }

  .outlook h2 {
    font-size: 6vw;
    margin-bottom: 4vw;
  }
}

.image-layout {
  background-color: #000;
  z-index: 40;
  position: relative;
}

.image-layout .contents {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 24px;
}

.image-layout .contents img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.image-layout .contents div {
  opacity: 0;
  transition: all 1s ease;
  transform: translateY(40px);
  overflow: hidden;
}

.image-layout .contents.animation div {
  opacity: 1;
  transform: translateY(0);
}

.image-layout .contents.animation div img {
  transform: scale(1);
  transition: all 1s ease;
}

.image-layout .contents.animation .div2 {
  transition-delay: .3s;
}

.image-layout .contents.animation .div2 img {
  transform: scale(1.02);
  transition-delay: 1.3s;
}

.image-layout .contents.animation .div3 {
  transition-delay: .6s;
}

.image-layout .contents.animation .div3 img {
  transform: scale(1.02);
  transition-delay: 1.6s;
}

.image-layout .contents.animation .div4 {
  transition-delay: .9s;
}

.image-layout .contents.animation .div4 img {
  transform: scale(1.02);
  transition-delay: 1.9s;
}

.image-layout .contents.animation .div5 {
  transition-delay: 1.2s;
}

.image-layout .contents.animation .div5 img {
  transform: scale(1.02);
  transition-delay: 2.2s;
}

.image-layout .contents.animation .div6 {
  transition-delay: 1.5s;
}

.image-layout .contents.animation .div6 img {
  transform: scale(1.02);
  transition-delay: 2.5s;
}

.div1 {
  grid-row: span 6 / span 6;
}

.div2 {
  grid-column: span 2 / span 2;
  grid-row: span 3 / span 3;
}

.div3 {
  grid-row: span 3 / span 3;
  grid-column-start: 2;
  grid-row-start: 4;
}

.div4 {
  grid-row: span 4 / span 4;
  grid-column-start: 3;
  grid-row-start: 4;
}

.div5 {
  grid-column: span 2 / span 2;
  grid-row: span 4 / span 4;
  grid-row-start: 7;
}

.div6 {
  grid-row: span 3 / span 3;
  grid-column-start: 3;
  grid-row-start: 8;
}

@media all and (max-width: 896px) {
  .image-layout {
    padding: 0 2vw;
  }

  .image-layout .contents {
    gap: 2vw;
  }
}



.spec-head {
  width: 240px;
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  color: #fff;
}

.spec {
  padding: 120px 0 0;
  background-color: #000;
  z-index: 40;
  position: relative;
}

.spec .contents {
  margin: 0 auto;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s;
}

.spec-box {
  padding: 40px 0 0;
}

.spec .contents.animation {
  opacity: 1;
  transform: translateY(0);
}

.spec-title {
  width: 240px;
  margin-right: 0;
}

.spec .spec-title h2 {
  color: #fff;
  margin-bottom: 20px;
}

.spec-table ul li {
  border-bottom: none;
}

.spec-table ul li:first-of-type {
  border-top: none;
}


.spec-table ul li .head {
  color: #000;
  background-color: #eaf0f1;
  border-bottom: 1px solid #000;
}

.spec-table ul li:first-of-type .head {
  background-color: initial;
  border-right: 1px solid #fff;
}

.spec .contents .spec-table ul li p {
  display: flex;
  align-items: center;
}


.spec-table ul li:last-of-type .head,
.spec-table ul li .text {
  border-bottom: 1px solid #fff;
}

.spec-table ul li:first-of-type .head,
.spec-table ul li:first-of-type .text {
  border-top: 1px solid #fff;
}


.spec-table ul li .l6-table .head {
  width: 28%;
  border-bottom: 1px solid #fff;
}

.spec-table ul li .l6-table.column2 .text {
  width: 50%;
  align-items: center;
  justify-content: center;
  display: flex;
}

.spec-table ul li .l6-table.column2 .text span {
  display: none;
}

.spec-table ul li .l6-table.column2 .text:last-of-type {
  border-left: 1px solid #fff;
}

.spec-table ul li .text {
  color: #fff;
}

@media all and (max-width:1280px) {
  .spec .contents {
    width: 100%;
    padding: 0 2vw;
  }
}

@media all and (max-width: 896px) {
  .spec {
    padding: 12vw 2vw;
  }

  .spec-box {
    padding: 8vw 0;
  }

  .spec-head {
    width: 100%;
  }

  .spec-title h2 {
    font-size: 5vw;
  }

  .spec-title {
    width: 100%;
  }

  .spec-title div {
    width: 100%;
  }

  .spec .contents {
    width: 100%;
  }

  .spec .contents p {
    padding: 2vw 0;
  }

  .spec-table ul li:first-of-type {
    display: none;
  }

  .spec-table ul li .head {
    border-bottom: none;
  }

  .spec-table ul li .l6-table .head {
    border-bottom: none;
  }

  .spec-table ul li:first-of-type .head,
  .spec-table ul li:first-of-type .text {
    border-top: none;
  }

  .spec-table ul li:last-of-type .head,
  .spec-table ul li .text {
    border-bottom: none;
  }

  .spec-table ul li .l6-table.column2 .text {
    flex-direction: column;
  }

  .spec-table ul li .l6-table.column2 .text span {
    display: block;
    font-size: 2vw;
    margin-bottom: 1vw;
  }
}



.link {
  background-color: #000;
  position: relative;
  z-index: 50;
  padding: 120px 0 0;
}

.link .contents {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.link .contents.animation {
  opacity: 1;
  transform: translateY(0);
}

.link p {
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
  font-weight: normal;
  font-family: "JMC", "Gothic MB101 normal", sans-serif;
  line-height: 2;
}

.link .icon {
  width: 60px;
  margin: 0 auto;
  display: block;
}


.link .icon a img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  transition: all 0.5s ease;
}

.link .icon a:hover img {
  filter: none;
}


@media all and (max-width: 896px) {
  .link {
    padding: 0 2vw;
  }

  .link p {
    font-size: 3.1vw;
    margin-bottom: 4vw;
  }

  .link .icon {
    width: 10vw;
  }
}

footer {
  padding: 160px 20px 0;
  margin-top: 0;
  background-color: #000;
  z-index: 40;
  position: relative;
}

@media all and (max-width: 896px) {
  footer {
    padding: 12vw 2vw 0;
  }
}