@charset "UTF-8";
:root {
  --font: hiragino-kaku-gothic-pron, sans-serif;
  --font-en: swiss-721-bt-extended, sans-serif;
  --font-credit: swiss-721-bt-extended, sans-serif;
  --font-mincho: NotoSerifJP, ＭＳ Ｐ明朝, MS PMincho, serif;
  --pc-width: 1400;
  --tb-width: 768;
  --sp-width: 375;
}

* > .main-area {
  font-family: var(--font);
  font-weight: var(--fontweight-medium);
  font-feature-settings: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: unset;
  min-width: auto;
}

/* ▼ -----------可変設定---------- ▼ */
.babymonser_lp {
  --pc-width: 1400; /*PCデザイン幅*/
  --sp-width: 375; /*SPデザイン幅*/
  --pc-artboard-width: 375; /*SP共通デザイン幅*/
  --sp-artboard-width: 375; /*PC共通デザイン幅*/
  --formula: calc(var(--variable) * var(--ratio)); /*SP→PC 可変設定*/
  --formula_pc: calc(var(--variable) * 1); /*PC 1400以上は固定*/
}

/* --formulaの補足
  SPの値 × SP→PCの縮小率 × 画面幅に基づく可変値

  例）PC1400px　SP750pxのデザイン
  　　PC共通部分:500px　SP共通部分:750px
  　　PC、SP共通デザインwidth:100pxの場合

  ▼記述 pc表示時に(500/750)を掛ける
  width: calc(100* var(--variable)* var(--ratio));

　▼PC固定幅の計算
　100×0.6666666666666667×1=66.66666666666667px

　▼PC可変の計算
　100×0.6666666666666667×(100vw/1400)=calc(66.66666666666667 * (100vw/1400));

　▼SP可変の計算
　100×1×(100vw/750)=calc(100 * (100vw/750));
*/
/* PC画面幅 1400px以上 固定 */
@media (min-width: 1401px) {
  .babymonser_lp {
    --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width)); /* PCとSPのデザイン幅の比率 */
    /*--variable: 1px;*/ /* 固定値（可変しない）*/
    --variable: calc(100vw / var(--pc-width)); /* 画面幅に基づく可変値 */
  }
}
/* PC画面幅 768～1400px 可変 */
@media (min-width: 768px) and (max-width: 1400px) {
  .babymonser_lp {
    --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width)); /* PCとSPのデザイン幅の比率 */
    --variable: calc(100vw / var(--pc-width)); /* 画面幅に基づく可変値 */
  }
}
/* SP画面幅 767px以下 可変 */
@media (max-width: 767px) {
  .babymonser_lp {
    --ratio: 1; /* 比率は1（変わらない） */
    --variable: calc(100vw / var(--sp-width)); /* 画面幅に基づく可変値 */
  }
}
/* ▲ -----------可変設定---------- ▲ */
.main-area * {
  box-sizing: border-box;
}
.main-area img {
  height: auto;
  opacity: 1;
  width: 100%;
}
.main-area a {
  text-decoration: none;
}
.main-area picture {
  display: block;
}
.main-area p, .main-area ul, .main-area ol, .main-area dl {
  list-style: none;
}
@media only screen and (max-width: 767px) {
  .main-area .pc_only {
    display: none;
  }
  .main-area .sp_only {
    display: block;
  }
}

@media only screen and (min-width: 768px) {
  .main-area .pc_only {
    display: block;
  }
  .main-area .sp_only {
    display: none;
  }
}
.js-fadeIn-load {
  filter: blur(5px);
  opacity: 0;
  transition: all 1.1s ease;
}

.js-fadeIn-load--02 {
  opacity: 0;
  transition: opacity 1s 0.8s;
}

.js-fadeIn-load.js-active, .js-fadeIn-load--02.js-active {
  filter: blur(0);
  opacity: 1;
}

.js-blur-zoom-load {
  filter: blur(10px);
  transform: scale(1.02);
  opacity: 0;
  transition: all 1.1s ease;
}

.js-blur-zoom-load.js-active {
  filter: blur(0);
  transform: scale(1);
  opacity: 1;
}

.js-fadeUp-load {
  opacity: 0;
  transition: opacity 1s, transform 1s;
  transform: translateY(10px);
}

.js-fadeUp-load.js-active {
  opacity: 1;
  transform: translateY(0);
}

.js-fadeUp-load--02 {
  opacity: 0;
  transition: opacity 1s, transform 1s;
  transform: translateY(3rem);
}

.js-fadeUp-load--02.js-active {
  opacity: 1;
  transform: translateY(0);
}

