@charset "UTF-8";
@media only screen and (max-width: 1400px) {
  html {
    font-size: 0.7142857143vw;
  }
}
/*================================
  header
=================================*/
#header .header__inner svg{
  fill: #fff;
}
.cls-4{
  stroke: #fff;
}
.header .navigation__list{
  color: #fff;
}
.header .drawer-btn__border{
  background: #fff;
}
.header .drawer-btn__border::after{
  background: #fff;
}
.header .drawer-btn__border::before{
  background: #fff;
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - custom property
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents {
  --color-white: #fff;
  --color-black: #000;
  --color-gray: #e0e0e0;  
  --font-yu: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic";
  --font-hiragino: "Hiragino Sans";
  --font-nimbus: "nimbus-sans";
  --font-trajan: "trajan-pro-3";
  --font-ja: var(--font-yu), sans-serif;
  --font-en: var(--font-nimbus), sans-serif;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  font-feature-settings: "palt";
  overflow: clip;
}
@media screen and (min-width: 768px) {
  .l-lpcontents {
    --width-primary: 140rem;
    --fz-text_fv_subtitle: 1.6rem;
    --fz-text_fv_lead: 1.6rem;
    --fz-text_lead01: 1.7rem;
    --fz-text_lead02: 1.3rem;
    --fz-text_credit: 1.2rem;
    --fz-text_btn: 1.8rem;
    margin-top: -14rem;
  }
}
@media screen and (max-width: 767px) {
  .l-lpcontents {
    --width-primary: calc(750*100vw/750);
    --fz-text_fv_subtitle: calc(25*100vw/750);
    --fz-text_fv_lead: calc(23*100vw/750);
    --fz-text_lead01: calc(25*100vw/750);
    --fz-text_lead02: calc(23*100vw/750);
    --fz-text_credit: calc(24*100vw/750);
    --fz-text_btn: calc(30*100vw/750);
    margin-top: calc(-116*100vw/750);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
component - others
//////////////////////////////////////////////////////////////////////////////////////////////
*/
@media screen and (min-width: 768px) {
  .l-lpcontents .hidden-desktop {
  display: none !important;
}
}
@media screen and (max-width: 767px) {
  .l-lpcontents .hidden-smartphone {
    display: none !important;
  }
  .top_button {
    margin-top: calc(-110*100vw/750);
  }
}
.l-lpcontents img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
component - grid
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents [class*="c-grid_column"] {
  display: grid;
  grid-template-columns: repeat(var(--columns , 1), 1fr);
  gap: var(--row, 0) var(--column, 0);
}
@media screen and (min-width: 768px) {
  .l-lpcontents [class*="c-pc_grid_column"] {
    display: grid;
    grid-template-columns: repeat(var(--columns , 1), 1fr);
    gap: var(--row, 0) var(--column, 0);
  }
}
@media screen and (max-width: 767px) {
  .l-lpcontents [class*="c-sp_grid_column"] {
    display: grid;
    grid-template-columns: repeat(var(--columns , 1), 1fr);
    gap: var(--row, 0) var(--column, 0);
  }
}
.l-lpcontents :where([class*="styleview__wrap0"]) {
  position: relative;
  width: fit-content;
  /* height: fit-content; */
  z-index: 2;
}
.l-lpcontents [class*="bg__image"] {
  z-index: -1;
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
component - position
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .c-position {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .l-lpcontents .c-pc_position {
    position: absolute;
  }
}
@media screen and (max-width: 767px) {
  .l-lpcontents .c-sp_position {
    position: absolute;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
component - flex
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .c-flex_row {
  display: flex;
  flex-direction: row;
  gap: var(--row, 0) var(--column, 0);
}
.l-lpcontents .c-flex_row_reverse {
  display: flex;
  flex-direction: row-reverse;
  gap: var(--row, 0) var(--column, 0);
}
.l-lpcontents .c-flex_column {
  display: flex;
  flex-direction: column;
  gap: var(--row, 0) var(--column, 0);
}
.l-lpcontents .c-flex_column_reverse {
  display: flex;
  flex-direction: column-reverse;
  gap: var(--row, 0) var(--column, 0);
}
@media screen and (min-width: 768px) {
  .l-lpcontents .c-pc_flex_row {
    display: flex;
    flex-direction: row;
    gap: var(--row, 0) var(--column, 0);
  }
  .l-lpcontents .c-pc_flex_row_reverse {
    display: flex;
    flex-direction: row-reverse;
    gap: var(--row, 0) var(--column, 0);
  }
  .l-lpcontents .c-pc_flex_column {
    display: flex;
    flex-direction: column;
    gap: var(--row, 0) var(--column, 0);
  }
  .l-lpcontents .c-pc_flex_column_reverse {
    display: flex;
    flex-direction: column;
    gap: var(--row, 0) var(--column, 0);
  }
}
@media screen and (max-width: 767px) {
  .l-lpcontents .c-sp_flex_row {
    display: flex;
    flex-direction: row;
    gap: var(--row, 0) var(--column, 0);
  }
  .l-lpcontents .c-sp_flex_row_reverse {
    display: flex;
    flex-direction: column-reverse;
    gap: var(--row, 0) var(--column, 0);
  }
  .l-lpcontents .c-sp_flex_column {
    display: flex;
    flex-direction: column;
    gap: var(--row, 0) var(--column, 0);
  }
  .l-lpcontents .c-sp_flex_column_reverse {
    display: flex;
    flex-direction: column-reverse;
    gap: var(--row, 0) var(--column, 0);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
component - text
//////////////////////////////////////////////////////////////////////////////////////////////
*/

.l-lpcontents .c-text_fv_subtitle {
  font-size: var(--fz-text_fv_subtitle);
  line-height: 1.875;
  letter-spacing: .18em;
  font-weight: var(--fw-medium);
  font-family: var(--font-hiragino);
  color: var(--color-white);
  pointer-events: none;
}
.l-lpcontents .c-text_fv_lead {
  font-size: var(--fz-text_fv_lead);
  line-height: 1.875;
  letter-spacing: .14em;
  font-weight: var(--fw-medium);
  font-family: var(--font-hiragino);
  color: var(--color-black);
  text-align: center;
}
.l-lpcontents .c-text_lead01 {
  font-size: var(--fz-text_lead01);
  line-height: 1.7647058824;
  letter-spacing: .14em;
  font-weight: var(--fw-medium);
  font-family: var(--font-hiragino);
  color: var(--color-black);
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
}
.l-lpcontents .c-text_lead02 {
  font-size: var(--fz-text_lead02);
  line-height: 2.07692307692;
  letter-spacing: .05em;
  font-weight: var(--fw-regular);
  font-family: var(--font-hiragino);
  color: var(--color-black);
  text-align: justify;
}
.l-lpcontents .c-text_credit {
  font-size: var(--fz-text_credit);
  line-height: 2.16;
  letter-spacing: .005em;
  font-weight: var(--fw-regular);
  font-family: var(--font-en);
  color: var(--color-black);
}

.l-lpcontents .c-text_credit li {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  display: inline-block;
  margin: 0 0.4rem;
}
.l-lpcontents .c-text_btn {
  width: fit-content;
  margin: 0 auto;
  font-size: var(--fz-text_btn);
  line-height: 1.4;
  letter-spacing: .08em;
  font-family: var(--font-en);
  color: var(--color-black);
  border-bottom: 0.1rem solid var(--color-black);
}
@media screen and (max-width: 767px) {
  .l-lpcontents .c-text_fv_subtitle {
    line-height: 1.88;
    letter-spacing: .09em;
  }
  .l-lpcontents .c-text_fv_lead {
    line-height: 2;
    letter-spacing: .05em;
  }
  .l-lpcontents .c-text_lead01 {
    line-height: 1.84;
    letter-spacing: .05em;
  }
  .l-lpcontents .c-text_lead02 {
    line-height: 1.8695652174;
    letter-spacing: .075em;
    font-weight: var(--fw-medium);
  }
  .l-lpcontents .c-text_credit {
    line-height: 2.08333333333;
  }
  .l-lpcontents .c-text_credit li {
    margin: 0 calc(4*100vw/750);
  }
  .l-lpcontents .c-text_btn {
    line-height: 1.4;
    letter-spacing: .037em;
    border-bottom: 1px solid var(--color-white);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - common
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .styleview__inner {
  width: var(--width-primary);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - firstview
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .firstview__wrapper {
  --row: 11.5rem;
}
.l-lpcontents .firstview__list {
  grid-template-columns: repeat(2, 1fr);
}
.l-lpcontents .firstview__item {
  position: relative;
}
.l-lpcontents .firstview__image01 {
  width: calc(450*100vw/1400);
  margin: calc(242*100vw/1400) auto 0;
}
.l-lpcontents .firstview__image02 {width: calc(700*100vw/1400);}
.l-lpcontents .firstview__title {
  width: calc(379*100vw/1400);
  top: calc(849*100vw/1400);
  left: calc(160*100vw/1400);
  pointer-events: none;
}
.l-lpcontents .firstview__subtitle {
  top: calc(826*100vw/1400);
  left: calc(149*100vw/1400);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .firstview__image01 {
    width: calc(500*100vw/750);
    margin-top: calc(2*100vw/750);;
  }
  .l-lpcontents .firstview__item:first-of-type {
    padding-top: calc(106*100vw/750);;
    padding-bottom: calc(93*100vw/750);;
  }
  .l-lpcontents .firstview__title {
    width: calc(550*100vw/750);;
    top: calc(746*100vw/750);;
    left: calc(98*100vw/750);;
  }
  .l-lpcontents .firstview__subtitle {
    top: calc(348* 100vw / 750);
    left: calc(84* 100vw / 750);
  }
  .l-lpcontents .firstview__wrapper {
    --row: calc(117*100vw/750);
  }
  .l-lpcontents .firstview__image02 {width: calc(750*100vw/750);}
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - styleview01
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .styleview01 {
  margin-top: 11.4rem;
}
.l-lpcontents .styleview01 .styleview__wrapper {
  grid-template-columns: 34.6rem 3.9rem 40.7rem;
  grid-template-rows: 72.7rem 23.9rem 108.2rem;
}
.l-lpcontents .styleview01 .styleview__wrap01 {
  grid-column: 3;
  grid-row: 1;
  z-index: 5;
}
.l-lpcontents .styleview01 .styleview__wrap02 {
  grid-column: 1;
  grid-row: 2;
}
.l-lpcontents .styleview01 .styleview__wrap03 {
  grid-column: 4;
  grid-row: 3;
}
.l-lpcontents .styleview01 .styleview__wrap04 {
  grid-column: 2;
  grid-row: 4;
}
.l-lpcontents .styleview__image0101 {width: 63.0rem;}
.l-lpcontents .styleview__image0102 {width: 68.0rem;}
.l-lpcontents .styleview__image0103 {width: 41.0rem;}
.l-lpcontents .styleview__image0104 {width: 37.0rem;}
.l-lpcontents .bg__image01 {
  top: -7.7rem;
  left: -8.4rem;
  width: 46.0rem;
}
@media screen and (min-width: 768px) {
  .l-lpcontents .styleview01 .styleview__wrap01 .styleview__lead {
    margin-top: 15.2rem;
    left: -3.8rem;
  }
  .l-lpcontents .styleview01 .styleview__wrap02 .styleview__credit {
    margin-top: 3.3rem;
    text-align: right;
  }
  .l-lpcontents .styleview01 .styleview__wrap02 .styleview__credit li {
    margin-right: 0;
    margin-left: 0.5rem;
  }
  .l-lpcontents .styleview01 .styleview__wrap03 .c-position {
    top: 56.6rem;
    left: 15.9rem;
  }
  .l-lpcontents .styleview01 .styleview__wrap03 .styleview__credit {
    margin-top: 24rem;
  }
  .l-lpcontents .styleview01 .styleview__wrap03 .styleview__credit li {
    display: block;
    margin: 0;
  }
  .l-lpcontents .styleview01 .styleview__wrap04 .styleview__lead {
    width: 70.9rem;
  }
}
@media screen and (max-width: 767px) {
  .l-lpcontents .styleview01 {
    margin-top: calc(140*100vw/750);
  }
  .l-lpcontents .styleview01 .styleview__wrap01 {
    width: var(--width-primary);
    margin: 0 auto;
  }
  .l-lpcontents .styleview01 .styleview__wrap02 {
    margin: calc(-30*100vw/750) auto 0;
  }
  .l-lpcontents .styleview01 .styleview__wrap03 {
    width: var(--width-primary);
    margin-top: calc(90*100vw/750);
    text-align: center;
  }
  .l-lpcontents .styleview01 .styleview__wrap04 {
    width: calc(650*100vw/750);
    margin: calc(168  *100vw/750) auto 0;
  }
  .l-lpcontents .styleview__image0101 {
    width: calc(650*100vw/750);
    margin: 0 auto;
  }
  .l-lpcontents .styleview__image0102 {width: calc(680*100vw/750);}
  .l-lpcontents .styleview__image0103 {width: calc(581*100vw/750);}
  .l-lpcontents .styleview__image0104 {
    width: calc(525*100vw/750);
    top: calc(800*100vw/750);
    right: 0;
  }
  .l-lpcontents .bg__image01 {
    width: calc(560*100vw/750);
    top: calc(-81*100vw/750);
    left: calc(-15*100vw/750);
  }
  .l-lpcontents .styleview01 .styleview__wrap01 .styleview__lead {
    margin-top: calc(70*100vw/750);
  }
  .l-lpcontents .styleview01 .styleview__wrap02 .styleview__credit {
    margin-top: calc(30*100vw/750);
    text-align: center;
  }
  .l-lpcontents .styleview01 .styleview__wrap03 .styleview__credit {
    margin-top: calc(500*100vw/750);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - styleview02
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .styleview02 {
  margin-top: 38.8rem;
}
.l-lpcontents .styleview02 .styleview__wrapper {
  grid-template-columns: 32.9rem 28.5rem;
  grid-template-rows: 75.7rem 19.9rem 113.2rem;
  margin-left: 5.5rem;
}
.l-lpcontents .styleview02 .styleview__wrap01 {
  grid-column: 2;
  grid-row: 1;
  z-index: 5;
}
.l-lpcontents .styleview02 .styleview__wrap02 {
  grid-column: 3;
  grid-row: 2;
}
.l-lpcontents .styleview02 .styleview__wrap03 {
  grid-column: 1;
  grid-row: 3;
}
.l-lpcontents .styleview02 .styleview__wrap04 {
  grid-column: 2;
  grid-row: 4;
}
.l-lpcontents .styleview__image0201 {width: 63.0rem;}
.l-lpcontents .styleview__image0202 {width: 73.0rem;}
.l-lpcontents .styleview__image0203 {width: 42.0rem;}
.l-lpcontents .styleview__image0204 {width: 42.0rem;}
.l-lpcontents .bg__image02 {
  top: -9.3rem;
  left: 37.4rem;
  width: 55.0rem;
}
@media screen and (min-width: 768px) {
  .l-lpcontents .styleview02 .styleview__wrap01 .styleview__lead {
    margin-top: 15.2rem;
  }
  .l-lpcontents .styleview02 .styleview__wrap02 .styleview__credit {
    margin-top: 3.3rem;
    text-align: center;
  }
  .l-lpcontents .styleview02 .styleview__wrap03 {
    --column: 2.6rem;
  }
  .l-lpcontents .styleview02 .styleview__wrap03 > div {
    flex-shrink: 0;
  }
  .l-lpcontents .styleview02 .styleview__wrap03 .c-position {
    top: 53.5rem;
    left: 13.3rem;
  }
  .l-lpcontents .styleview02 .styleview__wrap03 .styleview__credit {
    margin-top: 39.8rem;
    white-space: nowrap;
  }
  .l-lpcontents .styleview02 .styleview__wrap03 .styleview__credit li {
    display: block;
  }
  .l-lpcontents .styleview02 .styleview__wrap04 .styleview__lead {
    width: 61rem;
    margin-left: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-lpcontents .styleview02 {
    margin-top: calc(190*100vw/750);
  }
  .l-lpcontents .styleview02 .styleview__wrapper {
    margin: 0 auto;
  }
  .l-lpcontents .styleview02 .styleview__wrap01 {
    width: var(--width-primary);
    margin: 0 auto;
    text-align: center;
  }
  .l-lpcontents .styleview02 .styleview__wrap02 {
    margin: calc(-50*100vw/750) auto 0;
    text-align: center;
  }
  .l-lpcontents .styleview02 .styleview__wrap03 {
    width: var(--width-primary);
    margin: calc(86*100vw/750) auto 0;
    text-align: center;
  }
  .l-lpcontents .styleview02 .styleview__wrap04 {
    width: calc(650*100vw/750);
    margin: calc(166*100vw/750) auto 0;
  }
  .l-lpcontents .styleview__image0201 {
    width: calc(650*100vw/750);
    margin: 0 auto;
  }
  .l-lpcontents .styleview__image0202 {width: calc(700*100vw/750);}
  .l-lpcontents .styleview__image0203 {
    width: calc(560*100vw/750);
    margin-left: calc(166*100vw/750);
  }
  .l-lpcontents .styleview__image0204 {
    width: calc(560* 100vw / 750);
    top: calc(713* 100vw / 750);
    left: calc(26* 100vw / 750);
  }
  .l-lpcontents .bg__image02 {
    width: calc(550*100vw/750);
    top: calc(-85*100vw/750);
    left: calc(125*100vw/750);
  }
  .l-lpcontents .styleview02 .styleview__wrap01 .styleview__lead {
    margin-top: calc(70*100vw/750);
  }
  .l-lpcontents .styleview02 .styleview__wrap02 .styleview__credit {
    margin-top: calc(28*100vw/750);
  }
  .l-lpcontents .styleview02 .styleview__wrap03 .styleview__credit {
    margin-top: calc(694*100vw/750);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - styleview03
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .styleview03 {
  margin-top: 34.6rem;
}
.l-lpcontents .styleview03 .styleview__wrapper {
  grid-template-columns: 38.5rem 38.5rem 8rem;
  grid-template-rows: 78.7rem 10.1rem 61rem 76.4rem;
}
.l-lpcontents .styleview03 .styleview__wrap01 {
  grid-column: 2;
  grid-row: 1;
  z-index: 5;
}
.l-lpcontents .styleview03 .styleview__wrap02 {
  grid-column: 1;
  grid-row: 2;
}
.l-lpcontents .styleview03 .styleview__wrap03 {
  grid-column: 3;
  grid-row: 3;
}
.l-lpcontents .styleview03 .styleview__wrap04 {
  grid-column: 4;
  grid-row: 4;
}
.l-lpcontents .styleview03 .styleview__wrap05 {
  grid-column: 2;
  grid-row: 5;
}
.l-lpcontents .styleview__image0301 {width: 63.0rem;}
.l-lpcontents .styleview__image0302 {width: 73.0rem;}
.l-lpcontents .styleview__image0303 {width: 41.0rem;}
.l-lpcontents .styleview__image0304 {width: 50.0rem;}
.l-lpcontents .bg__image03 {
  width: 55.0rem;
  top: -1rem;
  left: 4rem;
}
@media screen and (min-width: 768px) {
  .l-lpcontents .styleview03 .styleview__credit {
    margin-top: 3.3rem;
  }
  .l-lpcontents .styleview03 .styleview__wrap01 .styleview__lead {
    margin-top: 9.8rem;
    left: -0.8rem;
  }
  .l-lpcontents .styleview03 .styleview__wrap02 .styleview__credit {
    text-align: right;
  }
  .l-lpcontents .styleview03 .styleview__wrap02 .styleview__credit li {
    margin-right: 0;
    margin-left: 0.5rem;
  }
  .l-lpcontents .styleview03 .styleview__wrap03 .styleview__credit {
    text-align: center;
  }
  .l-lpcontents .styleview03 .styleview__wrap04 .styleview__credit li {
    margin-left: 0;
  }
  .l-lpcontents .styleview03 .styleview__wrap05 .styleview__lead {
    width: 61.7rem;
    margin-left: 0.7rem;
  }
}
@media screen and (max-width: 767px) {
  .l-lpcontents .styleview03 {
    margin-top: calc(188*100vw/750);
  }
  .l-lpcontents .styleview03 .styleview__wrap01 {
    margin: 0 auto;
    text-align: center;
  }
  .l-lpcontents .styleview03 .styleview__wrap02 {
    margin: calc(-30*100vw/750) auto 0;
    text-align: center;
  }
  .l-lpcontents .styleview03 .styleview__wrap03 {
    width: var(--width-primary);
    margin: calc(26*100vw/750) auto 0;
  }
  .l-lpcontents .styleview03 .styleview__wrap04 {
    width: var(--width-primary);
    margin-top: calc(80*100vw/750);
    text-align: center;
  }
  .l-lpcontents .styleview03 .styleview__wrap05 {
    width: calc(650*100vw/750);
    margin: calc(110*100vw/750) auto 0;
  }
  .l-lpcontents .styleview__image0301 {width: calc(650*100vw/750);}
  .l-lpcontents .styleview__image0302 {width: calc(700*100vw/750);}
  .l-lpcontents .styleview__image0303 {
    width: calc(510*100vw/750);
    margin-left: calc(23*100vw/750);
  }
  .l-lpcontents .styleview__image0304 {
    width: calc(576*100vw/750);
    margin-left: calc(148*100vw/750);
  }
  .l-lpcontents .bg__image03 {
    width: calc(700* 100vw / 750);
    top: calc(-24* 100vw / 750);
    left: calc(-19* 100vw / 750);
  }
  .l-lpcontents .styleview03 .styleview__wrap01 .styleview__lead {
    margin-top: calc(70*100vw/750);
  }
  .l-lpcontents .styleview03 .styleview__wrap02 .styleview__credit {
    margin-top: calc(27*100vw/750);
  }
  .l-lpcontents .styleview03 .styleview__wrap04 .styleview__credit {
    margin-top: calc(27*100vw/750);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - lastview
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .lastview {
  margin-top: 32.3rem;
  padding-bottom: 17rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .lastview {
    margin-top: calc(188*100vw/750);
    padding-bottom: calc(194*100vw/750);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - animation
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .js-imgFade,
.l-lpcontents .js-txtFade {
  opacity: 0;
  transform: translateY(20px);
  transition: all 2s cubic-bezier(.165,.84,.44,1);
}
.l-lpcontents .js-imgFade.is-active,
.l-lpcontents .js-txtFade.is-active {
  opacity: 1;
  transform: translateX(0);
  transition: all 2s cubic-bezier(.165,.84,.44,1);
}
