@charset "UTF-8";
:root {
  --font: 游ゴシック体, YuGothic, 游ゴシック Medium, Yu Gothic, メイリオ, sans-serif;
  --font-en: haboro-contrast-normal, serif;
  --font-credit: pragmatica, sans-serif;
  --font-mincho: NotoSerifJP, ＭＳ Ｐ明朝, MS PMincho, serif;
  --pc-width: 1400;
  --tb-width: 768;
  --sp-width: 750;
}

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

.em250527SHAKA {
  margin: 0 auto;
  padding: 0 0 0 0;
  color: #2d2d2d;
  font-weight: 400;
  letter-spacing: 0.05em;
  /* メインビジュアル */
}
.em250527SHAKA .contents__right {
  overflow-x: clip;
  width: calc(750 * var(--formula));
}
.em250527SHAKA .contents__bottom {
  padding-bottom: calc(200 * var(--formula));
}
.em250527SHAKA .product__block--movie {
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}
.em250527SHAKA .intro {
  margin: 0 auto;
  padding: calc(89 * var(--formula)) 0 0 0;
  text-align: center;
  z-index: 1;
  position: relative;
}
.em250527SHAKA .intro .intro__lead {
  font-family: var(--font);
  font-size: calc(24 * var(--formula));
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: center;
}
.em250527SHAKA .product__block {
  width: 100%;
  margin: 0 auto;
}
.em250527SHAKA .product__block.product__block--01, .em250527SHAKA .product__block .product__block--02 {
  position: relative;
  z-index: 1;
}
.em250527SHAKA .product__block.product__block--ex {
  position: relative;
  width: calc(720 * var(--formula));
  margin: calc(105 * var(--formula)) auto 0;
  padding: calc(46 * var(--formula)) 0 calc(65 * var(--formula));
  border: 1px solid #000;
}
.em250527SHAKA .product__block.product__block--ex .product__itemList {
  display: grid;
  grid-template-columns: repeat(3, calc(210 * var(--formula)));
  gap: calc(10 * var(--formula));
  margin: 0 0 0 0;
}
.em250527SHAKA .product__block.product__block--ex .product__itemList li:last-of-type {
  margin: calc(14 * var(--formula)) 0 0 0;
}
.em250527SHAKA .product__block.product__block--ex .product__itemList li:last-of-type span {
  display: block;
  width: calc(180 * var(--formula));
  position: relative;
  left: calc(15 * var(--formula));
  bottom: calc(15 * var(--formula));
}
.em250527SHAKA .product__block.product__block--ex .name_logo {
  position: absolute;
  width: calc(290 * var(--formula));
  top: calc(-31 * var(--formula));
  left: auto;
  right: calc(59 * var(--formula));
}
.em250527SHAKA .product__block.product__block--ex .area__name {
  display: block;
  margin: calc(28 * var(--formula)) auto 0;
  text-align: center;
}
.em250527SHAKA .product__block.product__block--ex .area__name span {
  display: inline-block;
  font-family: var(--font-en);
  font-size: calc(42 * var(--formula));
  position: relative;
}
.em250527SHAKA .product__block.product__block--ex .area__name span::before {
  position: absolute;
  display: block;
  content: "";
  width: 104%;
  height: 1px;
  background-color: #000;
  bottom: calc(-5 * var(--formula));
  left: -2%;
}
.em250527SHAKA .product__block.product__block--ex .area__name span::after {
  position: absolute;
  display: block;
  content: "";
  width: 104%;
  height: 1px;
  background-color: #000;
  bottom: calc(-10 * var(--formula));
  left: -2%;
}
.em250527SHAKA .product__block.product__block--ex .product__lead {
  margin: calc(53 * var(--formula)) 0 0 0;
  font-size: calc(24 * var(--formula));
  font-weight: 400;
  line-height: 2;
  text-align: center;
  position: relative;
}
.em250527SHAKA .product__block.product__block--02 {
  margin: calc(210 * var(--formula)) auto 0;
}
.em250527SHAKA .product__block .product__image-wrap {
  width: calc(750 * var(--formula));
  position: relative;
}
.em250527SHAKA .product__block .product__image-wrap.product__image-wrap--01 {
  margin: calc(100 * var(--formula)) auto 0;
}
.em250527SHAKA .product__block .product__image-wrap.product__image-wrap--02 {
  margin: calc(243 * var(--formula)) auto 0;
}
.em250527SHAKA .product__block .product__image-wrap.product__image-wrap--03 {
  margin: calc(100 * var(--formula)) auto 0;
}
.em250527SHAKA .product__block .product__image-wrap.product__image-wrap--04 {
  margin: calc(237 * var(--formula)) auto 0;
}
.em250527SHAKA .product__block .product__image-wrap .slick-dots {
  display: flex !important;
  justify-content: flex-end;
  gap: calc(12 * var(--formula));
  position: absolute;
  z-index: 100;
  bottom: calc(11 * var(--formula));
  left: auto;
  right: calc(17 * var(--formula));
}
.em250527SHAKA .product__block .product__image-wrap .slick-dots li {
  margin: 0;
}
.em250527SHAKA .product__block .product__image-wrap .slick-dots li button {
  width: calc(12 * var(--formula));
  height: calc(12 * var(--formula));
  background-color: #fff;
  font-size: 0;
  border-radius: 50%;
}
.em250527SHAKA .product__block .product__image-wrap .slick-dots li.slick-active button {
  border: 1px solid #fff;
  background-color: transparent;
}
.em250527SHAKA .product__block .product__image {
  width: calc(750 * var(--formula));
  margin: calc(150 * var(--formula)) auto 0;
  position: relative;
}
.em250527SHAKA .product__block .product__image.product__image--01_1 {
  width: calc(630 * var(--formula));
  margin: calc(82 * var(--formula)) 0 0 auto;
}
.em250527SHAKA .product__block .product__image.product__image--01_2 {
  width: calc(450 * var(--formula));
  margin: calc(80 * var(--formula)) 0 0 0;
}
.em250527SHAKA .product__block .product__image.product__image--02_1 {
  width: calc(600 * var(--formula));
  margin: 0 0 0 calc(75 * var(--formula));
}
.em250527SHAKA .product__block .product__image.product__image--02_2 {
  width: calc(525 * var(--formula));
  margin: calc(80 * var(--formula)) 0 0 calc(205 * var(--formula));
}
.em250527SHAKA .product__block .product__image.product__image--02_3 {
  width: calc(420 * var(--formula));
  margin: calc(20 * var(--formula)) 0 0 calc(20 * var(--formula));
}
.em250527SHAKA .product__block .product__image.product__image--03_1 {
  width: calc(615 * var(--formula));
  margin: calc(84 * var(--formula)) 0 0 calc(20 * var(--formula));
}
.em250527SHAKA .product__block .product__image.product__image--03_2 {
  width: calc(450 * var(--formula));
  margin: calc(80 * var(--formula)) 0 0 auto;
}
.em250527SHAKA .product__block .product__image.product__image--04_1 {
  width: calc(690 * var(--formula));
}
.em250527SHAKA .product__block .product__image.product__image--04_2 {
  width: calc(525 * var(--formula));
  margin: calc(80 * var(--formula)) 0 0 0;
}
.em250527SHAKA .product__block .product__image.product__image--04_3 {
  width: calc(420 * var(--formula));
  margin: calc(20 * var(--formula)) 0 0 auto;
}
.em250527SHAKA .product__block .model__title {
  display: block;
  width: 100%;
  text-align: right;
  padding: 0 calc(30 * var(--formula)) 0 0;
}
.em250527SHAKA .product__block .model__title .model__name {
  position: relative;
  font-family: var(--font-en);
  font-size: calc(40 * var(--formula));
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1;
  position: relative;
}
.em250527SHAKA .product__block .model__title .model__name::before {
  position: absolute;
  display: block;
  content: "";
  width: 104%;
  height: 1px;
  background-color: #000;
  bottom: calc(15 * var(--formula));
  left: calc(-338 * var(--formula));
}
.em250527SHAKA .product__block .model__title .model__height {
  margin: calc(10 * var(--formula)) 0 0 0;
  font-family: var(--font-en);
  font-size: calc(24 * var(--formula));
  font-weight: 200;
  letter-spacing: 0em;
  line-height: 1;
}
.em250527SHAKA .product__block .model__title.model__title--02 {
  padding: 0 0 0 calc(30 * var(--formula));
  text-align: left;
}
.em250527SHAKA .product__block .model__title.model__title--02 .model__name::before {
  left: calc(128 * var(--formula));
}
.em250527SHAKA .product__block .area__heading {
  position: absolute;
}
.em250527SHAKA .product__block .area__heading.area__heading--01 {
  width: calc(120 * var(--formula));
  height: 100%;
  top: 0;
  left: calc(-120 * var(--formula));
}
.em250527SHAKA .product__block .area__heading.area__heading--02 {
  width: 100%;
  height: calc(109 * var(--formula));
  top: 0;
  top: calc(-109 * var(--formula));
}
.em250527SHAKA .product__block .area__heading.area__heading--03 {
  width: calc(120 * var(--formula));
  height: 100%;
  top: 0;
  left: auto;
  right: calc(-120 * var(--formula));
}
.em250527SHAKA .product__block .area__heading.area__heading--04 {
  width: 100%;
  height: calc(103 * var(--formula));
  top: 0;
  top: calc(-103 * var(--formula));
}
.em250527SHAKA .product__block .area__heading .heading__inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.em250527SHAKA .product__block .area__num {
  position: absolute;
}
.em250527SHAKA .product__block .area__num.area__num--01 {
  width: calc(63 * var(--formula));
  left: calc(22 * var(--formula));
}
.em250527SHAKA .product__block .area__num.area__num--02 {
  width: calc(87 * var(--formula));
  left: calc(-7 * var(--formula));
}
.em250527SHAKA .product__block .area__num.area__num--03 {
  width: calc(63 * var(--formula));
  left: calc(22 * var(--formula));
  top: calc(-2 * var(--formula));
}
.em250527SHAKA .product__block .area__num.area__num--04 {
  width: calc(87 * var(--formula));
  left: calc(23 * var(--formula));
}
.em250527SHAKA .product__block .area__category {
  position: absolute;
}
.em250527SHAKA .product__block .area__category.area__category--01 {
  width: calc(33 * var(--formula));
  top: auto;
  bottom: calc(-2 * var(--formula));
  left: calc(66 * var(--formula));
}
.em250527SHAKA .product__block .area__category.area__category--02 {
  width: calc(90 * var(--formula));
  left: auto;
  right: 0;
  bottom: calc(18 * var(--formula));
}
.em250527SHAKA .product__block .area__category.area__category--03 {
  width: calc(33 * var(--formula));
  top: auto;
  bottom: calc(2 * var(--formula));
  left: calc(29 * var(--formula));
}
.em250527SHAKA .product__block .area__category.area__category--04 {
  width: calc(112 * var(--formula));
  left: auto;
  right: calc(26 * var(--formula));
  bottom: calc(18 * var(--formula));
}
.em250527SHAKA .product__block .product__lead {
  font-size: calc(26 * var(--formula));
  font-feature-settings: "palt";
  font-weight: bold;
  line-height: 2.2307692308;
  text-align: center;
  letter-spacing: 0.05em;
}
.em250527SHAKA .product__block .product__lead._dash::before {
  position: absolute;
  display: block;
  content: "";
  width: calc(19 * var(--formula));
  height: calc(19 * var(--formula));
  background-image: url(../img/dash_01.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  top: calc(115 * var(--formula));
  left: calc(87 * var(--formula));
}
.em250527SHAKA .product__block .product__lead._dash::after {
  position: absolute;
  display: block;
  content: "";
  width: calc(19 * var(--formula));
  height: calc(19 * var(--formula));
  background-image: url(../img/dash_02.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  top: calc(115 * var(--formula));
  left: auto;
  right: calc(87 * var(--formula));
}
.em250527SHAKA .product__block .product__lead.product__lead--01 {
  margin: calc(40 * var(--formula)) auto 0;
}
.em250527SHAKA .product__block .product__lead.product__lead--03 {
  margin: calc(40 * var(--formula)) auto 0;
}
.em250527SHAKA .product__block .product__lead.product__lead--03._dash::before {
  top: calc(115 * var(--formula));
  left: calc(124 * var(--formula));
}
.em250527SHAKA .product__block .product__lead.product__lead--03._dash::after {
  top: calc(115 * var(--formula));
  right: calc(124 * var(--formula));
}
.em250527SHAKA .product__block .product__itemList {
  display: grid;
  grid-template-columns: repeat(3, calc(192 * var(--formula)));
  gap: calc(30 * var(--formula));
  place-content: center;
  margin: calc(100 * var(--formula)) 0 0 0;
}
.em250527SHAKA .product__block .product__itemList.product__itemList--02 {
  grid-template-columns: repeat(2, calc(192 * var(--formula)));
  gap: calc(50 * var(--formula));
}
.em250527SHAKA .product__block .product__itemList.product__itemList--04 {
  grid-template-columns: repeat(2, calc(192 * var(--formula)));
  gap: calc(50 * var(--formula));
}
.em250527SHAKA .product__block .product__itemList .category_name {
  margin: calc(24 * var(--formula)) auto 0;
  font-family: var(--font-en);
  font-size: calc(38 * var(--formula));
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1;
  text-align: center;
}
.em250527SHAKA .product__block .product__credit {
  width: auto;
  margin: 0;
  font-family: var(--font-credit);
  font-size: calc(22 * var(--formula));
  font-weight: 200;
  letter-spacing: 0.05em;
  line-height: 1.8181818182;
  text-align: left;
  white-space: nowrap;
  position: absolute;
}
.em250527SHAKA .product__block .product__credit a {
  display: inline-block;
  font-weight: 400;
}
.em250527SHAKA .product__block .product__credit span {
  display: inline-block;
  font-weight: 400;
}
.em250527SHAKA .product__block .product__credit.product__credit--01 {
  position: absolute;
  bottom: calc(-10 * var(--formula));
  left: calc(490 * var(--formula));
}
.em250527SHAKA .product__block .product__credit.product__credit--02 {
  position: absolute;
  bottom: calc(-10 * var(--formula));
  left: calc(460 * var(--formula));
}
.em250527SHAKA .product__block .product__credit.product__credit--03 {
  position: absolute;
  bottom: calc(-10 * var(--formula));
  left: calc(-250 * var(--formula));
}
.em250527SHAKA .product__block .product__credit.product__credit--04 {
  position: absolute;
  bottom: calc(-10 * var(--formula));
  left: calc(-246 * var(--formula));
}
.em250527SHAKA .product__block .product__text {
  position: absolute;
}
.em250527SHAKA .product__block .product__text.product__text--04 {
  width: calc(84 * var(--formula));
  top: calc(277 * var(--formula));
  left: calc(465 * var(--formula));
  right: 0;
}
.em250527SHAKA .product__block .product__text.product__text--10 {
  width: calc(86 * var(--formula));
  top: calc(0 * var(--formula));
  left: auto;
  right: calc(-126 * var(--formula));
}
.em250527SHAKA .prof__area {
  width: calc(420 * var(--formula));
  margin: calc(95 * var(--formula)) auto 0;
}
.em250527SHAKA .prof__area .prof__icon {
  width: calc(250 * var(--formula));
  height: calc(250 * var(--formula));
  margin: 0 auto;
}
.em250527SHAKA .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;
}
.em250527SHAKA .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;
}
.em250527SHAKA .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;
}
.em250527SHAKA .prof__area.prof__area--02 {
  width: calc(400 * var(--formula));
}
.em250527SHAKA .prof__area.prof__area--02 .prof__text {
  width: calc(400 * var(--formula));
}
.em250527SHAKA .product__block--mv .mv-inner {
  width: 100%;
}
.em250527SHAKA .product__block--mv .mv__image {
  width: 100%;
  position: relative;
}
.em250527SHAKA .product__block--mv .mv__text {
  width: 100%;
  position: absolute;
  bottom: calc(190 * var(--formula));
  pointer-events: none;
}
.em250527SHAKA .product__block--intro {
  position: relative;
  z-index: 0;
}
.em250527SHAKA .product__block--intro .product__block-inner {
  width: 100%;
}
.em250527SHAKA .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;
}
.em250527SHAKA .product__block--novelty .product__block-inner {
  border: 1px solid #fff;
}
.em250527SHAKA .product__block--novelty .novelty__title {
  display: block;
  margin: calc(38 * var(--formula)) auto 0;
  text-align: center;
}
.em250527SHAKA .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;
}
.em250527SHAKA .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%;
}
.em250527SHAKA .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%;
}
.em250527SHAKA .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;
}
.em250527SHAKA .product__block--novelty .novelty__image {
  width: calc(460 * var(--formula));
  margin: calc(33 * var(--formula)) auto 0;
}
.em250527SHAKA .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;
}
.em250527SHAKA .product__block--novelty .product__lead span {
  font-size: calc(22 * var(--formula));
}
.em250527SHAKA .product__block-inner--01 {
  margin: calc(0 * var(--formula)) 0 0 0;
}
.em250527SHAKA .intro__image {
  background-color: #fff;
}
.em250527SHAKA .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;
}
.em250527SHAKA .button__all span {
  padding: 0;
  position: relative;
}
.em250527SHAKA .button__all span::before {
  position: absolute;
  display: block;
  content: "";
  width: 104%;
  height: 1px;
  background-color: #000;
  bottom: calc(0 * var(--formula));
  left: -2%;
}
.em250527SHAKA .button__all span::after {
  position: absolute;
  display: block;
  content: "";
  width: 104%;
  height: 1px;
  background-color: #000;
  bottom: calc(-5 * var(--formula));
  left: -2%;
}

