@charset "UTF-8";
.em250711salerecommend {
  --font: 游ゴシック体, YuGothic, 游ゴシック Medium, Yu Gothic, メイリオ, sans-serif;
  --font-urw: "classico-urw", sans-serif;
  --font-en: pragmatica, sans-serif;
  --font-mincho: NotoSerifJP, ＭＳ Ｐ明朝, MS PMincho, serif;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  --fw-black: 900;
  font-feature-settings: "palt";
  --color-black: #000000;
  --color-white: #ffffff;
  --color-red: #F22613;
  --color-gray: #EDEFEF;
  --pc-width: 1400;
  --tb-width: 768;
  --sp-width: 750;
  text-align: center;
}

* > .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;
}

/* ▼ -----------可変設定---------- ▼ */
.lp_variable {
  --pc-width: 1400; /*PCデザイン幅*/
  --sp-width: 750; /*SPデザイン幅*/
  --pc-artboard-width: 500; /*PC共通デザイン幅*/
  --sp-artboard-width: 750; /*SP共通デザイン幅*/
  --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) {
  .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)); /* 画面幅に基づく可変値 */
  }
}
/* ▲ -----------可変設定---------- ▲ */
.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 {
  opacity: 0;
  transition: opacity 3s;
}

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

.js-fadeIn-load.js-active, .js-fadeIn-load--02.js-active {
  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, .js-fadeUp-credit {
  opacity: 0;
  transition: opacity 1s, transform 1s;
  transform: translateY(30px);
}

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

.js-fadeIn {
  opacity: 0;
  transition: opacity 3s;
}

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

.js-clip_left {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s;
}

.js-clip_left.js-active {
  clip-path: inset(0 0 0 0);
}
.js-clip_right {
  clip-path: inset(0 0 0 100%);
  transition: clip-path 1s;
}

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

.js-clip_left_load {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s;
}

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

.js-fadeUpList li {
  opacity: 0;
  transform: translateY(30px);
}
.js-fadeUpList li:nth-of-type(1) {
  transition: opacity 1.5s 0s, transform 1s 0s;
}
.js-fadeUpList li:nth-of-type(2) {
  transition: opacity 1.5s 0.4s, transform 1s 0.4s;
}
.js-fadeUpList li:nth-of-type(3) {
  transition: opacity 1.5s 0.8s, transform 1s 0.8s;
}

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

.footer {
  padding: 0;
}

.footer .toTop {
  z-index: 100;
}

#Contents {
  overflow: unset;
}

.em250711salerecommend .contents__right {
  overflow-x: clip;
  width: calc(750 * var(--formula));
}
.em250711salerecommend .contents__bottom {
  padding-bottom: calc(200 * var(--formula));
}
.em250711salerecommend .product__movie video {
  display: block;
  width: 100%;
  height: auto;
}
.em250711salerecommend .intro {
  margin: 0 auto;
  padding: calc(87 * var(--formula)) 0 0 0;
  text-align: center;
  z-index: 1;
  position: relative;
}
.em250711salerecommend .intro .intro__lead {
  font-family: var(--font);
  font-size: calc(24 * var(--formula));
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: center;
}
.em250711salerecommend .product__block {
  width: 100%;
  margin: 0 auto;
}
.em250711salerecommend .product__block.product__block--01, .em250711salerecommend .product__block .product__block--02 {
  position: relative;
  z-index: 1;
}

.em250711salerecommend .product__block .section_num {
  font-family: var(--font-urw);
  font-weight: var(--fw-regular);
  font-size: calc(78 * var(--formula));
  letter-spacing: 0.015em;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  position: relative;
}

.em250711salerecommend .product__block .section_num::before,
.em250711salerecommend .product__block .section_num::after {
  position: absolute;
  content: '';
  width: calc(320 * var(--formula));
  height: calc(3 * var(--formula));
  background-color: var(--color-black);
  margin-top: calc(5 * var(--formula));
}
.em250711salerecommend .product__block .section_num::before {
  right: calc(-71 * var(--formula));
}
.em250711salerecommend .product__block .section_num::after {
left:  calc(-26 * var(--formula));
}
.em250711salerecommend .product__block .product__textWrap--01 .section_num::before {
  right: calc(-63 * var(--formula));
}
@media screen and (max-width: 767px){
  .em250711salerecommend .product__block .section_num::before {
    right: calc(-6 * var(--formula));
  }
  .em250711salerecommend .product__block .section_num::after {
  left:  calc(-14 * var(--formula));
  }
  .em250711salerecommend .product__block .product__textWrap--01 .section_num::before {
    right: calc(-5 * var(--formula));
  }
}
.em250711salerecommend .product__block .model_name {
  font-family: var(--font-en);
  font-weight: var(--fw-light);
  font-size: calc(36 * var(--formula));
  letter-spacing: 0.05em;
  margin-top: calc(25 * var(--formula));
}

