@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;
  }
}

.FPM260212GT {
  /* 可変設定
  ------------------------------------------ */
  /*デザインの値*/
  --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以上 固定 */
  /* PC画面幅 768～1400px 可変 */
  /* SP画面幅 767px以下 可変 */
  /* mixin
  ------------------------------------------ */
  /* reset
  ------------------------------------------ */
  /* animation
  ------------------------------------------ */
  /* LP style
  ------------------------------------------ */
  background-color: #ddd;
}
@media (min-width: 1401px) {
  .FPM260212GT {
    --ratio: calc(
      var(--pc-artboard-width) / var(--sp-artboard-width)
    ); /* PCとSPのデザイン幅の比率 */
    --variable: 1px; /* 固定値（可変しない） */
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .FPM260212GT {
    --ratio: calc(
      var(--pc-artboard-width) / var(--sp-artboard-width)
    ); /* PCとSPのデザイン幅の比率 */
    --variable: calc(100vw / var(--pc-width)); /* 画面幅に基づく可変値 */
  }
}
@media (max-width: 767px) {
  .FPM260212GT {
    --ratio: 1; /* 比率は1（変わらない） */
    --variable: calc(100vw / var(--sp-width)); /* 画面幅に基づく可変値 */
  }
}
.FPM260212GT img {
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .FPM260212GT a img {
    -webkit-transition: 0.6s;
    transition: 0.6s;
  }
}
@media (max-width: 767px) {
  .FPM260212GT a:hover img {
    opacity: 0.7;
  }
}
.FPM260212GT * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.FPM260212GT .js-smooth {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  -webkit-transition: clip-path 1.2s ease, visibility 1.2s ease, opacity 1.2s ease;
  transition: clip-path 1.2s ease, visibility 1.2s ease, opacity 1.2s ease;
}
.FPM260212GT .js-smooth.is-active {
  opacity: 1;
  clip-path: inset(0);
}
.FPM260212GT .js-slide {
  opacity: 0;
  -webkit-transition: visibility 1.5s ease, opacity 1.5s ease, -webkit-transform 1.5s ease;
  transition: visibility 1.5s ease, opacity 1.5s ease, -webkit-transform 1.5s ease;
  transition: transform 1.5s ease, visibility 1.5s ease, opacity 1.5s ease;
  transition: transform 1.5s ease, visibility 1.5s ease, opacity 1.5s ease, -webkit-transform 1.5s ease;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}
.FPM260212GT .js-slide.is-active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.FPM260212GT .js-fade-up {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: 1s;
  transition: 1s;
}
.FPM260212GT .js-fade-up.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.FPM260212GT .js-title {
  overflow: hidden;
}
.FPM260212GT .js-title img,
.FPM260212GT .js-title span {
  opacity: 0;
  -webkit-transform: translateY(130%);
          transform: translateY(130%);
  -webkit-transition: 1.2s;
  transition: 1.2s;
}
.FPM260212GT .js-title.is-active img,
.FPM260212GT .js-title.is-active span {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.FPM260212GT .js-mv {
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
}
.FPM260212GT .js-mv.is-active {
  opacity: 1;
}
.FPM260212GT .mv {
  position: relative;
}
.FPM260212GT .mv a {
  position: relative;
  display: block;
  z-index: 0;
}
.FPM260212GT .mv-img {
  height: calc(900 * var(--formula_pc));
  overflow: hidden;
}
.FPM260212GT .mv-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
@media (max-width: 767px) {
  .FPM260212GT .mv-img {
    height: auto;
  }
  .FPM260212GT .mv-img img {
    -o-object-fit: fill;
       object-fit: fill;
  }
}
.FPM260212GT .mv-logo {
  position: absolute;
  top: calc(347 * var(--formula_pc));
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  width: calc(330 * var(--formula_pc));
}
.FPM260212GT .mv-logo img {
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}
@media (max-width: 767px) {
  .FPM260212GT .mv-logo {
    top: calc(144 * var(--formula));
    width: calc(309 * var(--formula));
  }
}
.FPM260212GT .mv-lead {
  margin-top: calc(72 * var(--formula_pc));
}
.FPM260212GT .mv-lead span {
  display: block;
  font-family: "Hiragino Kaku Gothic ProN W7", "ヒラギノ角ゴ ProN W7", "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ", sans-serif;
  font-weight: 700;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(18 * var(--formula_pc));
  line-height: 1.66666667;
  letter-spacing: 0.05em;
  text-align: center;
}
.FPM260212GT .mv-lead span:nth-child(1) {
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}
.FPM260212GT .mv-lead span:nth-child(2) {
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}
@media (max-width: 767px) {
  .FPM260212GT .mv-lead {
    margin-top: 0;
    position: absolute;
    width: 100%;
    bottom: calc(84 * var(--formula));
  }
  .FPM260212GT .mv-lead span {
    font-size: calc(30 * var(--formula));
  }
}
.FPM260212GT .lp-cont {
  width: calc(750 * var(--variable) * var(--ratio));
  margin: 0 auto;
  padding-bottom: calc(130 * var(--formula));
  overflow: clip;
}
.FPM260212GT .hero {
  margin: calc(82 * var(--formula)) auto 0;
  width: calc(650 * var(--formula));
}
.FPM260212GT .hero-ttl {
  width: calc(365 * var(--formula));
  margin: 0 auto;
}
.FPM260212GT .hero-txt-en {
  margin-top: calc(70 * var(--formula));
  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.73913043;
  letter-spacing: 0.1em;
  text-align: left;
}
.FPM260212GT .hero-txt-jp {
  margin-top: calc(58 * var(--formula));
  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.73913043;
  letter-spacing: 0.1em;
  text-align: justify;
}
.FPM260212GT .hero-detail dt {
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: calc(35 * var(--formula));
  letter-spacing: 0.04em;
  position: relative;
}
.FPM260212GT .hero-detail dd {
  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.73913043;
  letter-spacing: 0.1em;
  text-align: justify;
}
.FPM260212GT .hero-detail-fpm {
  margin-top: calc(68 * var(--formula));
}
.FPM260212GT .hero-detail-fpm dt::after {
  content: "";
  width: calc(497 * var(--formula));
  height: 1px;
  background-color: #000;
  position: absolute;
  top: calc(16 * var(--formula));
  right: 0;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.FPM260212GT .hero-detail-fpm dt.is-active::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.FPM260212GT .hero-detail-fpm dd {
  margin-top: calc(5 * var(--formula));
}
.FPM260212GT .hero-detail-glove {
  margin-top: calc(65 * var(--formula));
}
.FPM260212GT .hero-detail-glove dt::after {
  content: "";
  width: calc(453 * var(--formula));
  height: 1px;
  background-color: #000;
  position: absolute;
  top: calc(16 * var(--formula));
  right: 0;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.FPM260212GT .hero-detail-glove dt.is-active::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.FPM260212GT .hero-detail-glove dd {
  margin-top: calc(4 * var(--formula));
}
.FPM260212GT .photo {
  position: relative;
}
.FPM260212GT .photo-01 {
  width: calc(700 * var(--formula));
  margin: calc(130 * var(--formula)) auto 0;
}
.FPM260212GT .photo-02 {
  width: calc(600 * var(--formula));
  margin: calc(122 * var(--formula)) calc(50 * var(--formula)) 0 auto;
}
.FPM260212GT .photo-03 {
  width: calc(600 * var(--formula));
  margin: calc(130 * var(--formula)) calc(100 * var(--formula)) 0 auto;
}
.FPM260212GT .photo-04 {
  width: calc(600 * var(--formula));
  margin: calc(130 * var(--formula)) calc(50 * var(--formula)) 0 auto;
}
.FPM260212GT .photo-05 {
  width: calc(600 * var(--formula));
  margin: calc(132 * var(--formula)) calc(100 * var(--formula)) 0 auto;
}
.FPM260212GT .photo-06 {
  width: calc(750 * var(--formula));
  margin: calc(180 * var(--formula)) auto 0;
}
.FPM260212GT .photo-12 {
  width: calc(750 * var(--formula));
  margin: calc(175 * var(--formula)) auto 0;
}
.FPM260212GT .photo-slider {
  width: 100%;
}
.FPM260212GT .photo-slider-01 {
  margin-top: calc(100 * var(--formula));
}
.FPM260212GT .photo-slider-02 {
  margin-top: calc(100 * var(--formula));
}
.FPM260212GT .photo-slider .swiper-slide {
  width: calc(550 * var(--formula));
  margin-right: calc(10 * var(--formula));
}
.FPM260212GT .photo-slider .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}