@charset "UTF-8";
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* media query
------------------------------------------ */
/* function
------------------------------------------ */
/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* 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
------------------------------------------ */
.issue_250801_mashweek {
  /* ▼ -----------可変設定---------- ▼ */
  /*デザインの値*/
  --pc-width: 1400; /*PCデザイン幅*/
  --sp-width: 750; /*SPデザイン幅*/
  --pc-artboard-width: 450; /*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以下 可変 */
  /* ▲ -----------可変設定---------- ▲ */
  /* 変数
  ------------------------------------------ */
  --txt-color: #000;
  /* mixin
  ------------------------------------------ */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--txt-color);
  background-color: #fdf0f0;
  margin-bottom: calc(180 * var(--variable) * var(--ratio));
}
@media (min-width: 1401px) {
  .issue_250801_mashweek {
    --ratio: calc(
      var(--pc-artboard-width) / var(--sp-artboard-width)
    ); /* PCとSPのデザイン幅の比率 */
    --variable: 1px; /* 固定値（可変しない） */
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .issue_250801_mashweek {
    --ratio: calc(
      var(--pc-artboard-width) / var(--sp-artboard-width)
    ); /* PCとSPのデザイン幅の比率 */
    --variable: calc(100vw / var(--pc-width)); /* 画面幅に基づく可変値 */
  }
}
@media (max-width: 767px) {
  .issue_250801_mashweek {
    --ratio: 1; /* 比率は1（変わらない） */
    --variable: calc(100vw / var(--sp-width)); /* 画面幅に基づく可変値 */
  }
}
.issue_250801_mashweek img {
  width: 100%;
  height: auto;
}
.issue_250801_mashweek * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.issue_250801_mashweek .fixed-left,
.issue_250801_mashweek .fixed-right {
  position: sticky;
  top: calc(205 * var(--formula_pc));
  left: 0;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .issue_250801_mashweek .fixed-left,
  .issue_250801_mashweek .fixed-right {
    display: none !important;
  }
}
.issue_250801_mashweek .fixed-left {
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.issue_250801_mashweek .fixed-left-inner {
  position: relative;
  left: calc(8 * var(--formula_pc));
  width: calc(320 * var(--formula_pc));
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.issue_250801_mashweek .fixed-left-inner::after {
  content: "";
  width: 1px;
  background-color: #808080;
  position: absolute;
  top: calc(141 * var(--formula_pc));
  bottom: calc(310 * var(--formula_pc));
  left: calc(3 * var(--formula_pc));
}
.issue_250801_mashweek .fixed-left-ttl {
  width: calc(304 * var(--formula_pc));
}
.issue_250801_mashweek .fixed-left-txt {
  width: calc(221 * var(--formula_pc));
  padding-bottom: calc(236 * var(--formula_pc));
}
.issue_250801_mashweek .fixed-right {
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.issue_250801_mashweek .fixed-right-inner {
  position: relative;
  left: calc(15 * var(--formula_pc));
  width: calc(260 * var(--formula_pc));
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.issue_250801_mashweek .fixed-right-ttl {
  width: calc(221 * var(--formula_pc));
}
.issue_250801_mashweek .fixed-right-link {
  padding-bottom: calc(236 * var(--formula_pc));
  width: calc(260 * var(--formula_pc));
  display: block;
}
.issue_250801_mashweek .lp-cont {
  width: calc(750 * var(--variable) * var(--ratio));
  margin: 0 auto;
  overflow: clip;
}
@media (max-width: 767px) {
  .issue_250801_mashweek .lp-cont {
    display: block;
  }
}
.issue_250801_mashweek .lp-cont .mv {
  padding-bottom: calc(300 * var(--formula));
  background-color: #fef5f5;
}
.issue_250801_mashweek .lp-cont .mv-img {
  background-color: #fff;
}
.issue_250801_mashweek .lp-cont .mv-txt {
  font-family: 游ゴシック体, YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "Open Sans", メイリオ, sans-serif;
  font-size: calc(24 * var(--formula));
  line-height: 2.2;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
  color: var(--txt-color);
  margin-top: calc(106 * var(--formula));
}
.issue_250801_mashweek .lp-cont .section01 {
  position: relative;
  background-color: #fff;
  margin-top: calc(-90 * var(--formula));
  padding-top: calc(53 * var(--formula));
  padding-bottom: calc(300 * var(--formula));
}
.issue_250801_mashweek .lp-cont .section01::before {
  content: "";
  background-image: url("../img/section01_bg.svg");
  background-repeat: no-repeat;
  width: 100%;
  height: calc(150 * var(--formula));
  position: absolute;
  top: calc(-103 * var(--formula));
  left: 0;
}
.issue_250801_mashweek .lp-cont .section01-ttl {
  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;
  gap: calc(10 * var(--formula));
}
.issue_250801_mashweek .lp-cont .section01-ttl-lead {
  display: block;
  width: calc(361 * var(--formula));
  margin: 0 auto;
}
.issue_250801_mashweek .lp-cont .section01-ttl-txt {
  font-family: "playfair-display", serif;
  font-weight: 700;
  font-style: normal;
  color: #6b98cc;
  text-align: center;
  font-size: calc(78 * var(--formula));
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-top: calc(8 * var(--formula));
  position: relative;
  left: calc(2 * var(--formula));
}
.issue_250801_mashweek .lp-cont .product01 {
  margin-top: calc(100 * var(--formula));
}
.issue_250801_mashweek .lp-cont .product01-ttl {
  font-family: "playfair-display", serif;
  font-weight: 700;
  font-style: normal;
  color: #6b98cc;
  text-align: center;
  font-size: calc(60 * var(--formula));
  line-height: 1.3;
  letter-spacing: 0.05em;
  margin-top: calc(46 * var(--formula));
  margin-left: calc(60 * var(--formula));
  text-align: left;
}
.issue_250801_mashweek .lp-cont .product01-photo-02 {
  width: calc(510 * var(--formula));
  margin-top: calc(56 * var(--formula));
  margin-left: auto;
  position: relative;
  right: calc(40 * var(--formula));
}
.issue_250801_mashweek .lp-cont .product01-txt {
  margin-top: calc(67 * var(--formula));
  font-family: 游ゴシック体, YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "Open Sans", メイリオ, sans-serif;
  font-size: calc(24 * var(--formula));
  line-height: 2.2;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
  color: var(--txt-color);
}
.issue_250801_mashweek .lp-cont .product01-img {
  width: calc(580 * var(--formula));
  margin: calc(70 * var(--formula)) auto 0;
}
.issue_250801_mashweek .lp-cont .product01-img-price {
  margin-top: calc(60 * var(--formula));
  letter-spacing: 0.05em;
  font-family: "sarvatrik-latin-variable", sans-serif;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(22 * var(--formula));
  line-height: 1;
  text-align: center;
}
.issue_250801_mashweek .lp-cont .product01-img-price a {
  display: inline-block;
  position: relative;
  padding-bottom: calc(9 * var(--formula));
}
.issue_250801_mashweek .lp-cont .product01-img-price a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #666;
}
.issue_250801_mashweek .lp-cont .product01-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(4 * var(--formula));
  letter-spacing: 0.05em;
  font-family: "sarvatrik-latin-variable", sans-serif;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(18 * var(--formula));
  line-height: 2.1;
}
.issue_250801_mashweek .lp-cont .product01-price a {
  color: var(--txt-color);
}
.issue_250801_mashweek .lp-cont .product01-price-01 {
  margin-top: calc(89 * var(--formula));
}
.issue_250801_mashweek .lp-cont .product02 {
  margin-top: calc(193 * var(--formula));
  padding-bottom: calc(200 * var(--formula));
}
.issue_250801_mashweek .lp-cont .product02-slider-wrap {
  position: relative;
}
.issue_250801_mashweek .lp-cont .product02-slider-img {
  width: calc(708 * var(--formula));
  position: absolute;
  top: calc(26 * var(--formula));
  right: calc(20 * var(--formula));
  pointer-events: none;
  z-index: 1;
}
.issue_250801_mashweek .lp-cont .product02-txt {
  font-family: 游ゴシック体, YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "Open Sans", メイリオ, sans-serif;
  font-size: calc(24 * var(--formula));
  line-height: 2.2;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
  color: var(--txt-color);
  margin-top: calc(68 * var(--formula));
}
.issue_250801_mashweek .lp-cont .product02-img {
  width: calc(480 * var(--formula));
  margin: calc(67 * var(--formula)) auto 0;
}
.issue_250801_mashweek .lp-cont .product02-img-price {
  margin-top: calc(59 * var(--formula));
  letter-spacing: 0.05em;
  font-family: "sarvatrik-latin-variable", sans-serif;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(22 * var(--formula));
  line-height: 1;
  text-align: center;
}
.issue_250801_mashweek .lp-cont .product02-img-price a {
  display: inline-block;
  position: relative;
  padding-bottom: calc(9 * var(--formula));
}
.issue_250801_mashweek .lp-cont .product02-img-price a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #666;
}
.issue_250801_mashweek .lp-cont .product02-photo {
  width: calc(480 * var(--formula));
  margin: calc(99 * var(--formula)) auto 0;
}
.issue_250801_mashweek .lp-cont .product02-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(4 * var(--formula));
  letter-spacing: 0.05em;
  font-family: "sarvatrik-latin-variable", sans-serif;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(18 * var(--formula));
  line-height: 2.1;
}
.issue_250801_mashweek .lp-cont .product02-price a {
  color: var(--txt-color);
}
.issue_250801_mashweek .lp-cont .product02-price-01 {
  margin-top: calc(90 * var(--formula));
}
.issue_250801_mashweek .lp-cont .section02 {
  margin-top: calc(-207 * var(--formula));
  padding-top: calc(55 * var(--formula));
  position: relative;
  background-color: #f3f6fa;
}
.issue_250801_mashweek .lp-cont .section02::before {
  content: "";
  background-image: url("../img/section02_bg.svg");
  background-repeat: no-repeat;
  width: 100%;
  height: calc(150 * var(--formula));
  position: absolute;
  top: calc(-103 * var(--formula));
  left: 0;
}
.issue_250801_mashweek .lp-cont .section02-ttl-lead {
  display: block;
  width: calc(361 * var(--formula));
  margin: 0 auto;
}
.issue_250801_mashweek .lp-cont .section02-ttl-txt {
  display: block;
  font-family: "playfair-display", serif;
  font-weight: 700;
  font-style: normal;
  color: #6b98cc;
  text-align: center;
  font-size: calc(78 * var(--formula));
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-top: calc(19 * var(--formula));
  text-align: center;
  position: relative;
  left: calc(2 * var(--formula));
}
.issue_250801_mashweek .lp-cont .product03 {
  position: relative;
  margin-top: calc(98 * var(--formula));
}
.issue_250801_mashweek .lp-cont .product03::after {
  content: "";
  width: calc(520 * var(--formula));
  height: calc(520 * var(--formula));
  background-color: #fff;
  position: absolute;
  border-radius: 50%;
  top: calc(-100 * var(--formula));
  left: 0;
  top: calc(1499 * var(--formula));
  left: calc(-78 * var(--formula));
}
.issue_250801_mashweek .lp-cont .product03-ttl {
  width: calc(555 * var(--formula));
  margin: calc(68 * var(--formula)) auto 0;
}
.issue_250801_mashweek .lp-cont .product03-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: calc(68 * var(--formula));
  width: calc(720 * var(--formula));
  margin-left: auto;
  position: relative;
  z-index: 1;
}
.issue_250801_mashweek .lp-cont .product03-img {
  margin-top: calc(120 * var(--formula));
  width: calc(300 * var(--formula));
}
.issue_250801_mashweek .lp-cont .product03-img-price {
  letter-spacing: 0.05em;
  font-family: "sarvatrik-latin-variable", sans-serif;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(22 * var(--formula));
  line-height: 1;
  text-align: center;
  margin-top: calc(24 * var(--formula));
}
.issue_250801_mashweek .lp-cont .product03-img-price a {
  display: inline-block;
  position: relative;
  padding-bottom: calc(9 * var(--formula));
}
.issue_250801_mashweek .lp-cont .product03-img-price a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #666;
}
.issue_250801_mashweek .lp-cont .product03-img-ttl {
  width: calc(323 * var(--formula));
  margin-top: calc(37 * var(--formula));
  position: relative;
  left: calc(2 * var(--formula));
}
.issue_250801_mashweek .lp-cont .product03-photo-02 {
  width: calc(420 * var(--formula));
}
.issue_250801_mashweek .lp-cont .product03-txt {
  margin-top: calc(126 * var(--formula));
  font-family: 游ゴシック体, YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "Open Sans", メイリオ, sans-serif;
  font-size: calc(24 * var(--formula));
  line-height: 2.2;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
  color: var(--txt-color);
}
.issue_250801_mashweek .lp-cont .product03-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(4 * var(--formula));
  letter-spacing: 0.05em;
  font-family: "sarvatrik-latin-variable", sans-serif;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(18 * var(--formula));
  line-height: 2.1;
}
.issue_250801_mashweek .lp-cont .product03-price a {
  color: var(--txt-color);
}
.issue_250801_mashweek .lp-cont .product03-price-01 {
  margin-top: calc(90 * var(--formula));
}
.issue_250801_mashweek .lp-cont .product04 {
  position: relative;
  margin-top: calc(200 * var(--formula));
  background-color: #f3f6fa;
}
.issue_250801_mashweek .lp-cont .product04::after {
  content: "";
  width: calc(520 * var(--formula));
  height: calc(520 * var(--formula));
  background-color: #fff;
  position: absolute;
  border-radius: 50%;
  top: calc(1080 * var(--formula));
  left: 0;
  right: 0;
  margin: auto;
}
.issue_250801_mashweek .lp-cont .product04-img {
  width: calc(300 * var(--formula));
  margin: calc(109 * var(--formula)) auto 0;
  position: relative;
  z-index: 1;
}
.issue_250801_mashweek .lp-cont .product04-img-price {
  margin-top: calc(50 * var(--formula));
  letter-spacing: 0.05em;
  font-family: "sarvatrik-latin-variable", sans-serif;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(22 * var(--formula));
  line-height: 1;
  text-align: center;
}
.issue_250801_mashweek .lp-cont .product04-img-price a {
  display: inline-block;
  position: relative;
  padding-bottom: calc(9 * var(--formula));
}
.issue_250801_mashweek .lp-cont .product04-img-price a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #666;
}
.issue_250801_mashweek .lp-cont .product04-photo-02 {
  width: calc(600 * var(--formula));
  margin: calc(80 * var(--formula)) auto 0;
}
.issue_250801_mashweek .lp-cont .product04-txt {
  font-family: 游ゴシック体, YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "Open Sans", メイリオ, sans-serif;
  font-size: calc(24 * var(--formula));
  line-height: 2.2;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
  color: var(--txt-color);
  margin-top: calc(122 * var(--formula));
}
.issue_250801_mashweek .lp-cont .product04-slider {
  margin-top: calc(98 * var(--formula));
  width: 100%;
}
.issue_250801_mashweek .lp-cont .product04-slider li {
  width: calc(460 * var(--formula));
}
.issue_250801_mashweek .lp-cont .product04-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(4 * var(--formula));
  letter-spacing: 0.05em;
  font-family: "sarvatrik-latin-variable", sans-serif;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(18 * var(--formula));
  line-height: 2.1;
}
.issue_250801_mashweek .lp-cont .product04-price a {
  color: var(--txt-color);
}
.issue_250801_mashweek .lp-cont .product04-price-01 {
  margin-top: calc(92 * var(--formula));
}
.issue_250801_mashweek .lp-cont .product05 {
  margin-top: calc(194 * var(--formula));
  position: relative;
}
.issue_250801_mashweek .lp-cont .product05::after {
  content: "";
  width: calc(520 * var(--formula));
  height: calc(520 * var(--formula));
  background-color: #fff;
  position: absolute;
  border-radius: 50%;
  top: calc(1171 * var(--formula));
  right: calc(-21 * var(--formula));
  width: calc(600 * var(--formula));
  height: calc(600 * var(--formula));
}
.issue_250801_mashweek .lp-cont .product05-img {
  width: calc(650 * var(--formula));
  margin-top: calc(68 * var(--formula));
  margin-left: calc(50 * var(--formula));
  position: relative;
  z-index: 1;
}
.issue_250801_mashweek .lp-cont .product05-img-price {
  margin-top: calc(46 * var(--formula));
  letter-spacing: 0.05em;
  font-family: "sarvatrik-latin-variable", sans-serif;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(22 * var(--formula));
  line-height: 1;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(29 * var(--formula));
}
.issue_250801_mashweek .lp-cont .product05-img-price a {
  display: inline-block;
  position: relative;
  padding-bottom: calc(9 * var(--formula));
}
.issue_250801_mashweek .lp-cont .product05-img-price a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #666;
}
.issue_250801_mashweek .lp-cont .product05-img-price a::after {
  background-color: #666;
}
.issue_250801_mashweek .lp-cont .product05-txt {
  font-family: 游ゴシック体, YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "Open Sans", メイリオ, sans-serif;
  font-size: calc(24 * var(--formula));
  line-height: 2.2;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
  color: var(--txt-color);
  margin-top: calc(157 * var(--formula));
}
.issue_250801_mashweek .lp-cont .product05-photo-02 {
  width: calc(600 * var(--formula));
  margin: calc(99 * var(--formula)) auto 0;
}
.issue_250801_mashweek .lp-cont .product05-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(4 * var(--formula));
  letter-spacing: 0.05em;
  font-family: "sarvatrik-latin-variable", sans-serif;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(18 * var(--formula));
  line-height: 2.1;
}
.issue_250801_mashweek .lp-cont .product05-price a {
  color: var(--txt-color);
}
.issue_250801_mashweek .lp-cont .product05-price-01 {
  margin-top: calc(90 * var(--formula));
}
.issue_250801_mashweek .lp-cont .product06 {
  margin-top: calc(194 * var(--formula));
  position: relative;
}
.issue_250801_mashweek .lp-cont .product06::after {
  content: "";
  width: calc(520 * var(--formula));
  height: calc(520 * var(--formula));
  background-color: #fff;
  position: absolute;
  border-radius: 50%;
  top: calc(1076 * var(--formula));
  left: 0;
  right: 0;
  margin: auto;
}
.issue_250801_mashweek .lp-cont .product06-slider-wrap {
  position: relative;
}
.issue_250801_mashweek .lp-cont .product06-slider-img {
  width: calc(114 * var(--formula));
  position: absolute;
  top: calc(20 * var(--formula));
  right: calc(26 * var(--formula));
  pointer-events: none;
  z-index: 1;
}
.issue_250801_mashweek .lp-cont .product06-img {
  width: calc(300 * var(--formula));
  margin: calc(110 * var(--formula)) auto 0;
  position: relative;
  z-index: 1;
}
.issue_250801_mashweek .lp-cont .product06-img-price {
  margin-top: calc(50 * var(--formula));
  letter-spacing: 0.05em;
  font-family: "sarvatrik-latin-variable", sans-serif;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(22 * var(--formula));
  line-height: 1;
  text-align: center;
}
.issue_250801_mashweek .lp-cont .product06-img-price a {
  display: inline-block;
  position: relative;
  padding-bottom: calc(9 * var(--formula));
}
.issue_250801_mashweek .lp-cont .product06-img-price a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #666;
}
.issue_250801_mashweek .lp-cont .product06-txt {
  margin-top: calc(122 * var(--formula));
  font-family: 游ゴシック体, YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "Open Sans", メイリオ, sans-serif;
  font-size: calc(24 * var(--formula));
  line-height: 2.2;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
  color: var(--txt-color);
}
.issue_250801_mashweek .lp-cont .product06-photo-02 {
  width: calc(510 * var(--formula));
  margin: calc(99 * var(--formula)) auto 0;
}
.issue_250801_mashweek .lp-cont .product06-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(4 * var(--formula));
  letter-spacing: 0.05em;
  font-family: "sarvatrik-latin-variable", sans-serif;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(18 * var(--formula));
  line-height: 2.1;
}
.issue_250801_mashweek .lp-cont .product06-price a {
  color: var(--txt-color);
}
.issue_250801_mashweek .lp-cont .product06-price-01 {
  margin-top: calc(90 * var(--formula));
}
.issue_250801_mashweek .lp-cont .staff {
  background-color: #f3f6fa;
  padding: calc(223 * var(--formula)) 0 0;
}
.issue_250801_mashweek .lp-cont .staff-txt {
  letter-spacing: 0.05em;
  font-family: "sarvatrik-latin-variable", sans-serif;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(22 * var(--formula));
  line-height: 2.1;
  text-align: center;
}
.issue_250801_mashweek .lp-cont .staff .check-all-items {
  display: block;
  width: calc(600 * var(--formula));
  margin: calc(73 * var(--formula)) auto 0;
}
.issue_250801_mashweek .lp-cont .enjoy {
  position: relative;
  background-color: #f3f6fa;
  padding-top: calc(140 * var(--formula));
  padding-bottom: calc(179 * var(--formula));
}
.issue_250801_mashweek .lp-cont .enjoy-inner {
  position: relative;
  z-index: 1;
}
.issue_250801_mashweek .lp-cont .enjoy-ttl {
  width: calc(522 * var(--formula));
  margin: calc(0 * var(--formula)) auto;
  position: relative;
  left: calc(-35 * var(--formula));
}
.issue_250801_mashweek .lp-cont .enjoy-photo {
  width: calc(450 * var(--formula));
  margin: calc(68 * var(--formula)) auto 0;
}
.issue_250801_mashweek .lp-cont .enjoy::before {
  content: "";
  width: calc(520 * var(--formula));
  height: calc(520 * var(--formula));
  background-color: #fff;
  position: absolute;
  border-radius: 50%;
  top: calc(161 * var(--formula));
  right: calc(-128 * var(--formula));
  width: calc(480 * var(--formula));
  height: calc(480 * var(--formula));
}
.issue_250801_mashweek .lp-cont .enjoy::after {
  content: "";
  width: calc(520 * var(--formula));
  height: calc(520 * var(--formula));
  background-color: #fff;
  position: absolute;
  border-radius: 50%;
  top: calc(850 * var(--formula));
  left: calc(-149 * var(--formula));
  width: calc(400 * var(--formula));
  height: calc(400 * var(--formula));
}