@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
------------------------------------------ */
#footer {
  padding-top: 0;
}

.MO251010furuhata {
  /* 可変設定
  ------------------------------------------ */
  /*デザインの値*/
  --pc-width: 1400; /*PCデザイン幅*/
  --sp-width: 750; /*SPデザイン幅*/
  --pc-artboard-width: 500; /*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
  ------------------------------------------ */
  /* 共通
  ------------------------------------------ */
  /* LP style
  ------------------------------------------ */
}
@media (min-width: 1401px) {
  .MO251010furuhata {
    --ratio: calc(
      var(--pc-artboard-width) / var(--sp-artboard-width)
    ); /* PCとSPのデザイン幅の比率 */
    --variable: 1px; /* 固定値（可変しない） */
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .MO251010furuhata {
    --ratio: calc(
      var(--pc-artboard-width) / var(--sp-artboard-width)
    ); /* PCとSPのデザイン幅の比率 */
    --variable: calc(100vw / var(--pc-width)); /* 画面幅に基づく可変値 */
  }
}
@media (max-width: 767px) {
  .MO251010furuhata {
    --ratio: 1; /* 比率は1（変わらない） */
    --variable: calc(100vw / var(--sp-width)); /* 画面幅に基づく可変値 */
  }
}
.MO251010furuhata img {
  width: 100%;
  height: auto;
}
.MO251010furuhata * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.MO251010furuhata .js-fade-in {
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
.MO251010furuhata .js-fade-in.is-active {
  opacity: 1;
}
.MO251010furuhata .js-fade-to-left {
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  -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;
}
.MO251010furuhata .js-fade-to-left.is-active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.MO251010furuhata .js-fade-to-right {
  opacity: 0;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  -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;
}
.MO251010furuhata .js-fade-to-right.is-active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.MO251010furuhata .js-fade-to-up {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -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;
}
.MO251010furuhata .js-fade-to-up.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.MO251010furuhata .MO251010furuhata-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .MO251010furuhata .MO251010furuhata-container {
    display: block;
  }
}
.MO251010furuhata .mv {
  position: sticky;
  top: 0;
  width: 50%;
  height: 100vh;
  opacity: 0;
  -webkit-transition: opacity 3s;
  transition: opacity 3s;
}
.MO251010furuhata .mv.is-active {
  opacity: 1;
}
@media (max-width: 767px) {
  .MO251010furuhata .mv {
    position: static;
    width: 100%;
    height: auto;
  }
}
.MO251010furuhata .mv a {
  position: relative;
  display: block;
  z-index: 0;
}
.MO251010furuhata .mv-logo {
  width: calc(540 * var(--formula_pc));
  position: absolute;
  left: calc(-5 * var(--formula_pc));
  bottom: calc(4.5 * var(--formula_pc));
  z-index: 1;
}
@media (max-width: 767px) {
  .MO251010furuhata .mv-logo {
    width: calc(578 * var(--formula));
    position: absolute;
    left: calc(-5 * var(--formula));
    bottom: calc(10 * var(--formula));
  }
}
.MO251010furuhata .mv-img {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .MO251010furuhata .mv-img {
    height: auto;
  }
}
.MO251010furuhata .mv-img img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
@media (max-width: 767px) {
  .MO251010furuhata .mv-img img {
    -o-object-fit: fill;
       object-fit: fill;
    height: auto;
  }
}
.MO251010furuhata .lp-container {
  width: 50%;
}
@media (max-width: 767px) {
  .MO251010furuhata .lp-container {
    width: 100%;
  }
}
.MO251010furuhata .lp-cont {
  width: calc(750 * var(--variable) * var(--ratio));
  margin: 0 auto;
}
.MO251010furuhata .hero {
  margin-top: calc(80 * var(--formula));
}
.MO251010furuhata .hero-txt {
  font-family: 游ゴシック体, YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "Open Sans", メイリオ, sans-serif;
  font-size: calc(25 * var(--formula));
  line-height: 2.6;
  letter-spacing: 0.025em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
}
.MO251010furuhata .product01 {
  margin-top: calc(158 * var(--formula));
}
.MO251010furuhata .product01-photo-01 {
  width: calc(750 * var(--formula));
}
.MO251010furuhata .product01-photo-02 {
  width: calc(630 * var(--formula));
  margin: calc(86 * var(--formula)) auto 0;
}
.MO251010furuhata .product01-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(32 * var(--formula));
}
.MO251010furuhata .product01-price a {
  font-family: "operetta-18", serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(25 * var(--formula));
  line-height: 2;
  letter-spacing: 0.05em;
}
.MO251010furuhata .product01-price-01 {
  margin-top: calc(36 * var(--formula));
}
.MO251010furuhata .product02 {
  margin-top: calc(150 * var(--formula));
}
.MO251010furuhata .product02-photo-01 {
  width: calc(630 * var(--formula));
  margin-right: auto;
}
.MO251010furuhata .product02-photo-02 {
  width: calc(610 * var(--formula));
  margin: calc(16 * var(--formula)) 0 0 auto;
}
.MO251010furuhata .product02-photo-03 {
  width: calc(680 * var(--formula));
  margin: calc(90 * var(--formula)) auto 0;
}
.MO251010furuhata .product02-price {
  width: calc(610 * var(--formula));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(32 * var(--formula));
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-left: auto;
}
.MO251010furuhata .product02-price a {
  font-family: "operetta-18", serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(25 * var(--formula));
  line-height: 2;
  letter-spacing: 0.05em;
}
.MO251010furuhata .product02-price-01 {
  margin-top: calc(36 * var(--formula));
}
.MO251010furuhata .product03 {
  margin-top: calc(160 * var(--formula));
}
.MO251010furuhata .product03-photo-01 {
  position: relative;
  z-index: 1;
  width: calc(610 * var(--formula));
  margin-left: auto;
}
.MO251010furuhata .product03-photo-02 {
  width: calc(680 * var(--formula));
  margin: calc(-64 * var(--formula)) auto 0 0;
}
.MO251010furuhata .product03-photo-03 {
  width: calc(750 * var(--formula));
  margin: calc(90 * var(--formula)) auto 0;
}
.MO251010furuhata .product03-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(32 * var(--formula));
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-left: calc(42 * var(--formula));
}
.MO251010furuhata .product03-price a {
  font-family: "operetta-18", serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(25 * var(--formula));
  line-height: 2;
  letter-spacing: 0.05em;
}
.MO251010furuhata .product03-price-01 {
  margin-top: calc(36 * var(--formula));
}
.MO251010furuhata .product04 {
  margin-top: calc(160 * var(--formula));
}
.MO251010furuhata .product04-photo-01 {
  width: calc(630 * var(--formula));
  margin: 0 auto;
}
.MO251010furuhata .product04-photo-02 {
  width: calc(630 * var(--formula));
  margin: calc(16 * var(--formula)) auto 0;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.MO251010furuhata .product04-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(32 * var(--formula));
}
.MO251010furuhata .product04-price a {
  font-family: "operetta-18", serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(25 * var(--formula));
  line-height: 2;
  letter-spacing: 0.05em;
}
.MO251010furuhata .product04-price-01 {
  margin-top: calc(36 * var(--formula));
}
.MO251010furuhata .product05 {
  margin-top: calc(150 * var(--formula));
}
.MO251010furuhata .product05-photo-01 {
  position: relative;
  z-index: 1;
  width: calc(600 * var(--formula));
  margin: 0 auto;
}
.MO251010furuhata .product05-photo-02 {
  width: calc(750 * var(--formula));
  margin: calc(-84 * var(--formula)) auto 0;
}
.MO251010furuhata .product05-photo-03 {
  width: calc(630 * var(--formula));
  margin: calc(86 * var(--formula)) auto 0;
}
.MO251010furuhata .product05-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(32 * var(--formula));
}
.MO251010furuhata .product05-price a {
  font-family: "operetta-18", serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(25 * var(--formula));
  line-height: 2;
  letter-spacing: 0.05em;
}
.MO251010furuhata .product05-price-01 {
  margin-top: calc(36 * var(--formula));
}
.MO251010furuhata .product06 {
  margin-top: calc(150 * var(--formula));
}
.MO251010furuhata .product06-photo-01 {
  position: relative;
  z-index: 1;
  width: calc(610 * var(--formula));
  margin-right: auto;
}
.MO251010furuhata .product06-photo-02 {
  width: calc(710 * var(--formula));
  margin: calc(-64 * var(--formula)) 0 0 auto;
}
.MO251010furuhata .product06-photo-03 {
  width: calc(630 * var(--formula));
  margin: calc(20 * var(--formula)) auto 0;
}
.MO251010furuhata .product06-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(32 * var(--formula));
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  left: calc(42 * var(--formula));
}
.MO251010furuhata .product06-price a {
  font-family: "operetta-18", serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(25 * var(--formula));
  line-height: 2;
  letter-spacing: 0.05em;
}
.MO251010furuhata .product06-price-01 {
  margin-top: calc(36 * var(--formula));
}
.MO251010furuhata .product07 {
  margin-top: calc(150 * var(--formula));
}
.MO251010furuhata .product07-photo-01 {
  width: calc(670 * var(--formula));
  margin-right: auto;
}
.MO251010furuhata .product07-photo-02 {
  width: calc(670 * var(--formula));
  margin: calc(16 * var(--formula)) 0 0 auto;
}
.MO251010furuhata .product07-price {
  position: relative;
  left: calc(82 * var(--formula));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(32 * var(--formula));
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.MO251010furuhata .product07-price a {
  font-family: "operetta-18", serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(25 * var(--formula));
  line-height: 2;
  letter-spacing: 0.05em;
}
.MO251010furuhata .product07-price-01 {
  margin-top: calc(36 * var(--formula));
}
.MO251010furuhata .product08 {
  margin-top: calc(150 * var(--formula));
}
.MO251010furuhata .product08-photo-01 {
  width: calc(750 * var(--formula));
  margin: 0 auto;
}
.MO251010furuhata .product08-photo-02 {
  width: calc(660 * var(--formula));
  margin: calc(86 * var(--formula)) auto 0;
}
.MO251010furuhata .product08-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(32 * var(--formula));
}
.MO251010furuhata .product08-price a {
  font-family: "operetta-18", serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(25 * var(--formula));
  line-height: 2;
  letter-spacing: 0.05em;
}
.MO251010furuhata .product08-price-01 {
  margin-top: calc(36 * var(--formula));
}
.MO251010furuhata .all {
  margin-top: calc(170 * var(--formula));
}
.MO251010furuhata .all-link {
  display: block;
  width: calc(675 * var(--formula));
  margin: 0 auto;
}
.MO251010furuhata .staff {
  margin: calc(136 * var(--formula)) 0 calc(188 * var(--formula));
}
.MO251010furuhata .staff-ttl {
  font-family: "miller-banner-ex-compressed", sans-serif;
  font-weight: 700;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(35 * var(--formula));
  text-align: center;
  letter-spacing: 0.1em;
}
.MO251010furuhata .staff-txt {
  margin-top: calc(12 * var(--formula));
  font-family: "operetta-18", serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(25 * var(--formula));
  text-align: center;
  line-height: 2;
  letter-spacing: 0.05em;
}