@charset "UTF-8";
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - custom property
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents {
  --color-white: #fff;
  --color-black: #000;
  --color-text: #231815;
  --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;
  --font-main: var(--font-nimbus), var(--font-yu), sans-serif;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  font-feature-settings: "palt";
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .l-lpcontents {
    --width-primary: 140rem;
    --fz-text_fv_title-secondary: calc(30*100vw/1400);
    --fz-text_fv_title-primary: calc(35*100vw/1400);
    --fz-text_fv_title-lead: calc(14*100vw/1400);
    --fz-text_description_lead01: 1.4rem;
    --fz-text_description_title: 2.7rem;
    --fz-text_description_lead02: 1.4rem;
    --fz-text_credit: 1.2rem;
    --fz-text_style_color: 2.7rem;
    --fz-text_style_lead: 1.4rem;
    --fz_text-btn: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .l-lpcontents {
    --width-primary: calc(750*100vw/750);
    --fz-text_fv_title-secondary: calc(45*100vw/750);
    --fz-text_fv_title-primary: calc(55*100vw/750);
    --fz-text_fv_title-lead: calc(23*100vw/750);
    --fz-text_description_lead01: calc(23*100vw/750);
    --fz-text_description_title: calc(43*100vw/750);
    --fz-text_description_lead02: calc(23*100vw/750);
    --fz-text_credit: calc(24*100vw/750);
    --fz-text_style_color: calc(43*100vw/750);
    --fz-text_style_lead: calc(23*100vw/750);
    --fz_text-btn: calc(30*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 {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
component - grid
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.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 :where([class*="c-grid_column"]) {
  position: relative;
  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 :where([class*="c-pc_grid_column"]) {
    position: relative;
    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 :where([class*="c-sp_grid_column"]) {
    position: relative;
    display: grid;
    grid-template-columns: repeat(var(--columns , 1), 1fr);
    gap: var(--row, 0) var(--column, 0);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
component - text
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .c-text_fv_title-secondary {
  font-size: var(--fz-text_fv_title-secondary);
  line-height: 1.0333333333;
  letter-spacing: 0.12em;
  font-weight: var(--fw-regular);
  font-family: var(--font-nimbus);
  color: var(--color-black);
  white-space: nowrap;
}
.l-lpcontents .c-text_fv_title-primary {
  font-size: var(--fz-text_fv_title-primary);
  line-height: 1.4542857143;
  letter-spacing: 0.065em;
  font-weight: var(--fw-semibold);
  font-family: var(--font-trajan);
  color: var(--color-black);
  white-space: nowrap;
}
.l-lpcontents .c-text_fv_title-lead {
  font-size: var(--fz-text_fv_title-lead);
  line-height: 1.6285714286;
  letter-spacing: 0.075em;
  font-weight: var(--fw-semibold);
  font-family: var(--font-hiragino);
  color: var(--color-black);
  white-space: nowrap;
}
.l-lpcontents .c-text_description_lead01 {
  font-size: var(--fz-text_description_lead01);
  line-height: 2.1428571429;
  letter-spacing: 0.01em;
  font-weight: var(--fw-medium);
  font-family: var(--font-hiragino);
  color: var(--color-black);
  white-space: nowrap;
}
.l-lpcontents .c-text_description_title {
  position: relative;
  width: fit-content;
  margin-inline: auto;
  padding-inline: 0.7rem;
  background-color: var(--color-white);
  font-size: var(--fz-text_description_title);
  line-height: 0.83;
  letter-spacing: 0.07em;
  font-weight: var(--fw-light);
  font-family: var(--font-nimbus);
  color: var(--color-black);
  white-space: nowrap;
}
.l-lpcontents .c-text_description_lead02 {
  font-size: var(--fz-text_description_lead02);
  line-height: 1.8571428571;
  letter-spacing: 0.075em;
  font-weight: var(--fw-light);
  font-family: var(--font-hiragino);
  color: var(--color-black);
  text-align: justify;
}
.l-lpcontents .c-text_fv_lead {
  font-size: var(--fz-text_fv_lead);
  line-height: 1.6285714286;
  letter-spacing: 0.075em;
  font-weight: var(--fw-medium);
  font-family: var(--font-hiragino);
  color: var(--color-black);
  white-space: nowrap;
}
.l-lpcontents .c-text_credit {
  font-size: var(--fz-text_credit);
  line-height: 2.1666666667;
  letter-spacing: 0.025em;
  font-weight: var(--fw-regular);
  font-family: var(--font-en);
  color: var(--color-text);
  white-space: nowrap;
  text-align: center;
}
.l-lpcontents .c-text_credit_item {
  display: inline-block;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  margin-inline: 0.4rem;
}
.l-lpcontents .c-text_style_color {
  font-size: var(--fz-text_style_color);
  line-height: 0.747;
  letter-spacing: 0.05em;
  font-weight: var(--fw-light);
  font-family: var(--font-nimbus);
  color: var(--color-black);
  white-space: nowrap;
}
.l-lpcontents .c-text_style_lead {
  font-size: var(--fz-text_style_lead);
  line-height: 1.8571428571;
  letter-spacing: 0.075em;
  font-weight: var(--fw-light);
  font-family: var(--font-hiragino);
  color: var(--color-black);
  text-align: justify;
}
.l-lpcontents .c-btn {
  margin: 16.8rem auto;
}
.l-lpcontents .c-btn > a {
  display: flex;
  place-self: center;
  width: fit-content;
  margin-inline: auto;
  font-size: var(--fz_text-btn);
  line-height: 1;
  letter-spacing: 0.037em;
  font-weight: var(--fw-regular);
  color: var(--color-black);
  padding-bottom: 0.3rem;
  border-bottom: 0.1rem solid var(--color-black);
}
@media screen and (max-width: 767px) {
  .l-lpcontents .c-text_fv_title-secondary {
    line-height: 0.9777777778;
    letter-spacing: 0.14em;
    font-weight: var(--fw-regular);
    color: var(--color-white);
  }
  .l-lpcontents .c-text_fv_title-primary {
    line-height: 1.2956363636;
    color: var(--color-white);
  }
  .l-lpcontents .c-text_fv_title-lead {
    line-height: 2;
    letter-spacing: 0.07em;
  }
  .l-lpcontents .c-text_description_lead01 {
    line-height: 1.8695652174;
    letter-spacing: 0.05em;
  }
  .l-lpcontents .c-text_description_title {
    line-height: 0.6881395349;
    padding-inline: calc(14*100vw/750);;
  }
  .l-lpcontents .c-text_description_lead02 {
    line-height: 1.8695652174;
    font-weight: var(--fw-medium);
  }
  .l-lpcontents .c-text_fv_lead {
    line-height: 1.9565217391;
    letter-spacing: 0.07em;
  }
  .l-lpcontents .c-text_credit {
    line-height: 2.0833333333;
  }
  .l-lpcontents .c-text_credit_item {
    margin-inline: calc(8*100vw/750);
  }
  .l-lpcontents .c-text_style_color {
    line-height: 0.4482;
  }
  .l-lpcontents .c-text_style_lead {
    line-height: 1.8695652174;
    font-weight: var(--fw-medium);
  }
  .l-lpcontents .c-btn {
    margin-block: calc(199*100vw/750) calc(89*100vw/750);
  }
  .l-lpcontents .c-btn > a {
    padding-block: calc(3*100vw/750);;
    border-block: 1px solid var(--color-black);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
component - image
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .c-firstview_image01 {width: calc(520*100vw/1400);}
.l-lpcontents .c-firstview_image02 {width: calc(360*100vw/1400);}
.l-lpcontents .c-firstview_image03 {width: calc(520*100vw/1400);}
.l-lpcontents .c-description_image {width: 90rem;}
.l-lpcontents .c-style_image0101 {width: 78rem;}
.l-lpcontents .c-style_image0201 {width: 50rem;}
.l-lpcontents .c-style_image0202 {width: 38rem;}
.l-lpcontents .c-style_image0301 {width: 36rem;}
.l-lpcontents .c-style_image0401 {width: 40rem;}
.l-lpcontents .c-style_image0501 {width: 75rem;}
.l-lpcontents .c-style_image0601 {width: 37rem;}
.l-lpcontents .c-style_image0701 {width: 48rem;}
.l-lpcontents .c-style_image0702 {width: 55rem;}
.l-lpcontents .c-style_image0703 {width: 36rem;}
.l-lpcontents .c-style_background01 {width: 52rem;}
.l-lpcontents .c-style_background02 {width: 52rem;}
.l-lpcontents .c-style_background03 {width: 52rem;}
@media screen and (max-width: 767px) {
  .l-lpcontents .c-firstview_image01 {width: calc(375*100vw/750);}
  .l-lpcontents .c-firstview_image02 {width: calc(750*100vw/750);}
  .l-lpcontents .c-firstview_image03 {width: calc(375*100vw/750);}
  .l-lpcontents .c-description_image {width: calc(750*100vw/750);}
  .l-lpcontents .c-style_image0101 {width: calc(750*100vw/750);}
  .l-lpcontents .c-style_image0201 {width: calc(650*100vw/750);}
  .l-lpcontents .c-style_image0202 {width: calc(500*100vw/750);}
  .l-lpcontents .c-style_image0301 {width: calc(588*100vw/750);}
  .l-lpcontents .c-style_image0401 {width: calc(566*100vw/750);}
  .l-lpcontents .c-style_image0501 {width: calc(750*100vw/750);}
  .l-lpcontents .c-style_image0601 {width: calc(600*100vw/750);}
  .l-lpcontents .c-style_image0701 {width: calc(550*100vw/750);}
  .l-lpcontents .c-style_image0702 {width: calc(650*100vw/750);}
  .l-lpcontents .c-style_image0703 {width: calc(500*100vw/750);}
  .l-lpcontents .c-style_background01 {width: calc(600*100vw/750);}
  .l-lpcontents .c-style_background02 {width: calc(600*100vw/750);}
  .l-lpcontents .c-style_background03 {width: calc(600*100vw/750);}
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - firstview
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .p-firstview {
  text-align: center;
}
.l-lpcontents .p-firstview_wrapper {
  grid-template-columns: 1fr calc(360*100vw/1400) 1fr;;
  width: calc(1400*100vw/1400);;
  margin-inline: auto;
}
.l-lpcontents .p-firstview_wrap01 {
  grid-column: 1;
  grid-row: 1;
}
.l-lpcontents .p-firstview_wrap02 {
  grid-column: 2;
  grid-row: 1;
}
.l-lpcontents .p-firstview_wrap03 {
  grid-column: 3;
  grid-row: 1;
}
.l-lpcontents .p-firstview_wrap04 {
  margin-inline: auto;
}
.l-lpcontents .p-firstview_text {
  position: absolute;
  top: calc(360*100vw/1400);
  left: 50%;
  transform: translateX(-50%);
  --row: 2.7rem;
  z-index: 5;
}
.l-lpcontents .p-firstview_text_title {
  --row: 0.4rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .p-firstview_wrapper {
    grid-template-columns: repeat(2, calc(375*100vw/750));
    grid-template-rows: calc(750*100vw/750);
  }
  .l-lpcontents .p-firstview_wrap01 {
    grid-column: 1;
    grid-row: 1;
  }
  .l-lpcontents .p-firstview_wrap02 {
    grid-column: 1;
    grid-row: 2;
  }
  .l-lpcontents .p-firstview_wrap03 {
    grid-column: 2;
    grid-row: 1;
  }
  .l-lpcontents .p-firstview_wrap04 {
    margin-inline: auto;
  }
  .l-lpcontents .p-firstview_text {
    top: calc(404* 100vw / 750);
    --row: calc(322* 100vw / 750);
  }
  .l-lpcontents .p-firstview_text_title {
    --row: calc(12*100vw/750);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - description
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .p-description {
  margin-top: 15.1rem;
}
.l-lpcontents .p-description_wrapper {
  --row: 6.2rem;
  place-items: center;
}
.l-lpcontents .p-description_wrap01 > p {
  position: absolute;
  top: 6.1rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.l-lpcontents .p-description_text {
  --row: 1.8rem;
  position: relative;
  width: 54rem;
  padding-bottom: 2rem;
}
.l-lpcontents .p-description_text > div {
  position: relative;
}
.l-lpcontents .p-description_text > div::before,
.l-lpcontents .p-description_text::after {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0.1rem;
  background-color: var(--color-black);
  left: 0;
}
.l-lpcontents .p-description_text > div::before {
  top: 50%;
  transform: translateY(-50%);
}
.l-lpcontents .p-description_text::after {
  bottom: 0;
}
.l-lpcontents .is-active .p-description_text > div::before,
.l-lpcontents .is-active .p-description_text::after {
  opacity: 1;
  transition: width 1s ease, opacity 1s ease;
  width: 100%;
  transition-delay: 1s;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .p-description {
    margin-top: calc(0*100vw/750);
  }
  .l-lpcontents .p-description_wrapper {
    --row: calc(76*100vw/750);
  }
  .l-lpcontents .p-description_wrap01 > p {
    top: calc(28* 100vw / 750);
  }
  .l-lpcontents .p-description_text {
    --row: calc(26*100vw/750);
    width: calc(650*100vw/750);
    padding-bottom: calc(33*100vw/750);
  }
  .l-lpcontents .c-text_description_title::before {
    height: 1px;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - common
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .p-style_inner {
  width: var(--width-primary);
  margin-inline: auto;
}
.l-lpcontents [class*="_wrap0"] {
  position: relative;
  z-index: 2;
  width: fit-content;
  height: fit-content;
}
.l-lpcontents .p-style_text_title {
  position: relative;
  height: fit-content;
}
.l-lpcontents .p-style_text_title::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0.1rem;
  background-color: var(--color-black);
  z-index: 2;
}
.l-lpcontents .is-active .p-style_text_title::before {
  opacity: 1;
  transition: width 1s ease, opacity 1s ease;
  transition-delay: 1s;
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - style01
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .p-style01 {
  margin-top: 18.5rem;
}
.l-lpcontents .p-style01 .p-style_wrapper {
  --row: 5.9rem;
  place-items: center;
}
.l-lpcontents .p-style01 .p-style_wrap01 {
  --row: 3.2rem;
}
.l-lpcontents .p-style01 .p-style_text {
  width: 54rem;
  --row: 1.9rem;
}
.l-lpcontents .p-style01 .p-style_text_title::before {
  left: 8rem;
}
.l-lpcontents .p-style01 .is-active .p-style_text_title::before {
  width: 46.1rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .p-style01 {
    margin-top: calc(180* 100vw / 750);
  }
  .l-lpcontents .p-style01 .p-style_wrapper {
    --row: calc(80*100vw/750);
  }
  .l-lpcontents .p-style01 .p-style_wrap01 {
    --row: calc(38*100vw/750);
  }
  .l-lpcontents .p-style01 .p-style_text {
    width: calc(650*100vw/750);
    --row: calc(43*100vw/750);
  }
  .l-lpcontents .p-style01 .p-style_text_title::before {
    left: calc(116*100vw/750);
  }
  .l-lpcontents .p-style01 .is-active .p-style_text_title::before {
    width: calc(595*100vw/750);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - style02
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .p-style02 {
  margin-top: 17.1rem;
}
.l-lpcontents .p-style02 .p-style_wrapper {
  width: 104rem;
  height: 84.5rem;
  margin-inline: auto;
  grid-template-columns: 61rem 5rem;
  grid-template-rows: 9.3rem 43.3rem;
}
.l-lpcontents .p-style02 .p-style_wrap01 {
  --row: 3.4rem;
  grid-column: 1;
  grid-row: 2;
  z-index: 5;
}
.l-lpcontents .p-style02 .p-style_wrap02 {
  grid-column: 2;
  grid-row: 3;
}
.l-lpcontents .p-style02 .p-style_wrap03 {
  grid-column: 3;
  grid-row: 1;
}
.l-lpcontents .p-style02 .p-style_text {
  width: 43rem;
  --row: 2.1rem;
}
.l-lpcontents .p-style02 .c-text_style_color {
  text-align: right;
}
.l-lpcontents .p-style02 .p-style_text_title::before {
  right: 15.1rem;
}
.l-lpcontents .p-style02 .is-active .p-style_text_title::before {
  width: 44.9rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .p-style02 {
    margin-top: calc(168* 100vw / 750);
  }
  .l-lpcontents .p-style02 .p-style_wrapper {
    width: var(--width-primary);
    height: initial;
  }
  .l-lpcontents .p-style02 .p-style_wrap01 {
    --row: calc(38*100vw/750);
    margin-inline: auto;
  }
  .l-lpcontents .p-style02 .p-style_wrap02 {
    margin: calc(80*100vw/750) auto 0;
  }
  .l-lpcontents .p-style02 .p-style_wrap03 {
    margin: calc(86*100vw/750) auto 0;
  }
  .l-lpcontents .p-style02 .p-style_text {
    width: calc(650*100vw/750);
    --row: calc(47*100vw/750);
  }
  .l-lpcontents .p-style02 .p-style_text_title::before {
    right: calc(239*100vw/750);
  }
  .l-lpcontents .p-style02 .is-active .p-style_text_title::before {
    width: calc(517*100vw/750);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - style03
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .p-style03 {
  margin-top: 16.6rem;
}
.l-lpcontents .p-style03 .p-style_wrapper {
  height: 74rem;
  margin-left: 18.9rem;
  grid-template-columns: 14.1rem 44rem;
  grid-template-rows: 12.9rem 13.1rem;
}
.l-lpcontents .p-style03 .p-style_wrap01 {
  grid-column: 3;
  grid-row: 1;
  z-index: 5;
}
.l-lpcontents .p-style03 .p-style_wrap02 {
  grid-column: 2;
  grid-row: 3;
}
.l-lpcontents .p-style03 .p-style_wrap03 {
  grid-column: 1;
  grid-row: 2;
  z-index: -1;
}
.l-lpcontents .p-style03 .p-style_text {
  width: 40rem;
  --row: 2rem;
}
.l-lpcontents .p-style03 .c-text_style_lead {
  letter-spacing: 0.09em;
}
.l-lpcontents .p-style03 .c-text_credit {
  margin-top: 1.2rem;
  text-align: left;
}
.l-lpcontents .p-style03 .p-style_text_title::before {
  left: 8rem;
}
.l-lpcontents .p-style03 .is-active .p-style_text_title::before {
  width: 48.4rem;
}
@media screen and (min-width: 768px) {
  .l-lpcontents .p-style03 .c-text_credit_item {
    margin-inline: 0 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .l-lpcontents .p-style03 {
    margin-top: calc(133* 100vw / 750);
  }
  .l-lpcontents .p-style03 .p-style_wrapper {
    position: relative;
    height: initial;
    margin-inline: auto;
  }
  .l-lpcontents .p-style03 .p-style_wrap01 {
    margin-inline: auto;
  }
  .l-lpcontents .p-style03 .p-style_wrap02 {
    margin: calc(84*100vw/750) auto 0;
  }
  .l-lpcontents .p-style03 .p-style_wrap03 {
    position: absolute;
    top: calc(1110* 100vw / 750);
    left: calc(16* 100vw / 750);
  }
  .l-lpcontents .p-style03 .p-style_text {
    width: calc(650*100vw/750);
    --row: calc(48* 100vw / 750);
  }
  .l-lpcontents .p-style03 .c-text_style_lead {
    letter-spacing: 0.075em;
  }
  .l-lpcontents .p-style03 .c-text_credit {
    margin-top: calc(7* 100vw / 750);
    text-align: center;
  }
  .l-lpcontents .p-style03 .p-style_text_title::before {
    left: calc(124*100vw/750);
  }
  .l-lpcontents .p-style03 .is-active .p-style_text_title::before {
    width: calc(615*100vw/750);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - style04
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .p-style04 {
  margin-top: 3.9rem;
}
.l-lpcontents .p-style04 .p-style_wrapper {
  height: 66rem;
  margin-left: 24.2rem;
  grid-template-columns: 45.4rem 2rem;
  grid-template-rows: 9.7rem 10.7rem;
}
.l-lpcontents .p-style04 .p-style_wrap01 {
  grid-column: 1;
  grid-row: 1;
  z-index: 5;
}
.l-lpcontents .p-style04 .p-style_wrap02 {
  grid-column: 2;
  grid-row: 3;
}
.l-lpcontents .p-style04 .p-style_wrap03 {
  grid-column: 3;
  grid-row: 2;
  z-index: -1;
}
.l-lpcontents .p-style04 .p-style_text {
  width: 40rem;
  --row: 2rem;
  text-align: right;
}
.l-lpcontents .p-style04 .c-text_style_lead {
  text-align: justify;
}
.l-lpcontents .p-style04 .c-text_credit {
  margin-top: 1rem;
  text-align: right;
}
.l-lpcontents .p-style04 .p-style_text_title::before {
  right: 7.8rem;
}
.l-lpcontents .p-style04 .is-active .p-style_text_title::before {
  width: 53.6rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .p-style04 {
    margin-top: calc(184* 100vw / 750);
  }
  .l-lpcontents .p-style04 .p-style_wrapper {
    position: relative;
    height: initial;
    margin-inline: auto;
  }
  .l-lpcontents .p-style04 .p-style_wrap01 {
    margin-inline: auto;
  }
  .l-lpcontents .p-style04 .p-style_wrap02 {
    margin: calc(81*100vw/750) auto 0;
  }
  .l-lpcontents .p-style04 .p-style_wrap03 {
    position: absolute;
    top: calc(1105* 100vw / 750);
    left: calc(135* 100vw / 750);
  }
  .l-lpcontents .p-style04 .p-style_text {
    width: calc(650*100vw/750);
    --row: calc(40* 100vw / 750);
  }
  .l-lpcontents .p-style04 .c-text_credit {
    margin-top: calc(0*100vw/750);
    text-align: center;
  }
  .l-lpcontents .p-style04 .p-style_text_title::before {
    right: calc(112*100vw/750);
  }
  .l-lpcontents .p-style04 .is-active .p-style_text_title::before {
    width: calc(612*100vw/750);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - style05
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .p-style05 {
  margin-top: 17.4rem;
}
.l-lpcontents .p-style05 .p-style_wrapper {
  --row: 5.7rem;
  place-items: center;
}
.l-lpcontents .p-style05 .p-style_wrap01 {
  --row: 3rem;
}
.l-lpcontents .p-style05 .p-style_text {
  width: 54rem;
  --row: 1.9rem;
}
.l-lpcontents .p-style05 .c-text_style_lead {
  letter-spacing: 0.1em;
}
.l-lpcontents .p-style05 .p-style_text_title::before {
  left: 10.3rem;
}
.l-lpcontents .p-style05 .is-active .p-style_text_title::before {
  width: 43.8rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .p-style05 {
    margin-top: calc(292* 100vw / 750);
  }
  .l-lpcontents .p-style05 .p-style_wrapper {
    --row: calc(76*100vw/750);
  }
  .l-lpcontents .p-style05 .p-style_wrap01 {
    --row: calc(48*100vw/750);
  }
  .l-lpcontents .p-style05 .p-style_text {
    width: calc(650*100vw/750);
    --row: calc(47* 100vw / 750);
  }
  .l-lpcontents .p-style05 .c-text_style_lead {
    letter-spacing: 0.1em;
  }
  .l-lpcontents .p-style05 .p-style_text_title::before {
    left: calc(158*100vw/750);
  }
  .l-lpcontents .p-style05 .is-active .p-style_text_title::before {
    width: calc(583*100vw/750);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - style06
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .p-style06 {
  margin-top: 14.5rem;
}
.l-lpcontents .p-style06 .p-style_wrapper {
  height: 74rem;
  margin-left: 18.9rem;
  grid-template-columns: 10.1rem 45.9rem;
  grid-template-rows: 16.2rem 8.1rem;
}
.l-lpcontents .p-style06 .p-style_wrap01 {
  grid-column: 3;
  grid-row: 1;
  z-index: 5;
}
.l-lpcontents .p-style06 .p-style_wrap02 {
  grid-column: 2;
  grid-row: 3;
}
.l-lpcontents .p-style06 .p-style_wrap03 {
  grid-column: 1;
  grid-row: 2;
  z-index: -1;
}
.l-lpcontents .p-style06 .p-style_text {
  width: 40rem;
  --row: 2rem;
}
.l-lpcontents .p-style06 .c-text_style_lead {
  text-align: justify;
}
.l-lpcontents .p-style06 .c-text_credit {
  margin-top: 1rem;
  text-align: left;
}
.l-lpcontents .p-style06 .p-style_text_title::before {
  left: 11.7rem;
}
.l-lpcontents .p-style06 .is-active .p-style_text_title::before {
  width: 51.4rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .p-style06 {
    margin-top: calc(70*100vw/750);
  }
  .l-lpcontents .p-style06 .p-style_wrapper {
    position: relative;
    height: initial;
    margin-inline: auto;
  }
  .l-lpcontents .p-style06 .p-style_wrap01 {
    margin-inline: auto;
  }
  .l-lpcontents .p-style06 .p-style_wrap02 {
    margin: calc(85*100vw/750) auto 0;;
  }
  .l-lpcontents .p-style06 .p-style_wrap03 {
    position: absolute;
    top: calc(1083* 100vw / 750);
    left: calc(15* 100vw / 750);
  }
  .l-lpcontents .p-style06 .p-style_text {
    width: calc(650*100vw/750);
    --row: calc(47* 100vw / 750);
  }
  .l-lpcontents .p-style06 .p-style_text_title {
    text-align: right;
  }
  .l-lpcontents .p-style06 .c-text_credit {
    margin-top: calc(18*100vw/750);
    text-align: center;
  }
  .l-lpcontents .p-style06 .p-style_text_title::before {
    left: initial;
    right: calc(183* 100vw / 750);
  }
  .l-lpcontents .p-style06 .is-active .p-style_text_title::before {
    width: calc(525*100vw/750);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - style07
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .p-style07 {
  margin-top: 16.5rem;
}
.l-lpcontents .p-style07 .p-style_wrapper {
  width: 113rem;
  margin-inline: auto;
  grid-template-columns: 12.4rem 45.7rem;
  grid-template-rows: 35.4rem 53.2rem 40.3rem;
}
.l-lpcontents .p-style07 .p-style_wrap01 {
  grid-column: 1;
  grid-row: 1;
}
.l-lpcontents .p-style07 .p-style_wrap02 {
  grid-column: 3;
  grid-row: 2;
  --row: 3.3rem;
}
.l-lpcontents .p-style07 .p-style_wrap03 {
  grid-column: 3;
  grid-row: 4;
}
.l-lpcontents .p-style07 .p-style_wrap04 {
  grid-column: 2;
  grid-row: 3;
}
.l-lpcontents .p-style07 .p-style_text {
  width: 43.8rem;
  --row: 2rem;
}
.l-lpcontents .p-style07 .p-style_text_title {
  text-align: right;
}
.l-lpcontents .p-style07 .c-text_style_lead {
  letter-spacing: 0.1em;
}
.l-lpcontents .p-style07 .p-style_text_title::before {
  right: 9rem;
}
.l-lpcontents .p-style07 .is-active .p-style_text_title::before {
  width: 51.4rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .p-style07 {
    margin-top: calc(288*100vw/750);
  }
  .l-lpcontents .p-style07 .p-style_wrapper {
    width: var(--width-primary);
  }
  .l-lpcontents .p-style07 .p-style_wrap02 {
    margin-top: calc(136*100vw/750);;
    margin-left: auto;
    --row: calc(41*100vw/750);
  }
  .l-lpcontents .p-style07 .p-style_wrap03 {
    margin: calc(90*100vw/750) auto 0;;
  }
  .l-lpcontents .p-style07 .p-style_wrap04 {
    margin: calc(74*100vw/750) auto 0;
  }
  .l-lpcontents .p-style07 .p-style_text {
    width: calc(650*100vw/750);
    --row: calc(37*100vw/750);
  }
  .l-lpcontents .p-style07 .p-style_text_title {
    text-align: left;
  }
  .l-lpcontents .p-style07 .c-text_style_lead {
    letter-spacing: 0.1em;
  }
  .l-lpcontents .p-style07 .c-text_credit {
    text-align: left;
    margin-left: calc(31* 100vw / 750);
  }
  .l-lpcontents .p-style07 .p-style_text_title::before {
    left: calc(137*100vw/750);
  }
  .l-lpcontents .p-style07 .is-active .p-style_text_title::before {
    width: calc(579*100vw/750);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
animation - fade
//////////////////////////////////////////////////////////////////////////////////////////////
*/
/* .l-lpcontents .js-filter {
  position: relative;
}
.l-lpcontents .js-filter::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}
.l-lpcontents .js-filter.is-active::before {
  transition: opacity 1000ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: .8;
  transition-delay: 1.5s;
} */
/* 画像表示 */
.l-lpcontents .js-show {
  opacity: 0;
  transition: opacity 1s ease;
}
.l-lpcontents .js-show.is-active {
  opacity: 1;
}
/* フェード表示 */
.l-lpcontents .js-fade {
  -webkit-transition: opacity 1.5s cubic-bezier(0.25,0.46,0.45,0.94) 0.2s;
  transition: opacity 1.5s cubic-bezier(0.25,0.46,0.45,0.94) 0.2s;
  opacity: 0;
}
.l-lpcontents .js-fade.is-active {
  opacity: 1;
}
/* スケール表示 */
.l-lpcontents .js-scale {
  overflow: hidden;
}
.l-lpcontents .js-scale img {
  -webkit-transition: 1s -webkit-transform cubic-bezier(0.445,0.05,0.55,0.95);
  transition: 1s -webkit-transform cubic-bezier(0.445,0.05,0.55,0.95);
  transition: 1s transform cubic-bezier(0.445,0.05,0.55,0.95);
  transition: 1s transform cubic-bezier(0.445,0.05,0.55,0.95), 1s -webkit-transform cubic-bezier(0.445,0.05,0.55,0.95);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transform-origin: center;
  transform-origin: center;
  will-change: transform;
}
.l-lpcontents .js-scale.is-active img {
  transform: scale(1);
}
@media screen and (max-width: 767px) {
  /* カラー変更 */
  /* .l-lpcontents .is-active .c-text_fv_title-primary,
  .l-lpcontents .is-active .c-text_fv_title-secondary {
    color: var(--color-black);
    transition: color 1000ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 1.5s;
  } */
}