.js-fadeUp, .js-fadeUp-credit {
  opacity: 0;
  transition: ease-in, opacity 1s, transform 0.5s;
  transform: translateY(10rem);
}

.js-fadeUp.js-active, .js-fadeUp-credit.js-active {
  opacity: 1;
  transform: translateY(0);
}

.js-fadeUpLate {
  opacity: 0;
  transition: all 1s 0.3s ease;
  transform: translateY(30px);
}

.js-fadeUpLate.js-active {
  opacity: 1;
  transform: translateY(0);
}

.js-fade_late {
  opacity: 0;
  transition: all 1s 0.6s ease;
  transform: translateY(30px);
}

.js-fade_late.js-active {
  opacity: 1;
  transform: translateY(0);
}

.js-fadeLeft {
  filter: blur(5px);
  opacity: 0;
  transition: all 1.1s ease;
  transform: translateX(-30px);
}

.js-fadeRight {
  filter: blur(5px);
  opacity: 0;
  transition: all 1.1s ease;
  transform: translateX(30px);
}

.js-fadeLeft.js-active, .js-fadeRight.js-active {
  filter: blur(0);
  opacity: 1;
  transform: translateX(0);
}

.js-fadeIn {
  opacity: 0;
  transition: all 0 ease;
}

.js-fadeIn.js-active {
  opacity: 1;
}

.js-show {
  opacity: 0;
  transition: all 0s 0.1s;
}

.js-show.js-active {
  opacity: 1;
}

.js-show-late {
  opacity: 0;
  transition: all 0s 0.6s;
}

.js-show-late.js-active {
  opacity: 1;
}

.js-arrow img {
  transform: translateY(-100%);
  transition: transform 0.8s ease-in-out;
}

.js-arrow.js-active img {
  transform: translateY(0);
}

.js-blur-zoom {
  filter: blur(10px);
  transform: scale(1.02);
  opacity: 0;
  transition: all 1.1s ease;
}

.js-blur-zoom.js-active {
  filter: blur(0);
  transform: scale(1);
  opacity: 1;
}

.js-clip {
  display: block;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s 0s linear;
}

.js-clip.js-active {
  clip-path: inset(0 0 0 0);
}

.move__rotation {
  animation: move__rotation 10s linear infinite;
}

@keyframes move__rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.move__rotation_15 {
  animation: move__rotation_15 3s 1s linear infinite;
}

