@charset "UTF-8";
/* --- デフォルトCSS設定 --- */
#Contents .main-area {
  overflow-x: visible;
}

.main-area .main-inner {
  width: 100%;
}
/* SP/PC共通のページ設定用デフォルトCSS */
#LB251028candystock {
  /*デザインの値*/
  --pc-width: 1400; /*PCデザイン幅*/
  --sp-width: 750; /*SPデザイン幅*/
  --pc-artboard-width: 490; /*SP共通デザイン幅*/
  --sp-artboard-width: 750; /*PC共通デザイン幅*/
  /*可変率の計算式*/
  --formula: calc(
    var(--variable) * var(--ratio)
  ); /*SP,PC共通箇所の可変割合の計算式*/
  --formula_pc: calc(var(--variable) * 1); /*PCデザインの可変割合の計算式*/
}

/* PC画面幅 1400px以上 固定 */
@media (min-width: 1401px) {
  #LB251028candystock {
    --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) {
  #LB251028candystock {
    --ratio: calc(
      var(--pc-artboard-width) / var(--sp-artboard-width)
    ); /* PCとSPのデザイン幅の比率 */
    --variable: calc(100vw / var(--pc-width)); /* 画面幅に基づく可変値 */
  }
}

/* SP画面幅 767px以下 可変 */
@media (max-width: 767px) {
  #LB251028candystock {
    --ratio: 1; /* 比率は1（変わらない） */
    --variable: calc(100vw / var(--sp-width)); /* 画面幅に基づく可変値 */
  }
}

#LB251028candystock img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

#LB251028candystock h2,
#LB251028candystock h3,
#LB251028candystock p,
#LB251028candystock li {
  margin-block: calc((1em - 1lh) / 2);
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
}

#LB251028candystock .invisible-heading {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

#LB251028candystock .txt-kerning {
  margin-left: calc(1 * var(--formula));
}

/* --- 抽出されたセレクタ --- */

/* レイアウト用セレクタ */
#LB251028candystock {
  font-feature-settings: "palt";
  --black: #000000;
  --yu_gothic: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体",
    "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  --futura: "futura-pt", sans-serif;
}

#LB251028candystock .lp-wrapper {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
}

#LB251028candystock .lp-left-area {
  position: sticky;
  flex: 1;
  z-index: 0;
  top: 0;
  height: 100vh;
}

#LB251028candystock .left-img-cont {
  width: 100%;
  height: 100%;
  position: relative;
}

#LB251028candystock #lp-title-svg {
  position: absolute;
  bottom: 12.3%;
  left: 50%;
  transform: translateX(-50%);
  width: calc(440 * (100vw / 1400));
  z-index: 5;
  pointer-events: none;
  height: auto;
}

#LB251028candystock .lp-left-area__img-01 {
  z-index: 0;
  object-position: top;
}

#LB251028candystock .lp-main-area {
  flex: 1;
  width: 100%;
  position: relative;
  display: grid;
  justify-items: center;
}

#LB251028candystock .section-settings {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(490 * var(--formula_pc));
}

#LB251028candystock [class*="item-list"] li {
  font-family: var(--futura);
  color: var(--black);
  font-weight: 400;
  font-size: calc(22 * var(--formula));
  line-height: 1.75;
  letter-spacing: 0.02em;
  text-align: left;
  text-transform: uppercase;
  display: flex;
  gap: calc(23 * var(--formula));
}

#LB251028candystock .section01 {
  margin-top: calc(101 * var(--formula));
  margin-bottom: calc(101 * var(--formula));
  width: calc(490 * var(--formula_pc));
}

#LB251028candystock .section01__txt {
  font-family: var(--yu_gothic);
  color: var(--black);
  font-size: calc(26 * var(--formula));
  line-height: 1.75;
  letter-spacing: 0.08em;
  text-align: center;
}

#LB251028candystock .section01__img-cont01 {
  margin-top: calc(98 * var(--formula));
  margin-bottom: calc(40 * var(--formula));
}

#LB251028candystock .section01__item-list01 {
  margin-top: calc(41 * var(--formula));
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--formula));
}

#LB251028candystock .section01__img-cont02 {
  margin-top: calc(59 * var(--formula));
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}

#LB251028candystock .section01__img-03 {
  align-self: flex-end;
  margin-bottom: calc(29 * var(--formula));
  z-index: 5;
}

#LB251028candystock .section01__img-cont02::after {
  content: "";
  background-image: url(../img/bg-01.jpg);
  position: absolute;
  left: 0;
  top: calc(280 * var(--formula));
  width: calc(510 * var(--formula));
  height: calc(638 * var(--formula));
  z-index: 0;
  pointer-events: none;
  background-size: cover;
}

