@charset "UTF-8";
@media only screen and (max-width: 1400px) {
  html {
    font-size: 0.7142857143vw;
  }
}
/* @font-face {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  src: local("Noto Sans CJK JP"), url("../font/NotoSerifJP-Regular.otf");
} */
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - custom property
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents {
  --color-white: #fff;
  --color-black: #000;
  --color-text: #58595b;
  --color-gray: #c0c0c0;
  --font-yu: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic";
  --font-darkmode: "darkmode-on";
  --font-en: var(--font-darkmode), sans-serif;
  --font-ja: var(--font-yu), sans-serif;
  --font-main: var(--font-en), var(--font-ja), 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_btn: 2rem;
    --fz-text_staff: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-lpcontents {
    --width-primary: calc(750*100vw/750);
    --fz-text_btn: calc(40*100vw/750);;
    --fz-text_staff: calc(24*100vw/750);;
  }
}

@media screen and (min-width: 768px) {
  .l-lpcontents .sp_only {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .l-lpcontents .pc_only {
    display: none !important;
  }
}
.l-lpcontents img,
.l-lpcontents picture {
  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);
}
.l-lpcontents [class*="grid_column-1"] {--columns: 1;}
.l-lpcontents [class*="grid_column-2"] {--columns: 2;}
.l-lpcontents [class*="grid_column-3"] {--columns: 3;}

