@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;
  --font-ambroise: "ambroise-std";
  --font-ratiomodern: "ratiomodern";
  --font-yu-gothic: "游ゴシック体", YuGothic, "游ゴシック re--fw-regular", "Yu Gothic re--fw-regular", "游ゴシック", "Yu Gothic";
  --font-en: var(--font-ambroise), sans-serif;
  --font-ja: var(--font-yu-gothic), sans-serif;
  --font-main: var(--font-ambroise), var(--font-yu-gothic), 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-main: 8rem;
    --fz-text_fv_title-sub: 1.8rem;
    --fz-text_fv_lead: 1.5rem;
    --fz-text_credit: 1.4rem;
  }
  .l-lpcontents .c-bg_white {
    background-color: var(--color-white);
  }
}
@media screen and (max-width: 767px) {
  .l-lpcontents {
    --width-primary: calc(750*100vw/750);
    --fz-text_fv_title-main: calc(120*100vw/750);
    --fz-text_fv_title-sub: calc(31*100vw/750);
    --fz-text_fv_lead: calc(27*100vw/750);
    --fz-text_credit: calc(26*100vw/750);
  }
}

@media screen and (min-width: 768px) {
  .l-lpcontents .sp_only {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .main-area .main-inner {
    width: 100%;
  }
  .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;}
/************** グリッドをPC/SP共通で使用する場合 **************/
.l-lpcontents [class*="c-grid_column"] {
  display: grid;
  grid-template-columns: repeat(var(--columns , 1), 1fr);
  gap: var(--row, 0) var(--column, 0);
}
/************** グリッドをPCのみ使用する場合 **************/
@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;}
}
/************** グリッドをSPのみ使用する場合 **************/
@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;}
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
component - position
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents [class*="c-pos-"] {
  position: absolute;
  bottom: -0.5rem;
  left: var(--left, initial);
  right: var(--right, initial);
}
.l-lpcontents [class*="c-pos"] > li {
  display: block;
  margin-inline: initial;
}
@media screen and (min-width: 768px) {
  .l-lpcontents [class*="c-pc_pos"] {
    position: absolute;
    bottom: -0.5rem;
    left: var(--left, initial);
    right: var(--right, initial);
  }
  .l-lpcontents [class*="c-pc_pos"] > li {
    display: block;
    margin-inline: initial;
  }
}
@media screen and (max-width: 767px) {
  .l-lpcontents [class*="c-pos-"],
  .l-lpcontents [class*="c-sp_pos"] {
    position: absolute;
    bottom: calc(-10*100vw/750);;
    left: var(--left, initial);
    right: var(--right, initial);
  }
  .l-lpcontents [class*="c-sp_pos"] > li {
    display: block;
    margin-inline: initial;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
component - text
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .c-text_fv_title-main {
  font-size: var(--fz-text_fv_title-main);
  line-height: 1.7;
  color: var(--color-black);
  font-weight: var(--fw-semibold);
  font-family: var(--font-en);
}
.l-lpcontents .c-text_fv_title-sub {
    font-size: var(--fz-text_fv_title-sub);
  line-height: 1.7111111111;
  letter-spacing: 0.08em;
  color: var(--color-black);
  font-family: var(--font-ja);
  font-weight: var(--fw-medium);
}
.l-lpcontents .c-text_fv_lead {
  font-size: var(--fz-text_fv_lead);
  line-height: 1.9333333333;
  letter-spacing: 0.08em;
  color: var(--color-black);
  font-family: var(--font-ja);
  font-weight: var(--fw-medium);
}
.l-lpcontents .c-text_credit {
  margin-top: 2.3rem;
  font-size: var(--fz-text_credit);
  line-height: 2;
  color: var(--color-black);
  font-family: var(--font-ratiomodern);
  font-weight: var(--fw-regular);
}
.l-lpcontents .c-text_credit_item {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  display: inline-block;
  margin-inline: 0.4rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .c-text_fv_title-main {
    line-height: 1.81;
  }
  .l-lpcontents .c-text_fv_lead {
    line-height: 1.9259259259;
  }
  .l-lpcontents .c-text_credit {
    margin-top: calc(27* 100vw / 750);
  }
  .l-lpcontents .c-text_credit_item {
    margin-inline: calc(8*100vw/750);;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
component - image
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .c-style_image0101 {width: 37rem;}
.l-lpcontents .c-style_image0201 {width: 62rem;}
.l-lpcontents .c-style_image0202 {width: 28rem;}
.l-lpcontents .c-style_image0203 {width: 28rem;}
.l-lpcontents .c-style_image0301 {width: 35rem;}
.l-lpcontents .c-style_image0302 {width: 35rem;}
.l-lpcontents .c-style_image0303 {width: 35rem;}
.l-lpcontents .c-style_image0401 {width: 46rem;}
.l-lpcontents .c-style_image0402 {width: 30rem;}
.l-lpcontents .c-style_image0403 {width: 30rem;}
.l-lpcontents .c-style_image0501 {width: 78.4rem;}
.l-lpcontents .c-style_image0502 {width: 35rem;}
.l-lpcontents .c-style_image0601 {width: 39rem;}
.l-lpcontents .c-style_image0602 {width: 41rem;}
.l-lpcontents .c-style_image0701 {width: 43rem;}
.l-lpcontents .c-style_image0801 {width: 36rem;}
.l-lpcontents .c-style_image0802 {width: 36rem;}
@media screen and (max-width: 767px) {
  .l-lpcontents .c-style_image0101 {width: calc(560*100vw/750);}
  .l-lpcontents .c-style_image0201 {width: calc(750*100vw/750);}
  .l-lpcontents .c-style_image0202 {width: calc(350*100vw/750);}
  .l-lpcontents .c-style_image0203 {width: calc(350*100vw/750);}
  .l-lpcontents .c-style_image0301 {width: calc(480*100vw/750);}
  .l-lpcontents .c-style_image0302 {width: calc(480*100vw/750);}
  .l-lpcontents .c-style_image0303 {width: calc(480*100vw/750);}
  .l-lpcontents .c-style_image0401 {width: calc(650*100vw/750);}
  .l-lpcontents .c-style_image0402 {width: calc(440*100vw/750);}
  .l-lpcontents .c-style_image0403 {width: calc(440*100vw/750);}
  .l-lpcontents .c-style_image0501 {width: calc(750*100vw/750);}
  .l-lpcontents .c-style_image0502 {width: calc(480*100vw/750);}
  .l-lpcontents .c-style_image0601 {width: calc(520*100vw/750);}
  .l-lpcontents .c-style_image0602 {width: calc(600*100vw/750);}
  .l-lpcontents .c-style_image0701 {width: calc(670*100vw/750);}
  .l-lpcontents .c-style_image0801 {width: calc(540*100vw/750);}
  .l-lpcontents .c-style_image0802 {width: calc(540*100vw/750);}
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - common
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .p-style_inner {
  width: var(--width-primary);
  margin-inline: auto;
}
.l-lpcontents [class*="p-style_wrap"] {
  position: relative;
  width: fit-content;
  height: fit-content;
  z-index: 5;
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - firstview
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .p-firstview {
  position: relative;
  z-index: 5;
  padding-top: 2rem;
}
.l-lpcontents .p-firstview::before {
  position: absolute;
  content: "";
  display: block;
  width: 192rem;
  height: 675.3rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/background.png);
  top: 0rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -5;
}
.l-lpcontents .p-firstview_text {
  text-align: center;
  --row: 3.3rem;
}
.l-lpcontents .p-firstview_text_title > span {
  position: relative;
  display: block;
}
.l-lpcontents .p-firstview_text_title-sub::before {
  position: absolute;
  content: "";
  display: block;
  width: 26.6rem;
  height: 3rem;
  background-image: url(../img/SVG/frame.svg);
  background-size: cover;
  background-repeat: no-repeat;
  top: 0rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  -webkit-backface-visibility: hidden;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .p-firstview {
    padding-top: calc(8* 100vw / 750);
  }
  .l-lpcontents .p-firstview::before {
    width: calc(750*100vw/750);
    height: calc(15124*100vw/750);
    background-image: url(../img/sp/background.png);
  }
  .l-lpcontents .p-firstview_text {
    --row: calc(56* 100vw / 750);
  }
  .l-lpcontents .p-firstview_text_title-sub::before {
    width: calc(450*100vw/750);
    height: calc(51* 100vw / 750);
    background-image: url(../img/SVG/frame_sp.svg);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - style01
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .p-style01 {
  margin-top: 6.3rem;
  text-align: center;
}
.l-lpcontents .p-style01 .p-style_inner {
  width: 37rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .p-style01 {
    margin-top: calc(85* 100vw / 750);
  }
  .l-lpcontents .p-style01 .p-style_inner {
    width: calc(560*100vw/750);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - style02
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .p-style02 {
  margin-top: 9.4rem;
}
.l-lpcontents .p-style02 .p-style_inner {
  grid-template-columns: 130rem 1fr;
}
.l-lpcontents .p-style02 .p-style_wrapper {
  grid-column: 1/2;
  grid-template-columns: 74rem;
  grid-template-rows: 24rem;
}
.l-lpcontents .p-style02 .p-style_wrap01 {
  grid-row: 1;
  grid-column: 1;
}
.l-lpcontents .p-style02 .p-style_wrap02 {
  grid-row: 2;
  grid-column: 2;
}
.l-lpcontents .p-style02 .c-text_credit {
  --left: -13.7rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .p-style02 {
    margin-top: calc(130*100vw/750);;
    text-align: center;
  }
  .l-lpcontents .p-style02 .p-style_wrap02 {
    margin-top: calc(60*100vw/750);;
    margin-inline: auto;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - style03
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .p-style03 {
  margin-top: 9.98rem;
  text-align: center;
}
.l-lpcontents .p-style03 .p-style_inner {
  width: 107.8rem;
  --column: 1.4rem;
}
.l-lpcontents .p-style03 .c-text_credit {
  grid-column: 1/4;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .p-style03 {
    margin-top: calc(133* 100vw / 750);
    text-align: center;
  }
  .l-lpcontents .p-style03 .p-style_inner,
  .l-lpcontents .p-style03 .p-style_wrapper {
    width: var(--width-primary);
  }
  .l-lpcontents .p-style03 .p-style_wrap02 {
    margin: calc(50*100vw/750) auto 0;
  }
  .l-lpcontents .p-style03 .p-style_wrap03 {
    margin-top: calc(50*100vw/750);;
    margin-left: auto;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - style04
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .p-style04 {
  margin-top: 9.6rem;
}
.l-lpcontents .p-style04 .p-style_inner {
  grid-template-columns: 10rem 1fr 13rem;
}
.l-lpcontents .p-style04 .p-style_wrapper {
  grid-column: 2/3;
  --column: 41rem;
}
.l-lpcontents .p-style04 .c-text_credit {
  --left: -14.5rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .p-style04 {
    margin-top: calc(130*100vw/750);;
    text-align: center;
  }
  .l-lpcontents .p-style04 .p-style_wrapper {
    width: var(--width-primary);
    margin-inline: auto;
  }
  .l-lpcontents .p-style04 .p-style_wrap01 {
    margin-inline: auto;
  }
  .l-lpcontents .p-style04 .p-style_wrap02 {
    width: calc(650*100vw/750);;
    margin: calc(60*100vw/750) auto 0;
  }
  .l-lpcontents .p-style04 .p-style_wrap02 .c-style_image0403 {
    margin-left: auto;
  }
  .l-lpcontents .p-style04 .c-text_credit {
    white-space: nowrap;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - style05
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .p-style05 {
  margin-top: 10rem;
}
.l-lpcontents .p-style05 .p-style_wrapper {
  grid-template-columns: 78.45rem;
  --column: 1.05rem;
}
.l-lpcontents .p-style05 .p-style_wrap01 {
  grid-column: 1;
}
.l-lpcontents .p-style05 .p-style_wrap02 {
  grid-column: 2;
}
.l-lpcontents .p-style05 .c-text_credit {
  --right: -17.4rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .p-style05 {
    margin-top: calc(130*100vw/750);;
    text-align: center;
  }
  .l-lpcontents .p-style05 .p-style_wrap02 {
    margin: calc(110*100vw/750) auto 0;
  }
  .l-lpcontents .p-style05 .p-style_wrap02 > div {
    margin-inline: auto;
  }
  .l-lpcontents .p-style05 .c-text_credit {
    white-space: nowrap;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - style06
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .p-style06 {
  margin-top: 10rem;
}
.l-lpcontents .p-style06 .p-style_inner {
  grid-template-columns: 17rem 1fr;
}
.l-lpcontents .p-style06 .p-style_wrapper {
  grid-column: 2/3;
  grid-template-columns: 84rem;
  grid-template-rows: 18rem;
}
.l-lpcontents .p-style06 .p-style_wrap01 {
  grid-row: 1;
  grid-column: 2;
}
.l-lpcontents .p-style06 .p-style_wrap02 {
  grid-row: 2;
  grid-column: 1;
}
.l-lpcontents .p-style06 .c-text_credit {
  --left: -17.2rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .p-style06 {
    margin-top: calc(133* 100vw / 750);
  }
  .l-lpcontents .p-style06 .p-style_wrapper {
    width: var(--width-primary);
  }
  .l-lpcontents .p-style06 .p-style_wrap01 {
    margin-left: auto;
  }
  .l-lpcontents .p-style06 .p-style_wrap02 {
    margin: calc(60* 100vw / 750) auto 0;
  }
  .l-lpcontents .p-style06 .c-text_credit {
    --left: calc(-200*100vw/750);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - style07
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .p-style07 {
  margin-top: 10rem;
  text-align: center;
}
.l-lpcontents .p-style07 .p-style_inner {
  width: 43rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .p-style07 {
    margin-top: calc(138* 100vw / 750);
  }
  .l-lpcontents .p-style07 .p-style_inner {
    width: calc(670*100vw/750);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - style08
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .p-style08 {
  margin-top: 9.6rem;
}
.l-lpcontents .p-style08 .p-style_inner {
  grid-template-columns: 68rem 1fr;
}
.l-lpcontents .p-style08 .p-style_wrapper {
  grid-column: 2/3;
}
.l-lpcontents .p-style08 .c-text_credit {
  --left: -17.6rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .p-style08 {
    margin-top: calc(132* 100vw / 750);
    text-align: center;
  }
  .l-lpcontents .p-style08 .p-style_wrapper {
    width: calc(540*100vw/750);;
    margin-left: auto;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - endview
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .p-endview {
  position: relative;
  z-index: 10;
  margin-block: 10rem 15rem;
}
.l-lpcontents .p-endview_inner {
  --row: 1rem;
}
.l-lpcontents .c-btn {
  width: 42rem;
  height: 7.2rem;
  margin-inline: auto;
  border: 0.1rem solid var(--color-black);
  font-family: var(--font-en);
  font-size: 2.2rem;
  line-height: 1.2727272727;
  color: var(--color-black);
}
.l-lpcontents .c-btn > a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .p-endview {
    margin-block: 10rem 15rem;
    margin-block: calc(131* 100vw / 750) calc(200* 100vw / 750);
  }
  .l-lpcontents .p-endview_inner {
    --row: calc(20*100vw/750);
  }
  .l-lpcontents .c-btn {
    width: calc(670*100vw/750);;
    height: calc(146*100vw/750);;
    border: 1px solid var(--color-black);
    font-size: calc(36*100vw/750);
    line-height: 0.7777777778;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
animation - fade
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .js-fade {
  visibility: hidden;
  opacity: 0;
  transform: translate(0, 0);
  transition: ease-in, opacity 2000ms, transform 1000ms;
}
.l-lpcontents .js-fade.is-active,
.l-lpcontents [class*="js-fade_left"].is-active,
.l-lpcontents [class*="js-fade_right"].is-active {
  visibility: visible;
  opacity: 1;
  transform: translate(0, 0);
}
.l-lpcontents [class*="js-fade_left"] {
  visibility: hidden;
  opacity: 0;
  transform: translate(30%, 0);
  transition: ease-in, opacity 2000ms, transform 1000ms;
}
.l-lpcontents [class*="js-fade_right"] {
  visibility: hidden;
  opacity: 0;
  transform: translate(-30%, 0);
  transition: ease-in, opacity 2000ms, transform 1000ms;
}
@media screen and (min-width: 768px) {
  .l-lpcontents .js-fade_delay01 {transition-delay: 250ms;}
  .l-lpcontents .js-fade_delay02 {transition-delay: 500ms;}
  .l-lpcontents .js-fade_delay03 {transition-delay: 750ms;}
}