@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
------------------------------------------ */
.main-area {
  overflow: clip;
}

#footer_emmi {
  margin-top: 0;
}

.emmi-250925_MUSTBUY {
  /* 可変設定
  ------------------------------------------ */
  /*デザインの値*/
  --pc-width: 1400; /*PCデザイン幅*/
  --sp-width: 750; /*SPデザイン幅*/
  --pc-artboard-width: 480; /*SP共通デザイン幅*/
  --sp-artboard-width: 750; /*PC共通デザイン幅*/
  /*可変率の計算式*/
  --formula: calc(
    var(--variable) * var(--ratio)
  ); /*SP,PC共通箇所の可変割合の計算式*/
  --formula_pc: calc(var(--variable) * 1); /*PCデザインの可変割合の計算式*/
  /* PC画面幅 1400px以上 固定 */
  /* PC画面幅 768～1400px 可変 */
  /* SP画面幅 767px以下 可変 */
  /* mixin
  ------------------------------------------ */
  /* reset
  ------------------------------------------ */
  /* 共通
  ------------------------------------------ */
  /* LP style
  ------------------------------------------ */
}
@media (min-width: 1401px) {
  .emmi-250925_MUSTBUY {
    --ratio: calc(
      var(--pc-artboard-width) / var(--sp-artboard-width)
    ); /* PCとSPのデザイン幅の比率 */
    --variable: 1px; /* 固定値（可変しない） */
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .emmi-250925_MUSTBUY {
    --ratio: calc(
      var(--pc-artboard-width) / var(--sp-artboard-width)
    ); /* PCとSPのデザイン幅の比率 */
    --variable: calc(100vw / var(--pc-width)); /* 画面幅に基づく可変値 */
  }
}
@media (max-width: 767px) {
  .emmi-250925_MUSTBUY {
    --ratio: 1; /* 比率は1（変わらない） */
    --variable: calc(100vw / var(--sp-width)); /* 画面幅に基づく可変値 */
  }
}
.emmi-250925_MUSTBUY img {
  width: 100%;
  height: auto;
}
.emmi-250925_MUSTBUY * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.emmi-250925_MUSTBUY .swiper {
  position: relative;
}
.emmi-250925_MUSTBUY .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: calc(10 * var(--formula));
  gap: calc(12 * var(--formula));
}
.emmi-250925_MUSTBUY .swiper-pagination-bullet {
  width: calc(66 * var(--formula));
  height: calc(3 * var(--formula));
  background: rgba(255, 255, 255, 0.6);
  border-radius: 0;
  margin: 0 !important;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  opacity: 1;
}
.emmi-250925_MUSTBUY .swiper-pagination-bullet-active::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  -webkit-transform-origin: left;
          transform-origin: left;
  z-index: 2;
  -webkit-animation-name: progress-bar;
          animation-name: progress-bar;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes progress-bar {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes progress-bar {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.emmi-250925_MUSTBUY .photo-bg {
  background-color: #fff;
}
.emmi-250925_MUSTBUY .emmi-250925_MUSTBUY-container {
  display: grid;
  grid-template-columns: 1fr calc(750 * var(--variable) * var(--ratio)) 1fr;
  background-color: #fff6e6;
}
@media (max-width: 767px) {
  .emmi-250925_MUSTBUY .emmi-250925_MUSTBUY-container {
    display: block;
  }
}
.emmi-250925_MUSTBUY .fixed-left,
.emmi-250925_MUSTBUY .fixed-right {
  position: sticky;
  top: 0;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .emmi-250925_MUSTBUY .fixed-left,
  .emmi-250925_MUSTBUY .fixed-right {
    display: none;
  }
}
.emmi-250925_MUSTBUY .fixed-left-logo {
  width: calc(235 * var(--formula_pc));
  margin: 0 auto;
}
.emmi-250925_MUSTBUY .fixed-right-link {
  display: block;
  width: calc(330 * var(--formula_pc));
  margin: 0 auto;
}
.emmi-250925_MUSTBUY .lp-cont {
  width: calc(750 * var(--variable) * var(--ratio));
  margin: 0 auto;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .emmi-250925_MUSTBUY .lp-cont {
    overflow: clip;
  }
}
@media (max-width: 767px) {
  .emmi-250925_MUSTBUY .lp-cont {
    width: 100%;
  }
}
.emmi-250925_MUSTBUY .movie {
  aspect-ratio: 750/1333;
}
.emmi-250925_MUSTBUY .movie video {
  width: 100%;
  height: 100%;
}
.emmi-250925_MUSTBUY .product01 {
  margin-top: calc(120 * var(--formula));
}
.emmi-250925_MUSTBUY .product01-inner {
  overflow: hidden;
}
.emmi-250925_MUSTBUY .product01-photo-01 {
  width: calc(640 * var(--formula));
  margin: 0 auto;
}
.emmi-250925_MUSTBUY .product01-img {
  position: relative;
  top: calc(46 * var(--formula));
  left: calc(23 * var(--formula));
  width: calc(340 * var(--formula));
}
.emmi-250925_MUSTBUY .product01-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc(840 * var(--formula));
  margin: calc(87 * var(--formula)) auto 0;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #fefbf6;
}
.emmi-250925_MUSTBUY .product01-grid-item {
  width: calc(420 * var(--formula));
}
.emmi-250925_MUSTBUY .product01-grid-item-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.emmi-250925_MUSTBUY .product01-price {
  margin-top: calc(81 * var(--formula));
  margin-left: calc(60 * var(--formula));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(13 * var(--formula));
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(0 * var(--formula));
}
.emmi-250925_MUSTBUY .product01-price a {
  font-family: "pragmatica", sans-serif;
  font-weight: 300;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(22 * var(--formula));
  line-height: 1.81818182;
  letter-spacing: 0.05em;
  color: #000;
}
.emmi-250925_MUSTBUY .product02 {
  margin-top: calc(160 * var(--formula));
}
.emmi-250925_MUSTBUY .product02-photo-01 {
  width: calc(750 * var(--formula));
}
.emmi-250925_MUSTBUY .product02-photo-02 {
  width: calc(520 * var(--formula));
  margin: 0 auto;
}
.emmi-250925_MUSTBUY .product02-slider {
  position: relative;
  z-index: 1;
  margin: calc(-104 * var(--formula)) auto 0;
  width: calc(520 * var(--formula));
}
.emmi-250925_MUSTBUY .product02-slider .swiper-pagination {
  bottom: calc(14 * var(--formula));
}
.emmi-250925_MUSTBUY .product02-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(13 * var(--formula));
}
.emmi-250925_MUSTBUY .product02-price a {
  font-family: "pragmatica", sans-serif;
  font-weight: 300;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(22 * var(--formula));
  line-height: 1.81818182;
  letter-spacing: 0.05em;
  color: #000;
}
.emmi-250925_MUSTBUY .product02-price-01 {
  margin-top: calc(34 * var(--formula));
}
.emmi-250925_MUSTBUY .product03 {
  margin-top: calc(113 * var(--formula));
  padding: calc(70 * var(--formula)) 0 calc(92 * var(--formula));
  background-color: #0e2646;
  background-image: url("../img/product03_bg.png");
  background-size: calc(888 * var(--formula)) auto;
  background-position: top calc(-20 * var(--formula)) left calc(-122 * var(--formula));
  background-repeat: no-repeat;
}
.emmi-250925_MUSTBUY .product03-photo-01 {
  position: relative;
  z-index: 1;
  width: calc(540 * var(--formula));
  margin-top: calc(30 * var(--formula));
  margin-right: auto;
}
.emmi-250925_MUSTBUY .product03-photo-02 {
  width: calc(660 * var(--formula));
  margin-top: calc(-46 * var(--formula));
  margin-left: auto;
}
.emmi-250925_MUSTBUY .product03-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(13 * var(--formula));
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: calc(16 * var(--formula));
  width: calc(660 * var(--formula));
  margin-left: auto;
}
.emmi-250925_MUSTBUY .product03-price a {
  font-family: "pragmatica", sans-serif;
  font-weight: 300;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(22 * var(--formula));
  line-height: 1.81818182;
  letter-spacing: 0.05em;
  color: #000;
}
.emmi-250925_MUSTBUY .product03-price a {
  color: #fff;
}
.emmi-250925_MUSTBUY .product03-price-01 {
  margin-top: calc(29 * var(--formula));
}
.emmi-250925_MUSTBUY .product04 {
  margin-top: calc(160 * var(--formula));
  padding-bottom: calc(153 * var(--formula));
}
.emmi-250925_MUSTBUY .product04-photo-02 {
  width: calc(580 * var(--formula));
  margin: calc(66 * var(--formula)) auto 0;
}
.emmi-250925_MUSTBUY .product04-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(13 * var(--formula));
  gap: calc(18 * var(--formula));
}
.emmi-250925_MUSTBUY .product04-price a {
  font-family: "pragmatica", sans-serif;
  font-weight: 300;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(22 * var(--formula));
  line-height: 1.81818182;
  letter-spacing: 0.05em;
  color: #000;
}
.emmi-250925_MUSTBUY .product04-price-01 {
  margin-top: calc(31 * var(--formula));
}
.emmi-250925_MUSTBUY .product05 {
  background-color: #fefbf6;
  padding: calc(63 * var(--formula)) 0 0;
}
.emmi-250925_MUSTBUY .product05-inner {
  overflow: clip;
}
.emmi-250925_MUSTBUY .product05-ttl {
  width: calc(615 * var(--formula));
  margin: 0 auto;
}
.emmi-250925_MUSTBUY .product05-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc(800 * var(--formula));
  margin: calc(46 * var(--formula)) auto 0;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #fefbf6;
}
.emmi-250925_MUSTBUY .product05-grid-item {
  width: calc(400 * var(--formula));
}
.emmi-250925_MUSTBUY .product05-grid-item-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: calc(10 * var(--formula)) calc(10 * var(--formula));
}
.emmi-250925_MUSTBUY .product05-price {
  position: relative;
  top: calc(-12 * var(--formula));
  padding-left: calc(20 * var(--formula));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(13 * var(--formula));
  gap: calc(0 * var(--formula));
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.emmi-250925_MUSTBUY .product05-price a {
  font-family: "pragmatica", sans-serif;
  font-weight: 300;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(22 * var(--formula));
  line-height: 1.81818182;
  letter-spacing: 0.05em;
  color: #000;
}
.emmi-250925_MUSTBUY .product05-price-01 {
  margin-top: calc(31 * var(--formula));
}
.emmi-250925_MUSTBUY .product06 {
  position: relative;
  margin-top: calc(330 * var(--formula));
  padding: calc(80 * var(--formula)) 0 calc(107 * var(--formula));
  background-color: #0e2646;
}
.emmi-250925_MUSTBUY .product06::before {
  content: "";
  position: absolute;
  top: calc(583 * var(--formula));
  left: calc(-179 * var(--formula));
  width: calc(444 * var(--formula));
  height: calc(508 * var(--formula));
  background-image: url("../img/product06_img.svg");
  background-repeat: no-repeat;
  z-index: 0;
}
.emmi-250925_MUSTBUY .product06-inner {
  position: relative;
}
.emmi-250925_MUSTBUY .product06-photo-01 {
  position: relative;
  top: calc(-240 * var(--formula));
  width: calc(660 * var(--formula));
}
.emmi-250925_MUSTBUY .product06-slider {
  position: relative;
  margin-top: calc(-286 * var(--formula));
  margin-right: 0;
  margin-left: auto;
  z-index: 1;
  width: calc(480 * var(--formula));
  left: calc(1 * var(--formula));
}
.emmi-250925_MUSTBUY .product06-slider .swiper-pagination {
  padding-right: calc(21 * var(--formula));
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  bottom: calc(23 * var(--formula));
}
.emmi-250925_MUSTBUY .product06-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(13 * var(--formula));
  position: absolute;
  left: calc(30 * var(--formula));
  bottom: calc(10 * var(--formula));
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  justify-items: flex-start;
  gap: calc(0 * var(--formula));
  z-index: 1;
}
.emmi-250925_MUSTBUY .product06-price a {
  font-family: "pragmatica", sans-serif;
  font-weight: 300;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(22 * var(--formula));
  line-height: 1.81818182;
  letter-spacing: 0.05em;
  color: #000;
}
.emmi-250925_MUSTBUY .product06-price a {
  color: #fff;
}
.emmi-250925_MUSTBUY .product06 .novelty {
  margin-top: calc(161 * var(--formula));
  overflow-x: clip;
}
.emmi-250925_MUSTBUY .product06 .novelty-bg {
  position: sticky;
  top: calc(300 * var(--formula));
  width: calc(690 * var(--formula));
  margin: 0 auto 0;
}
.emmi-250925_MUSTBUY .product06 .novelty-bg::before {
  content: "";
  position: absolute;
  top: calc(614 * var(--formula));
  right: calc(-210 * var(--formula));
  width: calc(444 * var(--formula));
  height: calc(508 * var(--formula));
  background-image: url("../img/product06_img.svg");
  background-repeat: no-repeat;
  z-index: -1;
}
.emmi-250925_MUSTBUY .product06 .novelty-scroll-cont {
  overflow: clip;
  height: calc(900 * var(--formula));
}
.emmi-250925_MUSTBUY .product06 .novelty-img {
  width: calc(540 * var(--formula));
  margin: calc(137 * var(--formula)) auto 0;
  position: relative;
  z-index: 1;
}
.emmi-250925_MUSTBUY .product06 .novelty-txt {
  font-family: 游ゴシック体, YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "Open Sans", メイリオ, sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(24 * var(--formula));
  line-height: 2;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
}
.emmi-250925_MUSTBUY .product06 .novelty-txt:nth-of-type(1) {
  margin-top: calc(47 * var(--formula));
}
.emmi-250925_MUSTBUY .product06 .novelty-txt:nth-of-type(2) {
  font-size: calc(22 * var(--formula));
  margin-top: calc(26 * var(--formula));
}
.emmi-250925_MUSTBUY .product07 {
  margin-top: calc(161 * var(--formula));
  overflow: clip;
}
.emmi-250925_MUSTBUY .product07-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc(800 * var(--formula));
  margin: 0 auto;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.emmi-250925_MUSTBUY .product07-grid-item {
  width: calc(400 * var(--formula));
}
.emmi-250925_MUSTBUY .product07-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(13 * var(--formula));
  gap: calc(16 * var(--formula));
}
.emmi-250925_MUSTBUY .product07-price a {
  font-family: "pragmatica", sans-serif;
  font-weight: 300;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(22 * var(--formula));
  line-height: 1.81818182;
  letter-spacing: 0.05em;
  color: #000;
}
.emmi-250925_MUSTBUY .product07-price-01 {
  margin-top: calc(31 * var(--formula));
}
.emmi-250925_MUSTBUY .product08 {
  position: relative;
  overflow: clip;
  margin-top: calc(152 * var(--formula));
}
.emmi-250925_MUSTBUY .product08::after {
  content: "";
  position: absolute;
  top: calc(200 * var(--formula));
  right: calc(-70 * var(--formula));
  width: calc(507 * var(--formula));
  height: calc(425 * var(--formula));
  background-image: url("../img/product08_img.svg");
  background-repeat: no-repeat;
  z-index: 0;
}
.emmi-250925_MUSTBUY .product08-slider {
  position: relative;
  z-index: 1;
  width: calc(500 * var(--formula));
  margin-right: auto;
  margin-left: 0;
}
.emmi-250925_MUSTBUY .product08-slider .swiper-pagination {
  padding-left: calc(21 * var(--formula));
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  top: calc(23 * var(--formula));
}
.emmi-250925_MUSTBUY .product08-photo-01 {
  width: calc(660 * var(--formula));
  margin-top: calc(-60 * var(--formula));
  margin-left: auto;
}
.emmi-250925_MUSTBUY .product08-price {
  width: calc(660 * var(--formula));
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(13 * var(--formula));
  gap: calc(17 * var(--formula));
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.emmi-250925_MUSTBUY .product08-price a {
  font-family: "pragmatica", sans-serif;
  font-weight: 300;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(22 * var(--formula));
  line-height: 1.81818182;
  letter-spacing: 0.05em;
  color: #000;
}
.emmi-250925_MUSTBUY .product08-price-01 {
  margin-top: calc(30 * var(--formula));
}
.emmi-250925_MUSTBUY .check-all {
  padding: calc(122 * var(--formula)) 0 calc(140 * var(--formula));
}
@media (max-width: 767px) {
  .emmi-250925_MUSTBUY .check-all {
    padding: calc(122 * var(--formula)) 0 calc(10 * var(--formula));
  }
}
.emmi-250925_MUSTBUY .check-all-link {
  display: block;
  width: calc(550 * var(--formula));
  margin: 0 auto;
}