.em250711salerecommend .product__block .model_tall {
  font-family: var(--font-en);
  font-weight: var(--fw-light);
  font-size: calc(28 * var(--formula));
  letter-spacing: 0.05em;
  margin-top: calc(15 * var(--formula));
}

.em250711salerecommend .product__block .product__image-plus {
  width: calc(60 * var(--formula));
  position: absolute;
  z-index: 3;
}


.em250711salerecommend .product__block .product__image-wrap {
  width: calc(750 * var(--formula));
  position: relative;
}
.em250711salerecommend .product__block .product__image-wrap.product__image-wrap--01 {
  margin: calc(86 * var(--formula)) auto 0;
}
.em250711salerecommend .product__block .product__image-wrap.product__image-wrap--02 {
  position: relative;
  margin: calc(140 * var(--formula)) auto 0;
}

.em250711salerecommend .product__block .product__image-wrap.product__image-wrap--03 {
  margin: calc(140 * var(--formula)) auto 0;
}
.em250711salerecommend .product__block .product__image-wrap.product__image-wrap--04 {
  margin: calc(119 * var(--formula)) auto 0;
}
.em250711salerecommend .product__block .product__image-wrap.product__image-wrap--05 {
  margin: calc(140 * var(--formula)) auto 0;
}
.em250711salerecommend .product__image-wrap--05 .slide-wrapper {
  margin: calc(728 * var(--formula)) auto 0;
}

.em250711salerecommend .product__block .product__image-wrap.product__image-wrap--06 {
  margin: calc(140 * var(--formula)) auto 0;
}
.em250711salerecommend .product__block .product__image-wrap.product__image-wrap--07 {
  margin: calc(119 * var(--formula)) auto 0;
}
.em250711salerecommend .product__block .product__image-wrap.product__image-wrap--09 {
  margin: calc(138 * var(--formula)) auto 0;
}
.em250711salerecommend .product__image-wrap--09 .slide-wrapper {
  margin: calc(740 * var(--formula)) auto 0;
}
.em250711salerecommend .product__textWrap--01 {
  width: calc(750 * var(--formula));
}
.em250711salerecommend .product__textWrap--02 {
  width: calc(750 * var(--formula));
}
.em250711salerecommend .product__textWrap--03 {
  width: calc(750 * var(--formula));
}

.em250711salerecommend .product__block .product__image {
  width: calc(750 * var(--formula));
  position: relative;
  z-index: 1;
}
.em250711salerecommend .product__block .product__image.product__image--01_1 {
  width: calc(690 * var(--formula));
  margin: calc(56 * var(--formula)) auto 0;
}
.em250711salerecommend .product__block .product__image--01_1 .product__image-plus {
  bottom: calc(30 * var(--formula));
  right: calc(25 * var(--formula));
}

.em250711salerecommend .product__block .product__movie--01 {
  width: calc(450 * var(--formula));
  margin: calc(80 * var(--formula)) auto 0;
}

.em250711salerecommend .product__block .product__image_flex {
  width: calc(750 * var(--formula));
  margin: calc(84 * var(--formula)) auto 0;
  display: flex;
  justify-content: space-between;
  row-gap: calc(12 * var(--formula));
  background-color: var(--color-gray);
  padding-block: calc(100 * var(--formula)) calc(80 * var(--formula));
}

.em250711salerecommend .product__block .product__image.product__image--01_2 {
  width: calc(369 * var(--formula));
}
.em250711salerecommend .product__block .product__image.product__image--01_3 {
  width: calc(369 * var(--formula));
}