#LB251028candystock .section01__img-04 {
  align-self: center;
  z-index: 5;
  margin-bottom: calc(41 * var(--formula));
}

#LB251028candystock .section01__item-list02 {
  gap: calc(17 * var(--formula));
  display: flex;
  flex-direction: column;
  margin-left: calc(60 * var(--formula));
}

#LB251028candystock .section01__item-list02 li:nth-child(2) span:nth-child(2) {
  margin-left: calc(0 * var(--formula));
}

#LB251028candystock .section02 {
  margin-bottom: calc(100 * var(--formula));
}

#LB251028candystock .section02__img-cont {
  display: flex;
  flex-direction: row-reverse;
  margin-top: calc(-80 * var(--formula));
  align-self: flex-end;
  align-items: flex-end;
  width: 100%;
  justify-content: space-between;
}

#LB251028candystock .section02__item-list03 {
  margin-left: calc(30 * var(--formula));
  display: flex;
  flex-direction: column;
  gap: calc(16.5 * var(--formula));
  margin-bottom: calc(2 * var(--formula));
}

#LB251028candystock #slider1 {
  width: 100%;
}

#LB251028candystock #slider1 .splide__slide {
  width: calc(630 * var(--formula));
}

#LB251028candystock .section03__item-list04 {
  margin-top: calc(41 * var(--formula));
  display: flex;
  flex-direction: column;
  gap: calc(17 * var(--formula));
  align-self: flex-start;
  margin-left: calc(30 * var(--formula));
}

#LB251028candystock .section03__item-list04 li:nth-child(1) span:nth-child(2) {
  margin-left: calc(1 * var(--formula));
}

#LB251028candystock .section03__item-list04 li:nth-child(2) span:nth-child(2) {
  margin-left: calc(0 * var(--formula));
}

#LB251028candystock .section04 {
  margin-top: calc(98 * var(--formula));
  margin-bottom: calc(101 * var(--formula));
}

#LB251028candystock .section04__img-cont {
  display: grid;
  place-items: center;
  margin-bottom: calc(40 * var(--formula));
}
#LB251028candystock .section04__bg-04 {
  grid-area: 1/1;
}

#LB251028candystock .section04__item-list05 {
  align-self: flex-start;
  margin-left: calc(80 * var(--formula));
}

#LB251028candystock #slider2 {
  width: 100%;
}

#LB251028candystock #slider2 .splide__slide {
  width: calc(750 * var(--formula));
}

#LB251028candystock .section05__item-list06 {
  margin-top: calc(40 * var(--formula));
  align-self: flex-start;
  margin-left: calc(20 * var(--formula));
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--formula));
}
#LB251028candystock .section05__item-list06 li:nth-child(1) span:nth-child(2) {
  margin-left: calc(-1 * var(--formula));
}
#LB251028candystock .section05__item-list06 li:nth-child(2) span:nth-child(2) {
  margin-left: calc(0 * var(--formula));
}

#LB251028candystock .section06 {
  margin-top: calc(102 * var(--formula));
}

#LB251028candystock .section06__img-cont01 {
  display: flex;
  gap: calc(16 * var(--formula));
  margin-bottom: calc(16 * var(--formula));
}

#LB251028candystock .section06__item-list07 {
  margin-top: calc(40 * var(--formula));
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  gap: calc(16 * var(--formula));
  margin-left: calc(30 * var(--formula));
}

#LB251028candystock .section06__item-list07 li:nth-child(1) span:nth-child(2) {
  margin-left: calc(-2 * var(--formula));
}
#LB251028candystock .section06__item-list07 li:nth-child(2) span:nth-child(2) {
  margin-left: calc(0 * var(--formula));
}
#LB251028candystock .section06__item-list07 li:nth-child(2) span:nth-child(3) {
  margin-left: calc(-1 * var(--formula));
}

#LB251028candystock .section06__img-cont02 {
  position: relative;
  margin-top: calc(150 * var(--formula));
  margin-bottom: calc(192 * var(--formula));
}

#LB251028candystock .section06__png-01 {
  position: absolute;
  top: calc(-49 * var(--formula));
  right: calc(-49 * var(--formula));
  pointer-events: none;
}

#LB251028candystock .section06__png-02 {
  position: absolute;
  bottom: calc(-91 * var(--formula));
  left: calc(-74 * var(--formula));
  pointer-events: none;
}

#LB251028candystock .section07 {
  margin-bottom: calc(161 * var(--formula));
}

#LB251028candystock .section07__img-cont {
  margin-bottom: calc(100 * var(--formula));
}

#LB251028candystock .section07__item-list08 {
  margin-top: calc(40 * var(--formula));
  margin-left: calc(30 * var(--formula));
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--formula));
}

