@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-green: #c5cdc1;
  --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: hidden;
}
@media screen and (min-width: 768px) {
  .l-lpcontents {
    --width-primary: 140rem;
    --fz-fv_maintitle: 6.5rem;
    --fz-fv_subtitle: 4.5rem;
    --fz-fv_lead: 1.4rem;
    --fz-text_lead: 1.3rem;
    --fz-sv_credit: 1.2rem;
    --fz-btn: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .l-lpcontents {
    --width-primary: calc(750*100vw/750);
    --fz-fv_maintitle: calc(80*100vw/750);
    --fz-fv_subtitle: calc(55*100vw/750);
    --fz-fv_lead: calc(23*100vw/750);
    --fz-text_lead: calc(23*100vw/750);
    --fz-sv_credit: calc(24*100vw/750);
    --fz-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-fv_subtitle {
  font-size: var(--fz-fv_subtitle);
  line-height: 1.0266666667;
  letter-spacing: 0.04em;
  font-weight: var(--fw-bold);
  font-family: var(--font-en);
  color: var(--color-white);
}
.l-lpcontents .c-fv_maintitle {
  font-size: var(--fz-fv_maintitle);
  line-height: 0.7;
  letter-spacing: 0.08em;
  font-weight: var(--fw-regular);
  font-family: var(--font-en);
  color: var(--color-white);
}
.l-lpcontents .c-fv_lead {
  font-size: var(--fz-fv_lead);
  line-height: 2.1428571429;
  letter-spacing: 0.12em;
  font-weight: var(--fw-medium);
  font-family: var(--font-hiragino);
  color: var(--color-white);
  white-space: nowrap;
}
.l-lpcontents .c-text_lead {
  font-size: var(--fz-text_lead);
  line-height: 2.0769230769;
  letter-spacing: 0.05em;
  font-weight: var(--fw-regular);
  font-family: var(--font-hiragino);
  color: var(--color-black);
  text-align: justify;
}
.l-lpcontents .c-sv_credit {
  margin-top: 3.3rem;
  font-size: var(--fz-sv_credit);
  line-height: 2.1666666667;
  letter-spacing: 0.005em;
  font-weight: var(--fw-regular);
  font-family: var(--font-en);
  color: var(--color-black);
}
.l-lpcontents .c-sv_credit > li {
  display: inline-block;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  margin: 0 0.4rem;
}
.l-lpcontents .c-btn {
  width: fit-content;
  margin: 16.4rem auto 17rem;
  border-bottom: 0.1rem solid var(--color-black);
  text-align: center;
  font-size: var(--fz-btn);
  line-height: 1.4444444444;
  letter-spacing: 0.037em;
  font-weight: var(--fw-regular);
  font-family: var(--font-en);
  color: var(--color-black);
}
@media screen and (max-width: 767px) {
  .l-lpcontents .c-fv_subtitle {
    line-height: 0.924;
  }
  .l-lpcontents .c-fv_maintitle {
    line-height: 0.8;
  }
  .l-lpcontents .c-fv_lead {
    line-height: 2;
    letter-spacing: 0.05em;
    color: var(--color-black);
  }
  .l-lpcontents .c-text_lead {
    line-height: 1.8695652174;
    letter-spacing: 0.075em;
    font-weight: var(--fw-medium);
  }
  .l-lpcontents .c-sv_credit {
    margin-top: calc(26*100vw/750);
    line-height: 2.0833333333;
  }
  .l-lpcontents .c-sv_credit > li {
    margin: 0 calc(9*100vw/750);
  }
  .l-lpcontents .c-btn {
    margin: calc(200* 100vw / 750) auto;
    border-top: 1px solid var(--color-black);
    border-bottom: 1px solid var(--color-black);
    line-height: 1.2;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
component - image
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .styleview__image0101 {width: 50.0rem;}
.l-lpcontents .styleview__image0102 {width: 31.8rem;}
.l-lpcontents .styleview__image0103 {width: 31.8rem;}
.l-lpcontents .styleview__image0104 {width: 31.8rem;}
.l-lpcontents .styleview__image0201 {width: 70.0rem;}
.l-lpcontents .styleview__image0301 {width: 50.0rem;}
.l-lpcontents .styleview__image0401 {width: 50.0rem;}
.l-lpcontents .styleview__image0402 {width: 50.0rem;}
.l-lpcontents .styleview__image0403 {width: 50.0rem;}
.l-lpcontents .styleview__image0404 {width: 73.0rem;}
.l-lpcontents .styleview__title {width: 26.2rem;}
@media screen and (max-width: 767px) {
  .l-lpcontents .styleview__image0101 {width: calc(550*100vw/750);}
  .l-lpcontents .styleview__image0102 {width: calc(450*100vw/750);}
  .l-lpcontents .styleview__image0103 {width: calc(450*100vw/750);}
  .l-lpcontents .styleview__image0104 {width: calc(450*100vw/750);}
  .l-lpcontents .styleview__image0201 {width: calc(700*100vw/750);}
  .l-lpcontents .styleview__image0301 {width: calc(550*100vw/750);}
  .l-lpcontents .styleview__image0401 {width: calc(650*100vw/750);}
  .l-lpcontents .styleview__image0402 {width: calc(600*100vw/750);}
  .l-lpcontents .styleview__image0403 {width: calc(650*100vw/750);}
  .l-lpcontents .styleview__image0404 {width: calc(750*100vw/750);}
  .l-lpcontents .styleview__title {width: calc(464*100vw/750);}
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - common
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .styleview__inner {
  width: var(--width-primary);
  margin-inline: auto;
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - firstview
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .firstview {
  width: 100rem;
  margin: 0 auto;
  text-align: center;
}
.l-lpcontents .firstview__inner{
  position: relative;
}
.l-lpcontents .firstview__text {
  top: 40.6rem;
  left: 50%;
  transform: translateX(-50%);
}
.l-lpcontents .firstview__text > div {
  --row: 3.1rem;
}
.l-lpcontents .firstview hgroup {
  --row: 0;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .firstview {
    width: var(--width-primary);
  }
  .l-lpcontents .firstview__inner {
    --row: calc(118*100vw/750);
  }
  .l-lpcontents .firstview__text {
    transform: initial;
  }
  .l-lpcontents .firstview__text > div {
    --row: 3.1rem;
  }
  .l-lpcontents .firstview hgroup {
    top: calc(440*100vw/750);
    left: 50%;
    transform: translateX(-50%);
    --row: 0;
  }
}

/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - styleview01
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .styleview01 {
  margin-top: 20rem;
}
.l-lpcontents .styleview01 .styleview__inner {
  width: 100rem;
  margin: 0 auto;
  --row: 2.4rem;
}
.l-lpcontents .styleview01 .styleview__wrapper01 {
  justify-content: space-between;
}
.l-lpcontents .styleview01 .styleview__wrapper02 > div {
  --column: 1rem;
  justify-content: space-between;
}
.l-lpcontents .styleview01 .styleview__wrap02 {
  width: 44.2rem;
  margin-top: 13.6rem;
}
.l-lpcontents .styleview01 .styleview__credit {
  margin-top: 2.6rem;
}
.l-lpcontents .styleview01 .styleview__credit > li {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .styleview01 {
    margin-top: calc(140*100vw/750);
  }
  .l-lpcontents .styleview01 .styleview__inner {
    width: var(--width-primary);
    --row: calc(90*100vw/750);
  }
  .l-lpcontents .styleview01 .styleview__wrapper01 {
    width: calc(600*100vw/750);
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    --row: calc(28*100vw/750);
  }
  .l-lpcontents .styleview01 .styleview__wrap02 {
    width: initial;
    margin-top: 0;
    --row: calc(72*100vw/750);
  }
  .l-lpcontents .styleview01 .styleview__credit {
    text-align: center;
    margin-top: 0;
  }
  .l-lpcontents .styleview01 .slick-slide {
    margin: 0 calc(7*100vw/750);
  }
}

/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - styleview02
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .styleview02 {
  width: 70rem;
  margin: 20rem auto 0;
  text-align: center;
}
.l-lpcontents .styleview02 .styleview__lead {
  width: 60rem;
  margin: 3.7rem auto 0;
  text-align: justify;
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .styleview02 {
    width: calc(700*100vw/750);
    margin-top: calc(251*100vw/750);
  }
  .l-lpcontents .styleview02 .styleview__lead {
    width: calc(600*100vw/750);
    margin-top: calc(75*100vw/750);
    font-size: calc(23*100vw/750);
    line-height: 1.8695652174;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - styleview03
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .styleview03 {
  margin-top: 19.6rem;
}
.l-lpcontents .styleview03 .styleview__wrapper {
  width: 100rem;
  margin-left: 20.4rem;
  justify-content: space-between;
}
.l-lpcontents .styleview03 .styleview__lead {
  width: 44.2rem;
  margin-top: 18.1rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .styleview03 {
    margin-top: calc(190*100vw/750);
  }
  .l-lpcontents .styleview03 .styleview__wrapper {
    width: calc(600*100vw/750);
    margin: 0 auto;
    justify-content: center;
    align-items: center;
  }
  .l-lpcontents .styleview03 .styleview__lead {
    width: 100%;
    margin-top: calc(86*100vw/750);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - animation
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .js-Fade {
  opacity: 0;
}
.l-lpcontents .js-Fade.is-active {
  animation: img-opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  overflow: hidden;
  position: relative;
}
.l-lpcontents .js-Fade.is-active::before {
  animation: img-animation 0.75s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: var(--color-white);
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .js-spFade {
    opacity: 0;
  }
  .l-lpcontents .js-spFade.is-active {
    animation: img-opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    overflow: hidden;
    position: relative;
  }
  .l-lpcontents .js-spFade.is-active::before {
    animation: img-animation 0.75s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    background: var(--color-white);
    bottom: 0;
    content: '';
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
  }
}
@keyframes img-animation {
  100% {
    transform: translateX(100%);
  }
}
@keyframes img-opacity {
  100% {
    opacity: 1;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - styleview04
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .styleview04 {
  margin-top: 20rem;
  text-align: center;
}
.l-lpcontents .styleview04 .styleview__wrapper {
  width: 100rem;
  margin: 0 auto;
  grid-template-columns: 11.3rem 38.7rem;
  grid-template-rows: 19.4rem 31.6rem 43rem;
}
.l-lpcontents .styleview04 .styleview__wrap01 {
  grid-column: 3;
  grid-row: 1;
}
.l-lpcontents .styleview04 .styleview__wrap02 {
  grid-column: 2;
  grid-row: 2;
}
.l-lpcontents .styleview04 .styleview__wrap03 {
  grid-column: 1;
  grid-row: 3;
}
.l-lpcontents .styleview04 .styleview__wrap04 {
  grid-column: 3;
  grid-row: 4;
}
.l-lpcontents .styleview04 .styleview__wrap05 {
  margin: 19.8rem auto 0;
}
.l-lpcontents .styleview04 .styleview__lead {
  width: 42.2rem;
  margin-top: 11.7rem;
  text-align: justify;
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .styleview04 {
    margin-top: calc(192*100vw/750);
  }
  .l-lpcontents .styleview04 .styleview__wrapper {
    width: var(--width-primary);
    margin: 0 auto;
  }
  .l-lpcontents .styleview04 .styleview__wrap01 {
    width: var(--width-primary);
    margin: 0 auto;
  }
  .l-lpcontents .styleview04 .styleview__wrap01 > div {
    margin-left: auto;
  }
  .l-lpcontents .styleview04 .styleview__wrap02 {
    margin-top: calc(50*100vw/750);
    margin: calc(90*100vw/750) auto 0;
  }
  .l-lpcontents .styleview04 .styleview__wrap03 {
    width: var(--width-primary);
    margin: calc(100*100vw/750) auto 0;;
  }
  .l-lpcontents .styleview04 .styleview__wrap04 {
    margin-top: calc(88*100vw/750);
    margin-left: auto;
  }
  .l-lpcontents .styleview04 .styleview__wrap04 > div {
    margin-left: auto;
  }
  .l-lpcontents .styleview04 .styleview__wrap04 .styleview__credit {
    white-space: nowrap;
    margin-top: calc(24* 100vw / 750);
  }
  .l-lpcontents .styleview04 .styleview__wrap05 {
    margin-top: calc(187*100vw/750);
  }
  .l-lpcontents .styleview04 .styleview__lead {
    width: calc(600* 100vw / 750);
    margin: calc(77* 100vw / 750) auto 0;
    font-size: calc(23*100vw/750);
    line-height: 1.8695652174;
  }
}
