@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-gray: #bcbcbc;
  --color-text: #58595b;
  --font-georgiapro: "georgiapro";
  --font-yu-gothic: "游ゴシック体", YuGothic, "游ゴシック re--fw-regular", "Yu Gothic re--fw-regular", "游ゴシック", "Yu Gothic";
  --font-noto: "Noto Serif JP", serif;
  --font-en: var(--font-georgiapro), sans-serif;
  --font-ja: var(--font-noto), sans-serif;
  --font-main: var(--font-georgiapro), var(--font-noto), sans-serif;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-regular: 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_lead: 1.4rem;
    --fz-text_title-primary: 6.8rem;
    --fz-text_title-secondary: 1.9rem;
    --fz-text_item: 2rem;
    --fz-text_lead: 1.3rem;
    --fz-text_credit: 1.2rem;
    --fz-btn: 2rem;
    --fz-text_staff: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .l-lpcontents {
    --width-primary: calc(750*100vw/750);
    --fz-text_fv_lead: calc(27*100vw/750);
    --fz-text_title-primary: calc(80*100vw/750);
    --fz-text_title-secondary: calc(30*100vw/750);
    --fz-text_item: calc(36*100vw/750);
    --fz-text_lead: calc(26*100vw/750);
    --fz-text_credit: calc(22*100vw/750);
    --fz-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 {
  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*="p-style_wrap"] {
  position: relative;
  width: fit-content;
  height: fit-content;
}
@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);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
component - text
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .c-text_fv_lead {
  font-size: var(--fz-text_fv_lead);
  line-height: 2;
  letter-spacing: 0.16em;
  font-weight: var(--fw-regular);
  font-family: var(--font-ja);
  color: var(--color-text);
}
.l-lpcontents .c-text_title-primary {
  font-size: var(--fz-text_title-primary);
  line-height: 1.0022058824;
  letter-spacing: 0.04em;
  font-weight: var(--fw-light);
  font-family: var(--font-georgiapro);
  color: var(--color-black);
}
.l-lpcontents .c-text_title-primary > span {
  font-size: 2.6rem;
  line-height: 2.726;
  letter-spacing: 0.14em;
  font-weight: var(--fw-bold);
  font-family: var(--font-noto);
  color: var(--color-black);
}
.l-lpcontents .c-text_title-secondary {
  font-size: var(--fz-text_title-secondary);
  line-height: 1;
  letter-spacing: 0.14em;
  font-weight: var(--fw-bold);
  font-family: var(--font-ja);
  color: var(--color-black);
}
.l-lpcontents .c-text_item {
  font-size: var(--fz-text_item);
  line-height: 3;
  letter-spacing: 0.04em;
  font-weight: var(--fw-semibold);
  font-family: var(--font-georgiapro);
  color: var(--color-gray);
  font-style: italic;
}
.l-lpcontents .c-text_lead {
  font-size: var(--fz-text_lead);
  line-break: strict;
  line-height: 2;
  letter-spacing: 0.04em;
  letter-spacing: 0.15em;
  font-weight: var(--fw-regular);
  font-family: var(--font-ja);
  color: var(--color-text);
}
.l-lpcontents .c-text_credit {
  position: absolute;
  bottom: -0.6rem;
  font-size: var(--fz-text_credit);
  line-height: 1.75;
  letter-spacing: 0.04em;
  font-weight: var(--fw-regular);
  font-family: var(--font-georgiapro);
  color: var(--color-text);
  text-align: right;
}
.l-lpcontents .c-text_credit_item {
  display: block;
}
.l-lpcontents .c-btn {
  font-size: var(--fz-btn);
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: var(--fw-regular);
  font-family: var(--font-georgiapro);
  color: var(--color-black);
  width: fit-content;
  margin-inline: auto;
  border-bottom: 0.3rem double var(--color-text);
  padding-bottom: 0.4rem;
}
.l-lpcontents .c-text_staff {
  font-size: var(--fz-text_staff);
  line-height: 1.75;
  letter-spacing: 0.04em;
  font-weight: var(--fw-regular);
  font-family: var(--font-georgiapro);
  color: var(--color-text);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-lpcontents .c-bg_white {
    background-color: var(--color-white);
  }
}
@media screen and (max-width: 767px) {
  .l-lpcontents .c-text_fv_lead {
    letter-spacing: 0.12em;
  }
  .l-lpcontents .c-text_title-primary {
    line-height: 1.22675;
  }
  .l-lpcontents .c-text_title-primary > span {
    font-size: calc(36*100vw/750);;
    line-height: 2.7261111111;
  }
  .l-lpcontents .c-text_title-secondary {
    letter-spacing: 0.12em;
  }
  .l-lpcontents .c-text_item {
    line-height: 1.8927777778;
  }
  .l-lpcontents .c-text_lead {
    letter-spacing: 0.11em;
    margin-top: calc(24* 100vw / 750);
  }
  .l-lpcontents .c-text_credit {
    position: initial;
  }
  .l-lpcontents .c-text_credit_item {
    display: inline-block;
  }
  .l-lpcontents .c-btn {
    line-height: 1.25;
    border-bottom: calc(6*100vw/750) double var(--color-text);
    padding-bottom: calc(8*100vw/750);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
component - image
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .c-style_image010101 {width: 52rem;}
.l-lpcontents .c-style_image010102 {width: 36rem;}
.l-lpcontents .c-style_image010103 {width: 42rem;}
.l-lpcontents .c-style_image010201 {width: 52rem;}
.l-lpcontents .c-style_image010202 {width: 31rem;}
.l-lpcontents .c-style_image010203 {width: 40rem;}
.l-lpcontents .c-style_image020101 {width: 49rem;}
.l-lpcontents .c-style_image020102 {width: 34rem;}
.l-lpcontents .c-style_image020103 {width: 40rem;}
.l-lpcontents .c-style_image020201 {width: 30rem;}
.l-lpcontents .c-style_image020202 {width: 35rem;}
.l-lpcontents .c-style_image020203 {width: 46rem;}
.l-lpcontents .c-style_image020301 {width: 52rem;}
.l-lpcontents .c-style_image020302 {width: 35rem;}
@media screen and (max-width: 767px) {
  .l-lpcontents .c-style_image010101 {width: calc(670*100vw/750);}
  .l-lpcontents .c-style_image010102 {width: calc(500*100vw/750);}
  .l-lpcontents .c-style_image010103 {width: calc(580*100vw/750);}
  .l-lpcontents .c-style_image010201 {width: calc(750*100vw/750);}
  .l-lpcontents .c-style_image010202 {width: calc(540*100vw/750);}
  .l-lpcontents .c-style_image010203 {width: calc(560*100vw/750);}
  .l-lpcontents .c-style_image020101 {width: calc(640*100vw/750);}
  .l-lpcontents .c-style_image020102 {width: calc(540*100vw/750);}
  .l-lpcontents .c-style_image020103 {width: calc(580*100vw/750);}
  .l-lpcontents .c-style_image020201 {width: calc(500*100vw/750);}
  .l-lpcontents .c-style_image020202 {width: calc(500*100vw/750);}
  .l-lpcontents .c-style_image020203 {width: calc(650*100vw/750);}
  .l-lpcontents .c-style_image020301 {width: calc(750*100vw/750);}
  .l-lpcontents .c-style_image020302 {width: calc(530*100vw/750);}
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
component - image_title
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents [class*="c-image_title"] {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.l-lpcontents .c-image_title01 {
  width: 5.08rem;
  top: 0rem;
  left: -8rem;
}
.l-lpcontents .c-image_title02 {
  width: 5.1rem;
  top: 0.1rem;
  right: -8.1rem;
}
.l-lpcontents .c-image_title03 {
  width: 5.26rem;
  top: 0.1rem;
  left: -8.3rem;
}
.l-lpcontents .c-image_title04 {
  width: 5.0rem;
  top: 0.1rem;
  right: -8.1rem;
}
.l-lpcontents .c-image_title05 {
  width: 5.06rem;
  top: 0.1rem;
  left: -8.1rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .c-image_title01 {
    width: calc(79.6* 100vw / 750);
    top: calc(41* 100vw / 750);
    left: calc(630* 100vw / 750);
  }
  .l-lpcontents .c-image_title02 {
    width: calc(80.6* 100vw / 750);
    top: calc(44* 100vw / 750);
    right: calc(628* 100vw / 750);
  }
  .l-lpcontents .c-image_title02 img,
  .l-lpcontents .c-image_title05 img {
    fill: var(--color-white);
  }
  .l-lpcontents .c-image_title03 {
    width: calc(82.6* 100vw / 750);
    top: calc(5* 100vw / 750);
    left: calc(581* 100vw / 750);
  }
  .l-lpcontents .c-image_title04 {
    width: calc(78.8* 100vw / 750);
    top: calc(2* 100vw / 750);
    right: calc(542* 100vw / 750);
  }
  .l-lpcontents .c-image_title05 {
    width: calc(79.6* 100vw / 750);
    top: calc(44* 100vw / 750);
    left: calc(627* 100vw / 750);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - common
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .p-style {
  position: relative;
}
.l-lpcontents .p-style::before {
  position: absolute;
  content: "";
  display: block;
  width: 100vw;
  height: 0.2rem;
  background-color: var(--color-black);
  top: 5.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
}
.l-lpcontents .p-style_inner {
  width: var(--width-primary);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .p-style {
    position: relative;
  }
  .l-lpcontents .p-style::before {
    height: calc(3*100vw/750);
    top: calc(77*100vw/750);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - firstview
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .p-firstview {
  width: 120rem;
  margin-inline: auto;
  text-align: center;
}
.l-lpcontents .p-firstview_inner {
  --row: 5.6rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .p-firstview {
    width: var(--width-primary)
  }
  .l-lpcontents .p-firstview_inner {
    --row: calc(105* 100vw / 750);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - style01
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .p-style01 {
  margin-top: 12.4rem;
}
.l-lpcontents .p-style01 .p-style_title {
  margin-left: 19.7rem;
  --row: 0.8rem;
}
.l-lpcontents .p-style01 .c-text_title-secondary {
  padding-left: 0.4rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .p-style01 {
    margin-top: calc(148* 100vw / 750);
  }
  .l-lpcontents .p-style01 .p-style_title {
    margin-left: calc(36* 100vw / 750);
    --row: calc(18* 100vw / 750);
  }
  .l-lpcontents .p-style01 .c-text_title-secondary {
    padding-left: calc(4*100vw/750);
  }
}
/******************************** wrapper01 ********************************/
.l-lpcontents .p-style01 .p-style_wrapper01 {
  grid-template-columns: 17.5rem 14rem 9.5rem;
  grid-template-rows: 82rem 8.1rem 20.9rem;
  margin-left: 31rem;
  margin-top: 9.1rem;
}
.l-lpcontents .p-style01 .p-style_wrapper01 .p-style_wrap01 {
  grid-column: 2;
  grid-row: 1;
}
.l-lpcontents .p-style01 .p-style_wrapper01 .p-style_wrap02 {
  grid-column: 1;
  grid-row: 2;
}
.l-lpcontents .p-style01 .p-style_wrapper01 .p-style_wrap03 {
  grid-column: 3;
  grid-row: 4;
}
.l-lpcontents .p-style01 .p-style_wrapper01 .p-style_wrap04 {
  grid-column: 4;
  grid-row: 3;
  width: 37.5rem;
}
.l-lpcontents .p-style01 .p-style_wrapper01 .c-text_credit {
  left: -11.9rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .p-style01 .p-style_wrapper01 {
    grid-template-columns: calc(70*100vw/750) calc(60*100vw/750);
    grid-template-rows: calc(1065*100vw/750) calc(720*100vw/750) calc(876*100vw/750);
    margin-top: calc(100*100vw/750);
    margin-left: calc(0*100vw/750);
  }
  .l-lpcontents .p-style01 .p-style_wrapper01 .p-style_wrap01 {
    grid-column: 1;
    grid-row: 1;
  }
  .l-lpcontents .p-style01 .p-style_wrapper01 .p-style_wrap02 {
    grid-column: 1;
    grid-row: 2;
  }
  .l-lpcontents .p-style01 .p-style_wrapper01 .p-style_wrap03 {
    grid-column: 3;
    grid-row: 3;
  }
  .l-lpcontents .p-style01 .p-style_wrapper01 .p-style_wrap04 {
    grid-column: 2;
    grid-row: 4;
    width: calc(640*100vw/750);
  }
  .l-lpcontents .p-style01 .p-style_wrapper01 .c-text_credit {
    margin-top: calc(40* 100vw / 750);
    text-align: left;
  }
}
/******************************** wrapper02 ********************************/
.l-lpcontents .p-style01 .p-style_wrapper02 {
  margin-top: 16rem;
  margin-left: 31.5rem;
  height: 152.3rem;
  grid-template-columns: 4rem 42rem;
  grid-template-rows: 69.8rem 20.5rem 29rem;
}
.l-lpcontents .p-style01 .p-style_wrapper02 .p-style_wrap01 {
  grid-column: 2;
  grid-row: 1;
}
.l-lpcontents .p-style01 .p-style_wrapper02 .p-style_wrap02 {
  grid-column: 3;
  grid-row: 2;
}
.l-lpcontents .p-style01 .p-style_wrapper02 .p-style_wrap03 {
  grid-column: 1;
  grid-row: 3;
}
.l-lpcontents .p-style01 .p-style_wrapper02 .p-style_wrap04 {
  grid-column: 3;
  grid-row: 4;
  /* width: 36rem; */
  width: 36.2rem;
}
.l-lpcontents .p-style01 .p-style_wrapper02 .c-text_credit {
  left: -11.5rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .p-style01 .p-style_wrapper02 {
    margin-top: calc(173* 100vw / 750);
    margin-left: initial;
    height: initial;
  }
  .l-lpcontents .p-style01 .p-style_wrapper02 .p-style_wrap01 {
    margin-inline: auto;
  }
  .l-lpcontents .p-style01 .p-style_wrapper02 .p-style_wrap02 {
    margin-top: calc(60*100vw/750);;
    margin-left: auto;
  }
  .l-lpcontents .p-style01 .p-style_wrapper02 .p-style_wrap03 {
    margin-top: calc(60*100vw/750);;
    margin-left: calc(40*100vw/750);;
  }
  .l-lpcontents .p-style01 .p-style_wrapper02 .p-style_wrap04 {
    width: calc(640*100vw/750);
    margin-top: calc(65* 100vw / 750);
    margin-left: calc(40*100vw/750);;
  }
  .l-lpcontents .p-style01 .p-style_wrapper02 .c-text_credit {
    margin-top: calc(40*100vw/750);;
    text-align: left;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - style02
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .p-style02 {
  margin-top: 19rem;
}
.l-lpcontents .p-style02 .p-style_title {
  margin-right: 19.8rem;
  --row: 0.8rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .p-style02 {
    margin-top: calc(195* 100vw / 750);
  }
  .l-lpcontents .p-style02 .p-style_title {
    margin-inline: calc(36* 100vw / 750) 0;
    --row: calc(15* 100vw / 750);
    text-align: left;
  }
  .l-lpcontents .p-style02 .c-text_title-secondary {
    margin-left: calc(5* 100vw / 750);
    letter-spacing: 0.11em;
  }
}
/******************************** wrapper01 ********************************/
.l-lpcontents .p-style02 .p-style_wrapper01 {
  grid-template-columns: 15.5rem 32.5rem 30.5rem;
  grid-template-rows: 57rem 13rem 49.9rem;
  margin-top: 9.1rem;
  margin-left: 30rem;
  height: 140.5rem;
}
.l-lpcontents .p-style02 .p-style_wrapper01 .p-style_wrap01 {
  grid-column: 2;
  grid-row: 1;
}
.l-lpcontents .p-style02 .p-style_wrapper01 .p-style_wrap02 {
  grid-column: 3;
  grid-row: 2;
}
.l-lpcontents .p-style02 .p-style_wrapper01 .p-style_wrap03 {
  grid-column: 1;
  grid-row: 3;
}
.l-lpcontents .p-style02 .p-style_wrapper01 .p-style_wrap04 {
  grid-column: 3;
  grid-row: 4;
  width: 38rem;
}
.l-lpcontents .p-style02 .p-style_wrapper01 .c-text_credit {
  left: -11.5rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .p-style02 .p-style_wrapper01 {
    width: var(--width-primary);
    height: initial;
    margin: calc(102*100vw/750) auto 0;
  }
  .l-lpcontents .p-style02 .p-style_wrapper01 .p-style_wrap01 {
    margin-left: auto;
  }
  .l-lpcontents .p-style02 .p-style_wrapper01 .p-style_wrap02 {
    margin-top: calc(-80* 100vw / 750);
  }
  .l-lpcontents .p-style02 .p-style_wrapper01 .p-style_wrap03 {
    margin-top: calc(60*100vw/750);;
    margin-left: calc(130*100vw/750);;
  }
  .l-lpcontents .p-style02 .p-style_wrapper01 .p-style_wrap04 {
    width: calc(640* 100vw / 750);
    margin-top: calc(65* 100vw / 750);
    margin-left: calc(70* 100vw / 750);
  }
  .l-lpcontents .p-style02 .p-style_wrapper01 .c-text_credit {
    margin-top: calc(40* 100vw / 750);
    text-align: left;
  }
}
/******************************** wrapper02 ********************************/
.l-lpcontents .p-style02 .p-style_wrapper02 {
  margin-top: 16rem;
  margin-left: 22rem;
  grid-template-columns: 20rem 5rem;
  grid-template-rows: 56.5rem 71.9rem;
}
.l-lpcontents .p-style02 .p-style_wrapper02 .p-style_wrap01 {
  grid-column: 1;
  grid-row: 1;
  grid-template-columns: 30rem 35rem;
  column-gap: 1rem;
}
.l-lpcontents .p-style02 .p-style_wrapper02 .p-style_wrap02 {
  grid-column: 3;
  grid-row: 2;
}
.l-lpcontents .p-style02 .p-style_wrapper02 .p-style_wrap03 {
  grid-column: 2;
  grid-row: 3;
  width: 40rem;
  /* width: 39.9rem; */
}
.l-lpcontents .p-style02 .p-style_wrapper02 .c-text_credit {
  left: -13.6rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .p-style02 .p-style_wrapper02 {
    width: var(--width-primary);
    margin: calc(172*100vw/750) auto 0;
  }
  .l-lpcontents .p-style02 .p-style_wrapper02 .p-style_wrap01 {
    display: flex;
    flex-direction: column-reverse;
    row-gap: calc(20*100vw/750);;
    margin-left: calc(210*100vw/750);;
  }
  .l-lpcontents .p-style02 .p-style_wrapper02 .p-style_wrap02 {
    margin-top: calc(80*100vw/750);;
  }
  .l-lpcontents .p-style02 .p-style_wrapper02 .p-style_wrap03 {
    width: calc(620*100vw/750);
    margin-top: calc(65*100vw/750);;
    margin-left: calc(65*100vw/750);;
  }
  .l-lpcontents .p-style02 .p-style_wrapper02 .c-text_credit {
    margin-top: calc(40*100vw/750);;
    text-align: left;
  }
}
/******************************** wrapper03 ********************************/
.l-lpcontents .p-style02 .p-style_wrapper03 {
  margin-top: 15.4rem;
  margin-left: 33.5rem;
  height: 134.5rem;
  grid-template-columns: 12rem 27.9rem;
  grid-template-rows: 82rem 31.8rem;
}
.l-lpcontents .p-style02 .p-style_wrapper03 .p-style_wrap01 {
  grid-column: 2;
  grid-row: 1;
}
.l-lpcontents .p-style02 .p-style_wrapper03 .p-style_wrap02 {
  grid-column: 1;
  grid-row: 2;
}
.l-lpcontents .p-style02 .p-style_wrapper03 .p-style_wrap03 {
  grid-column: 3;
  grid-row: 3;
  /* width: 35rem; */
  width: 35.3rem;
}
.l-lpcontents .p-style02 .p-style_wrapper03 .c-text_credit {
  left: -11.5rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .p-style02 .p-style_wrapper03 {
    width: var(--width-primary);
    height: initial;
    margin: calc(174*100vw/750) auto 0;
  }
  .l-lpcontents .p-style02 .p-style_wrapper03 .p-style_wrap02 {
    margin: calc(60*100vw/750) auto 0;
  }
  .l-lpcontents .p-style02 .p-style_wrapper03 .p-style_wrap03 {
    width: calc(620*100vw/750);
    margin: calc(65*100vw/750) auto 0;
    text-align: center;
  }
  .l-lpcontents .p-style02 .p-style_wrapper03 .c-text_lead {
    text-align: justify;
  }
  .l-lpcontents .p-style02 .p-style_wrapper03 .c-text_credit {
    margin-top: calc(40*100vw/750);;
    text-align: left;
    white-space: nowrap;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project -endview
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .p-endview {
  padding-block: 13.5rem;
  border-bottom: 0.1rem solid var(--color-black);
}
.l-lpcontents .p-endview_inner {
  --row: 13.5rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .p-endview {
    padding-block: calc(146*100vw/750) calc(154*100vw/750);
    border-bottom: 0;
  }
  .l-lpcontents .p-endview_inner {
    --row: calc(150*100vw/750);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
animation - fade
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .js-fade {
  opacity: 0;
  will-change: transform;
  -webkit-transition: ease-in, opacity 1000ms, -webkit-transform 1000ms;
  transition: ease-in, opacity 1000ms, -webkit-transform 1000ms;
  -o-transition: ease-in, opacity 1000ms, transform 1000ms;
  transition: ease-in, opacity 1000ms, transform 1000ms;
  transition: ease-in, opacity 1000ms, transform 1000ms, -webkit-transform 1000ms;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.l-lpcontents .js-fade.is-active {
  opacity: 1;
}