#LB251028candystock .section07__item-list08 li:nth-child(2) span:nth-child(2) {
  margin-left: calc(-1 * var(--formula));
}

#LB251028candystock .section07__img-12 {
  margin-bottom: calc(99 * var(--formula));
}

#LB251028candystock .section08 {
  background-image: url(../img/bg-03.jpg);
  background-size: cover;
  width: 100%;
  overflow: hidden;
  padding-botto,: 1;
  padding-bottom: calc(101 * var(--formula));
}

#LB251028candystock .section08 h4 {
  font-family: var(--futura);
  color: var(--black);
  font-size: calc(52 * var(--formula));
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
  margin-top: calc(100 * var(--formula));
}

#LB251028candystock #auto-slider1 {
  margin-top: calc(100 * var(--formula));
  margin-bottom: calc(16 * var(--formula));
}

#LB251028candystock .splide--autoscroll .splide__slide {
  width: calc(190 * var(--formula));
}

#LB251028candystock #auto-slider2 {
  margin-bottom: calc(101 * var(--formula));
}

#LB251028candystock .section08__svg-txt-04 {
  margin-top: calc(20 * var(--formula));
}

/* 画像サイズ指定用クラス(__frame) */

#LB251028candystock .lp-left-area__img-01__frame {
  width: 100%;
  height: 100%;
}

#LB251028candystock .lp-left-area__img-01__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

#LB251028candystock .section01__img-02__frame {
  width: calc(690 * var(--formula));
}

#LB251028candystock .section01__img-03__frame {
  width: calc(510 * var(--formula));
}

#LB251028candystock .section01__img-04__frame {
  width: calc(630 * var(--formula));
}

#LB251028candystock .section02__img-05__frame {
  width: calc(750 * var(--formula));
}

#LB251028candystock .section02__img-06__frame {
  width: calc(490 * var(--formula));
}

#LB251028candystock .section04__img-07__frame {
  width: calc(530 * var(--formula));
  grid-area: 1/1;
  z-index: 5;
}

#LB251028candystock .section04__bg-04__frame {
  width: calc(590 * var(--formula));
}

#LB251028candystock .section06__bg-02__frame {
  width: calc(184 * var(--formula));
}

#LB251028candystock .section06__bg-02__frame img {
  height: 100%;
  object-fit: cover;
}

#LB251028candystock .section06__img-08__frame {
  width: calc(550 * var(--formula));
}

#LB251028candystock .section06__img-09__frame {
  width: calc(750 * var(--formula));
}

#LB251028candystock .section06__img-10__frame {
  width: calc(550 * var(--formula));
}

#LB251028candystock .section06__png-01__frame {
  width: calc(158 * var(--formula));
}

#LB251028candystock .section06__png-02__frame {
  width: calc(122 * var(--formula));
}

#LB251028candystock .section07__img-11__frame {
  width: calc(750 * var(--formula));
}

#LB251028candystock .section07__img-12__frame {
  width: calc(630 * var(--formula));
}

#LB251028candystock .section07__svg-txt-02__frame {
  width: calc(500 * var(--formula));
}

#LB251028candystock .section08__svg-txt-03__frame {
  width: calc(690 * var(--formula));
}

#LB251028candystock .section08__svg-txt-04__frame {
  width: calc(690 * var(--formula));
}

#LB251028candystock .lp-left-area__img-01 {
  opacity: 0;
  visibility: hidden;
}

#LB251028candystock .txt-1,
#LB251028candystock .txt-2,
#LB251028candystock .txt-3 {
  translate: 0 100%;
  visibility: hidden;
}

/* スクロールフェードアップ */
#LB251028candystock .scroll-fade-up {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10%);
}

/* スクロールフェードレフト */
#LB251028candystock .scroll-fade-left:not(.splide) {
  opacity: 0;
  visibility: hidden;
  transform: translateX(20%);
}
#LB251028candystock .splide.scroll-fade-left {
  opacity: 0;
  visibility: visible; /* 本体は visible にしておく */
}
/* スクロールフェードライト */
#LB251028candystock .scroll-fade-right {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-20%);
}

/* SP setting */
@media (max-width: 767px) {
  #LB251028candystock #lp-title-svg {
    width: calc(580 * var(--formula));
  }
  #LB251028candystock .section-settings {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    overflow: hidden;
  }

  #LB251028candystock #lp-title-svg {
    bottom: 18.3%;
    left: 50%;
    width: calc(580 * var(--formula));
  }
  #LB251028candystock .lp-wrapper {
    display: flex;
    flex-direction: column;
  }

  #LB251028candystock .lp-left-area {
    position: relative;
    height: auto;
  }

  #LB251028candystock .lp-left-area__img-01__frame {
    width: calc(750 * var(--formula));
    height: auto;
  }
}