@keyframes move__rotation_15 {
  0% {
    transform: rotate(-15deg);
  }
  50% {
    transform: rotate(15deg);
  }
  100% {
    transform: rotate(-15deg);
  }
}
@keyframes move__up {
  0% {
    transform: translateY(100vh);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes line_move {
  0% {
    transform: translate(0px, -200%);
  }
  100% {
    transform: translate(0px, 200%);
  }
}
.js-fadeMask {
  position: relative;
}
.js-fadeMask::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  height: 100%;
  width: calc(325 * var(--formula));
  z-index: 1;
  transition: height 0.6s 0s linear;
}

.js-fadeMask.js-active::after {
  height: 0;
}

.product__image--01_1 .product__image-inner::after {
  background-color: #95DDB5;
}

.product__image--01_2 .product__image-inner::after {
  background-color: #FEA4CB;
}

.product__image--01_3 .product__image-inner::after {
  background-color: #69C6DB;
}

.product__image--01_4 .product__image-inner::after {
  background-color: #FFA53C;
}

.product__image--01_5 .product__image-inner::after {
  background-color: #B9A4E1;
}

.product__image--01_6 .product__image-inner::after {
  background-color: #F4E357;
}

.js-actionTrigger .middle__title--01 {
  opacity: 0;
  transform: translateY(10rem);
  transition: ease-in, opacity 1s 0s, transform 0.5s 0s;
}
.js-actionTrigger .middle__title--02 {
  opacity: 0;
  transform: translateY(10rem);
  transition: ease-in, opacity 1s 1.5s, transform 0.5s 1.5s;
}
.js-actionTrigger .product__image {
  opacity: 0;
  transform: translateY(10rem);
  transition: ease-in, opacity 1s 0.5s, transform 0.5s 0.5s;
}
.js-actionTrigger .line__wrap-static .line__inner {
  transition: clip-path 1s 1s;
  clip-path: inset(0 0 100% 0);
}

.js-actionTrigger.js-active .middle__title {
  opacity: 1;
  transform: translateY(0);
}
.js-actionTrigger.js-active .product__image {
  opacity: 1;
  transform: translateY(0);
}
.js-actionTrigger.js-active .line__wrap-static .line__inner {
  clip-path: inset(0 0 0 0);
}

.js-picWrapper .product__pic, .js-picWrapper-bottom .product__pic {
  opacity: 0;
}
.js-picWrapper .product__pic.product__picFade01, .js-picWrapper-bottom .product__pic.product__picFade01 {
  transition: all 0s 0s;
}
.js-picWrapper .product__pic.product__picFade02, .js-picWrapper-bottom .product__pic.product__picFade02 {
  transition: all 0s 0.3s;
}
.js-picWrapper .product__pic.product__picFade03, .js-picWrapper-bottom .product__pic.product__picFade03 {
  transition: all 0s 0.6s;
}
.js-picWrapper .product__pic.product__picFade04, .js-picWrapper-bottom .product__pic.product__picFade04 {
  transition: all 0s 0.9s;
}
.js-picWrapper .product__pic.product__picFade05, .js-picWrapper-bottom .product__pic.product__picFade05 {
  transition: all 0s 1.2s;
}
.js-picWrapper .product__pic.product__picFade06, .js-picWrapper-bottom .product__pic.product__picFade06 {
  transition: all 0s 1.5s;
}
.js-picWrapper .product__pic.product__picFade06-3, .js-picWrapper-bottom .product__pic.product__picFade06-3 {
  transition: opacity 0.2s 0.5s, transform 0.5s 0.5s;
  transform: translateY(120%);
}

.js-picWrapper.js-active .product__pic, .js-picWrapper-bottom.js-active .product__pic {
  opacity: 1;
  transform: translateY(0);
}

.svg__path {
  display: block;
  clip-path: inset(0 100% 0 0);
}
.svg__path.svg-elem-1 {
  transition: clip-path 0.1s 0s linear;
}
.svg__path.svg-elem-2 {
  transition: clip-path 0.1s 0.1s linear;
}
.svg__path.svg-elem-3 {
  transition: clip-path 0.1s 0.2s linear;
}
.svg__path.svg-elem-4 {
  transition: clip-path 0.1s 0.3s linear;
}
.svg__path.svg-elem-5 {
  transition: clip-path 0.1s 0.4s linear;
}
.svg__path.svg-elem-6 {
  transition: clip-path 0.1s 0.5s linear;
}
.svg__path.svg-elem-7 {
  transition: clip-path 0.1s 0.6s linear;
}
.svg__path.svg-elem-8 {
  transition: clip-path 0.1s 0.7s linear;
}
.svg__path.svg-elem-9 {
  transition: clip-path 0.1s 0.8s linear;
}
.svg__path.svg-elem-10 {
  transition: clip-path 0.1s 0.9s linear;
}
.svg__path.svg-elem-11 {
  transition: clip-path 0.1s 1s linear;
}
.svg__path.svg-elem-12 {
  transition: clip-path 0.1s 1.1s linear;
}
.svg__path.svg-elem-13 {
  transition: clip-path 0.1s 1.2s linear;
}
.svg__path.svg-elem-14 {
  transition: clip-path 0.1s 1.3s linear;
}
.svg__path.svg-elem-15 {
  transition: clip-path 0.1s 1.4s linear;
}
.svg__path.svg-elem-16 {
  transition: clip-path 0.1s 1.5s linear;
}

.js-svg-active .svg__path {
  clip-path: inset(0 0 0 0);
}

html, body {
  overflow-x: clip !important;
}

.area_archive {
  position: relative;
  z-index: 3;
}

.babymonser_lp {
  margin: 0 auto;
  padding: 0 0 0 0;
  color: #000000;
  font-weight: 400;
  letter-spacing: 0.05em;
  /* メインビジュアル */
}
.babymonser_lp svg {
  width: 100%;
  height: auto;
  overflow: visible;
}
.babymonser_lp .contents__center {
  background-color: #F5F5F5;
}
.babymonser_lp .contents__bottom {
  padding-bottom: calc(200 * var(--formula));
}
.babymonser_lp .product__block--movie {
  background-color: #E3EAF0;
}
.babymonser_lp .product__block--movie .movie__wrap {
  position: relative;
}
.babymonser_lp .product__block--movie video {
  width: 100%;
}
.babymonser_lp .product__block--movie #togglemvSound {
  display: block;
  width: calc(34 * var(--formula));
  height: calc(11 * var(--formula));
  cursor: pointer;
  background-size: 100% auto;
  position: absolute;
  right: calc(10 * var(--formula));
  bottom: calc(10 * var(--formula));
  z-index: 1;
}
.babymonser_lp .product__block--movie #togglemvSound .soundOff {
  display: block;
  width: calc(34 * var(--formula));
  height: 100%;
  background: url(../img/sound_off.svg) no-repeat;
  background-size: cover;
}
.babymonser_lp .product__block--movie #togglemvSound .soundON {
  display: block;
  margin: 0 0 0 auto;
  width: calc(27 * var(--formula));
  height: 100%;
  background: url(../img/sound_on.svg) no-repeat;
  background-size: cover;
}
.babymonser_lp .line__wrap {
  width: calc(1 * var(--formula));
  overflow: hidden;
}
.babymonser_lp .line__wrap .line__inner {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: line_move;
}
.babymonser_lp .line__wrap .line__inner::before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 200%;
  background-color: #707070;
  transform-origin: center center;
}
.babymonser_lp .product__block--intro {
  margin: 0 auto;
  padding: calc(96 * var(--formula)) 0 calc(627 * var(--formula)) 0;
  text-align: center;
  z-index: 1;
  position: relative;
  background-color: #e6edf3;
  position: relative;
}
.babymonser_lp .product__block--intro::before {
  display: block;
  content: "";
  position: absolute;
  top: calc(455 * var(--formula));
  width: calc(375 * var(--formula));
  height: calc(919 * var(--formula));
  background-image: url(../img/main_bg.jpg);
  background-size: cover;
}
.babymonser_lp .product__block--intro .lp__title {
  width: calc(295 * var(--formula));
  margin: 0 auto;
}
.babymonser_lp .product__block--intro .intro__lead {
  margin: calc(38 * var(--formula)) 0 0 0;
  color: #000;
  font-family: var(--font);
  font-size: calc(12 * var(--formula));
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.7692307692;
  text-align: center;
}
.babymonser_lp .product__block--introMiddle {
  /*background-color: #EAEDF2;*/
  padding: 0 0 calc(130 * var(--formula)) 0;
  position: relative;
  z-index: 1;
}
.babymonser_lp .lp__heading {
  text-align: center;
}
.babymonser_lp .lp__heading .lp__headingTitle {
  position: relative;
  z-index: 2;
  margin: calc(0 * var(--formula)) auto 0;
  width: calc(340 * var(--formula));
}
.babymonser_lp .lp__heading .line__wrap {
  margin: calc(15 * var(--formula)) auto calc(15 * var(--formula));
  width: calc(1 * var(--formula));
  height: calc(48 * var(--formula));
  overflow: hidden;
}
.babymonser_lp .lp__heading .line__wrap .line__inner {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: line_move;
}
.babymonser_lp .lp__heading .line__wrap .line__inner::before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 200%;
  background-color: #707070;
  transform-origin: center center;
}
.babymonser_lp .lp__heading .lp__heading-All {
  margin: calc(15 * var(--formula)) 0 0 0;
  font-weight: 600;
  color: #000;
  font-family: var(--font-en);
  font-size: calc(15 * var(--formula));
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  text-decoration: underline;
}
.babymonser_lp .product__block .product__block-inner.product__block-inner--01 {
  position: relative;
  padding: 0 0;
}
.babymonser_lp .product__block .product__block-inner.product__block-inner--02 {
  display: grid;
  position: relative;
  padding: calc(90 * var(--formula)) 0 calc(133 * var(--formula)) 0;
}
.babymonser_lp .product__block .product__block-inner.product__block-inner--02 .line__wrap-static {
  width: calc(1 * var(--formula));
  height: calc(400 * var(--formula));
  position: absolute;
  left: 50%;
  top: calc(132 * var(--formula));
}
.babymonser_lp .product__block .product__block-inner.product__block-inner--02 .line__wrap-static .line__inner {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
}
.babymonser_lp .product__block .product__block-inner.product__block-inner--03 {
  position: relative;
  padding: 0;
}
.babymonser_lp .product__block .product__block-inner.product__block-inner--04 {
  position: relative;
  padding: calc(130 * var(--formula)) 0 0 0;
}
.babymonser_lp .product__block .product__block-inner.product__block-inner--05 {
  position: relative;
  padding: calc(104 * var(--formula)) 0 0 0;
}
.babymonser_lp .product__block .product__block-inner.product__block-inner--06 {
  position: relative;
  padding: calc(104 * var(--formula)) 0 0 0;
}
.babymonser_lp .product__block .middle__title.middle__title--01 {
  grid-row: 1;
  width: calc(168 * var(--formula));
  margin: 0 auto;
}
.babymonser_lp .product__block .middle__title.middle__title--02 {
  width: calc(245 * var(--formula));
  margin: calc(71 * var(--formula)) auto 0;
  grid-row: 3;
}
.babymonser_lp .product__block .product__title {
  position: relative;
  z-index: 2;
}
.babymonser_lp .product__block .product__pic {
  position: absolute;
}
.babymonser_lp .product__block .product__pic img {
  display: block;
}
.babymonser_lp .product__block .product__pic.product__pic--03-1a {
  width: calc(131 * var(--formula));
  top: calc(-55 * var(--formula));
  left: calc(235 * var(--formula));
}
.babymonser_lp .product__block .product__pic.product__pic--03-1a img {
  transform: rotate(-7deg);
}
.babymonser_lp .product__block .product__pic.product__pic--03-1b {
  width: calc(131 * var(--formula));
  top: calc(-22 * var(--formula));
  left: calc(297 * var(--formula));
}
.babymonser_lp .product__block .product__pic.product__pic--03-1b img {
  transform: rotate(11deg);
}
.babymonser_lp .product__block .product__pic.product__pic--03-1c {
  width: calc(131 * var(--formula));
  top: calc(3 * var(--formula));
  left: calc(271 * var(--formula));
}
.babymonser_lp .product__block .product__pic.product__pic--03-1c img {
  transform: rotate(-5deg);
}
.babymonser_lp .product__block .product__pic.product__pic--03-1d {
  width: calc(131 * var(--formula));
  top: calc(37 * var(--formula));
  left: calc(239 * var(--formula));
}
.babymonser_lp .product__block .product__pic.product__pic--03-1d img {
  transform: rotate(-12deg);
}
.babymonser_lp .product__block .product__pic.product__pic--03-1e {
  width: calc(72 * var(--formula));
  top: calc(-35 * var(--formula));
  left: calc(214 * var(--formula));
}
.babymonser_lp .product__block .product__pic.product__pic--03-1e img {
  transform: rotate(-7deg);
}
.babymonser_lp .product__block .product__pic.product__pic--03-2a {
  width: calc(143 * var(--formula));
  bottom: calc(25 * var(--formula));
  left: calc(22 * var(--formula));
  z-index: 1;
}
.babymonser_lp .product__block .product__pic.product__pic--03-2a img {
  transform: rotate(-19deg);
}
.babymonser_lp .product__block .product__pic.product__pic--03-2b {
  width: calc(143 * var(--formula));
  bottom: calc(-20 * var(--formula));
  left: calc(10 * var(--formula));
}
.babymonser_lp .product__block .product__pic.product__pic--03-2b img {
  transform: rotate(11deg);
}
.babymonser_lp .product__block .product__pic.product__pic--03-2c {
  width: calc(143 * var(--formula));
  bottom: calc(-46 * var(--formula));
  left: calc(45 * var(--formula));
}
.babymonser_lp .product__block .product__pic.product__pic--03-2c img {
  transform: rotate(-7deg);
}
.babymonser_lp .product__block .product__pic.product__pic--04-2 {
  width: calc(98 * var(--formula));
  position: absolute;
  bottom: calc(-19 * var(--formula));
  left: calc(220 * var(--formula));
}
.babymonser_lp .product__block .product__pic.product__pic--04-2 img {
  transform: rotate(-11deg);
}
.babymonser_lp .product__block .product__pic.product__pic--04-3a {
  width: calc(161 * var(--formula));
  position: absolute;
  bottom: calc(27 * var(--formula));
  left: calc(-24 * var(--formula));
  z-index: 1;
}
.babymonser_lp .product__block .product__pic.product__pic--04-3a img {
  transform: rotate(10deg);
}
.babymonser_lp .product__block .product__pic.product__pic--04-3b {
  width: calc(184 * var(--formula));
  position: absolute;
  bottom: calc(3 * var(--formula));
  left: calc(24 * var(--formula));
  z-index: 1;
}
.babymonser_lp .product__block .product__pic.product__pic--04-3b img {
  transform: rotate(-18deg);
}
.babymonser_lp .product__block .product__pic.product__pic--05-1 {
  width: calc(184 * var(--formula));
  position: absolute;
  top: calc(21 * var(--formula));
  left: calc(243 * var(--formula));
  z-index: 1;
}
.babymonser_lp .product__block .product__pic.product__pic--05-1 img {
  transform: rotate(37deg);
}
.babymonser_lp .product__block .product__pic.product__pic--05-2 {
  width: calc(201 * var(--formula));
  position: absolute;
  bottom: calc(-11 * var(--formula));
  left: calc(17 * var(--formula));
  z-index: 1;
}
.babymonser_lp .product__block .product__pic.product__pic--05-2 img {
  transform: rotate(17deg);
}
.babymonser_lp .product__block .product__pic.product__pic--06-1 {
  width: calc(103 * var(--formula));
  position: absolute;
  top: calc(-70 * var(--formula));
  left: calc(239 * var(--formula));
  z-index: 1;
}
.babymonser_lp .product__block .product__pic.product__pic--06-1 img {
  transform: rotate(-3deg);
}
.babymonser_lp .product__block .product__pic.product__pic--06-3 {
  width: calc(106 * var(--formula));
  position: absolute;
  top: calc(-57 * var(--formula));
  left: calc(14 * var(--formula));
  z-index: 1;
}
.babymonser_lp .product__block .product__pic.product__pic--06-3 img {
  transform: rotate(0deg);
}
.babymonser_lp .product__block .product__lead {
  margin: calc(36 * var(--formula)) 0 0 0;
  text-align: center;
  font-size: calc(24 * var(--formula));
  letter-spacing: 0;
  line-height: 1.9166666667;
}
.babymonser_lp .product__block .product__image-wrap {
  margin: 0 0 0 0;
  position: relative;
}
.babymonser_lp .product__block .product__image-wrap.product__image-wrap--01-1 {
  margin: calc(0 * var(--formula)) 0 0 0;
}
.babymonser_lp .product__block .product__image-wrap.product__image-wrap--01-1 .product__image {
  width: calc(375 * var(--formula));
  padding: 0 0 0 calc(50 * var(--formula));
}
.babymonser_lp .product__block .product__image-wrap.product__image-wrap--01-1 .product__image-inner {
  width: calc(325 * var(--formula));
}
.babymonser_lp .product__block .product__image-wrap.product__image-wrap--03-1 {
  margin: 0;
  padding: 0;
}
.babymonser_lp .product__block .product__image-wrap.product__image-wrap--03-2 {
  margin: 0;
  padding: calc(0 * var(--formula)) 0 calc(0 * var(--formula));
}
.babymonser_lp .product__block .product__image-wrap.product__image-wrap--04-1 {
  margin: calc(0 * var(--formula)) 0 0 0;
}
.babymonser_lp .product__block .product__image-wrap.product__image-wrap--04-2 {
  margin: calc(-28 * var(--formula)) 0 0 0;
}
.babymonser_lp .product__block .product__image-wrap.product__image-wrap--04-3 {
  margin: calc(68 * var(--formula)) 0 0 0;
}
.babymonser_lp .product__block .product__image-wrap.product__image-wrap--04-4 {
  margin: 0 0 0 0;
}
.babymonser_lp .product__block .product__image-wrap.product__image-wrap--05-1 {
  margin: calc(0 * var(--formula)) 0 0 0;
}
.babymonser_lp .product__block .product__image-wrap.product__image-wrap--05-2 {
  margin: calc(-31 * var(--formula)) 0 0 0;
}
.babymonser_lp .product__block .product__image-wrap.product__image-wrap--05-3 {
  margin: calc(61 * var(--formula)) 0 0 0;
  z-index: 1;
}
.babymonser_lp .product__block .product__image-wrap.product__image-wrap--06-1 {
  margin: calc(0 * var(--formula)) 0 0 0;
}
.babymonser_lp .product__block .product__image-wrap.product__image-wrap--06-2 {
  margin: calc(-30 * var(--formula)) 0 0 0;
}
.babymonser_lp .product__block .product__image-wrap.product__image-wrap--06-3 {
  margin: calc(80 * var(--formula)) 0 0 0;
  z-index: 1;
}
.babymonser_lp .product__block .product__image {
  width: calc(375 * var(--formula));
  background-size: cover;
}
.babymonser_lp .product__block .product__image.product__image--02 {
  grid-row: 2;
  width: calc(379 * var(--formula));
  margin: calc(68 * var(--formula)) 0 0 calc(-10 * var(--formula));
  position: relative;
  z-index: 1;
}
.babymonser_lp .product__block .product__image.product__image--02 .product__image-inner {
  transform: rotate(12deg);
}
.babymonser_lp .product__block .product__image.product__image--01_1 {
  background-image: url(../img/img01_1_bg.jpg);
}
.babymonser_lp .product__block .product__image.product__image--01_2 {
  background-image: url(../img/img01_2_bg.jpg);
}
.babymonser_lp .product__block .product__image.product__image--01_3 {
  background-image: url(../img/img01_3_bg.jpg);
}
.babymonser_lp .product__block .product__image.product__image--01_4 {
  background-image: url(../img/img01_4_bg.jpg);
}
.babymonser_lp .product__block .product__image.product__image--01_5 {
  background-image: url(../img/img01_5_bg.jpg);
}
.babymonser_lp .product__block .product__image.product__image--01_6 {
  background-image: url(../img/img01_6_bg.jpg);
}
.babymonser_lp .product__block .product__image.product__image--03_1 {
  margin: 0 0 0 0;
}
.babymonser_lp .product__block .product__image.product__image--03_2 {
  margin: 0 0 0 0;
}
.babymonser_lp .product__block .product__image.product__image--03_3 {
  margin: 0 0 0 0;
}
.babymonser_lp .product__block .product__image.product__image--04_1 {
  margin: 0 0 0 calc(67 * var(--formula));
  width: calc(312 * var(--formula));
}
.babymonser_lp .product__block .product__image.product__image--04_1 .product__image-inner {
  transform: rotate(-10deg);
  box-shadow: calc(5 * var(--formula)) calc(10 * var(--formula)) calc(20 * var(--formula)) 0 rgb(105, 198, 219);
}
.babymonser_lp .product__block .product__image.product__image--04_2 {
  margin: 0 0 0 calc(-8 * var(--formula));
  width: calc(312 * var(--formula));
}
.babymonser_lp .product__block .product__image.product__image--04_2 .product__image-inner {
  transform: rotate(15deg);
  box-shadow: calc(8 * var(--formula)) calc(8 * var(--formula)) calc(20 * var(--formula)) 0 rgb(185, 164, 225);
}
.babymonser_lp .product__block .product__image.product__image--04_3 {
  margin: 0;
}
.babymonser_lp .product__block .product__image.product__image--05_1 {
  margin: 0 0 0 calc(5 * var(--formula));
  width: calc(312 * var(--formula));
}
.babymonser_lp .product__block .product__image.product__image--05_1 .product__image-inner {
  transform: rotate(12deg);
  box-shadow: calc(8 * var(--formula)) calc(10 * var(--formula)) calc(15 * var(--formula)) 0 rgb(244, 227, 87);
}
.babymonser_lp .product__block .product__image.product__image--05_2 {
  margin: 0 0 0 calc(58 * var(--formula));
  width: calc(312 * var(--formula));
}
.babymonser_lp .product__block .product__image.product__image--05_2 .product__image-inner {
  transform: rotate(-8deg);
  box-shadow: calc(10 * var(--formula)) calc(7 * var(--formula)) calc(15 * var(--formula)) 0 rgb(255, 165, 60);
}
.babymonser_lp .product__block .product__image.product__image--05_3 {
  margin: 0;
}
.babymonser_lp .product__block .product__image.product__image--06_1 {
  margin: 0 0 0 calc(57 * var(--formula));
  width: calc(312 * var(--formula));
}
.babymonser_lp .product__block .product__image.product__image--06_1 .product__image-inner {
  transform: rotate(-11deg);
  box-shadow: calc(8 * var(--formula)) calc(10 * var(--formula)) calc(20 * var(--formula)) 0 rgb(149, 221, 181);
}
.babymonser_lp .product__block .product__image.product__image--06_2 {
  margin: 0 0 0 calc(-7 * var(--formula));
  width: calc(312 * var(--formula));
}
.babymonser_lp .product__block .product__image.product__image--06_2 .product__image-inner {
  transform: rotate(9deg);
  box-shadow: calc(10 * var(--formula)) calc(10 * var(--formula)) calc(20 * var(--formula)) 0 rgb(254, 164, 203);
}
.babymonser_lp .product__block .product__image.product__image--06_3 {
  margin: 0;
}
.babymonser_lp .product__block .product__image .product__image-inner {
  position: relative;
}
.babymonser_lp .product__block .product__wrap {
  padding: 0 0 0 calc(17 * var(--formula));
}
.babymonser_lp .product__block .product__wrap.product__wrap--04-4 {
  margin: calc(30 * var(--formula)) 0 0 0;
}
.babymonser_lp .product__block .product__credit {
  width: 100%;
  margin: calc(13 * var(--formula)) auto 0;
  font-family: var(--font-credit);
  font-size: calc(26 * var(--formula));
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0;
  position: relative;
  white-space: nowrap;
}
.babymonser_lp .product__block .product__credit .product__creditTitle {
  display: inline-grid;
  place-items: center;
  background-color: #fff;
  padding: 0 calc(5 * var(--formula));
  height: calc(19 * var(--formula));
  font-family: var(--font-credit);
  font-size: calc(12 * var(--formula));
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
}
.babymonser_lp .product__block .product__credit a {
  font-family: var(--font-credit);
  display: inline-block;
  margin: calc(4 * var(--formula)) calc(2 * var(--formula)) 0 0;
  font-size: calc(10 * var(--formula));
  letter-spacing: 0;
  line-height: 1.4;
  position: relative;
}
.babymonser_lp .product__block .product__credit span {
  display: inline-block;
  font-size: calc(26 * var(--formula));
  line-height: 1.3846153846;
}
.babymonser_lp .product__block .product__credit .credit__lead {
  margin: 0 0 calc(12 * var(--formula));
  font-family: var(--font);
  font-size: calc(22 * var(--formula));
  line-height: 1.8181818182;
}
.babymonser_lp .product__block .product__block--01 {
  position: relative;
  z-index: 1;
}
.babymonser_lp .product__block .product__block--02 {
  text-align: center;
  margin: 0;
  position: relative;
  z-index: 2;
}
.babymonser_lp .product__block.lp__bottom-area {
  padding: 0 0 calc(105 * var(--formula)) 0;
}
.babymonser_lp .product__block .button__all {
  display: block;
  width: calc(341 * var(--formula));
  margin: calc(117 * var(--formula)) auto 0;
}
.babymonser_lp .product__block .bottom__image {
  width: calc(297 * var(--formula));
  margin: calc(70 * var(--formula)) auto 0;
}
.babymonser_lp .product__block .bottom__image .no_link {
  pointer-events: none;
}
.babymonser_lp .product__block .bottom__image .no_link:hover {
  opacity: 1;
}
.babymonser_lp .product__block .text__link {
  display: block;
  margin: calc(16 * var(--formula)) 0 0 0;
  font-size: calc(18 * var(--formula));
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: calc(3 * var(--formula));
}

