@charset "UTF-8";
/* ===============================================### 
可変設定
###=============================================== */
.lp_variable {
  /*デザインの値*/
  --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以上 固定 */
@media (min-width: 1401px) {
  .lp_variable {
  --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width)); /* PCとSPのデザイン幅の比 */
  --variable: 1px; /* 固定値（可変しない） */
  }
}

/* PC画面幅 768～1400px 可変 */
@media (min-width: 768px) and (max-width: 1400px) {
  .lp_variable {
  --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width)); /* PCとSPのデザイン幅の比 */
  --variable: calc(100vw / var(--pc-width)); /* 画面幅に基づく可変値 */
  }
}

/* SP画面幅 767px以下 可変 */
@media (max-width: 767px) {
  .lp_variable {
  --ratio: 1; /* 比率は1（変わらない） */
  --variable: calc(100vw / var(--sp-width)); /* 画面幅に基づく可変値 */
  }
}


/* ===============================================### 
初期設定
###=============================================== */
.em250911NewBalance{
  position: relative;
  --font-ja:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "Open Sans", "メイリオ", sans-serif;
  --font-en: "pragmatica", sans-serif;
  --font-en02: "span-condensed", serif;
  --fw-thin: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semi-bold: 600;
  --fw-bold: 700;
  font-weight: 400;
  font-style: normal;
  --color-black: #000000;
  --color-white: #ffffff;
  color: #000000;
}

.em250911NewBalance img{
  width: 100%;
  height: auto;
}

.main-area * {
  box-sizing: border-box;
}


/* ===========### PC用設定 ###=========== */
@media screen and (min-width: 768px) {
  .main-area{
    overflow-x: visible!important;
  }

  #Foot{
    margin-top: -1px;
  }

  #footer_emmi{
    margin-top: 0;
  }

  .em250911NewBalance .pc-visible{
    display: block;
  }

  .em250911NewBalance .sp-visible{
    display: none;
  }

  .em250911NewBalance .bg-image{
    background-color: #fff;
  }

  .em250911NewBalance .bg-image a:hover{
    opacity: 0.7;
  }
}

/* ===========### SP用設定 ###=========== */
@media screen and (max-width: 767px) {
  #footer_emmi{
    padding-top: 0;
  }

  .em250911NewBalance{
    overflow: hidden;
  }
  
  .em250911NewBalance .pc-visible{
    display: none;
  }

  .em250911NewBalance .sp-visible{
    display: block;
  }
}



/* ===============================================### 
アニメーション設定
###=============================================== */
/************** fade **************/
/*** fade-in ***/
.em250911NewBalance .js-fade-in{
  opacity: 0;
  transition: opacity 3s;
}

.em250911NewBalance .js-fade-in.show{
  opacity: 1;
}

/*** slide-in ***/
.em250911NewBalance .js-slide-in.btt{
  opacity: 0;
  transition: opacity 1s, transform 1s;
  transform: translateY(30px);
}

.em250911NewBalance .js-slide-in.ltr{
  opacity: 0;
  transition: opacity 1s, transform 1s;
  transform: translateX(-30px);
}

.em250911NewBalance .js-slide-in.rtl{
  opacity: 0;
  transition: opacity 1s, transform 1s;
  transform: translateX(30px);
}

.em250911NewBalance .js-slide-in.btt.show,
.em250911NewBalance .js-slide-in.ltr.show,
.em250911NewBalance .js-slide-in.rtl.show{
  opacity: 1;
  transform: translateX(0);
}

/*** fade-up-text ***/
.em250911NewBalance span.text-wrap{
  display: block;
}