@media only screen and (min-width: 768px) {
  #footer_emmi {
    margin-top: 0;
  }
  .em250527SHAKA .contents__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
  .em250527SHAKA .contents__left {
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 2;
    overflow: hidden;
    grid-row: 1;
  }
  .em250527SHAKA .contents__right {
    grid-row: 1;
    grid-column: 2;
    width: 100%;
    padding: calc(0 * var(--formula_pc)) 0 0 0;
  }
  .em250527SHAKA .product__block--mv {
    width: auto;
    height: 100svh;
    overflow: hidden;
  }
  .em250527SHAKA .product__block--mv .mv-inner {
    width: 100%;
    height: 100%;
  }
  .em250527SHAKA .product__block--mv .mv__image picture {
    height: 100vh;
  }
  .em250527SHAKA .product__block--mv .mv__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
  .em250527SHAKA .product__block--mv .mv__text {
    bottom: calc(177 * var(--formula_pc));
  }
  .em250527SHAKA .lp__bottom-area {
    padding: 0 0 calc(120 * var(--formula)) 0;
  }
  .em250527SHAKA .product__block .product__credit.product__credit--01 {
    bottom: calc(-16 * var(--formula));
  }
  .em250527SHAKA .product__block .product__itemList {
    margin: calc(102 * var(--formula)) 0 0 0;
  }
  .em250527SHAKA .product__block .product__credit.product__credit--02 {
    bottom: calc(-15 * var(--formula));
  }
  .em250527SHAKA .product__block .product__image.product__image--03_1 {
    margin: calc(83 * var(--formula)) 0 0 calc(20 * var(--formula));
  }
  .em250527SHAKA .product__block .product__credit.product__credit--03 {
    bottom: calc(-9 * var(--formula));
    left: calc(-246 * var(--formula));
  }
  .em250527SHAKA .product__block--novelty .product__lead {
    margin: calc(52 * var(--formula));
  }
  .em250527SHAKA .product__block .model__title .model__name::before {
    width: 50vw;
    left: calc(-50vw + 408 * var(--formula));
  }
}
@media only screen and (max-width: 767px) {
  .em250527SHAKA .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 */