@charset "UTF-8";
@media only screen and (max-width: 1400px) {
  html {
    font-size: 0.7142857143vw;
  }
}
/*================================
  header
=================================*/
#header .header__inner svg{
  fill: #fff;
}
.cls-4{
  stroke: #fff;
}
.header .navigation__list{
  color: #fff;
}
.header .drawer-btn__border{
  background: #fff;
}
.header .drawer-btn__border::after{
  background: #fff;
}
.header .drawer-btn__border::before{
  background: #fff;
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
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;
  background-color: var(--color-black);
  color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .l-lpcontents {
    --width-primary: calc(1400*100vw/1400);
    --fz-text_fv_title: calc(80*100vw/1400);
    --fz-text_fv_lead: calc(14*100vw/1400);
    --fz-text_title: calc(70*100vw/1400);
    --fz-text_lead: calc(13*100vw/1400);
    --fz-text_credit: calc(12*100vw/1400);
    --fz-text_btn: calc(18*100vw/1400);
    margin-top: calc(-140* 100vw / 1400);
  }
}
@media screen and (max-width: 767px) {
  .l-lpcontents {
    --width-primary: calc(750*100vw/750);
    --fz-text_fv_title: calc(90*100vw/750);
    --fz-text_fv_lead: calc(23*100vw/750);
    --fz-text_title: calc(90*100vw/750);
    --fz-text_lead: calc(23*100vw/750);
    --fz-text_credit: calc(24*100vw/750);
    --fz-text_btn: calc(30*100vw/750);
    margin-top: calc(-116*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: row-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_fv_title {
  font-size: var(--fz-text_fv_title);
  line-height: 1;
  letter-spacing: .02em;
  font-weight: var(--fw-regular);
  font-family: var(--font-trajan);
}
.l-lpcontents .c-text_fv_lead {
  font-size: var(--fz-text_fv_lead);
  line-height: 2.1428571429;
  letter-spacing: .12em;
  font-weight: var(--fw-medium);
  font-family: var(--font-hiragino);
}
.l-lpcontents .c-text_title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin-top: calc(3*100vw/1400);
  font-size: var(--fz-text_title);
  line-height: 1;
  letter-spacing: .002em;
  font-weight: var(--fw-light);
  font-family: var(--font-trajan);
  text-align: center;
}
.l-lpcontents .c-text_lead {
  font-size: var(--fz-text_lead);
  line-height: 2.07692307692;
  letter-spacing: .075em;
  font-weight: var(--fw-regular);
  font-family: var(--font-hiragino);
  text-align: justify;
}
.l-lpcontents .c-text_credit {
  margin-top: calc(32*100vw/1400);
  font-size: var(--fz-text_credit);
  line-height: 2.16;
  letter-spacing: .005em;
  font-weight: var(--fw-regular);
  font-family: var(--font-en);
  text-align: center;
}
.l-lpcontents .c-text_credit li {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  display: inline-block;
  margin: 0 calc(4*100vw/1400);
}
.l-lpcontents .c-text_btn {
  width: fit-content;
  margin: 0 auto;
  font-size: var(--fz-text_btn);
  line-height: 1.4;
  letter-spacing: .08em;
  font-family: var(--font-en);
  color: var(--color-white);
  border-bottom: calc(1*100vw/1400) solid var(--color-white);
}
@media screen and (max-width: 767px) {
  .l-lpcontents .c-text_fv_title {
    font-weight: var(--fw-regular);
  }
  .l-lpcontents .c-text_fv_lead {
    letter-spacing: .05em;
    line-height: 2;
  }
  .l-lpcontents .c-text_title {
    margin-top: calc(3*100vw/750);
    font-weight: var(--fw-light);
  }
  .l-lpcontents .c-text_lead {
    line-height: 1.8695652174;
    font-weight: var(--fw-medium);
  }
  .l-lpcontents .c-text_credit {
    margin-top: calc(25*100vw/750);
    line-height: 2.08333333333;
  }
  .l-lpcontents .c-text_credit li {
    margin: 0 calc(4*100vw/750);
  }
  .l-lpcontents .c-text_btn {
    line-height: 1.4;
    letter-spacing: .037em;
    border-bottom: 1px solid var(--color-white);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - common
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .styleview {
  position: relative;
  z-index: 2;
}
.l-lpcontents .styleview__wrapper {
  position: relative;
  overflow: clip;
}
.l-lpcontents .styleview__wrap--hidden {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--color-black);
  top: 0;
  left: 0;
  z-index: 10;
}
.l-lpcontents .hidden__image {
  width: calc(800*100vw/1400);
  margin: auto;
}
.l-lpcontents .styleview__wrap--bg {
  position: relative;
  width: calc(700*100vw/1400);
  margin: 0 auto;
}
.l-lpcontents .styleview__wrap--bg::before {
  position: absolute;
  content: "";
  width: 100%;
  height: calc(1050*100vw/1400);
  top: 0;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: -1;
  opacity: 0.7;
  background-color: var(--color-black);
}
.l-lpcontents .styleview__wrap--bg .styleview__image {
  margin: 0 auto;
}
.l-lpcontents .styleview__wrap--bg .styleview__lead {
  line-height: 2;
}
.l-lpcontents .styleview__wrapper02 .styleview__wrap--apper {
  --column: calc(60* 100vw / 1400);
  align-items: center;
  justify-content: center;
}
.l-lpcontents .styleview__wrapper02 .styleview__wrap--apper .styleview__lead {
  width: calc(446*100vw/1400);
}
@media screen and (min-width: 768px) {
  .l-lpcontents .styleview__wrap--bg .styleview__lead {
    width: calc(500* 100vw / 1400);
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .l-lpcontents .hidden__image {
    width: calc(750*100vw/750);
  }
  .l-lpcontents .styleview__wrap--bg {
    width: calc(650*100vw/750);
  }
  .l-lpcontents .styleview__wrap--bg::before {
    width: calc(750*100vw/750);
    height: calc(1200*100vw/750);
    left: calc(-50*100vw/750);
  }
  .l-lpcontents .styleview__wrap--bg .styleview__lead {
    line-height: 1.8695652174;
  }
  .l-lpcontents .styleview__wrapper02 .styleview__wrap--apper {
    --column: calc(60* 100vw / 750);
    align-items: center;
    justify-content: center;
  }
  .l-lpcontents .styleview__wrapper02 .styleview__wrap--apper .styleview__lead {
    width: initial;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - firstview
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .firstview {
  margin-bottom: calc(150*100vw/1400);
}
.l-lpcontents .firstview__wrapper {
  position: relative;
  z-index: 2;
}
.l-lpcontents .firstview__text {
  --row: calc(24*100vw/1400);
  top: calc(620*100vw/1400);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 5;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .firstview {
    margin-bottom: calc(150*100vw/750);
  }
  .l-lpcontents .firstview__text {
    --row: calc(236* 100vw / 750);
    top: calc(723* 100vw / 750);
    white-space: nowrap;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - styleview01
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .styleview01 .styleview__wrap--bg {
  padding-top: calc(98*100vw/1400);
}
.l-lpcontents .styleview01 .styleview__wrap--bg::before {
  background-image: url(../img/bg__image01.jpg);
}
.l-lpcontents .styleview01 .styleview__wrap--bg .styleview__image {
  margin-top: calc(52*100vw/1400);;
}
.l-lpcontents .styleview01 .styleview__wrap01 {
  grid-column: 1;
  grid-row: 1;
}
.l-lpcontents .styleview01 .styleview__wrap02 {
  grid-column: 2;
  grid-row: 1;
}
.l-lpcontents .styleview01 .styleview__wrapper02 {
  padding-bottom: calc(55*100vw/1400);
}
.l-lpcontents .styleview01 .styleview__wrapper02 .styleview__wrap--apper {
  margin-top: calc(78* 100vw / 1400);
}
.l-lpcontents .styleview__image0101 {width: calc(700*100vw/1400);}
.l-lpcontents .styleview__image0102 {width: calc(500*100vw/1400);}
.l-lpcontents .styleview__image0103 {width: calc(220*100vw/1400);}
  @media screen and (max-width: 767px) {
    .l-lpcontents .styleview01 .styleview__wrap--bg {
      padding-top: calc(48*100vw/750);
      padding-bottom: calc(62*100vw/750);;
    }
    .l-lpcontents .styleview01 .styleview__wrap--bg::before {
      background-image: url(../img/sp/bg__image01.jpg);
    }
    .l-lpcontents .styleview01 .styleview__wrap--bg .styleview__image {
      margin-top: calc(20*100vw/750);;
    }
    .l-lpcontents .styleview01 .styleview__wrapper02 {
      padding-bottom: calc(48*100vw/750);
    }
    .l-lpcontents .styleview01 .styleview__wrapper02 .styleview__wrap--apper {
      margin-top: calc(28* 100vw / 750);
      margin-left: calc(50* 100vw / 750);
    }
    .l-lpcontents .styleview01 .styleview__wrapper02 .styleview__wrap--apper .styleview__lead {
      margin-right: calc(40*100vw/750);;
    }
    .l-lpcontents .styleview__image0101 {width: calc(750*100vw/750);}
    .l-lpcontents .styleview__image0102 {width: calc(450*100vw/750);}
    .l-lpcontents .styleview__image0103 {
      width: calc(300* 100vw / 750);
      float: right;
      margin-top: calc(10* 100vw / 750);
      margin-left: calc(54* 100vw / 750);
    }

    .l-lpcontents .styleview01 .styleview__title {
      margin-top: calc(-23*100vw/750);;
    }
  }
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - styleview02
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .styleview02 .styleview__wrap--bg {
  padding-top: calc(52*100vw/1400);
}
.l-lpcontents .styleview02 .styleview__wrap--bg::before {
  background-image: url(../img/bg__image02.jpg);
}
.l-lpcontents .styleview02 .styleview__wrap--bg .styleview__image {
  margin-top: calc(43*100vw/1400);;
}
.l-lpcontents .styleview02 .styleview__wrap01 {
  grid-column: 2;
  grid-row: 1;
}
.l-lpcontents .styleview02 .styleview__wrap02 {
  grid-column: 1;
  grid-row: 1;
}
.l-lpcontents .styleview02 .styleview__wrapper02 {
  padding: calc(141*100vw/1400) 0;
}
.l-lpcontents .styleview02 .styleview__wrapper02 .styleview__wrap--apper {
  margin-top: calc(78* 100vw / 1400);
}
.l-lpcontents .styleview__image0201 {width: calc(700*100vw/1400);}
.l-lpcontents .styleview__image0202 {width: calc(500*100vw/1400);}
@media screen and (max-width: 767px) {
  .l-lpcontents .styleview02 .styleview__wrap--bg {
    padding-top: calc(44* 100vw / 750);
    padding-bottom: calc(62* 100vw / 750);
  }
  .l-lpcontents .styleview02 .styleview__wrap--bg::before {
    background-image: url(../img/sp/bg__image02.jpg);
  }
  .l-lpcontents .styleview02 .styleview__wrap--bg .styleview__image {
    margin-top: calc(10*100vw/750);;
  }
  .l-lpcontents .styleview02 .styleview__wrapper02 {
    padding: calc(100*100vw/750) 0 calc(115*100vw/750);
  }
  .l-lpcontents .styleview02 .styleview__wrapper02 .styleview__wrap--apper {
    margin-top: calc(78* 100vw / 750);
  }
  .l-lpcontents .styleview__image0201 {width: calc(750*100vw/750);}
  .l-lpcontents .styleview__image0202 {width: calc(450*100vw/750);}
  .l-lpcontents .styleview02 .styleview__title {
    margin-top: calc(-3*100vw/750);;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - styleview03
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .styleview03 .styleview__wrap--bg {
  padding-top: calc(80*100vw/1400);
}
.l-lpcontents .styleview03 .styleview__wrap--bg::before {
  background-image: url(../img/bg__image03.jpg);
}
.l-lpcontents .styleview03 .styleview__wrap--bg .styleview__image {
  margin-top: calc(62*100vw/1400);;
}
.l-lpcontents .styleview03 .styleview__wrap01 {
  grid-column: 1;
  grid-row: 1;
}
.l-lpcontents .styleview03 .styleview__wrap02 {
  grid-column: 2;
  grid-row: 1;
}
.l-lpcontents .styleview03 .styleview__wrapper02 {
  padding-bottom: calc(52*100vw/1400);
}
.l-lpcontents .styleview03 .styleview__wrapper02 .styleview__wrap--apper {
  margin-top: calc(75* 100vw / 1400);
}
.l-lpcontents .styleview__image0301 {width: calc(700*100vw/1400);}
.l-lpcontents .styleview__image0302 {width: calc(500*100vw/1400);}
.l-lpcontents .styleview__image0303 {width: calc(220*100vw/1400);}
@media screen and (max-width: 767px) {
  .l-lpcontents .styleview03 .styleview__wrap--bg {
    padding-top: calc(57*100vw/750);
    padding-bottom: calc(33*100vw/750);
  }
  .l-lpcontents .styleview03 .styleview__wrap--bg::before {
    background-image: url(../img/sp/bg__image03.jpg);
  }
  .l-lpcontents .styleview03 .styleview__wrap--bg .styleview__image {
    margin-top: calc(42*100vw/750);;
  }
  .l-lpcontents .styleview03 .styleview__wrapper02 {
    padding-bottom: calc(50*100vw/750);
  }
  .l-lpcontents .styleview03 .styleview__wrapper02 .styleview__wrap--apper {
    margin-top: calc(27* 100vw / 750);
  }
  .l-lpcontents .styleview03 .styleview__wrapper02 .styleview__wrap--apper .styleview__lead {
    margin-left: calc(52* 100vw / 750);
    margin-right: calc(40* 100vw / 750);
  }
  .l-lpcontents .styleview__image0301 {width: calc(750*100vw/750);}
  .l-lpcontents .styleview__image0302 {width: calc(450*100vw/750);}
  .l-lpcontents .styleview__image0303 {
    width: calc(300*100vw/750);
    float: left;
    margin-top: calc(10* 100vw / 750);
    margin-right: calc(54* 100vw / 750);
  }
  .l-lpcontents .styleview03 .styleview__title {
    margin-top: calc(-24*100vw/750);;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - styleview04
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .styleview04 .styleview__wrap--bg {
  padding-top: calc(90*100vw/1400);
}
.l-lpcontents .styleview04 .styleview__wrap--bg::before {
  background-image: url(../img/bg__image04.jpg);
}
.l-lpcontents .styleview04 .styleview__wrap--bg .styleview__image {
  margin-top: calc(62*100vw/1400);;
}
.l-lpcontents .styleview04 .styleview__wrap01 {
  grid-column: 2;
  grid-row: 1;
}
.l-lpcontents .styleview04 .styleview__wrap02 {
  grid-column: 1;
  grid-row: 1;
}
.l-lpcontents .styleview04 .styleview__wrapper02 {
  padding-bottom: calc(55*100vw/1400);
}
.l-lpcontents .styleview04 .styleview__wrapper02 .styleview__wrap--apper {
  margin-top: calc(78* 100vw / 1400);
}
.l-lpcontents .styleview__image0401 {width: calc(700*100vw/1400);}
.l-lpcontents .styleview__image0402 {width: calc(500*100vw/1400);}
@media screen and (max-width: 767px) {
  .l-lpcontents .styleview04 .styleview__wrap--bg {
    padding-top: calc(57*100vw/750);
    padding-bottom: calc(62*100vw/750);;
  }
  .l-lpcontents .styleview04 .styleview__wrap--bg::before {
    background-image: url(../img/sp/bg__image04.jpg);
  }
  .l-lpcontents .styleview04 .styleview__wrap--bg .styleview__image {
    margin-top: calc(10*100vw/750);;
  }
  .l-lpcontents .styleview04 .styleview__wrapper02 {
    padding-bottom: calc(55*100vw/750);
  }
  .l-lpcontents .styleview04 .styleview__wrapper02 .styleview__wrap--apper {
    margin-top: calc(78* 100vw / 750);
  }
  .l-lpcontents .styleview__image0401 {width: calc(750*100vw/750);}
  .l-lpcontents .styleview__image0402 {width: calc(450*100vw/750);}
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - lastview
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .lastview {
  margin-top: calc(168* 100vw / 1400);
  padding-bottom: calc(170* 100vw / 1400);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .lastview {
    margin-top: calc(198* 100vw / 750);
    padding-bottom: calc(195* 100vw / 750);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - animation
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .js-hidden {
  transform: translateY(0px);
  transition: transform 1.5s ease-in-out 1s;
}
.l-lpcontents .js-hidden.is-active {
  transform: translateY(100%);
}
.l-lpcontents .js-apper > ul,
.l-lpcontents .js-apper h3,
.l-lpcontents .js-apper p {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 2000ms ease-out,transform 1000ms ease-out;
}
.l-lpcontents .js-apper.is-active > ul,
.l-lpcontents .js-apper.is-active h3,
.l-lpcontents .js-apper.is-active p {
  opacity: 1;
  transform: translateY(0);
}