.em250911NewBalance .js-fade-trigger .js-fade-up-text{
  transform: translateY(110%) rotate(0.0001deg);
  transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.em250911NewBalance .js-fade-trigger.show .js-fade-up-text{
  transform: translateY(0) rotate(0.0001deg);
}

.em250911NewBalance .js-fade-trigger .js-fade-up-text.js-delay01{
  transition-delay: 0.5s;
}

.em250911NewBalance .js-fade-trigger .js-fade-up-text.js-delay02{
  transition-delay: 1s;
}

.em250911NewBalance .js-fade-trigger .js-fade-up-text.js-delay03{
  transition-delay: 1.5s;
}

/************** loop-text **************/
.em250911NewBalance .loop-text-wrap{
  position: absolute;
  display: flex;
  align-items: center;
  width: 300%;
  z-index: 2;
  justify-content: space-between;
  gap: calc(20 * var(--formula));
  animation: loop 20s infinite linear 0.5s both;
  will-change: transform;
}

.em250911NewBalance .loop-text-wrap.bottom{
  animation-direction: reverse;
}

@keyframes loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.em250911NewBalance .loop-text-wrap.top{
  top: calc(13 * var(--formula));
}

.em250911NewBalance .loop-text-wrap.bottom{
  bottom: calc(4 * var(--formula));
}

.em250911NewBalance .loop-slide{
  width: calc(707 * var(--formula));
}



/* ===============================================### 
コンテンツ共通設定
###=============================================== */
.em250911NewBalance .content{
}

.em250911NewBalance .content .content__inner{
  width: calc(750 * var(--formula));
  margin-inline: auto;
}

.em250911NewBalance .flex-wrap{
  display: flex;
}

.em250911NewBalance .grid-wrap{
  display: grid;
}

/************** text **************/
.em250911NewBalance .credit{
  font-family: var(--font-en);
  font-weight: var(--fw-thin);
  line-height: 1.8;
  font-size: calc(22 * var(--formula));
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.em250911NewBalance .credit a{
  display: inline-block;
}

/************** image **************/
.em250911NewBalance .content .image-wrap{
  position: relative;
  width: fit-content;
}

/* .em250911NewBalance .content .image-wrap .bg{
  position: relative;
  z-index: 1;
} */

.em250911NewBalance .content .image-wrap .model{
  position: absolute;
  top: 0;
  z-index: 2;
  pointer-events: none;
}

.em250911NewBalance .content__text{
  position: absolute;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}



/* ===========### responsive ###=========== */
/*** PC ***/
@media screen and (min-width: 768px) {
  .em250911NewBalance .flex-wrap{
    display: flex;
  }

  .em250911NewBalance .left-area,
  .em250911NewBalance .right-area{
    width: 50%;
  }

  .em250911NewBalance .right-area{
    overflow: hidden;
  }

  .em250911NewBalance .content-sticky{
    position: sticky;
    top: 0;
  }
}

/*** SP ***/
@media screen and (max-width: 767px) {
  .em250911NewBalance .content-wrap.flex-wrap{
    flex-direction: column;
  }
}



/* ===============================================### 
MV
###=============================================== */
.em250911NewBalance .mv{
}

.em250911NewBalance .mv__inner{
}

.em250911NewBalance .mv__inner .item-wrap{
  width: 100%;
  position: relative;
}

/************** image **************/
.em250911NewBalance .mv__image{
}

.em250911NewBalance .mv__text{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
  padding: 0;
  overflow: hidden;
}

.em250911NewBalance .mv__text.main-title{
  top: 0;
  width: calc(702 * var(--formula_pc));
}

.em250911NewBalance .mv__text.sub-title.sub01{
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: calc(452 * var(--formula_pc));
  margin-top: calc(72 * var(--formula));
}

.em250911NewBalance .mv__text.sub-title.sub02{
  bottom: calc(16 * var(--formula));
  left: initial;
  right: calc(28 * var(--formula));
  transform: none;
  width: calc(165 * var(--formula_pc));
}


/* ===========### responsive ###=========== */
/*** PC ***/
@media screen and (min-width: 768px) {
  .em250911NewBalance .mv__inner .item-wrap{
    height: 100vh;
  }

  .em250911NewBalance .mv__image{
    width: 100%;
    height: 100%;
  }

  .em250911NewBalance .mv__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
}

@media screen and (min-width: 1401px) {
  .em250911NewBalance .mv__text.main-title{
    width: 61.7rem;
  }

  .em250911NewBalance .mv__text.sub-title.sub01{
    width: 39.1rem;
  }

  .em250911NewBalance .mv__text.sub-title.sub02{
    width: 16.5rem;
  }
}

/*** SP ***/
@media screen and (max-width: 767px) {
  .em250911NewBalance .mv__text.main-title{
    top: calc(2 * var(--formula));
    width: calc(751 * var(--formula));
  }

  .em250911NewBalance .mv__text.sub-title.sub01{
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: calc(419 * var(--formula));
    margin-top: calc(51 * var(--formula));
  }

  .em250911NewBalance .mv__text.sub-title.sub02{
    bottom: calc(54 * var(--formula));
    left: initial;
    right: calc(23 * var(--formula));
    transform: none;
    width: calc(175 * var(--formula));
  }
}



/* ===============================================### 
lead-area
###=============================================== */
.em250911NewBalance .lead-area{
  margin-top: calc(67 * var(--formula));
}

.em250911NewBalance .lead-text{
  font-family: var(--font-ja);
  font-size: calc(24 * var(--formula));
  font-weight: var(--fw-medium);
  line-height: 2;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  text-align: center;
}



/* ===============================================### 
コンテンツ01
###=============================================== */
.em250911NewBalance .content01{
  margin-top: calc(107 * var(--formula));
}

.em250911NewBalance .content01 .content__inner{
}

.em250911NewBalance .content01 .content__item01{
  margin-top: calc(40 * var(--formula));
}

.em250911NewBalance .content01 .product{
}

.em250911NewBalance .content01 .flex-wrap{
  flex-direction: column;
}

.em250911NewBalance .content01 .flex-wrap.reverse{
  flex-direction: column-reverse;
}

/************** grid **************/
.em250911NewBalance .content01 .grid-wrap{
  grid-template-columns: calc(71 * var(--formula)) calc(112 * var(--formula)) calc(136 * var(--formula)) calc(29 * var(--formula)) calc(40 * var(--formula)) calc(61 * var(--formula)) calc(130 * var(--formula));
  grid-template-rows: calc(137 * var(--formula)) calc(427 * var(--formula)) calc(82 * var(--formula)) calc(64 * var(--formula)) calc(500 * var(--formula)) calc(47 * var(--formula)) calc(42 * var(--formula)) calc(406 * var(--formula)) calc(95 * var(--formula)) calc(24 * var(--formula)) calc(450 * var(--formula));
}

.em250911NewBalance .content01 .grid__item.item01{
  grid-column: 6/9;
  grid-row: 2/5;
}

.em250911NewBalance .content01 .grid__item.item02{
  grid-column: 1/5;
  grid-row: 1/3;
}

.em250911NewBalance .content01 .grid__item.item03{
  grid-column: 2/7;
  grid-row: 4/6;
}

.em250911NewBalance .content01 .grid__item.item04{
  grid-column: 6/9;
  grid-row: 7/9;
}

.em250911NewBalance .content01 .grid__item.item05{
  grid-column: 1/4;
  grid-row: 8/11;
}

.em250911NewBalance .content01 .grid__item.item06{
  grid-column: 3/8;
  grid-row: 10/12;
}

/************** image **************/
.em250911NewBalance .content01 .content__title{
  width: calc(397 * var(--formula));
  margin-inline: auto;
}

.em250911NewBalance .content01 .product__item.item01 .content__image{
  width: calc(360 * var(--formula));
}

.em250911NewBalance .content01 .product__item.item02 .content__image{
  width: calc(345 * var(--formula));
}

.em250911NewBalance .content01 .product__item.item03 .content__image{
  width: calc(345 * var(--formula));
  margin-inline: auto;
}

.em250911NewBalance .content01 .product__item.item04 .content__image{
  width: calc(360 * var(--formula));
}

.em250911NewBalance .content01 .product__item.item05 .content__image{
  width: calc(320 * var(--formula));
}

.em250911NewBalance .content01 .product__item.item06 .content__image{
  width: calc(396 * var(--formula));
}

.em250911NewBalance .content01 .product__text{
  margin-inline: auto;
}

.em250911NewBalance .content01 .product__item.item01 .product__text{
  margin-bottom: calc(14 * var(--formula));
  width: calc(277 * var(--formula));
}

.em250911NewBalance .content01 .product__item.item02 .product__text{
  margin-top: calc(25 * var(--formula));
  width: calc(120 * var(--formula));
}

.em250911NewBalance .content01 .product__item.item03 .product__text{
  margin-top: calc(24 * var(--formula));
  width: calc(380 * var(--formula));
}

.em250911NewBalance .content01 .product__item.item04 .product__text{
  margin-top: calc(24 * var(--formula));
  width: calc(168 * var(--formula));
}

.em250911NewBalance .content01 .product__item.item05 .product__text{
  margin-bottom: calc(15 * var(--formula));
  width: calc(191 * var(--formula));
}

.em250911NewBalance .content01 .product__item.item06 .product__text{
  margin-top: calc(24 * var(--formula));
  width: calc(115 * var(--formula));
}



/* ===============================================### 
コンテンツ02
###=============================================== */
.em250911NewBalance .content02{
  margin-top: calc(147 * var(--formula));
}

.em250911NewBalance .content02 .content__inner{
}

.em250911NewBalance .content02 .content__item01{
  position: relative;
  width: fit-content;
}

.em250911NewBalance .content02 .content__item02{
  width: fit-content;
  margin-top: calc(101 * var(--formula));
  margin-inline: auto;
}

.em250911NewBalance .content02 .content__item03{
  margin-top: calc(92 * var(--formula));
}

.em250911NewBalance .content02 .content__item02 .slide-wrap{
  width: calc(570 * var(--formula));
}

.em250911NewBalance .content02 .flex-wrap{
  gap: calc(14 * var(--formula));
}

/************** text **************/
.em250911NewBalance .content02 .credit{
  margin-top: calc(32 * var(--formula));
  text-align: center;
}

/*** クレジット位置微調整 ***/
.em250911NewBalance .content02 .credit .credit03{
  margin-left: calc(10 * var(--formula));
}

/************** image **************/
.em250911NewBalance .content02 .content__item01 .content__text{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.em250911NewBalance .content02 .content__item01 .content__text.text01{
  top: calc(49 * var(--formula));
  width: calc(257 * var(--formula));
}

.em250911NewBalance .content02 .content__item01 .content__text.text02{
  top: calc(119 * var(--formula));
  width: calc(614 * var(--formula));
}

.em250911NewBalance .content02 .content__item01 .content__text.text03{
  top: calc(238 * var(--formula));
  width: calc(821 * var(--formula));
}

.em250911NewBalance .content02 .content__item01 .content__image{
  width: calc(750 * var(--formula));
}

.em250911NewBalance .content02 .content__item02 .content__image{
}

.em250911NewBalance .content02 .content__item03 .content__image.image01{
  margin-top: calc(230 * var(--formula));
  width: calc(360 * var(--formula));
}

.em250911NewBalance .content02 .content__item03 .content__image.image02{
  width: calc(375 * var(--formula));
}



/* ===============================================### 
コンテンツ03
###=============================================== */
.em250911NewBalance .content03{
  margin-top: calc(140 * var(--formula));
}

.em250911NewBalance .content03 .content__inner{
}

.em250911NewBalance .content03 .content__item01{
  width: fit-content;
  margin-inline: auto;
  overflow: hidden;
}

.em250911NewBalance .content03 .item-wrap{
  position: relative;
}

/************** text **************/
.em250911NewBalance .content03 .credit{
  margin-top: calc(32 * var(--formula));
  text-align: center;
}

/************** image **************/
.em250911NewBalance .content03 .content__item01 .content__image{
  width: calc(640 * var(--formula));
}



/* ===============================================### 
コンテンツ04
###=============================================== */
.em250911NewBalance .content04{
  margin-top: calc(132 * var(--formula));
}

.em250911NewBalance .content04 .content__inner{
}

.em250911NewBalance .content04 .content__item01{
}

.em250911NewBalance .content04 .content__item02{
  margin-top: calc(113 * var(--formula));
}

.em250911NewBalance .content04 .content__item03{
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-top: calc(-60 * var(--formula));
  margin-inline: auto;
}

.em250911NewBalance .content04 .item-wrap{
  position: relative;
}

.em250911NewBalance .content04 .slide-wrap{
  width: calc(750 * var(--formula));
}

/************** text **************/
.em250911NewBalance .content04 .content__item01 .credit{
  margin-top: calc(32 * var(--formula));
  margin-left: calc(76 * var(--formula));
}

.em250911NewBalance .content04 .content__item03 .credit{
  margin-top: calc(30 * var(--formula));
  text-align: center;
}

/*** クレジット位置微調整 ***/
.em250911NewBalance .content04 .content__item01 .credit .credit02,
.em250911NewBalance .content04 .content__item01 .credit .credit04{
  margin-left: calc(12 * var(--formula));
}

/************** image **************/
.em250911NewBalance .content04 .content__item01 .content__image.image01{
  width: calc(525 * var(--formula));
}

.em250911NewBalance .content04 .content__item01 .content__image.image02{
  width: calc(675 * var(--formula));
  margin-top: calc(36 * var(--formula));
  margin-left: calc(76 * var(--formula));
}

.em250911NewBalance .content04 .content__item01 .content__text{
  right: calc(23 * var(--formula));
}

.em250911NewBalance .content04 .content__item01 .content__text.text01{
  /* top: calc(448 * var(--formula)); */
  top: calc(-318 * var(--formula));
  right: calc(-6 * var(--formula));
  width: calc(317 * var(--formula));
}

.em250911NewBalance .content04 .content__item01 .content__text.text02{
  /* top: calc(517 * var(--formula)); */
  top: calc(-220 * var(--formula));
  width: calc(614 * var(--formula));
}

.em250911NewBalance .content04 .content__item01 .content__text.text03{
  /* top: calc(633 * var(--formula)); */
  top: calc(-103 * var(--formula));
  width: calc(60 * var(--formula));
}

.em250911NewBalance .content04 .content__item01 .content__text.text04{
  /* top: calc(743 * var(--formula)); */
  top: calc(6 * var(--formula));
  width: calc(231 * var(--formula));
}

.em250911NewBalance .content04 .content__item01 .content__text.text05{
  /* top: calc(856 * var(--formula)); */
  top: calc(119 * var(--formula));
  width: calc(424 * var(--formula));
}

.em250911NewBalance .content04 .content__item03 .content__image{
  width: calc(510 * var(--formula));
}

.em250911NewBalance .content04 .content__item03 .content__text{
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: calc(226 * var(--formula));
}



/* ===============================================### 
コンテンツ05
###=============================================== */
.em250911NewBalance .content05{
  margin-top: calc(132 * var(--formula));
}

.em250911NewBalance .content05 .content__inner{
}

.em250911NewBalance .content05 .content__item01{
}

.em250911NewBalance .content05 .content__item02{
  margin-top: calc(94 * var(--formula));
}

.em250911NewBalance .content05 .content__item03{
  width: fit-content;
  margin-top: calc(140 * var(--formula));
  margin-inline: auto;
}

.em250911NewBalance .content05 .slide-wrap{
  width: calc(750 * var(--formula));
  overflow: hidden;
}

.em250911NewBalance .content05 .item-wrap{
  position: relative;
}

/************** text **************/
.em250911NewBalance .content05 .credit{
  margin-top: calc(32 * var(--formula));
  text-align: center;
}

.em250911NewBalance .content05 .credit .credit02,
.em250911NewBalance .content05 .credit .credit03{
  margin-left: calc(12 * var(--formula));
}

/************** image **************/
.em250911NewBalance .content05 .content__item01 .content__image{
  width: calc(750 * var(--formula));
}

.em250911NewBalance .content05 .content__item02 .content__image{
  width: calc(600 * var(--formula));
}

.em250911NewBalance .content05 .content__item03 .content__image{
  width: calc(510 * var(--formula));
}

.em250911NewBalance .content05 .content__item01 .content__text.text01{
  top: calc(-13 * var(--formula));
  right: calc(-10 * var(--formula));
  width: calc(377 * var(--formula));
}

.em250911NewBalance .content05 .content__item01 .content__text.text02{
  top: calc(115 * var(--formula));
  right: calc(42 * var(--formula));
  width: calc(580 * var(--formula));
}

.em250911NewBalance .content05 .content__item01 .content__text.text03{
  top: calc(233 * var(--formula));
  right: calc(42 * var(--formula));
  width: calc(219 * var(--formula));
}

.em250911NewBalance .content05 .content__item01 .content__text.text04{
  top: calc(477 * var(--formula));
  right: calc(-23 * var(--formula));
  width: calc(231 * var(--formula));
}

.em250911NewBalance .content05 .content__item01 .content__text.text05{
  bottom: calc(124 * var(--formula));
  left: calc(10 * var(--formula));
  width: calc(255 * var(--formula));
}

.em250911NewBalance .content05 .content__item03 .content__text{
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: calc(639 * var(--formula));
  margin-top: calc(10 * var(--formula));
  margin-left: calc(19 * var(--formula));
}



/* ===============================================### 
コンテンツ06
###=============================================== */
.em250911NewBalance .content06{
  margin-top: calc(132 * var(--formula));
}

.em250911NewBalance .content06 .content__inner{
}

.em250911NewBalance .content06 .content__item01{
  position: relative;
  width: fit-content;
  margin-inline: auto;
}

/************** image **************/
.em250911NewBalance .content06 .content__item01 .content__image{
  width: calc(600 * var(--formula));
}

.em250911NewBalance .content06 .content__item01 .content__text.text01{
  top: calc(51 * var(--formula));
  left: calc(-37 * var(--formula));
  width: calc(245 * var(--formula));
}

.em250911NewBalance .content06 .content__item01 .content__text.text02{
  top: calc(120 * var(--formula));
  right: calc(-53 * var(--formula));
  width: calc(134 * var(--formula));
}

.em250911NewBalance .content06 .content__item01 .content__text.text03{
  bottom: calc(38 * var(--formula));
  left: calc(61 * var(--formula));
  width: calc(234 * var(--formula));
}



/* ===============================================### 
コンテンツ07
###=============================================== */
.em250911NewBalance .content07{
  margin-top: calc(139 * var(--formula));
  margin-bottom: calc(108 * var(--formula));
}

.em250911NewBalance .content07 .content__inner{
}

.em250911NewBalance .content07 .content__item01{
  padding-top: calc(42 * var(--formula));
  padding-bottom: calc(56 * var(--formula));
  background-color: #EBF4F5;
}

.em250911NewBalance .content07 .content__item02{
  margin-top: calc(116 * var(--formula));
}

/************** text **************/
.em250911NewBalance .info-list{
  font-family: var(--font-ja);
  font-size: calc(24 * var(--formula));
  font-weight: var(--fw-medium);
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  line-height: 2.25;
  text-align: center;
}

.em250911NewBalance .info-list span.date-text{
  font-family: var(--font-en02);
  font-size: calc(36 * var(--formula));
  font-weight: var(--fw-regular);
  font-style: italic;
  color: #A9A8AD;
}
.em250911NewBalance .info-list .attention-text{
  display: inline-block;
  margin-top: calc(13 * var(--formula));
  font-size: calc(22 * var(--formula));
}

.em250911NewBalance .info-list li:not(:first-child){
  margin-top: calc(17 * var(--formula));
}

.em250911NewBalance .info-list li{
  line-height: 1.75;
}

.em250911NewBalance .info-list li.list03{
  margin-top: calc(20 * var(--formula));
  line-height: 1.79;
}

.em250911NewBalance .staff-text{
  font-family: var(--font-en);
  font-size: calc(22 * var(--formula));
  font-weight: var(--fw-thin);
  line-height: 2.2;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  text-align: center;
}