.l-lpcontents [class*="styleview__wrap"] {
  position: relative;
  width: fit-content;
  height: fit-content;
}
.l-lpcontents .c-position {
  position: absolute;
}
@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);
  }
  .l-lpcontents [class*="pc_grid_column-1"] {--columns: 1;}
  .l-lpcontents [class*="pc_grid_column-2"] {--columns: 2;}
  .l-lpcontents [class*="pc_grid_column-3"] {--columns: 3;}

  .l-lpcontents .c-pc_position {
    position: absolute;
  }
}
@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 [class*="sp_grid_column-1"] {--columns: 1;}
  .l-lpcontents [class*="sp_grid_column-2"] {--columns: 2;}
  .l-lpcontents [class*="sp_grid_column-3"] {--columns: 3;}

  .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: column-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 .firstview__lead {
  font-size: 1.3rem;
  line-height: 2;
  letter-spacing: 0.16em;
  font-weight: var(--fw-regular);
  color: var(--color-black);
  font-family: var(--font-ja);
}
.l-lpcontents .styleview__credit {
  font-size: 1.2rem;
  line-height:  1.65;
  letter-spacing: 0.02em;
  font-weight: var(--fw-regular);
  color: var(--color-text);
  font-family: var(--font-en);
}
.l-lpcontents .styleview__credit li {
  display: inline-block;
}
.l-lpcontents .styleview__title {
  font-size: 2.8rem;
  line-height: 1.2142857143;
  font-weight: var(--fw-bold);
  font-family: var(--font-en);
  color: var(--color-gray);
}
.l-lpcontents .c-text_btn {
  display: grid;
  width: fit-content;
  margin: 13.4rem auto 0;
  font-size: var(--fz-text_btn);
  line-height: 1.4;
  letter-spacing: 0.02em;
  font-weight: var(--fw-regular);
  font-family: var(--font-en);
  color: var(--color-black);
  border-bottom: 0.3rem double var(--color-text);
  padding-bottom: 0.3rem;
}
.l-lpcontents .c-text_staff {
  display: block;
  margin-top: 13.7rem;;
  font-size: var(--fz-text_staff);
  line-height: 1.75;
  letter-spacing: 0.02em;
  font-weight: var(--fw-regular);
  font-family: var(--font-en);
  color: var(--color-text);
}
@media screen and (min-width: 768px) {
  .l-lpcontents .c-bg_white {
    background-color: var(--color-white);
  }
}
@media screen and (max-width: 767px) {
  .l-lpcontents .firstview__lead {
    font-size: calc(24*100vw/750);
    line-height: 1.9583333333;
    letter-spacing: 0.12em;
  }
  .l-lpcontents .styleview__credit {
    font-size: calc(22*100vw/750);
    line-height:  1.75;
    letter-spacing: 0.02em;
  }
  .l-lpcontents .styleview__title {
    font-size: calc(44*100vw/750);
    line-height: 1.3181818182;
    font-weight: var(--fw-bold);
    font-family: var(--font-en);
    color: var(--color-gray);
  }
  .l-lpcontents .c-text_btn {
    margin-top: calc(148*100vw/750);;
    border-bottom: calc(6*100vw/750) double var(--color-text);
    padding-bottom: calc(7*100vw/750);
  }
  .l-lpcontents .c-text_staff {
    margin-top: calc(149*100vw/750);
    font-size: var(--fz-text_staff);
    line-height: 1.75;
    letter-spacing: 0.02em;
    font-weight: var(--fw-regular);
    font-family: var(--font-en);
    color: var(--color-text);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
component - image
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .styleview__image0101 {width: 60.0rem;}
.l-lpcontents .styleview__image0102 {width: 34.0rem;}
.l-lpcontents .styleview__image0201 {width: 70.0rem;}
.l-lpcontents .styleview__image0301 {width: 42.0rem;}
.l-lpcontents .styleview__image0401 {width: 40.0rem;}
.l-lpcontents .styleview__image0402 {width: 62.0rem;}
.l-lpcontents .styleview__image0501 {width: 42.0rem;}
.l-lpcontents .styleview__image0601 {width: 36.0rem;}
.l-lpcontents .styleview__image0602 {width: 60.0rem;}
.l-lpcontents .styleview01 .js-imgSlider {width: 34rem;}
.l-lpcontents .js-imgSlider {background-color: var(--color-white);}
.l-lpcontents .styleview02 .js-imgSlider {width: 70rem;}
.l-lpcontents .styleview04 .js-imgSlider {width: 62rem;}
.l-lpcontents .styleview06 .js-imgSlider {width: 60rem;}
@media screen and (max-width: 767px) {
  .l-lpcontents .styleview__image0101 {width: calc(750*100vw/750);}
  .l-lpcontents .styleview__image0102 {width: calc(560*100vw/750);}
  .l-lpcontents .styleview__image0201 {width: calc(680*100vw/750);}
  .l-lpcontents .styleview__image0301 {width: calc(520*100vw/750);}
  .l-lpcontents .styleview__image0401 {width: calc(540*100vw/750);}
  .l-lpcontents .styleview__image0402 {width: calc(660*100vw/750);}
  .l-lpcontents .styleview__image0501 {width: calc(520*100vw/750);}
  .l-lpcontents .styleview__image0601 {width: calc(580*100vw/750);}
  .l-lpcontents .styleview__image0602 {width: calc(750*100vw/750);}
  .l-lpcontents .styleview01 .js-imgSlider {width: calc(560*100vw/750);}
  .l-lpcontents .styleview02 .js-imgSlider {width: calc(680*100vw/750);margin-top: calc(40* 100vw / 750);}
  .l-lpcontents .styleview04 .js-imgSlider {width: calc(660*100vw/750);}
  .l-lpcontents .styleview06 .js-imgSlider {width: calc(750*100vw/750);}
}

/*
//////////////////////////////////////////////////////////////////////////////////////////////
common
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .styleview__inner {
  width: var(--width-primary);
  margin-inline: auto;
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
                                                                                      firstview
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .firstview {
  width: 120rem;
  margin: 0 auto;
  text-align: center;
}
.l-lpcontents .firstview__wrapper {
  --row: 5.9rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .firstview {
    width: calc(750*100vw/750);
  }
  .l-lpcontents .firstview__wrapper {
    --row: calc(110*100vw/750);
  }
}

/*
//////////////////////////////////////////////////////////////////////////////////////////////
                                                                                      styleview01
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .styleview01 {
  margin-top: 8.2rem;
}
.l-lpcontents .styleview01 .styleview__wrapper {
  margin-left: 19rem;
  grid-template-columns: 68rem;
  grid-template-rows: 32.5rem;
}
.l-lpcontents .styleview01 .styleview__wrap01 {
  grid-column: 1;
  grid-row: 1;
}
.l-lpcontents .styleview01 .styleview__wrap02 {
  grid-column: 2;
  grid-row: 2;
}
.l-lpcontents .styleview01 .styleview__title {
  transform: rotate(-90deg);
  top: 41rem;
  left: -36.4rem;
  white-space: nowrap;
}
.l-lpcontents .styleview01 .styleview__credit {
  top: -8.5rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .styleview01 {
    margin-top: calc(128*100vw/750);;
  }
  .l-lpcontents .styleview01 .styleview__wrapper {
    margin: 0 auto;
  }
  .l-lpcontents .styleview01 .styleview__wrap02 {
    margin: calc(48*100vw/750) auto 0;;
  }
  .l-lpcontents .styleview01 .styleview__title {
    text-align: center;
    transform: initial;
    margin-top: calc(50* 100vw / 750);
  }
  .l-lpcontents .styleview01 .styleview__credit {
    text-align: center;
    margin-top: calc(30*100vw/750);;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
                                                                                      styleview02
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .styleview02 {
  margin-top: 16rem;
}
.l-lpcontents .styleview02 .styleview__wrapper {
  position: relative;
  margin: 0 auto;
}
.l-lpcontents .styleview02 .styleview__wrapper::before {
  position: absolute;
  content: "";
  display: block;
  width: 68rem;
  height: 85rem;
  background-color: #c5d0ce;
  top: 6.5rem;
  left: -4rem;
  z-index: -1;
}
.l-lpcontents .styleview02 .styleview__title {
  transform: rotate(90deg);
  top: 14.3rem;
  right: -20rem;
  white-space: nowrap;
}
.l-lpcontents .styleview02 .styleview__credit {
  bottom: -10.8rem;
  left: -4rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .styleview02 {
    margin-top: calc(161*100vw/750);;
  }
  .l-lpcontents .styleview02 .styleview__wrapper {
    margin: initial;
    margin-left: auto;
  }
  .l-lpcontents .styleview02 .styleview__wrapper::before {
    width: calc(680* 100vw / 750);
    height: calc(850* 100vw / 750);
    top: calc(167* 100vw / 750);
    left: calc(-70* 100vw / 750);
  }
  .l-lpcontents .styleview02 .styleview__title {
    transform: initial;
  }
  .l-lpcontents .styleview02 .styleview__credit {
    margin-top: calc(104*100vw/750);;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
                                                                                      styleview03
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .styleview03 {
  margin-top: 26.3rem;
}
.l-lpcontents .styleview03 .styleview__wrapper {
  margin-left: 78rem;
}
.l-lpcontents .styleview03 .styleview__title {
  transform: rotate(-90deg);
  top: 14.7rem;
  left: -20.5rem;
  white-space: nowrap;
}
.l-lpcontents .styleview03 .styleview__credit {
  margin-top: 2.8rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .styleview03 {
    margin-top: calc(170*100vw/750);;
  }
  .l-lpcontents .styleview03 .styleview__wrapper {
    margin-left: calc(190*100vw/750);
  }
  .l-lpcontents .styleview03 .styleview__title {
    transform: rotate(-90deg);
    top: calc(230* 100vw / 750);
    left: calc(-317* 100vw / 750);
  }
  .l-lpcontents .styleview03 .styleview__credit {
    margin-top: calc(33*100vw/750);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
                                                                                      styleview04
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .styleview04 {
  margin-top: 15.5rem;
}
.l-lpcontents .styleview04 .styleview__wrapper {
  width: 96rem;
  margin: 0 auto;
  grid-template-columns: 34rem;
  grid-template-rows: 20rem;
}
.l-lpcontents .styleview04 .styleview__wrap01 {
  grid-column: 1;
  grid-row: 1;
  z-index: 3;
}
.l-lpcontents .styleview04 .styleview__wrap02 {
  grid-column: 2;
  grid-row: 2;
}
.l-lpcontents .styleview04 .styleview__title {
  margin-top: 2.2rem;
}
.l-lpcontents .styleview04 .styleview__credit {
  margin-top: 2.8rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .styleview04 {
    margin-top: calc(175*100vw/750);;
  }
  .l-lpcontents .styleview04 .styleview__wrapper {
    width: var(--width-primary);
  }
  .l-lpcontents .styleview04 .styleview__wrap01 {
    z-index: 3;
  }
  .l-lpcontents .styleview04 .styleview__wrap02 {
    margin-top: calc(-29* 100vw / 750);
    margin-left: auto;
  }
  .l-lpcontents .styleview04 .styleview__title {
    transform: rotate(90deg);
    top: calc(138* 100vw / 750);
    right: calc(-288* 100vw / 750);
  }
  .l-lpcontents .styleview04 .styleview__credit {
    margin-top: calc(33*100vw/750);;
    text-align: left;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
                                                                                      styleview05
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .styleview05 {
  margin-top: 15.7rem;
}
.l-lpcontents .styleview05 .styleview__wrapper {
  margin: 0 auto;
}
.l-lpcontents .styleview05 .styleview__title {
  transform: rotate(90deg);
  top: 14.7rem;
  right: -20.5rem;
  white-space: nowrap;
}
.l-lpcontents .styleview05 .styleview__credit {
  margin-top: 2.8rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .styleview05 {
    margin-top: calc(172*100vw/750);;
  }
  .l-lpcontents .styleview05 .styleview__wrapper {
    margin: initial;
    margin-left: calc(42*100vw/750);;
  }
  .l-lpcontents .styleview05 .styleview__title {
    top: calc(230* 100vw / 750);
    right: calc(-312* 100vw / 750);
  }
  .l-lpcontents .styleview05 .styleview__credit {
    margin-top: calc(33*100vw/750);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
                                                                                      styleview06
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .styleview06 {
  margin-top: 15.5rem;
}
.l-lpcontents .styleview06 .styleview__wrapper {
  margin-left: 17rem;
  grid-template-columns: 68rem;
  grid-template-rows: 15rem;
}
.l-lpcontents .styleview06 .styleview__wrap01 {
  grid-column: 2;
  grid-row: 2;
}
.l-lpcontents .styleview06 .styleview__wrap01::before {
  position: absolute;
  content: "";
  display: block;
  width: 36rem;
  height: 45rem;
  background-color: #cec3c0;
  top: -4rem;
  left: 4rem;
  z-index: -1;
}
.l-lpcontents .styleview06 .styleview__wrap02 {
  grid-column: 1;
  grid-row: 1;
}
.l-lpcontents .styleview06 .styleview__title {
  transform: rotate(-90deg);
  top: 35.5rem;
  left: -22rem;
  white-space: nowrap;
}
.l-lpcontents .styleview06 .styleview__credit {
  margin-top: 2.8rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .styleview06 {
    margin-top: calc(257*100vw/750);;
  }
  .l-lpcontents .styleview06 .styleview__wrapper {
    margin: 0 auto;
  }
  .l-lpcontents .styleview06 .styleview__wrap01 {
    margin-left: calc(85*100vw/750);;
  }
  .l-lpcontents .styleview06 .styleview__wrap01::before {
    width: calc(580* 100vw / 750);
    height: calc(725* 100vw / 750);
    top: calc(-83* 100vw / 750);
    left: calc(84* 100vw / 750);
  }
  .l-lpcontents .styleview06 .styleview__wrap02 {
    margin-top: calc(138*100vw/750);;
  }
  .l-lpcontents .styleview06 .styleview__title {
    transform: initial;
    top: calc(697* 100vw / 750);
    left: calc(-42* 100vw / 750);
  }
  .l-lpcontents .styleview06 .styleview__title > span {
    font-weight: var(--fw-bold);
    display: block;
    margin-left: calc(72*100vw/750);;
  }
  .l-lpcontents .styleview06 .styleview__credit {
    margin-top: calc(31*100vw/750);
    text-align: center;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
                                                                                      endview
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .endview {
  margin-top: 22.2rem;
  padding-bottom: 13.7rem;
  border-bottom: 0.1rem solid var(--color-black);
  text-align: center;
}
.l-lpcontents .endview .c-text_lead {
  width: 48rem;
  margin: 0 auto;
  padding-top: 3.5rem;
  padding-bottom: 3.2rem;
  border-top: 0.1rem solid var(--color-text);
  border-bottom: 0.1rem solid var(--color-text);
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0.16em;
  font-weight: var(--fw-regular);
  color: var(--color-text);
  font-family: var(--font-ja);
}
@media screen and (max-width: 767px) {
  .l-lpcontents .endview {
    margin-top: calc(171*100vw/750);
    padding-bottom: calc(151*100vw/750);
    border-bottom: 0;
  }
  .l-lpcontents .endview .c-text_lead {
    width: calc(600*100vw/750);
    padding-top: calc(50*100vw/750);
    padding-bottom: calc(46*100vw/750);
    border-top: 1px solid var(--color-text);
    border-bottom: 1px solid var(--color-text);
    font-size: calc(24*100vw/750);
    line-height: 1.9583333333;
    letter-spacing: 0.12em;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
slick
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .slick-dots {
  position: absolute;
  bottom: 0.9rem;
  left: 0.4rem;
  margin: 0;
}
.l-lpcontents .slick-dots li {
  display: inline-block;
  margin-inline: 0.6rem;
}
.l-lpcontents .slick-dots li button {
  width: 0.6rem;
  height: 0.6rem;
  font-size: 0;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  border: 0.1rem solid var(--color-black);
}
.l-lpcontents .slick-dots li.slick-active button {
  background-color: var(--color-black);
}
/************** ドットの位置がPC/SP共通の場合 **************/
.l-lpcontents .c-dot-left .slick-dots {
  --left: 0.4rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .slick-dots {
    bottom: calc(21*100vw/750);
    left: calc(9*100vw/750);;
  }
  .l-lpcontents .slick-dots li {
    margin: 0 calc(11*100vw/750);
  }
  .l-lpcontents .slick-dots li button {
    width: calc(10*100vw/750);;
    height: calc(10*100vw/750);;
    border: calc(2*100vw/750) solid var(--color-black);
  }
  .l-lpcontents .c-dot-left .slick-dots {
    --left: calc(8*100vw/750);
  }
}

/*
//////////////////////////////////////////////////////////////////////////////////////////////
animation - fade
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .js-show {
  clip-path: inset(0 100% 0 0);
  transition: 0.8s 0.5s;
}
.l-lpcontents .is-active .js-show {
  clip-path: inset(0);
}
.l-lpcontents .js-txtFade,
.l-lpcontents .js-imgFade {
  opacity: 0;
  transition-duration: 1.2s;
  transform: translateY(50px);
}
.l-lpcontents .js-txtFade.is-active,
.l-lpcontents .js-imgFade.is-active {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 767px) {
  .l-lpcontents .js-imgFadeSp {
    opacity: 0;
    transition-duration: 1.2s;
    transform: translateY(50px);
  }
  .l-lpcontents .js-imgFadeSp.is-active {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (min-width: 768px) {
  .l-lpcontents .js-imgFadePc {
    opacity: 0;
    transition-duration: 1.2s;
    transform: translateY(50px);
  }
  .l-lpcontents .js-imgFadePc.is-active {
    opacity: 1;
    transform: translateY(0);
  }
}
