@charset "UTF-8";
/* media query
------------------------------------------ */
/* display
------------------------------------------ */
.is-show-pc {
  display: block;
}
@media (max-width: 767px) {
  .is-show-pc {
    display: none;
  }
}

.is-show-sp {
  display: none;
}
@media (max-width: 767px) {
  .is-show-sp {
    display: block;
  }
}

/* function
------------------------------------------ */
body {
  overflow: clip;
}
@media (max-width: 767px) {
  body {
    overflow: auto;
  }
}

.main-area {
  padding-top: 0;
}

.global-footer {
  background-color: #fff;
}

/* タブバー透過防止 */
.for-status-bars {
  position: fixed;
  top: 0;
  pointer-events: none;
  height: 5px;
  width: 100%;
  background-color: #000;
  mix-blend-mode: lighten;
}

.for-tab-bars {
  position: fixed;
  bottom: 0;
  pointer-events: none;
  height: 4px;
  width: 100%;
  background-color: #000;
  mix-blend-mode: lighten;
}

.FPM260415BANKLIGHT {
  /* 可変設定
  ------------------------------------------ */
  /*デザインの値*/
  --pc-width: 1400; /*PCデザイン幅*/
  --sp-width: 750; /*SPデザイン幅*/
  --pc-artboard-width: 450; /*SP共通デザイン幅*/
  --sp-artboard-width: 750; /*PC共通デザイン幅*/
  /*可変率の計算式*/
  --formula: calc(
    var(--variable) * var(--ratio)
  ); /*SP,PC共通箇所の可変割合の計算式*/
  --formula_pc: calc(var(--variable) * 1); /*PCデザインの可変割合の計算式*/
  /* PC画面幅 1400px以上 固定 */
}
@media (min-width: 1401px) {
  .FPM260415BANKLIGHT {
    --ratio: calc(
      var(--pc-artboard-width) / var(--sp-artboard-width)
    ); /* PCとSPのデザイン幅の比率 */
    --variable: 1px; /* 固定値（可変しない） */
  }
}
.FPM260415BANKLIGHT {
  /* PC画面幅 768～1400px 可変 */
}
@media (min-width: 768px) and (max-width: 1400px) {
  .FPM260415BANKLIGHT {
    --ratio: calc(
      var(--pc-artboard-width) / var(--sp-artboard-width)
    ); /* PCとSPのデザイン幅の比率 */
    --variable: calc(100vw / var(--pc-width)); /* 画面幅に基づく可変値 */
  }
}
.FPM260415BANKLIGHT {
  /* SP画面幅 767px以下 可変 */
}
@media (max-width: 767px) {
  .FPM260415BANKLIGHT {
    --ratio: 1; /* 比率は1（変わらない） */
    --variable: calc(100vw / var(--sp-width)); /* 画面幅に基づく可変値 */
  }
}
.FPM260415BANKLIGHT {
  /* mixin
  ------------------------------------------ */
  /* reset
  ------------------------------------------ */
}
.FPM260415BANKLIGHT img {
  width: 100%;
  height: auto;
}
.FPM260415BANKLIGHT * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.FPM260415BANKLIGHT {
  /* animation
  ------------------------------------------ */
}
.FPM260415BANKLIGHT .js-fade-up {
  opacity: 0;
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.FPM260415BANKLIGHT .js-fade-up.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.FPM260415BANKLIGHT .js-fade-in {
  opacity: 0;
  -webkit-transition: opacity 2s;
  transition: opacity 2s;
}
.FPM260415BANKLIGHT .js-fade-in.is-active {
  opacity: 1;
}
.FPM260415BANKLIGHT {
  /* LP style
  ------------------------------------------ */
}
.FPM260415BANKLIGHT .fixed-bg {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
}
.FPM260415BANKLIGHT .fixed-bg img {
  height: 100vh;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.FPM260415BANKLIGHT .mv {
  position: relative;
  background-color: #fff;
}
.FPM260415BANKLIGHT .mv-img {
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.FPM260415BANKLIGHT .mv-img.is-active {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}
.FPM260415BANKLIGHT .mv-logo {
  position: absolute;
  top: 15.2%;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  pointer-events: none;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-weight: 600;
  font-variation-settings: "wght" 600;
  font-style: normal;
  font-size: calc(55 * var(--formula_pc));
  letter-spacing: 0.02em;
  color: #fff;
  width: 100%;
  text-align: center;
  overflow: hidden;
}
@media (max-width: 767px) {
  .FPM260415BANKLIGHT .mv-logo {
    font-size: calc(60 * var(--formula));
    top: 41.8%;
  }
}
.FPM260415BANKLIGHT .mv-logo span {
  display: inline-block;
  -webkit-transform: translateY(105%);
          transform: translateY(105%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
.FPM260415BANKLIGHT .mv-logo span.is-active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.FPM260415BANKLIGHT .mv-lead {
  position: absolute;
  bottom: 39%;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  width: calc(400 * var(--formula_pc));
  pointer-events: none;
}
@media (max-width: 767px) {
  .FPM260415BANKLIGHT .mv-lead {
    bottom: 2.2%;
    width: calc(437 * var(--formula));
  }
}
.FPM260415BANKLIGHT .mv-lead img {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  -webkit-transition: clip-path 1.2s cubic-bezier(0.8, 0, 0.15, 1) 1.7s;
  transition: clip-path 1.2s cubic-bezier(0.8, 0, 0.15, 1) 1.7s;
}
.FPM260415BANKLIGHT .mv-lead.is-active img {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.FPM260415BANKLIGHT-container {
  display: grid;
  grid-template-columns: 1fr calc(750 * var(--variable) * var(--ratio)) 1fr;
}
@media (max-width: 767px) {
  .FPM260415BANKLIGHT-container {
    display: block;
  }
}
.FPM260415BANKLIGHT .fixed-left,
.FPM260415BANKLIGHT .fixed-right {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.25);
}
@media (max-width: 767px) {
  .FPM260415BANKLIGHT .fixed-left,
  .FPM260415BANKLIGHT .fixed-right {
    display: none;
  }
}
.FPM260415BANKLIGHT .fixed-left-logo {
  width: calc(325 * var(--formula_pc));
  margin: 0 auto;
}
.FPM260415BANKLIGHT .fixed-right-logo {
  display: block;
  width: calc(226 * var(--formula_pc));
  margin: 0 auto;
}
.FPM260415BANKLIGHT .lp-container {
  width: calc(750 * var(--variable) * var(--ratio));
  margin: 0 auto;
  padding-bottom: calc(112 * var(--formula));
}
.FPM260415BANKLIGHT .txt {
  font-family: "Hiragino Kaku Gothic ProN W5", "ヒラギノ角ゴ ProN W5", "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ", sans-serif;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(23 * var(--formula));
  line-height: 1.95652174;
  color: #fff;
  text-align: center;
  letter-spacing: 0.05em;
}
.FPM260415BANKLIGHT .txt-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc(680 * var(--formula));
  height: calc(220 * var(--formula));
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: calc(10 * var(--formula));
}
.FPM260415BANKLIGHT .txt-wrapper-01 {
  margin: calc(200 * var(--formula)) auto 0;
}
@media (max-width: 767px) {
  .FPM260415BANKLIGHT .txt-wrapper-01 {
    margin: calc(96 * var(--formula)) auto 0;
  }
}
.FPM260415BANKLIGHT .txt-wrapper-02 {
  margin: calc(80 * var(--formula)) auto 0;
}
.FPM260415BANKLIGHT .txt-wrapper-03 {
  margin: calc(95 * var(--formula)) auto 0;
  height: calc(260 * var(--formula));
}
.FPM260415BANKLIGHT .txt-wrapper-03 .txt {
  width: calc(600 * var(--formula));
  line-height: 1.86956522;
  text-align: justify;
  letter-spacing: 0.075em;
}
.FPM260415BANKLIGHT .photo {
  position: relative;
}
.FPM260415BANKLIGHT .photo-01 {
  width: calc(600 * var(--formula));
  margin: calc(155 * var(--formula)) auto 0;
}
@media (max-width: 767px) {
  .FPM260415BANKLIGHT .photo-01 {
    margin: calc(102 * var(--formula)) auto 0;
  }
}
.FPM260415BANKLIGHT .photo-02 {
  width: calc(650 * var(--formula));
  margin: calc(130 * var(--formula)) auto 0;
}
.FPM260415BANKLIGHT .photo-03 {
  width: calc(500 * var(--formula));
  margin: calc(100 * var(--formula)) calc(46 * var(--formula)) 0 auto;
}
.FPM260415BANKLIGHT .photo-04 {
  width: calc(600 * var(--formula));
  margin: calc(98 * var(--formula)) auto 0;
}
.FPM260415BANKLIGHT .photo-05 {
  width: calc(650 * var(--formula));
  margin: calc(100 * var(--formula)) auto 0;
}
.FPM260415BANKLIGHT .photo-06 {
  width: calc(500 * var(--formula));
  margin: calc(100 * var(--formula)) auto 0 calc(52 * var(--formula));
}
.FPM260415BANKLIGHT .photo-07 {
  width: calc(650 * var(--formula));
  margin: calc(80 * var(--formula)) auto 0;
}
.FPM260415BANKLIGHT .photo-08 {
  width: calc(500 * var(--formula));
  margin: calc(100 * var(--formula)) calc(46 * var(--formula)) 0 auto;
}
.FPM260415BANKLIGHT .photo-09 {
  width: calc(600 * var(--formula));
  margin: calc(130 * var(--formula)) auto 0;
}
.FPM260415BANKLIGHT .photo-10 {
  width: calc(500 * var(--formula));
  margin: calc(104 * var(--formula)) auto 0 calc(52 * var(--formula));
}
.FPM260415BANKLIGHT .photo-11 {
  width: calc(500 * var(--formula));
  margin: calc(98 * var(--formula)) calc(46 * var(--formula)) 0 auto;
}
.FPM260415BANKLIGHT .photo-12 {
  width: calc(500 * var(--formula));
  margin: calc(100 * var(--formula)) auto 0;
}