@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
------------------------------------------ */
.FU260313garden {
  /* 可変設定
  ------------------------------------------ */
  /*デザインの値*/
  --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) {
  .FU260313garden {
    --ratio: calc(
      var(--pc-artboard-width) / var(--sp-artboard-width)
    ); /* PCとSPのデザイン幅の比率 */
    --variable: 1px; /* 固定値（可変しない） */
  }
}
.FU260313garden {
  /* PC画面幅 768～1400px 可変 */
}
@media (min-width: 768px) and (max-width: 1400px) {
  .FU260313garden {
    --ratio: calc(
      var(--pc-artboard-width) / var(--sp-artboard-width)
    ); /* PCとSPのデザイン幅の比率 */
    --variable: calc(100vw / var(--pc-width)); /* 画面幅に基づく可変値 */
  }
}
.FU260313garden {
  /* SP画面幅 767px以下 可変 */
}
@media (max-width: 767px) {
  .FU260313garden {
    --ratio: 1; /* 比率は1（変わらない） */
    --variable: calc(100vw / var(--sp-width)); /* 画面幅に基づく可変値 */
  }
}
.FU260313garden {
  /* mixin
  ------------------------------------------ */
  /* reset
  ------------------------------------------ */
}
.FU260313garden img {
  width: 100%;
  height: auto;
}
.FU260313garden * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.FU260313garden {
  /* 共通
  ------------------------------------------ */
}
.FU260313garden .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: calc(14 * var(--formula));
  padding-right: calc(20 * var(--formula));
  position: absolute;
  width: 100%;
  bottom: calc(22 * var(--formula));
}
.FU260313garden .swiper-pagination-bullet {
  width: calc(14 * var(--formula));
  height: calc(14 * var(--formula));
  border-radius: 50%;
  border: 2px solid #fff;
  background-color: transparent;
  opacity: 1;
  margin: 0 !important;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.FU260313garden .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #fff;
}
.FU260313garden .decoration {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}
.FU260313garden {
  /* animation
  ------------------------------------------ */
}
.FU260313garden .js-blur {
  opacity: 0;
  -webkit-filter: blur(calc(10 * var(--formula)));
          filter: blur(calc(10 * var(--formula)));
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}
.FU260313garden .js-blur.is-active {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}
.FU260313garden .js-fade-in {
  opacity: 0;
  -webkit-transition: all 1s cubic-bezier(0.85, 0, 0.15, 1);
  transition: all 1s cubic-bezier(0.85, 0, 0.15, 1);
}
.FU260313garden .js-fade-in.is-active {
  opacity: 1;
}
.FU260313garden .js-fade-up {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: 1s;
  transition: 1s;
}
.FU260313garden .js-fade-up.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.FU260313garden .js-fade-to-right {
  opacity: 0;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  -webkit-transition: 1s;
  transition: 1s;
}
.FU260313garden .js-fade-to-right.is-active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.FU260313garden .js-fade-to-left {
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  -webkit-transition: 1s;
  transition: 1s;
}
.FU260313garden .js-fade-to-left.is-active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.FU260313garden .js-mask-diagonally-01 {
  opacity: 0;
  -webkit-filter: blur(5px);
          filter: blur(5px);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
  -webkit-transition: opacity 2s, -webkit-filter 2s;
  transition: opacity 2s, -webkit-filter 2s;
  transition: opacity 2s, filter 2s;
  transition: opacity 2s, filter 2s, -webkit-filter 2s;
  -webkit-mask-position: center 0;
          mask-position: center 0;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(25deg, transparent, transparent 39.6666666667%, rgba(0, 0, 0, 0.02) 43.3333333333%, rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0.18) 46.6666666667%, rgba(0, 0, 0, 0.32) 48.3333333333%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.68) 51.6666666667%, rgba(0, 0, 0, 0.82) 53.3333333333%, rgba(0, 0, 0, 0.92) 55%, rgba(0, 0, 0, 0.98) 56.6666666667%, #000 58.3333333333%, #000);
          mask-image: linear-gradient(25deg, transparent, transparent 39.6666666667%, rgba(0, 0, 0, 0.02) 43.3333333333%, rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0.18) 46.6666666667%, rgba(0, 0, 0, 0.32) 48.3333333333%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.68) 51.6666666667%, rgba(0, 0, 0, 0.82) 53.3333333333%, rgba(0, 0, 0, 0.92) 55%, rgba(0, 0, 0, 0.98) 56.6666666667%, #000 58.3333333333%, #000);
  -webkit-mask-size: 100% max(100%, 250vh);
          mask-size: 100% max(100%, 250vh);
  -webkit-mask-position: center 100%;
          mask-position: center 100%;
  -webkit-mask-repeat: none;
          mask-repeat: none;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: -webkit-mask-position 4s linear;
  transition: -webkit-mask-position 4s linear;
  transition: mask-position 4s linear;
  transition: mask-position 4s linear, -webkit-mask-position 4s linear;
}
.FU260313garden .js-mask-diagonally-01.is-active {
  -webkit-mask-position: center 0;
          mask-position: center 0;
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}
.FU260313garden .js-mask-diagonally-02 {
  opacity: 0;
  -webkit-filter: blur(5px);
          filter: blur(5px);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
  -webkit-transition: opacity 2s, -webkit-filter 2s;
  transition: opacity 2s, -webkit-filter 2s;
  transition: opacity 2s, filter 2s;
  transition: opacity 2s, filter 2s, -webkit-filter 2s;
  -webkit-mask-position: center 0;
          mask-position: center 0;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(-25deg, transparent, transparent 39.6666666667%, rgba(0, 0, 0, 0.02) 43.3333333333%, rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0.18) 46.6666666667%, rgba(0, 0, 0, 0.32) 48.3333333333%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.68) 51.6666666667%, rgba(0, 0, 0, 0.82) 53.3333333333%, rgba(0, 0, 0, 0.92) 55%, rgba(0, 0, 0, 0.98) 56.6666666667%, #000 58.3333333333%, #000);
          mask-image: linear-gradient(-25deg, transparent, transparent 39.6666666667%, rgba(0, 0, 0, 0.02) 43.3333333333%, rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0.18) 46.6666666667%, rgba(0, 0, 0, 0.32) 48.3333333333%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.68) 51.6666666667%, rgba(0, 0, 0, 0.82) 53.3333333333%, rgba(0, 0, 0, 0.92) 55%, rgba(0, 0, 0, 0.98) 56.6666666667%, #000 58.3333333333%, #000);
  -webkit-mask-size: 100% max(100%, 250vh);
          mask-size: 100% max(100%, 250vh);
  -webkit-mask-position: center 100%;
          mask-position: center 100%;
  -webkit-mask-repeat: none;
          mask-repeat: none;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: -webkit-mask-position 4s linear;
  transition: -webkit-mask-position 4s linear;
  transition: mask-position 4s linear;
  transition: mask-position 4s linear, -webkit-mask-position 4s linear;
}
.FU260313garden .js-mask-diagonally-02.is-active {
  -webkit-mask-position: center 0;
          mask-position: center 0;
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}
.FU260313garden .js-mask-diagonally-03 {
  opacity: 0;
  -webkit-filter: blur(5px);
          filter: blur(5px);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
  -webkit-transition: opacity 2s, -webkit-filter 2s;
  transition: opacity 2s, -webkit-filter 2s;
  transition: opacity 2s, filter 2s;
  transition: opacity 2s, filter 2s, -webkit-filter 2s;
  -webkit-mask-position: center 0;
          mask-position: center 0;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  width: 100%;
  -webkit-mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(39.6666666667%, transparent), color-stop(43.3333333333%, rgba(0, 0, 0, 0.02)), color-stop(45%, rgba(0, 0, 0, 0.08)), color-stop(46.6666666667%, rgba(0, 0, 0, 0.18)), color-stop(48.3333333333%, rgba(0, 0, 0, 0.32)), color-stop(50%, rgba(0, 0, 0, 0.5)), color-stop(51.6666666667%, rgba(0, 0, 0, 0.68)), color-stop(53.3333333333%, rgba(0, 0, 0, 0.82)), color-stop(55%, rgba(0, 0, 0, 0.92)), color-stop(56.6666666667%, rgba(0, 0, 0, 0.98)), color-stop(58.3333333333%, #000), to(#000));
  -webkit-mask-image: linear-gradient(0deg, transparent, transparent 39.6666666667%, rgba(0, 0, 0, 0.02) 43.3333333333%, rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0.18) 46.6666666667%, rgba(0, 0, 0, 0.32) 48.3333333333%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.68) 51.6666666667%, rgba(0, 0, 0, 0.82) 53.3333333333%, rgba(0, 0, 0, 0.92) 55%, rgba(0, 0, 0, 0.98) 56.6666666667%, #000 58.3333333333%, #000);
          mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(39.6666666667%, transparent), color-stop(43.3333333333%, rgba(0, 0, 0, 0.02)), color-stop(45%, rgba(0, 0, 0, 0.08)), color-stop(46.6666666667%, rgba(0, 0, 0, 0.18)), color-stop(48.3333333333%, rgba(0, 0, 0, 0.32)), color-stop(50%, rgba(0, 0, 0, 0.5)), color-stop(51.6666666667%, rgba(0, 0, 0, 0.68)), color-stop(53.3333333333%, rgba(0, 0, 0, 0.82)), color-stop(55%, rgba(0, 0, 0, 0.92)), color-stop(56.6666666667%, rgba(0, 0, 0, 0.98)), color-stop(58.3333333333%, #000), to(#000));
          mask-image: linear-gradient(0deg, transparent, transparent 39.6666666667%, rgba(0, 0, 0, 0.02) 43.3333333333%, rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0.18) 46.6666666667%, rgba(0, 0, 0, 0.32) 48.3333333333%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.68) 51.6666666667%, rgba(0, 0, 0, 0.82) 53.3333333333%, rgba(0, 0, 0, 0.92) 55%, rgba(0, 0, 0, 0.98) 56.6666666667%, #000 58.3333333333%, #000);
  -webkit-mask-size: 100% max(100%, 250vh);
          mask-size: 100% max(100%, 250vh);
  -webkit-mask-position: center 100%;
          mask-position: center 100%;
  -webkit-mask-repeat: none;
          mask-repeat: none;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: -webkit-mask-position 4s linear;
  transition: -webkit-mask-position 4s linear;
  transition: mask-position 4s linear;
  transition: mask-position 4s linear, -webkit-mask-position 4s linear;
}
.FU260313garden .js-mask-diagonally-03.is-active {
  -webkit-mask-position: center 0;
          mask-position: center 0;
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}
.FU260313garden {
  /* LP style
  ------------------------------------------ */
}
.FU260313garden-container {
  display: grid;
  grid-template-columns: 1fr calc(750 * var(--variable) * var(--ratio)) 1fr;
  background-color: #faecf0;
  margin-bottom: calc(260 * var(--variable) * var(--ratio));
}
@media (max-width: 767px) {
  .FU260313garden-container {
    display: block;
    margin-bottom: calc(130 * var(--formula));
  }
}
.FU260313garden .fixed-left,
.FU260313garden .fixed-right {
  position: sticky;
  top: 12.3rem;
  height: calc(100vh - 12.3rem);
  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;
}
@media (max-width: 767px) {
  .FU260313garden .fixed-left,
  .FU260313garden .fixed-right {
    display: none;
  }
}
.FU260313garden .fixed-left-logo {
  width: calc(340 * var(--formula_pc));
  margin: 0 auto;
  opacity: 0;
  -webkit-filter: blur(calc(10 * var(--formula)));
          filter: blur(calc(10 * var(--formula)));
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}
.FU260313garden .fixed-left-logo.is-active {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}
.FU260313garden .fixed-right-link {
  display: block;
  width: calc(183 * var(--formula_pc));
  margin: 0 auto;
  opacity: 0;
  -webkit-filter: blur(calc(10 * var(--formula)));
          filter: blur(calc(10 * var(--formula)));
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}
.FU260313garden .fixed-right-link.is-active {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}
.FU260313garden .lp-container {
  width: calc(750 * var(--variable) * var(--ratio));
  margin: 0 auto;
  background-color: #fff;
  overflow: clip;
}
.FU260313garden {
  /* mv
  ------------------------------------------ */
}
.FU260313garden .mv a {
  position: relative;
  z-index: 0;
}
.FU260313garden {
  /* hero
  ------------------------------------------ */
}
.FU260313garden .hero {
  padding: calc(104 * var(--formula)) 0 calc(120 * var(--formula));
}
.FU260313garden .hero-txt {
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 300;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(24 * var(--formula));
  line-height: 2.2;
  letter-spacing: 0.05em;
  text-align: center;
  font-feature-settings: "palt";
  color: #333;
}
.FU260313garden .hero-date {
  margin: calc(72 * var(--formula)) auto 0;
  width: calc(491 * var(--formula));
}
.FU260313garden {
  /* bg-flower
  ------------------------------------------ */
}
.FU260313garden .bg-flower {
  position: relative;
}
.FU260313garden .bg-flower-cont {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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;
  overflow: hidden;
  pointer-events: none;
}
.FU260313garden .bg-flower-img {
  position: absolute;
  top: calc(-50 * var(--formula));
  pointer-events: none;
  z-index: 2;
  -webkit-animation: fall 10s linear infinite, rotate1 2s ease-in-out infinite alternate;
          animation: fall 10s linear infinite, rotate1 2s ease-in-out infinite alternate;
}
.FU260313garden .bg-flower-img-01 {
  width: calc(20 * var(--formula));
  left: 0;
  -webkit-animation: fall 10s linear infinite, rotate1 3s ease-in-out infinite alternate;
          animation: fall 10s linear infinite, rotate1 3s ease-in-out infinite alternate;
}
.FU260313garden .bg-flower-img-02 {
  width: calc(30 * var(--formula));
  left: 5vw;
  -webkit-animation: fall 20s linear infinite, rotate1 2s ease-in-out infinite alternate;
          animation: fall 20s linear infinite, rotate1 2s ease-in-out infinite alternate;
}
.FU260313garden .bg-flower-img-03 {
  width: calc(45 * var(--formula));
  left: 15vw;
  -webkit-animation: fall 14s linear infinite, rotate1 3.5s ease-in-out infinite alternate;
          animation: fall 14s linear infinite, rotate1 3.5s ease-in-out infinite alternate;
}
.FU260313garden .bg-flower-img-04 {
  width: calc(25 * var(--formula));
  left: 30vw;
  -webkit-animation: fall 12s linear infinite, rotate2 4s ease-in-out infinite alternate;
          animation: fall 12s linear infinite, rotate2 4s ease-in-out infinite alternate;
}
.FU260313garden .bg-flower-img-05 {
  width: calc(20 * var(--formula));
  left: 40vw;
  -webkit-animation: fall 16s linear infinite, rotate1 4s ease-in-out infinite alternate;
          animation: fall 16s linear infinite, rotate1 4s ease-in-out infinite alternate;
}
.FU260313garden .bg-flower-img-06 {
  width: calc(32 * var(--formula));
  left: 55vw;
  -webkit-animation: fall 15s linear infinite, rotate2 3s ease-in-out infinite alternate;
          animation: fall 15s linear infinite, rotate2 3s ease-in-out infinite alternate;
}
@-webkit-keyframes fall {
  to {
    top: 120%;
  }
}
@keyframes fall {
  to {
    top: 120%;
  }
}
@-webkit-keyframes rotate1 {
  from {
    -webkit-transform: translateX(0px) rotate(0deg);
            transform: translateX(0px) rotate(0deg);
  }
  to {
    -webkit-transform: translateX(calc(200 * var(--formula))) rotate(-80deg) rotateX(180deg);
            transform: translateX(calc(200 * var(--formula))) rotate(-80deg) rotateX(180deg);
  }
}
@keyframes rotate1 {
  from {
    -webkit-transform: translateX(0px) rotate(0deg);
            transform: translateX(0px) rotate(0deg);
  }
  to {
    -webkit-transform: translateX(calc(200 * var(--formula))) rotate(-80deg) rotateX(180deg);
            transform: translateX(calc(200 * var(--formula))) rotate(-80deg) rotateX(180deg);
  }
}
@-webkit-keyframes rotate2 {
  from {
    -webkit-transform: translateX(calc(200 * var(--formula))) rotate(-45deg);
            transform: translateX(calc(200 * var(--formula))) rotate(-45deg);
  }
  to {
    -webkit-transform: translateX(0px) rotate(0deg);
            transform: translateX(0px) rotate(0deg);
  }
}
@keyframes rotate2 {
  from {
    -webkit-transform: translateX(calc(200 * var(--formula))) rotate(-45deg);
            transform: translateX(calc(200 * var(--formula))) rotate(-45deg);
  }
  to {
    -webkit-transform: translateX(0px) rotate(0deg);
            transform: translateX(0px) rotate(0deg);
  }
}
.FU260313garden {
  /* product
  ------------------------------------------ */
}
.FU260313garden .product01 {
  padding-bottom: calc(188 * var(--formula));
}
.FU260313garden .product01-photo-01 {
  width: calc(660 * var(--formula));
  margin: 0 auto;
}
.FU260313garden .product01-photo-02 {
  width: calc(750 * var(--formula));
  margin: calc(60 * var(--formula)) auto 0;
}
.FU260313garden .product01-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(20 * var(--formula));
}
.FU260313garden .product01-price a {
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(22 * var(--formula));
  line-height: 2;
  letter-spacing: 0.035em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #dd8198;
}
.FU260313garden .product01-price:nth-child(1 of .product01-price) {
  margin-top: calc(30 * var(--formula));
}
.FU260313garden .product02 {
  position: relative;
  padding-bottom: calc(200 * var(--formula));
}
.FU260313garden .product02-photo-01 {
  width: calc(540 * var(--formula));
  margin: 0 auto 0 calc(40 * var(--formula));
  opacity: 0;
  -webkit-transition: all 1s cubic-bezier(0.85, 0, 0.15, 1);
  transition: all 1s cubic-bezier(0.85, 0, 0.15, 1);
}
.FU260313garden .product02-photo-01.is-active {
  opacity: 1;
}
.FU260313garden .product02-photo-02 {
  width: calc(460 * var(--formula));
  margin: calc(-22 * var(--formula)) 0 0 auto;
  position: relative;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 1s cubic-bezier(0.85, 0, 0.15, 1);
  transition: all 1s cubic-bezier(0.85, 0, 0.15, 1);
}
.FU260313garden .product02-photo-02.is-active {
  opacity: 1;
}
.FU260313garden .product02-photo-03 {
  width: calc(390 * var(--formula));
  margin: calc(-240 * var(--formula)) auto 0 0;
  position: relative;
  z-index: 2;
  opacity: 0;
  -webkit-transition: all 1s cubic-bezier(0.85, 0, 0.15, 1);
  transition: all 1s cubic-bezier(0.85, 0, 0.15, 1);
}
.FU260313garden .product02-photo-03.is-active {
  opacity: 1;
}
.FU260313garden .product02-photo-04 {
  width: calc(540 * var(--formula));
  margin: calc(100 * var(--formula)) calc(40 * var(--formula)) 0 auto;
  position: relative;
  z-index: 2;
  opacity: 0;
  -webkit-transition: all 1s cubic-bezier(0.85, 0, 0.15, 1);
  transition: all 1s cubic-bezier(0.85, 0, 0.15, 1);
}
.FU260313garden .product02-photo-04.is-active {
  opacity: 1;
}
.FU260313garden .product02-price {
  position: absolute;
  bottom: calc(648 * var(--formula));
  right: calc(40 * var(--formula));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(20 * var(--formula));
}
.FU260313garden .product02-price a {
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(22 * var(--formula));
  line-height: 2;
  letter-spacing: 0.035em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #dd8198;
}
.FU260313garden .product02-price {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(0 * var(--formula));
}
.FU260313garden .product03-photo-01 {
  width: calc(750 * var(--formula));
  margin: 0 auto;
  position: sticky;
  top: calc((100vh - 980 * var(--formula)) / 2);
}
.FU260313garden .product03-photo-02 {
  position: relative;
  z-index: 1;
  width: calc(520 * var(--formula));
  margin: calc(100 * var(--formula)) auto 0;
  padding-bottom: calc(100 * var(--formula));
}
.FU260313garden .product03-photo-03 {
  width: calc(460 * var(--formula));
  margin: calc(118 * var(--formula)) calc(40 * var(--formula)) 0 auto;
}
.FU260313garden .product03-photo-04 {
  width: calc(520 * var(--formula));
  margin: calc(60 * var(--formula)) auto 0 calc(40 * var(--formula));
}
.FU260313garden .product03-price {
  width: calc(520 * var(--formula));
  margin: calc(0 * var(--formula)) auto 0 calc(40 * var(--formula));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(20 * var(--formula));
}
.FU260313garden .product03-price a {
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(22 * var(--formula));
  line-height: 2;
  letter-spacing: 0.035em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #dd8198;
}
.FU260313garden .product03-price {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.FU260313garden .product03-price-01 {
  margin-top: calc(28 * var(--formula));
}
.FU260313garden .product04 {
  position: relative;
  margin-top: calc(190 * var(--formula));
}
.FU260313garden .product04-img-01 {
  top: calc(-24 * var(--formula));
  left: calc(0 * var(--formula));
  width: calc(195 * var(--formula));
}
.FU260313garden .product04-img-02 {
  top: calc(756 * var(--formula));
  right: calc(0 * var(--formula));
  width: calc(208 * var(--formula));
}
.FU260313garden .product04-photo-01 {
  width: calc(600 * var(--formula));
  margin: 0 auto;
}
.FU260313garden .product04-slider {
  margin: calc(140 * var(--formula)) auto 0;
  width: calc(750 * var(--formula));
}
.FU260313garden .product04-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(20 * var(--formula));
}
.FU260313garden .product04-price a {
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(22 * var(--formula));
  line-height: 2;
  letter-spacing: 0.035em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #dd8198;
}
.FU260313garden .product04-price-01 {
  margin-top: calc(28 * var(--formula));
}
.FU260313garden .product05 {
  position: relative;
  margin-top: calc(190 * var(--formula));
}
.FU260313garden .product05-photo-01 {
  width: calc(750 * var(--formula));
  margin: 0 auto;
  position: sticky;
  top: calc((100vh - 1120 * var(--formula)) / 2);
  min-height: calc(1120 * var(--formula));
}
.FU260313garden .product05-photo-02 {
  width: calc(750 * var(--formula));
  margin: calc(900 * var(--formula)) auto 0;
  position: sticky;
  top: calc((100vh - 1120 * var(--formula)) / 2 + 570 * var(--formula));
}
.FU260313garden .product05-photo-03 {
  width: calc(660 * var(--formula));
  margin: calc(20 * var(--formula)) auto 0;
  position: relative;
  z-index: 2;
  padding-bottom: calc(65 * var(--formula));
}
.FU260313garden .product05-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(20 * var(--formula));
}
.FU260313garden .product05-price a {
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(22 * var(--formula));
  line-height: 2;
  letter-spacing: 0.035em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #dd8198;
}
.FU260313garden .product05-price-01 {
  margin-top: calc(30 * var(--formula));
}
.FU260313garden .product06 {
  position: relative;
  margin-top: calc(188 * var(--formula));
}
.FU260313garden .product06-sticky {
  position: relative;
}
.FU260313garden .product06-img-01 {
  top: calc(-78 * var(--formula));
  right: calc(-90 * var(--formula));
  width: calc(124 * var(--formula));
}
.FU260313garden .product06-img-02 {
  top: calc(514 * var(--formula));
  left: calc(-86 * var(--formula));
  width: calc(160 * var(--formula));
}
.FU260313garden .product06-photo-01 {
  width: calc(540 * var(--formula));
  margin: 0 auto;
  position: sticky;
  top: calc((100vh - 680 * var(--formula)) / 2);
}
.FU260313garden .product06-photo-02 {
  width: calc(420 * var(--formula));
  margin: calc(60 * var(--formula)) auto 0;
  padding-bottom: calc(60 * var(--formula));
  position: relative;
  z-index: 1;
}
.FU260313garden .product06-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(20 * var(--formula));
}
.FU260313garden .product06-price a {
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(22 * var(--formula));
  line-height: 2;
  letter-spacing: 0.035em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #dd8198;
}
.FU260313garden .product06-price-01 {
  margin-top: calc(30 * var(--formula));
}
.FU260313garden .product07 {
  margin-top: calc(200 * var(--formula));
}
.FU260313garden .product07-photo-01 {
  width: calc(540 * var(--formula));
  margin: 0 auto;
}
.FU260313garden .product07-photo-02 {
  width: calc(540 * var(--formula));
  margin: calc(120 * var(--formula)) auto 0;
}
.FU260313garden .product07-photo-03 {
  width: calc(750 * var(--formula));
  margin: calc(120 * var(--formula)) auto 0;
}
.FU260313garden .product07-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(20 * var(--formula));
}
.FU260313garden .product07-price a {
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(22 * var(--formula));
  line-height: 2;
  letter-spacing: 0.035em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #dd8198;
}
.FU260313garden .product07-price-01 {
  margin-top: calc(30 * var(--formula));
}
.FU260313garden .product08 {
  margin-top: calc(190 * var(--formula));
}
.FU260313garden .product08-photo-01 {
  width: calc(750 * var(--formula));
  margin: 0 auto;
}
.FU260313garden .product08-photo-02 {
  width: calc(570 * var(--formula));
  margin: calc(100 * var(--formula)) auto 0;
}
.FU260313garden .product08-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(20 * var(--formula));
}
.FU260313garden .product08-price a {
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(22 * var(--formula));
  line-height: 2;
  letter-spacing: 0.035em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #dd8198;
}
.FU260313garden .product08-price-01 {
  margin-top: calc(30 * var(--formula));
}
.FU260313garden .product09 {
  position: relative;
  margin-top: calc(190 * var(--formula));
}
.FU260313garden .product09-photo-01 {
  width: calc(520 * var(--formula));
  margin: calc(0 * var(--formula)) auto 0;
}
.FU260313garden .product09-photo-02 {
  width: calc(520 * var(--formula));
  margin: calc(40 * var(--formula)) auto 0;
}
.FU260313garden .product09-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(20 * var(--formula));
}
.FU260313garden .product09-price a {
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(22 * var(--formula));
  line-height: 2;
  letter-spacing: 0.035em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #dd8198;
}
.FU260313garden .product09-price-01 {
  margin-top: calc(30 * var(--formula));
}
.FU260313garden .product10 {
  position: relative;
  margin-top: calc(188 * var(--formula));
}
.FU260313garden .product10-img-01 {
  top: calc(1164 * var(--formula));
  right: calc(20 * var(--formula));
  width: calc(215 * var(--formula));
}
.FU260313garden .product10-img-02 {
  top: calc(1997 * var(--formula));
  left: calc(10 * var(--formula));
  width: calc(210 * var(--formula));
}
.FU260313garden .product10-photo-01 {
  width: calc(450 * var(--formula));
  margin: calc(100 * var(--formula)) auto 0 calc(40 * var(--formula));
}
.FU260313garden .product10-photo-02 {
  width: calc(510 * var(--formula));
  margin: calc(98 * var(--formula)) 0 0 auto;
}
.FU260313garden .product10-slider {
  width: calc(750 * var(--formula));
}
.FU260313garden .product10-price {
  position: absolute;
  top: calc(1658 * var(--formula));
  right: calc(40 * var(--formula));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(20 * var(--formula));
}
.FU260313garden .product10-price a {
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(22 * var(--formula));
  line-height: 2;
  letter-spacing: 0.035em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #dd8198;
}
.FU260313garden .product10-price {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(0 * var(--formula));
}
.FU260313garden .product11 {
  margin-top: calc(200 * var(--formula));
}
.FU260313garden .product11-slider {
  width: calc(600 * var(--formula));
}
.FU260313garden .product11-photo-01 {
  width: calc(600 * var(--formula));
  margin: calc(40 * var(--formula)) auto 0;
}
.FU260313garden .product11-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(20 * var(--formula));
}
.FU260313garden .product11-price a {
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(22 * var(--formula));
  line-height: 2;
  letter-spacing: 0.035em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #dd8198;
}
.FU260313garden .product11-price-01 {
  margin-top: calc(30 * var(--formula));
}
.FU260313garden .product12 {
  margin-top: calc(200 * var(--formula));
}
.FU260313garden .product12-slider {
  width: calc(750 * var(--formula));
}
.FU260313garden .product12-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(20 * var(--formula));
}
.FU260313garden .product12-price a {
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(22 * var(--formula));
  line-height: 2;
  letter-spacing: 0.035em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #dd8198;
}
.FU260313garden .product12-price-01 {
  margin-top: calc(30 * var(--formula));
}
.FU260313garden .product13 {
  position: relative;
  margin-top: calc(186 * var(--formula));
}
.FU260313garden .product13-img-01 {
  top: calc(-40 * var(--formula));
  right: calc(20 * var(--formula));
  width: calc(140 * var(--formula));
}
.FU260313garden .product13-img-02 {
  bottom: calc(90 * var(--formula));
  left: calc(20 * var(--formula));
  width: calc(125 * var(--formula));
}
.FU260313garden .product13-slider {
  width: calc(600 * var(--formula));
}
.FU260313garden .product13-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(20 * var(--formula));
}
.FU260313garden .product13-price a {
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(22 * var(--formula));
  line-height: 2;
  letter-spacing: 0.035em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #dd8198;
}
.FU260313garden .product13-price-01 {
  margin-top: calc(30 * var(--formula));
}
.FU260313garden {
  /* all
  ------------------------------------------ */
}
.FU260313garden .all {
  padding: calc(250 * var(--formula)) 0 calc(0 * var(--formula));
}
.FU260313garden .all-link {
  display: block;
  width: calc(560 * var(--formula));
  margin: 0 auto;
}
.FU260313garden {
  /* staff
  ------------------------------------------ */
}
.FU260313garden .staff {
  padding: calc(260 * var(--formula)) 0 calc(164 * var(--formula));
}
.FU260313garden .staff-photo-01 {
  width: calc(660 * var(--formula));
  margin: 0 auto;
}
.FU260313garden .staff-txt {
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(24 * var(--formula));
  line-height: 2;
  letter-spacing: 0.035em;
  color: #fff;
  text-align: center;
}
.FU260313garden .staff-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(660 * var(--formula));
  height: calc(440 * var(--formula));
  margin: calc(20 * var(--formula)) auto 0;
  background-image: url("../img/staff_photo_02.jpg");
  background-size: contain;
}