@charset "UTF-8";
@media only screen and (max-width: 1400px) {
  html {
    font-size: 0.7142857143vw;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
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_title: 2.5rem;
    --fz-text_lead: 1.3rem;
    --fz-text_credit: 1.2rem;
    --fz-text_btn: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .l-lpcontents {
    --width-primary: calc(750*100vw/750);
    --fz-text_title: calc(35*100vw/750);
    --fz-text_lead: calc(23*100vw/750);
    --fz-text_credit: calc(24*100vw/750);
    --fz-text_btn: calc(30*100vw/750);;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
component - others
//////////////////////////////////////////////////////////////////////////////////////////////
*/
@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;
  }
  .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;
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
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: 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 .c-text_title {
  position: relative;
  font-size: var(--fz-text_title);
  line-height: 2.036;
  letter-spacing: 0.06em;
  font-weight: var(--fw-regular);
  font-family: var(--font-trajan);
  color: var(--color-black);
}
.l-lpcontents .c-text_lead {
  font-size: var(--fz-text_lead);
  line-height: 2.07692307692;
  letter-spacing: 0.04em;
  font-weight: var(--fw-medium);
  font-family: var(--font-hiragino);
  text-align: justify;
}
.l-lpcontents .c-text_credit {
  font-size: var(--fz-text_credit);
  line-height: 2.16;
  letter-spacing: 0.005em;
  font-weight: var(--fw-regular);
  font-family: var(--font-en);
}
.l-lpcontents .c-text_credit li {
  display: inline-block;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  margin: 0rem 0.4rem;
}
.l-lpcontents .c-text_btn {
  width: fit-content;
  margin: 21.7rem auto 17rem;
  font-size: var(--fz-text_btn);
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: center;
  font-family: var(--font-en);
  border-bottom: 0.1rem solid var(--color-black);
}
@media screen and (max-width: 767px) {
  .l-lpcontents .c-text_title {
    line-height: 2.094;
    letter-spacing: 0.08em;
  }
  .l-lpcontents .c-text_lead {
    line-height: 1.8695652174;
    letter-spacing: 0.075em;
  }
  .l-lpcontents .c-text_credit {
    line-height: 2.08333333333;
  }
  .l-lpcontents .c-text_credit li {
    margin: 0rem calc(8*100vw/750);
  }
  .l-lpcontents .c-text_btn {
    margin: calc(179*100vw/750) auto calc(200*100vw/750);;;
    line-height: 1.3;
    letter-spacing: 0.037em;
    border-top: calc(1*100vw/750) solid var(--color-black);
    border-bottom: calc(1*100vw/750) solid var(--color-black);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
component - image
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .styleview__image0101 {width: 90.0rem;}
.l-lpcontents .styleview__image0201 {width: 45.0rem;}
.l-lpcontents .styleview__image0202 {width: 24.0rem;}
.l-lpcontents .styleview__image0203 {width: 35.0rem;}
.l-lpcontents .styleview__image0301 {width: 50.0rem;}
.l-lpcontents .styleview__image0302 {width: 24.0rem;}
.l-lpcontents .styleview__image0303 {width: 40.0rem;}
.l-lpcontents .styleview__image0401 {width: 45.5rem;}
.l-lpcontents .styleview__image0402 {width: 24.0rem;}
.l-lpcontents .styleview__image0403 {width: 45.5rem;}
.l-lpcontents .styleview__image0501 {width: 48.0rem;}
.l-lpcontents .styleview__image0502 {width: 24.0rem;}
.l-lpcontents .styleview__image0503 {width: 40.0rem;}
@media screen and (max-width: 767px) {
  .l-lpcontents .styleview__image0101 {width: calc(750*100vw/750);}
  .l-lpcontents .styleview__image0201 {width: calc(600*100vw/750);}
  .l-lpcontents .styleview__image0202 {width: calc(320*100vw/750);}
  .l-lpcontents .styleview__image0203 {width: calc(550*100vw/750);}
  .l-lpcontents .styleview__image0301 {width: calc(600*100vw/750);}
  .l-lpcontents .styleview__image0302 {width: calc(330*100vw/750);}
  .l-lpcontents .styleview__image0303 {width: calc(530*100vw/750);}
  .l-lpcontents .styleview__image0401 {width: calc(558*100vw/750);}
  .l-lpcontents .styleview__image0402 {width: calc(328*100vw/750);}
  .l-lpcontents .styleview__image0403 {width: calc(537*100vw/750);}
  .l-lpcontents .styleview__image0501 {width: calc(590*100vw/750);}
  .l-lpcontents .styleview__image0502 {width: calc(328*100vw/750);}
  .l-lpcontents .styleview__image0503 {width: calc(537*100vw/750);}
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - common
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .styleview__inner {
  width: var(--width-primary);
  margin: 0 auto;
}
.l-lpcontents .styleview__text__title::before {
  content: "";
  position: absolute;
  display: block;
  height: 1px;
  background-color: var(--color-black);
  bottom: 0.2rem;
  z-index: -1;
}
.l-lpcontents .styleview__text__title::before {
  width: 0;
  transition: width 1.5s ease, height 1s ease;
}
.l-lpcontents .styleview__text__title.is-active::before {
  width: 200rem;
}
.l-lpcontents .styleview02 .styleview__text__title.is-active::before {
  left: -153rem;
}
.l-lpcontents .styleview03 .styleview__text__title.is-active::before {
  left: 0;
}
.l-lpcontents .styleview04 .styleview__text__title.is-active::before {
  left: -150.7rem;
}
.l-lpcontents .styleview05 .styleview__text__title.is-active::before {
  left: 0;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .styleview__text__title::before {
    bottom: calc(2*100vw/750);
  }
  .l-lpcontents .styleview__text__title.is-active::before {
    width: calc(789*100vw/750);
  }
  .l-lpcontents .styleview02 .styleview__text__title.is-active::before {
    left: initial
  }
  .l-lpcontents .styleview03 .styleview__text__title.is-active::before {
    left: calc(200*100vw/750);
  }
  .l-lpcontents .styleview04 .styleview__text__title.is-active::before {
    left: initial;
  }
  .l-lpcontents .styleview05 .styleview__text__title.is-active::before {
    left: calc(200*100vw/750);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - firstview
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .firstview {
  width: 110rem;
  margin: 0 auto;
  text-align: center;
}
.l-lpcontents .firstview__inner {
  position: relative;
}
.l-lpcontents .firstview__text {
  color: var(--color-white);
  text-align: center;
  top: 45.5rem;
  left: 31.4rem;
  --row: 2rem;
  pointer-events: none;
}
.l-lpcontents .firstview__text__title {
  font-size: 4.5rem;
  line-height: 1.3417777778;
  letter-spacing: 0.04em;
  font-weight: var(--fw-regular);
  font-family: var(--font-trajan);
}
.l-lpcontents .firstview__text__lead {
  font-size: 1.4rem;
  line-height: 2.1428571429;
  letter-spacing: 0.12em;
  font-weight: var(--fw-regular);
  font-family: var(--font-hiragino);
}
@media screen and (max-width: 767px) {
  .l-lpcontents .firstview {
    width: calc(750*100vw/750);
  }
  .l-lpcontents .firstview__text {
    top: calc(639* 100vw / 750);
    left: calc(60* 100vw / 750);
    --row: calc(204* 100vw / 750);
  }
  .l-lpcontents .firstview__text__title {
    font-size: calc(75*100vw/750);;
    line-height: 1;
  }
  .l-lpcontents .firstview__text__lead {
    color: var(--color-black);
    font-size: calc(23*100vw/750);
    line-height: 2;
    letter-spacing: 0.05em;
    font-weight: var(--fw-medium)
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - styleview01
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .styleview01 {
  width: fit-content;
  margin: 20rem auto 0;
}
.l-lpcontents .styleview01 .styleview__wrapper {
  position: relative;
}
.l-lpcontents .styleview01 .styleview__text {
  top: 20.1rem;
  left: 43.6rem;
  width: 44.3rem;
  background: rgba(255, 255, 255, 0.7);
  padding: 1.8rem 2rem;
}
.l-lpcontents .styleview01 .styleview__text__lead {
  position: relative;
  font-size: 1.4rem;
  line-height: 2.1428571429;
  letter-spacing: 0.02em;
  /* white-space: nowrap; */
}
@media screen and (max-width: 767px) {
  .l-lpcontents .styleview01 {
    margin-top: calc(440*100vw/750);;
  }
  .l-lpcontents .styleview01 .styleview__text {
    top: calc(543* 100vw / 750);
    left: calc(44* 100vw / 750);
    width: calc(660* 100vw / 750);
    height: calc(270* 100vw / 750);
    padding: calc(18*100vw/750) 0 0 0;;
    white-space: nowrap;
    text-align: center;
  }
  .l-lpcontents .styleview01 .styleview__text__lead {
    font-size: calc(23*100vw/750);;
    line-height: 2;
    text-align: center;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - styleview02
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .styleview02 {
  margin-top: 19.8rem;
}
.l-lpcontents .styleview02 .styleview__wrapper {
  margin-left: 18.5rem;
  grid-template-columns: 53.4rem 18.4rem;
  grid-template-rows: 3.4rem 28.6rem;
}
.l-lpcontents .styleview02 .styleview__wrap01 {
  grid-column: 1;
  grid-row: 1;
  z-index: 3;
}
.l-lpcontents .styleview02 .styleview__wrap02 {
  grid-column: 2;
  grid-row: 2;
}
.l-lpcontents .styleview02 .styleview__wrap03 {
  grid-column: 3;
  grid-row: 3;
}
.l-lpcontents .styleview02 .styleview__credit {
  position: relative;
  right: 6.7rem;
  margin-top: 3.2rem;
  text-align: right;
  white-space: nowrap;
}
.l-lpcontents .styleview02 .styleview__text {
  --row: 1.9rem;
}
.l-lpcontents .styleview02 .styleview__text__lead {
  width: 46.5rem;
}
.l-lpcontents .styleview02 .c-position {
  top: 41.4rem;
  left: 42.4rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .styleview02 {
    margin-top: calc(424*100vw/750);;
  }
  .l-lpcontents .styleview02 .styleview__wrapper {
    margin: 0 auto;
  }
  .l-lpcontents .styleview02 .styleview__wrap01 {
    margin: 0 auto;
  }
  .l-lpcontents .styleview02 .styleview__wrap02 {
    margin-top: calc(63*100vw/750);;
    margin-left: auto;
  }
  .l-lpcontents .styleview02 .styleview__wrap03 {
    margin: calc(84*100vw/750) auto 0;
  }
  .l-lpcontents .styleview__image0202 {
    margin-top: calc(10* 100vw / 750);
    margin-left: calc(58* 100vw / 750);
    float: right;
    margin-bottom: calc(20* 100vw / 750);
  }
  .l-lpcontents .styleview02 .styleview__credit {
    position: static;
    margin-top: calc(24* 100vw / 750);
    text-align: center;
  }
  .l-lpcontents .styleview02 .styleview__text {
    --row: calc(10*100vw/750);
  }
  .l-lpcontents .styleview02 .styleview__text__lead {
    width: calc(600* 100vw / 750);
    margin-top: calc(30* 100vw / 750);
    margin-right: calc(76* 100vw / 750);
  }
  .l-lpcontents .styleview02 .c-position {
    top: calc(100*100vw/750);;
    left: calc(0*100vw/750);;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - styleview03
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .styleview03 {
  margin-top: 14.2rem;
}
.l-lpcontents .styleview03 .styleview__wrapper {
  margin-left: 27.6rem;
  grid-template-columns: 47.8rem;
  grid-template-rows: 70.9rem;
}
.l-lpcontents .styleview03 .styleview__wrap01 {
  grid-column: 2;
  grid-row: 1;
}
.l-lpcontents .styleview03 .styleview__wrap02 {
  grid-column: 1;
  grid-row: 2;
}
.l-lpcontents .styleview03 .styleview__wrap03 {
  grid-column: 1;
  grid-row: 1;
}
.l-lpcontents .styleview03 .styleview__credit {
  text-align: center;
  margin-top: 3.3rem;
}
.l-lpcontents .styleview03 .styleview__text {
  --row: 2rem;
}
.l-lpcontents .styleview03 .styleview__text__lead {
  width: 40rem;
}
.l-lpcontents .styleview03 .c-pc_position {
  top: 1.1rem;
  left: 47.9rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .styleview03 {
    margin-top: calc(190*100vw/750);;
  }
  .l-lpcontents .styleview03 .styleview__wrapper {
    margin: 0 auto;
  }
  .l-lpcontents .styleview03 .styleview__wrap01 {
    margin: 0 auto;
  }
  .l-lpcontents .styleview03 .styleview__wrap02 {
    margin-top: calc(62*100vw/750);
  }
  .l-lpcontents .styleview03 .styleview__wrap03 {
    margin: calc(90*100vw/750) auto 0;;
  }
  .l-lpcontents .styleview__image0302 {
    float: left;
    margin-top: calc(111*100vw/750);;
    margin-right: calc(62*100vw/750);;
  }
  .l-lpcontents .styleview03 .styleview__credit {
    margin-top: calc(24*100vw/750);;
  }
  .l-lpcontents .styleview03 .styleview__text {
    --row: calc(10*100vw/750);
  }
  .l-lpcontents .styleview03 .styleview__text__title {
    position: relative;
    right: calc(315*100vw/750);;
    white-space: nowrap;
  }
  .l-lpcontents .styleview03 .styleview__text__lead {
    width: calc(600* 100vw / 750);
    margin-top: calc(28* 100vw / 750);
    margin-left: calc(74* 100vw / 750);
  }
  .l-lpcontents .styleview03 .c-pc_position {
    top: calc(10*100vw/750);;
    left: calc(10*100vw/750);;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - styleview04
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .styleview04 {
  margin-top: 20.7rem;
}
.l-lpcontents .styleview04 .styleview__wrapper {
  margin-left: 24.5rem;
  grid-template-columns: 41.8rem 3.6rem;
  grid-template-rows: 72.2rem;
}
.l-lpcontents .styleview04 .styleview__wrap01 {
  grid-column: 1;
  grid-row: 1;
}
.l-lpcontents .styleview04 .styleview__wrap02 {
  grid-column: 2;
  grid-row: 2;
}
.l-lpcontents .styleview04 .styleview__wrap03 {
  grid-column: 3;
  grid-row: 1;
}
.l-lpcontents .styleview04 .styleview__text {
  --row: 2.1rem;
}
.l-lpcontents .styleview04 .styleview__text__lead {
  width: 49.1rem;
}
.l-lpcontents .styleview04 .styleview__credit {
  text-align: center;
  margin-top: 3.2rem;
}
.l-lpcontents .styleview04 .c-pc_position {
  top: 1.5rem;
  left: -30.9rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .styleview04 {
    margin-top: calc(190*100vw/750);;
  }
  .l-lpcontents .styleview04 .styleview__wrapper {
    margin: 0 auto;
  }
  .l-lpcontents .styleview04 .styleview__wrap01 {
    margin: 0 auto;
  }
  .l-lpcontents .styleview04 .styleview__wrap02 {
    margin-top: calc(63*100vw/750);;
    margin-left: auto;
  }
  .l-lpcontents .styleview04 .styleview__wrap03 {
    margin: calc(88*100vw/750) auto 0;
  }
  .l-lpcontents .styleview__image0402 {
    margin-top: calc(10* 100vw / 750);
    margin-left: calc(58* 100vw / 750);
    float: right;
    margin-bottom: calc(20* 100vw / 750);
  }
  .l-lpcontents .styleview04 .styleview__credit {
    position: static;
    margin-top: calc(24* 100vw / 750);
    text-align: center;
  }
  .l-lpcontents .styleview04 .styleview__text {
    --row: calc(10*100vw/750);
  }
  .l-lpcontents .styleview04 .styleview__text__title {
    white-space: nowrap;
  }
  .l-lpcontents .styleview04 .styleview__text__lead {
    width: calc(600* 100vw / 750);
    margin-top: calc(30* 100vw / 750);
    margin-right: calc(76* 100vw / 750);
  }
  .l-lpcontents .styleview04 .c-position {
    top: calc(100*100vw/750);;
    left: calc(0*100vw/750);;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - styleview05
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .styleview05 {
  margin-top: 25.2rem;
}
.l-lpcontents .styleview05 .styleview__wrapper {
  margin-left: 18.5rem;
  grid-template-columns: 58.8rem;
  grid-template-rows: 31.2rem 36.7rem;
}
.l-lpcontents .styleview05 .styleview__wrap01 {
  grid-column: 2;
  grid-row: 2/3;
  z-index: 3;
}
.l-lpcontents .styleview05 .styleview__wrap02 {
  grid-column: 1;
  grid-row: 3;
}
.l-lpcontents .styleview05 .styleview__wrap03 {
  grid-column: 1;
  grid-row: 1;
}
.l-lpcontents .styleview05 .styleview__text {
  --row: 2rem;
}
.l-lpcontents .styleview05 .styleview__text__lead {
  width: 51.2rem;
}
.l-lpcontents .styleview05 .styleview__credit {
  text-align: center;
  margin-top: 3.4rem;
}
.l-lpcontents .styleview05 .c-position {
  top: 0rem;
  left: 47rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .styleview05 {
    margin-top: calc(188*100vw/750);;
  }
  .l-lpcontents .styleview05 .styleview__wrapper {
    margin: 0 auto;
  }
  .l-lpcontents .styleview05 .styleview__wrap01 {
    margin: 0 auto;
  }
  .l-lpcontents .styleview05 .styleview__wrap02 {
    margin-top: calc(62*100vw/750);
  }
  .l-lpcontents .styleview05 .styleview__wrap03 {
    margin: calc(91*100vw/750) auto 0;;
  }
  .l-lpcontents .styleview__image0502 {
    float: left;
    margin-top: calc(110* 100vw / 750);
    margin-right: calc(62* 100vw / 750);
    margin-bottom: calc(32* 100vw / 750);
  }
  .l-lpcontents .styleview05 .styleview__credit {
    margin-top: calc(28*100vw/750);;
  }
  .l-lpcontents .styleview05 .styleview__text {
    --row: calc(10*100vw/750);
  }
  .l-lpcontents .styleview05 .styleview__text__title {
    position: relative;
    right: calc(315*100vw/750);;
    white-space: nowrap;
  }
  .l-lpcontents .styleview05 .styleview__text__lead {
    width: calc(600* 100vw / 750);
    margin-top: calc(27* 100vw / 750);
    margin-left: calc(74* 100vw / 750);
  }
  .l-lpcontents .styleview05 .c-pc_position {
    top: calc(10*100vw/750);;
    left: calc(10*100vw/750);;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - animation
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .js-mv {
  opacity: 0;
}
.l-lpcontents .js-mv.is-active {
  opacity: 1;
  transition: opacity 880ms 440ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.l-lpcontents .js-apper {
  opacity: 0;
}
.l-lpcontents .js-apper.is-active {
  opacity: 1;
  transition: opacity 380ms 1220ms cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 380ms 1220ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.l-lpcontents .js-show {
  opacity: 0;
}
.l-lpcontents .js-show.is-active {
  opacity: 1;
  transition: opacity 480ms 380ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.l-lpcontents .js-fade {
  opacity: 0;
}
.l-lpcontents .js-fade.is-active {
  transition: opacity 580ms cubic-bezier(0.455, 0.03, 0.515, 0.955), transform 580ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 1;
}
