@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
------------------------------------------ */
@media (max-width: 767px) {
  #Contents {
    padding-top: 0;
  }
}

.header {
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  z-index: 1000;
}

.header.is-top {
  position: relative;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.header.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.issue_250904 {
  /* 可変設定
  ------------------------------------------ */
  /*デザインの値*/
  --pc-width: 1400; /*PCデザイン幅*/
  --sp-width: 750; /*SPデザイン幅*/
  --pc-artboard-width: 460; /*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
  ------------------------------------------ */
  /* animation
  ------------------------------------------ */
  /* 共通
  ------------------------------------------ */
  /* LP style
  ------------------------------------------ */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: calc(200 * var(--variable) * var(--ratio));
}
@media (min-width: 1401px) {
  .issue_250904 {
    --ratio: calc(
      var(--pc-artboard-width) / var(--sp-artboard-width)
    ); /* PCとSPのデザイン幅の比率 */
    --variable: 1px; /* 固定値（可変しない） */
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .issue_250904 {
    --ratio: calc(
      var(--pc-artboard-width) / var(--sp-artboard-width)
    ); /* PCとSPのデザイン幅の比率 */
    --variable: calc(100vw / var(--pc-width)); /* 画面幅に基づく可変値 */
  }
}
@media (max-width: 767px) {
  .issue_250904 {
    --ratio: 1; /* 比率は1（変わらない） */
    --variable: calc(100vw / var(--sp-width)); /* 画面幅に基づく可変値 */
  }
}
.issue_250904 img {
  width: 100%;
  height: auto;
}
.issue_250904 * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.issue_250904 .js-fade-in {
  opacity: 0;
}
.issue_250904 .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(10 * var(--formula));
  position: static;
  margin-top: calc(30 * var(--formula));
}
.issue_250904 .swiper-pagination-bullet {
  width: calc(60 * var(--formula));
  height: calc(4 * var(--formula));
  background-color: #ccc;
  border-radius: 0;
  opacity: 1;
  margin: 0 !important;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.issue_250904 .swiper-pagination-bullet-active {
  background-color: #ccc;
}
.issue_250904 .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333;
  -webkit-transform-origin: left;
          transform-origin: left;
  -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);
  }
}
@media (max-width: 767px) {
  .issue_250904 {
    display: block;
  }
}
.issue_250904 .mv {
  position: sticky;
  top: 0;
  width: 50%;
  height: 100vh;
}
@media (max-width: 767px) {
  .issue_250904 .mv {
    position: static;
    width: 100%;
    height: auto;
  }
}
.issue_250904 .mv-img-txt {
  width: calc(450 * var(--formula_pc));
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: calc(33 * var(--formula_pc));
  z-index: 1;
}
@media (max-width: 767px) {
  .issue_250904 .mv-img-txt {
    display: none;
  }
}
.issue_250904 .mv-img img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
@media (max-width: 767px) {
  .issue_250904 .mv-img img {
    height: auto;
    -o-object-fit: fill;
       object-fit: fill;
  }
}
.issue_250904 .mv-txt {
  margin-top: calc(106 * 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;
}
.issue_250904 .lp-container {
  width: 50%;
}
@media (max-width: 767px) {
  .issue_250904 .lp-container {
    width: 100%;
  }
}
.issue_250904 .lp-inner {
  width: calc(750 * var(--variable) * var(--ratio));
  margin: 0 auto;
}
@media (max-width: 767px) {
  .issue_250904 .lp-inner {
    width: 100%;
  }
}
.issue_250904 .product01 {
  margin-top: calc(109 * var(--formula));
}
.issue_250904 .product01-photo-01 {
  width: calc(600 * var(--formula));
  margin: calc(61 * var(--formula)) auto 0;
}
.issue_250904 .product01-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(20 * var(--formula));
}
.issue_250904 .product01-price a {
  font-family: "helvetica-lt-pro", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: calc(20 * var(--formula));
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: justify;
}
.issue_250904 .product01-price-01 {
  margin-top: calc(72 * var(--formula));
}
.issue_250904 .product02 {
  margin-top: calc(191 * var(--formula));
}
.issue_250904 .product02-slider {
  width: calc(600 * var(--formula));
  margin: 0 auto;
}
.issue_250904 .product02-photo-01 {
  width: calc(600 * var(--formula));
  margin: calc(60 * var(--formula)) auto 0;
}
.issue_250904 .product02-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(20 * var(--formula));
}
.issue_250904 .product02-price a {
  font-family: "helvetica-lt-pro", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: calc(20 * var(--formula));
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: justify;
}
.issue_250904 .product02-price-01 {
  margin-top: calc(72 * var(--formula));
}
.issue_250904 .product03 {
  margin-top: calc(193 * var(--formula));
}
.issue_250904 .product03-photo-01 {
  width: calc(600 * var(--formula));
  margin: calc(60 * var(--formula)) auto 0;
}
.issue_250904 .product03-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(20 * var(--formula));
}
.issue_250904 .product03-price a {
  font-family: "helvetica-lt-pro", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: calc(20 * var(--formula));
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: justify;
}
.issue_250904 .product03-price-01 {
  margin-top: calc(72 * var(--formula));
}
.issue_250904 .product04 {
  margin-top: calc(192 * var(--formula));
}
.issue_250904 .product04-photo-01 {
  width: calc(570 * var(--formula));
  margin: calc(60 * var(--formula)) auto 0;
}
.issue_250904 .product04-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(20 * var(--formula));
}
.issue_250904 .product04-price a {
  font-family: "helvetica-lt-pro", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: calc(20 * var(--formula));
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: justify;
}
.issue_250904 .product04-price-01 {
  margin-top: calc(71 * var(--formula));
}
.issue_250904 .product05 {
  margin-top: calc(193 * var(--formula));
}
.issue_250904 .product05-photo-01 {
  width: calc(660 * var(--formula));
  margin-right: auto;
}
.issue_250904 .product05-photo-02 {
  width: calc(540 * var(--formula));
  margin-top: calc(80 * var(--formula));
  margin-left: auto;
}
.issue_250904 .product05-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(20 * var(--formula));
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.issue_250904 .product05-price a {
  font-family: "helvetica-lt-pro", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: calc(20 * var(--formula));
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: justify;
}
.issue_250904 .product05-price-01 {
  margin-top: calc(71 * var(--formula));
}
.issue_250904 .product06 {
  margin-top: calc(192 * var(--formula));
}
.issue_250904 .product06-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(20 * var(--formula));
}
.issue_250904 .product06-price a {
  font-family: "helvetica-lt-pro", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: calc(20 * var(--formula));
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: justify;
}
.issue_250904 .product06-price-01 {
  margin-top: calc(72 * var(--formula));
}
.issue_250904 .product07 {
  margin-top: calc(200 * var(--formula));
}
.issue_250904 .product07-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(20 * var(--formula));
}
.issue_250904 .product07-price a {
  font-family: "helvetica-lt-pro", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: calc(20 * var(--formula));
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: justify;
}
.issue_250904 .product07-price-01 {
  margin-top: calc(72 * var(--formula));
}
.issue_250904 .product08 {
  margin-top: calc(193 * var(--formula));
}
.issue_250904 .product08-photo-01 {
  width: calc(630 * var(--formula));
  margin: 0 auto;
}
.issue_250904 .product08-photo-02 {
  width: calc(630 * var(--formula));
  margin: calc(20 * var(--formula)) auto 0;
}
.issue_250904 .product08-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(20 * var(--formula));
}
.issue_250904 .product08-price a {
  font-family: "helvetica-lt-pro", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: calc(20 * var(--formula));
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: justify;
}
.issue_250904 .product08-price-01 {
  margin-top: calc(71 * var(--formula));
}
.issue_250904 .staff {
  font-family: "helvetica-lt-pro", sans-serif;
  font-weight: 300;
  font-style: normal;
  margin-top: calc(224 * var(--formula));
  font-size: calc(20 * var(--formula));
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}
.issue_250904 .check-all-items {
  display: block;
  width: calc(600 * var(--formula));
  margin: calc(73 * var(--formula)) auto calc(240 * var(--formula));
}