@media only screen and (min-width: 768px) {
  #Foot {
    z-index: 100;
    position: relative;
    background-color: #fff;
  }
  .babymonser_lp {
    --header-container-height: 120px;
    display: flex;
    width: 100%;
    background-color: #F5F5F5;
  }
  .babymonser_lp::-webkit-scrollbar {
    display: none;
  }
  .babymonser_lp .contents__wrap {
    display: grid;
    grid-template-columns: calc(513 * var(--formula_pc)) calc(375 * var(--formula_pc)) calc(513 * var(--formula_pc));
    width: calc(1400 * var(--formula_pc));
    width: 100%;
    margin: 0 auto;
    background-color: #F5F5F5;
  }
  .babymonser_lp .contents__wrap.sticky_scroll .contents__left {
    top: calc(0 * var(--formula));
  }
  .babymonser_lp .contents__wrap.sticky_scroll .contents__right .lp__heading {
    top: 0;
  }
  .babymonser_lp .contents__left {
    grid-column: 1;
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    transition: top 0.5s;
    padding: 0;
  }
  .babymonser_lp .contents__right {
    grid-column: 3;
    position: sticky;
    width: 100%;
    height: 100vh;
    z-index: 1;
    top: 0;
    transition: top 0.5s;
    background-color: #F5F5F5;
    display: grid;
    place-items: center;
  }
  .babymonser_lp .contents__right .lp__heading {
    position: relative;
    top: -130px;
    transition: top 0.3s;
  }
  .babymonser_lp .contents__center {
    grid-column: 2;
    grid-row: 1;
    overflow: hidden;
  }
  .babymonser_lp .contents__center .lp_logo {
    width: calc(152 * var(--formula_pc));
    margin: 0 auto;
    pointer-events: none;
  }
  .babymonser_lp .product__block .product__block-inner {
    overflow-x: clip;
  }
  .babymonser_lp .product__block--mv {
    width: auto;
    overflow: hidden;
  }
  .babymonser_lp .product__block--mv .mv-inner {
    width: 100%;
    position: relative;
  }
  .babymonser_lp .product__block--mv .intro__image {
    width: 100%;
    height: 100%;
  }
  .babymonser_lp .product__block--mv .intro__image a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .babymonser_lp .product__block--mv .intro__image a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .babymonser_lp .product__block--mv .intro__image picture {
    width: 100%;
    height: 100%;
  }
  .babymonser_lp .product__block--mv .intro__image .intro__text img {
    width: 100%;
    height: auto;
  }
  .babymonser_lp .product__block--mv .mv_logo {
    width: calc(381 * var(--formula_pc));
    bottom: calc(17 * var(--formula_pc));
    left: calc(283 * var(--formula_pc));
  }
  .babymonser_lp .product__block--intro {
    padding: calc(77 * var(--formula_pc)) 0 calc(100 * var(--formula_pc)) 0;
    background-color: #F5F5F5;
  }
  .babymonser_lp .product__block--intro::before {
    display: none;
  }
  .area_archive {
    margin: 0rem auto 12rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer {
    z-index: 100;
    position: relative;
  }
}
@media only screen and (min-width: 1400px) {
  .cateList {
    margin-bottom: 0;
  }
}/*# sourceMappingURL=style.css.map */