.em250711salerecommend .product__block .product__image--02_1 .product__image-plus {
  bottom: calc(30 * var(--formula));
  left: calc(25 * var(--formula));
}
.em250711salerecommend .product__block .product__image.product__image--02_2 {
  width: calc(480 * var(--formula));
  position: absolute;
  top: calc(954 * var(--formula));
  right: calc(60 * var(--formula));
}
.em250711salerecommend .product__image-wrap--02 .product__image_flex {
  margin: calc(694 * var(--formula)) auto 0;
}
.em250711salerecommend .product__block .product__image.product__image--02_3 {
  width: calc(369 * var(--formula));
}
.em250711salerecommend .product__block .product__image.product__image--02_4 {
  width: calc(369 * var(--formula));
}

.em250711salerecommend .product__block .product__image--03_1 {
  width: calc(660 * var(--formula));
  margin-left: calc(90 * var(--formula));
  position: relative;
  z-index: 2;
}
.em250711salerecommend .product__block .product__image--03_1 .product__image-plus {
  bottom: calc(30 * var(--formula));
  right: calc(25 * var(--formula));
}
.em250711salerecommend .product__block .product__image.product__image--03_2 {
  width: calc(525 * var(--formula));
  position: absolute;
  top: calc(840 * var(--formula));
  left: calc(0 * var(--formula));
  z-index: 0;
}
.em250711salerecommend .product__image-wrap--03 .product__image_flex {
  margin: calc(758 * var(--formula)) auto 0;
  justify-content: center;
}
.em250711salerecommend .product__block .product__image.product__image--03_3 {
  width: calc(369 * var(--formula));
}

.em250711salerecommend .product__block .product__image.product__image--04_1 {
  margin: calc(57 * var(--formula)) auto 0 0;
  width: calc(690 * var(--formula));
}
.em250711salerecommend .product__block .product__image--04_1 .product__image-plus {
  bottom: calc(30 * var(--formula));
  right: calc(25 * var(--formula));
}
.em250711salerecommend .product__block .product__movie--02 {
  width: calc(486 * var(--formula));
  margin: calc(80 * var(--formula)) auto 0 calc(264 * var(--formula));
}

.em250711salerecommend .product__block .product__image.product__image--04_2 {
  width: calc(369 * var(--formula));
}
.em250711salerecommend .product__block .product__image.product__image--04_3 {
  width: calc(369 * var(--formula));
}
.em250711salerecommend .product__block .product__image.product__image--04_4 {
  width: calc(369 * var(--formula));
}

.em250711salerecommend .product__block .product__image--05_1 {
  width: calc(690 * var(--formula));
  margin-left: calc(60 * var(--formula));
  position: relative;
  z-index: 2;
}
.em250711salerecommend .product__block .product__image--05_1 .product__image-plus {
  bottom: calc(30 * var(--formula));
  right: calc(25 * var(--formula));
}
.em250711salerecommend .product__block .product__image.product__image--05_2 {
  width: calc(525 * var(--formula));
  position: absolute;
  top: calc(863 * var(--formula));
  left: calc(0 * var(--formula));
  z-index: 0;
}

.em250711salerecommend .product__block .product__image.product__image--05_3 {
  width: calc(369 * var(--formula));
}
.em250711salerecommend .product__block .product__image.product__image--05_4 {
  width: calc(369 * var(--formula));
}
.em250711salerecommend .product__block .product__image.product__image--05_5 {
  width: calc(369 * var(--formula));
}

.em250711salerecommend .product__block .product__image--06_1 {
  width: calc(660 * var(--formula));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.em250711salerecommend .product__block .product__image--06_1 .product__image-plus {
  bottom: calc(30 * var(--formula));
  right: calc(25 * var(--formula));
}
.em250711salerecommend .product__block .product__image.product__image--06_2 {
  width: calc(525 * var(--formula));
  margin: calc(85 * var(--formula)) auto 0;
}

.em250711salerecommend .product__block .product__image.product__image--06_3 {
  width: calc(369 * var(--formula));
}
.em250711salerecommend .product__block .product__image.product__image--06_4 {
  width: calc(369 * var(--formula));
}
.em250711salerecommend .product__block .product__image.product__image--06_5 {
  width: calc(369 * var(--formula));
}

.em250711salerecommend .product__block .product__image.product__image--07_1 {
  width: calc(690 * var(--formula));
  margin: calc(57 * var(--formula)) auto 0 calc(60 * var(--formula));
}
.em250711salerecommend .product__block .product__image--07_1 .product__image-plus {
  bottom: calc(30 * var(--formula));
  right: calc(25 * var(--formula));
}

.em250711salerecommend .product__block .product__movie--03 {
  width: calc(486 * var(--formula));
  margin: calc(60 * var(--formula)) auto 0 0;
}

.em250711salerecommend .product__block .product__image.product__image--07_2 {
  width: calc(369 * var(--formula));
}
.em250711salerecommend .product__block .product__image.product__image--07_3 {
  width: calc(369 * var(--formula));
}

.em250711salerecommend .product__block .product__image.product__image--08_1 {
  width: calc(690 * var(--formula));
  margin: calc(140 * var(--formula)) auto 0 0;
  position: relative;
  z-index: 2;
}
.em250711salerecommend .product__block .product__image--08_1 .product__image-plus {
  bottom: calc(30 * var(--formula));
  left: calc(25 * var(--formula));
}

.em250711salerecommend .product__block .product__image.product__image--08_2 {
  width: calc(540 * var(--formula));
  position: absolute;
  z-index: 0;
  right: 0;
  top: calc(874 * var(--formula));
}
.em250711salerecommend .product__image-wrap--08 .product__image_flex {
  margin: calc(760 * var(--formula)) auto 0;
}
.em250711salerecommend .product__block .product__image.product__image--08_3 {
  width: calc(369 * var(--formula));
}
.em250711salerecommend .product__block .product__image.product__image--08_4 {
  width: calc(369 * var(--formula));
}

.em250711salerecommend .product__block .product__image--09_1 {
  width: calc(660 * var(--formula));
  margin-left: calc(90 * var(--formula));
  position: relative;
  z-index: 2;
}
.em250711salerecommend .product__block .product__image--09_1 .product__image-plus {
  bottom: calc(30 * var(--formula));
  right: calc(25 * var(--formula));
}
.em250711salerecommend .product__block .product__image.product__image--09_2 {
  width: calc(525 * var(--formula));
  position: absolute;
  top: calc(836 * var(--formula));
  left: calc(0 * var(--formula));
  z-index: 0;
}

.em250711salerecommend .product__block .product__image.product__image--09_3 {
  width: calc(369 * var(--formula));
}
.em250711salerecommend .product__block .product__image.product__image--09_4 {
  width: calc(369 * var(--formula));
}
.em250711salerecommend .product__block .product__image.product__image--09_5 {
  width: calc(369 * var(--formula));
}

.em250711salerecommend .product-content {
  position: relative;
  cursor: pointer; /* を削除 (チェックボックスではないため) */
  white-space: nowrap;
  font-family: var(--font-en);
  letter-spacing: 0.025em;
}
.em250711salerecommend .product-name {
  margin-top: calc(34 * var(--formula));
  font-size: calc(30 * var(--formula));
  display: block;
}
.em250711salerecommend .product-price {
  margin-top: calc(12 * var(--formula));
  font-size: calc(22 * var(--formula));
  color: var(--color-red);
  display: block;
}
.em250711salerecommend .price-yen {
  font-family: var(--font);
  font-size: calc(21 * var(--formula));
}


.em250711salerecommend .product__image-wrap--02 .product-list-container {
  display: flex; /* Flexbox を使って横並びにする */
  justify-content: space-between;
  row-gap: calc(25 * var(--formula));
  margin: calc(67 * var(--formula)) auto 0;
}
.em250711salerecommend .product__image-wrap--02 .product-list-container .product-item-list {
  width: calc(325 * var(--formula));
}
.em250711salerecommend .product__image-wrap--02 .product-item-list.right {
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: start;
}
.em250711salerecommend .product__image-wrap--02 .product-item-list.right .product-item._01 {
  height: calc(30 * var(--formula));
}


.em250711salerecommend .product__block .product__credit.product__credit--01 {
  position: absolute;
  bottom: calc(-10 * var(--formula));
  left: calc(490 * var(--formula));
}
.em250711salerecommend .product__block .product__credit.product__credit--02 {
  position: absolute;
  bottom: calc(-10 * var(--formula));
  left: calc(460 * var(--formula));
}
.em250711salerecommend .product__block .product__credit.product__credit--03 {
  position: absolute;
  bottom: calc(-10 * var(--formula));
  left: calc(-250 * var(--formula));
}
.em250711salerecommend .product__block .product__credit.product__credit--04 {
  position: absolute;
  bottom: calc(-10 * var(--formula));
  left: calc(-246 * var(--formula));
}
.em250711salerecommend .product__block .product__text {
  position: absolute;
}
.em250711salerecommend .product__block .product__text.product__text--04 {
  width: calc(84 * var(--formula));
  top: calc(277 * var(--formula));
  left: calc(465 * var(--formula));
  right: 0;
}
.em250711salerecommend .product__block .product__text.product__text--10 {
  width: calc(86 * var(--formula));
  top: calc(0 * var(--formula));
  left: auto;
  right: calc(-126 * var(--formula));
}
.em250711salerecommend .prof__area {
  width: calc(420 * var(--formula));
  margin: calc(95 * var(--formula)) auto 0;
}
.em250711salerecommend .prof__area .prof__icon {
  width: calc(250 * var(--formula));
  height: calc(250 * var(--formula));
  margin: 0 auto;
}
.em250711salerecommend .prof__area .prof__text {
  width: calc(420 * var(--formula));
  height: calc(223 * var(--formula));
  margin: calc(-70 * var(--formula)) 0 0 0;
  padding: calc(93 * var(--formula)) 0 0 0;
  text-align: center;
  border: 1px solid #000;
}
.em250711salerecommend .prof__area .prof__name {
  width: 100%;
  font-family: var(--font-en);
  font-size: calc(38 * var(--formula));
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1;
}
.em250711salerecommend .prof__area .prof__account {
  width: 100%;
  margin: calc(20 * var(--formula)) auto 0;
  font-family: var(--font-en);
  font-size: calc(24 * var(--formula));
  font-weight: 200;
  letter-spacing: 0.025em;
  line-height: 1;
}
.em250711salerecommend .prof__area.prof__area--02 {
  width: calc(400 * var(--formula));
}
.em250711salerecommend .prof__area.prof__area--02 .prof__text {
  width: calc(400 * var(--formula));
}
.em250711salerecommend .product__block--mv .mv-inner {
  width: 100%;
}
.em250711salerecommend .product__block--mv .mv__image {
  width: 100%;
  position: relative;
}
.em250711salerecommend .product__block--mv .mv__text {
  width: calc(750 * var(--formula));
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(268 * var(--formula));
  pointer-events: none;
}
.em250711salerecommend .product__block--intro {
  position: relative;
  z-index: 0;
}
.em250711salerecommend .product__block--intro .product__block-inner {
  width: 100%;
}
.em250711salerecommend .product__block--novelty {
  width: calc(750 * var(--formula));
  position: relative;
  background-color: #eeeeee;
  padding: calc(10 * var(--formula));
  margin: calc(140 * var(--formula)) auto 0;
}
.em250711salerecommend .product__block--novelty .product__block-inner {
  border: 1px solid #fff;
}
.em250711salerecommend .product__block--novelty .novelty__title {
  display: block;
  margin: calc(38 * var(--formula)) auto 0;
  text-align: center;
}
.em250711salerecommend .product__block--novelty .novelty__title span {
  display: inline-block;
  font-family: var(--font-en);
  font-size: calc(48 * var(--formula));
  letter-spacing: 0.015em;
  position: relative;
}
.em250711salerecommend .product__block--novelty .novelty__title span::before {
  position: absolute;
  display: block;
  content: "";
  width: calc(25 * var(--formula));
  height: 1px;
  background-color: #000;
  top: calc(28 * var(--formula));
  left: -13%;
}
.em250711salerecommend .product__block--novelty .novelty__title span::after {
  position: absolute;
  display: block;
  content: "";
  width: calc(25 * var(--formula));
  height: 1px;
  background-color: #000;
  top: calc(28 * var(--formula));
  left: auto;
  right: -13%;
}
.em250711salerecommend .product__block--novelty .novelty__date {
  margin: calc(20 * var(--formula)) 0 0 0;
  font-family: var(--font-en);
  font-size: calc(30 * var(--formula));
  letter-spacing: 0.05em;
  text-align: center;
}
.em250711salerecommend .product__block--novelty .novelty__image {
  width: calc(460 * var(--formula));
  margin: calc(33 * var(--formula)) auto 0;
}
.em250711salerecommend .product__block--novelty .product__lead {
  margin: calc(55 * var(--formula));
  padding: 0 0 calc(0 * var(--formula)) 0;
  font-size: calc(24 * var(--formula));
  font-feature-settings: "palt";
  font-weight: 400;
  line-height: 2;
  text-align: center;
  letter-spacing: 0.05em;
}
.em250711salerecommend .product__block--novelty .product__lead span {
  font-size: calc(22 * var(--formula));
}
.em250711salerecommend .product__block-inner--01 {
  margin: calc(0 * var(--formula)) 0 0 0;
}
.em250711salerecommend .intro__image {
  background-color: #fff;
}
.em250711salerecommend .button__all {
  display: block;
  width: 100%;
  height: calc(62 * var(--formula));
  margin: calc(117 * var(--formula)) auto 0;
  font-family: var(--font-en);
  font-size: calc(54 * var(--formula));
  letter-spacing: 0.04em;
  line-height: calc(62 * var(--formula));
  text-align: center;
  white-space: nowrap;
  position: relative;
}
.em250711salerecommend .button__all span {
  padding: 0;
  position: relative;
}
.em250711salerecommend .button__all span::before {
  position: absolute;
  display: block;
  content: "";
  width: 104%;
  height: 1px;
  background-color: #000;
  bottom: calc(0 * var(--formula));
  left: -2%;
}
.em250711salerecommend .button__all span::after {
  position: absolute;
  display: block;
  content: "";
  width: 104%;
  height: 1px;
  background-color: #000;
  bottom: calc(-5 * var(--formula));
  left: -2%;
}

/************** button **************/
.em250711salerecommend .link__button{
  width: calc(460 * var(--formula));
  margin-inline: auto;
}

/************** slide **************/
.em250711salerecommend .product__image-wrap .slide-wrapper {
  width: calc(750 * var(--formula));
  overflow: hidden;
  margin: calc(84 * var(--formula)) auto 0;
  background-color: var(--color-gray);
  padding-block: calc(100 * var(--formula)) calc(80 * var(--formula));
}

.em250711salerecommend .slideImageElement__visible .product__image {
  width: calc(369 * var(--formula));
  margin-right: calc(14 * var(--formula));
}

.em250711salerecommend .product__image-wrap--02 .slide-wrapper {
  margin: calc(693 * var(--formula)) auto 0;
}

.em250711salerecommend .product__image-wrap--03 .slide-wrapper {
  margin: calc(758 * var(--formula)) auto 0;
}

.em250711salerecommend .product__image-wrap--05 .slide-wrapper {
  margin: calc(728 * var(--formula)) auto 0;
}

.em250711salerecommend .product__image-wrap--08 .slide-wrapper {
  margin: calc(760 * var(--formula)) auto 0;
}

.em250711salerecommend .product__image-wrap--09 .slide-wrapper {
  margin: calc(740 * var(--formula)) auto 0;
}

@media only screen and (min-width: 768px) {
  .em250711salerecommend .product__block .product__image-wrap {
    width: 100%;
  }
  .em250711salerecommend .product__block .product__image-wrap_pc {
    width: calc(750 * var(--formula));
    margin: 0 auto;
    position: relative;
  }
  .em250711salerecommend .product__block .product__image_bg {
    width: 100%;
    margin: calc(84 * var(--formula)) auto 0;
    background-color: var(--color-gray);
    padding-block: calc(100 * var(--formula)) calc(80 * var(--formula));
  }
  .em250711salerecommend .product__block .product__image_flex {
    margin: 0 auto;
    padding-block: 0 0;
  }
  .em250711salerecommend .product__image-wrap--02 .product__image_bg {
    margin: calc(694 * var(--formula)) auto 0;
  }
  .em250711salerecommend .product__image-wrap--03 .product__image_bg {
    margin: calc(758 * var(--formula)) auto 0;
  }
  .em250711salerecommend .product__image-wrap--08 .product__image_bg {
    margin: calc(760 * var(--formula)) auto 0;
  }
  .em250711salerecommend .product__image-wrap .slide-wrapper {
    width: calc(700*(100vw / 1400));
  }
  .em250711salerecommend .product__textWrap--01 {
    width: 100%;
  }
  .em250711salerecommend .product__textWrap--02 {
    width: 100%;
  }
  .em250711salerecommend .product__textWrap--03 {
    width: 100%;
  }
  .em250711salerecommend .product__block .section_num {
      font-size: calc(52*(100vw / 1400));
  }
  .em250711salerecommend .product__block .section_num::before {
    width: calc(353 * (100vw / 1400));
  }
  .em250711salerecommend .product__block .section_num::after {
    width: calc(323 * (100vw / 1400));
  }
}

@media only screen and (min-width: 768px) {
  #footer_emmi {
    margin-top: 0;
  }
  .em250711salerecommend .contents__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
  .em250711salerecommend .contents__left {
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 2;
    overflow: hidden;
    grid-row: 1;
  }
  .em250711salerecommend .contents__right {
    grid-row: 1;
    grid-column: 2;
    width: 100%;
    padding: calc(0 * var(--formula_pc)) 0 0 0;
  }
  .em250711salerecommend .product__block--mv {
    width: auto;
    height: 100svh;
    overflow: hidden;
  }
  .em250711salerecommend .product__block--mv .mv-inner {
    width: 100%;
    height: 100%;
  }
  .em250711salerecommend .product__block--mv .mv__image picture {
    height: 100vh;
  }
  .em250711salerecommend .product__block--mv .mv__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
  .em250711salerecommend .product__block--mv .mv__text {
    width: calc(615*(100vw / 1400));
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .em250711salerecommend .lp__bottom-area {
    padding: 0 0 calc(120 * var(--formula)) 0;
  }
}
@media only screen and (max-width: 767px) {
  .em250711salerecommend .product__block .product__credit.product__credit--03 {
    bottom: calc(-9 * var(--formula));
    left: calc(-244 * var(--formula));
  }
  /* #footer_emmi {
    padding-top: calc(157 * (100vw/750));
  } */
}/*# sourceMappingURL=style.css.map */

/* ===============================================### 
コンテンツ05
###=============================================== */
.em250711salerecommend .end_content{
  margin-top: calc(121 * var(--formula));
}
@media only screen and (min-width: 768px) {
.em250711salerecommend .end_content{
  padding-bottom: calc(120 * var(--formula));
}
}

@media screen and (max-width: 767px){
  .em250711salerecommend .saleitem_wrapper .product__image{
    width: calc(370*var(--formula));
    }
}
@media screen and (min-width: 768px){
  .em250711salerecommend .saleitem_wrapper{
    width:50vw !important;
  }
  .em250711salerecommend .saleitem_wrapper .product__image{
    width: calc(370*var(--formula));
    }
}
.em250711salerecommend .saleitem_wrapper .product__image .ttl,
.em250711salerecommend .saleitem_wrapper .product__image .price{
  text-align: center;
  display: block;
  position: relative;
  cursor: pointer;
  font-family: var(--font);
  letter-spacing: 0.025em;
}
.em250711salerecommend .saleitem_wrapper .product__image .ttl{
  margin-top: calc(34 * var(--formula));
  font-size: calc(22 * var(--formula));
  line-height: 1.75;
}
.em250711salerecommend .saleitem_wrapper .product__image .price{
    /* margin-top: calc(12 * var(--formula)); */
    font-size: calc(22 * var(--formula));
    color: var(--color-red);
}

.em250711salerecommend .saleitem_wrapper .product__image .discountRateS{
  padding-left: calc(10*var(--formula));
}
@media screen and (max-width: 767px){

  .em250711salerecommend .saleitem_wrapper .product__image .discountRateS{
    padding-left: calc(10*var(--formula));
      width: initial;
      height: initial;
      background-color: initial;
      font-size: calc(22 * var(--formula));
      color: var(--color-red);
      line-height: initial;
      display: initial;
      text-align: initial;
      margin-left: initial;
  }
}
.em250711salerecommend .saleitem_wrapper.flex .slideImageElement__visible{
  display: flex
  ;
  justify-content: center;
  gap: calc(14*var(--formula));
}
.em250711salerecommend .saleitem_wrapper.flex .slideImageElement__visible .product__image {
  margin-right: 0;
}