@charset "UTF-8";

/* ===============================================### 
可変設定
###=============================================== */
.lp_variable {
  /*デザインの値*/
  --pc-width: 1400;/*PCデザイン幅*/
  --sp-width: 750;/*SPデザイン幅*/
  --pc-artboard-width: 420;/*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) {
  .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)); /* 画面幅に基づく可変値 */
  }
}


/* ===============================================### 
初期設定
###=============================================== */
.LB250530candy{
  position: relative;
  --font-ja:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "Open Sans", "メイリオ", sans-serif;
  /* --font-en: "pragmatica", sans-serif; */
  --font-en: "ivyora-text", serif;
  font-style: normal;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --color-white: #ffffff;
  --color-black: #000000;
  color: #000000;
  overflow: clip;
}

.LB250530candy img{
  width: 100%;
  height: auto;
}

.main-area * {
  box-sizing: border-box;
}

/* body{
  overflow-x: visible;
}

.main-area{
  overflow-x: visible;
} */


/* ===========### PC用設定 ###=========== */
@media screen and (min-width: 768px) {
  .main-area{
    overflow-x: visible!important;
  }

  .main-area .main-inner{
    width: 100%;
  }

  .LB250530candy .pc-visible{
    display: block;
  }

  .LB250530candy .sp-visible{
    display: none;
  }

  .LB250530candy .bg-image{
    background-color: #fff;
  }

  .LB250530candy .bg-image a:hover{
    opacity: 0.7;
  }
}

/* ===========### SP用設定 ###=========== */
@media screen and (max-width: 767px) {
  .main-area{
    overflow-x: visible!important;
  }

  .main-area .main-inner{
    width: 100%;
  }

  .LB250530candy{
    overflow: clip;
  }
  
  .LB250530candy .pc-visible{
    display: none;
  }

  .LB250530candy .sp-visible{
    display: block;
  }
}



/* ===============================================### 
アニメーション設定
###=============================================== */
.LB250530candy .js-slide-in{
  opacity: 0;
  transform: translateY(10rem);
  transition: all ease 1s;
}

.LB250530candy .js-slide-in.show{
  opacity: 1;
  transform: translateY(0);
}

.LB250530candy .js-fade-in{
  visibility: hidden;
  opacity: 0;
  transition: all 1s ease;
}

.LB250530candy .js-fade-in.show{
  visibility: visible;
  opacity: 1;
}

.LB250530candy .mv__text .js-fade-up-text{
  /* opacity: 0;
  transform: translate(0, 80px);
  transition: all 1s ease; */
  transform: translateY(110%) rotate(0.0001deg);
  transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.LB250530candy .mv__image.js-fade-in.show ~ * .js-fade-up-text{
  /* opacity: 1;
  transform: translate(0, 0); */
  transform: translateY(0) rotate(0.0001deg);
}

.LB250530candy .mv__image.js-fade-in.show ~ * .js-fade-up-text.js-delay01{
  transition-delay: 0.5s;
}

.LB250530candy .mv__image.js-fade-in.show ~ * .js-fade-up-text.js-delay02{
  transition-delay: 1s;
}

.LB250530candy .mv__image.js-fade-in.show ~ * .js-fade-up-text.js-delay03{
  transition-delay: 1.5s;
}



/* ===============================================### 
コンテンツ共通設定
###=============================================== */
.LB250530candy .content-common .content-inner{
  width: calc(750 * var(--formula));
  margin-inline: auto;
}

.LB250530candy .content-sticky{
  position: sticky;
  top: 0;
}

/************** slide **************/
.LB250530candy .swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction{
  bottom: 1rem
}

.LB250530candy .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{
  margin: 0 0.8rem;
}

.LB250530candy .swiper-pagination-bullet{
  opacity: 1;
}

.LB250530candy .swiper-pagination-bullet{
  width: calc(16 * var(--formula));
  height: calc(16 * var(--formula));
}

.LB250530candy .swiper-pagination-bullet{
  background: var(--color-white);
  border: 1px solid var(--color-black);
  box-sizing: border-box;
}

.LB250530candy .swiper-pagination-bullet-active{
  background-color: var(--color-black);
}

/************** text **************/
.LB250530candy .credit{
  font-family: var(--font-en);
  font-size: calc(26 * var(--formula));
  font-weight: var(--fw-regular);
  line-height: 1.75;
  /* font-feature-settings: "palt"; */
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.LB250530candy .credit a{
  display: inline-block;
}


/* ===========### responsive ###=========== */
/*** PC ***/
@media screen and (min-width: 768px) {
  .LB250530candy .main-content.flex-wrapper{
    display: flex;
  }

  .LB250530candy .left-area,
  .LB250530candy .right-area{
    width: 50%;
  }

  .LB250530candy .mv-sticky{
    position: sticky;
    top: 0;
  }
}

/*** SP ***/
@media screen and (max-width: 767px) {
  /************** slide **************/
  .LB250530candy .swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction{
    bottom: 11px;
  }
}


/* ===============================================### 
MV
###=============================================== */
.LB250530candy .mv .content-inner{
  /* width: 100%;
  height: 100vh;
  background-image: url('../img/mv_bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;

  display: flex;
  justify-content: center;
  align-items: center; */
}

.LB250530candy .mv .item-wrap{
  position: relative;
  width: fit-content;
}

/************** image **************/
.LB250530candy .mv .mv__image{
  /* width: calc(652 * var(--formula_pc)); */
  width: calc(652 * (100vw / 1400));
  margin-inline: auto;
}

/* .LB250530candy .mv .mv__image img{
  max-height: 100vh;
  object-fit: contain;
} */

.LB250530candy .mv .mv__text{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

.LB250530candy .mv .mv__text.text01{
  /* top: calc(514 * var(--formula));
  width: calc(440 * var(--formula_pc)); */
  top: calc(289 * (100vw / 1400));
  width: calc(440 * (100vw / 1400));
  overflow: hidden;
}

.LB250530candy .mv .mv__text.text02{
  /* top: calc(664 * var(--formula));
  width: calc(331 * var(--formula_pc)); */
  top: calc(370 * (100vw / 1400));
  width: calc(331 * (100vw / 1400));
  overflow: hidden;
}

.LB250530candy .mv .mv__text.text03{
  /* top: calc(779 * var(--formula));
  width: calc(281 * var(--formula_pc)); */
  top: calc(435 * (100vw / 1400));  
  width: calc(281 * (100vw / 1400));
  overflow: hidden;
}

/* ===========### responsive ###=========== */
/*** PC ***/
@media screen and (min-width: 768px) {
  .LB250530candy .mv{
    width: 100%;
    height: 100vh;
    background-image: url('../img/mv_bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
  
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/*** SP ***/
@media screen and (max-width: 767px) {
  .LB250530candy .mv{
    width: calc(750 * var(--formula));
    background-image: url('../img/mv_bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
  
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .LB250530candy .mv .content-inner{
    padding-top: calc(30 * var(--formula));
    padding-bottom: calc(30 * var(--formula));
  }

  /************** image **************/
  .LB250530candy .mv .mv__image{
    width: calc(690 * var(--formula));
  }

  .LB250530candy .mv .mv__text.text01{
    top: calc(369 * var(--formula));
    width: calc(500 * var(--formula));
  }

  .LB250530candy .mv .mv__text.text02{
    top: calc(466 * var(--formula));
    width: calc(376 * var(--formula));
  }

  .LB250530candy .mv .mv__text.text03{
    top: calc(533 * var(--formula));
    width: calc(367 * var(--formula));
  }
}



/* ===============================================### 
lead-area
###=============================================== */
.LB250530candy .lead-area{
  margin-top: calc(128 * var(--formula));
}

/************** text **************/
.LB250530candy .lead-text{
  font-family: var(--font-ja);
  font-size: calc(26 * var(--formula));
  font-weight: var(--fw-regular);
  line-height: 2;
  letter-spacing: 0.08em;
  text-align: center;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .LB250530candy .lead-area{
    margin-top: calc(129 * var(--formula));
  }
}



/* ===============================================### 
コンテンツ01
###=============================================== */
.LB250530candy .content01{
  margin-top: calc(128 * var(--formula));
}

.LB250530candy .content01 .content-inner{
}

.LB250530candy .content01 .content__item01{
}

/************** slide **************/
.LB250530candy .content01 .slide-wrapper{
  width: calc(750 * var(--formula));
  margin-inline: auto;
  padding-bottom: calc(65 * var(--formula));
  overflow: hidden;
  position: relative;
}

.LB250530candy .content01 .swiper-wrapper{
}

/************** text **************/
.LB250530candy .content01 .credit{
  /* margin-top: calc(30 * var(--formula)); */
  text-align: center;
}

/*** クレジット位置微調整 ***/
.LB250530candy .content01 .credit a:nth-of-type(2),
.LB250530candy .content01 .credit a:nth-of-type(3),
.LB250530candy .content01 .credit a:nth-of-type(5){
  margin-left: calc(20 * var(--formula));
}

/************** image **************/
.LB250530candy .content01 .content__image{
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .LB250530candy .content01{
    margin-top: calc(127 * var(--formula));
  }
}


/* ===============================================### 
コンテンツ02
###=============================================== */
.LB250530candy .content02{
  margin-top: calc(135 * var(--formula));
}

.LB250530candy .content02 .content-inner{
  position: relative;
  display: flex;
}

.LB250530candy .content02 .content-bg{
  width: 100%;
  height: calc(1350 * var(--formula));
}

.LB250530candy .content02 .content-bg::after{
  content: '';
  position: absolute;
  top: 0;
  /* left: 50%;
  transform: translateX(-50%); */
  background-image: url('../img/bg_img1.jp.jpg');
  width: calc(750 * var(--formula));
  height: calc(1350 * var(--formula));
  background-repeat: no-repeat;
  background-size: contain;
}

.LB250530candy .content02 .image-wrap{
  z-index: 1;
  padding-top: calc(138 * var(--formula));
  padding-bottom: calc(140 * var(--formula));
}

/************** sticky **************/
.LB250530candy .content02 .content-bg.content-sticky{
  top: calc(200 * var(--formula));
}

/************** image **************/
.LB250530candy .content02 .content__image.image01{
  position: relative;
  left: calc(-80 * var(--formula));
  width: calc(590 * var(--formula));
}

.LB250530candy .content02 .content__image.image02{
  width: calc(450 * var(--formula));
  margin-top: calc(140 * var(--formula));
  margin-left: calc(90 * var(--formula));
}

.LB250530candy .content02 .content__image.image03{
  position: relative;
  left: calc(-160 * var(--formula));
  width: calc(570 * var(--formula));
  margin-top: calc(50 * var(--formula));
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  /************** sticky **************/
  .LB250530candy .content02 .content-bg.content-sticky{
    top: calc(200 * var(--formula));
  }
}



/* ===============================================### 
コンテンツ03
###=============================================== */
.LB250530candy .content03{
  margin-top: calc(150 * var(--formula));
}

.LB250530candy .content03 .content-inner{
}

.LB250530candy .content03 .content__item01{
}

.LB250530candy .content03 .content__item02{
  position: relative;
  width: fit-content;
  margin-top: calc(134 * var(--formula));
}

.LB250530candy .content03 .content__item02::after{
  content: '';
  position: absolute;
  top: calc(266 * var(--formula));
  left: 0;
  width: calc(750 * var(--formula));
  height: calc(902 * var(--formula));
  background-image: url('../img/content02_bg.jpg');
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

/************** text **************/
.LB250530candy .content03 .credit{
  margin-top: calc(21 * var(--formula));
  text-align: center;
}

/*** クレジット位置微調整 ***/
.LB250530candy .content03 .credit a:nth-of-type(2n){
  margin-left: calc(20 * var(--formula));
}

/************** image **************/
.LB250530candy .content03 .content__item01 .content__image{
  width: calc(750 * var(--formula));
  margin-inline: auto;
}

.LB250530candy .content03 .content__item02 .content__image.image01{
  width: calc(520 * var(--formula));
  margin-left: calc(50 * var(--formula));
  margin-right: auto;
}

.LB250530candy .content03 .content__item02 .content__image.image02{
  width: calc(520 * var(--formula));
  margin-top: calc(49 * var(--formula));
  margin-left: calc(180 * var(--formula));
  margin-right: auto;
}



/* ===============================================### 
コンテンツ04
###=============================================== */
.LB250530candy .content04{
  margin-top: calc(140 * var(--formula));
}

.LB250530candy .content04 .content-inner{
  position: relative;
  display: flex;
}

.LB250530candy .content04 .content-bg{
  width: 100%;
  height: calc(1350 * var(--formula));
}

.LB250530candy .content04 .content-bg::after{
  content: '';
  position: absolute;
  top: 0;
  /* left: 50%;
  transform: translateX(-50%); */
  background-image: url('../img/bg_img2.jp.jpg');
  width: calc(750 * var(--formula));
  height: calc(1350 * var(--formula));
  background-repeat: no-repeat;
  background-size: contain;
}

.LB250530candy .content04 .image-wrap{
  z-index: 1;
  padding-top: calc(138 * var(--formula));
  padding-bottom: calc(134 * var(--formula));
}

/************** sticky **************/
.LB250530candy .content04 .content-bg.content-sticky{
  top: calc(200 * var(--formula));
}

/************** text **************/
.LB250530candy .content04 .credit{
  margin-top: calc(20 * var(--formula));
  text-align: center;
}

/*** クレジット位置微調整 ***/
.LB250530candy .content04 .credit a:nth-of-type(2n){
  margin-left: calc(20 * var(--formula));
}

/************** image **************/
.LB250530candy .content04 .content__image.image01{
  width: calc(750 * var(--formula));
  margin-inline: auto;
}

.LB250530candy .content04 .content__image.image02{
  position: relative;
  width: calc(650 * var(--formula));
  margin-top: calc(-120 * var(--formula));
  margin-inline: auto;
  z-index: 1;
}



/* ===============================================### 
コンテンツ05
###=============================================== */
.LB250530candy .content05{
  margin-top: calc(140 * var(--formula));
}

.LB250530candy .content05 .content-inner{
}

.LB250530candy .content05 .content__item01{
}

/************** text **************/
.LB250530candy .content05 .credit{
  margin-top: calc(19 * var(--formula));
  text-align: center;
}

/************** image **************/
.LB250530candy .content05 .content__image{
  width: calc(500 * var(--formula));
  margin-inline: auto;
}



/* ===============================================### 
コンテンツ06
###=============================================== */
.LB250530candy .content06{
  margin-top: calc(135 * var(--formula));
}

.LB250530candy .content06 .content-inner{
}

.LB250530candy .content06 .content__item01{
}

/************** slide **************/
.LB250530candy .content06 .slide-wrapper{
  width: calc(750 * var(--formula));
  margin-inline: auto;
  padding-bottom: calc(70 * var(--formula));
  overflow: hidden;
  position: relative;
}

/************** text **************/
.LB250530candy .content06 .credit{
  text-align: center;
}

/*** クレジット位置微調整 ***/
.LB250530candy .content06 .credit a:nth-of-type(2n){
  margin-left: calc(20 * var(--formula));
}

/************** image **************/
.LB250530candy .content06 .content__image{
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .LB250530candy .content06{
    margin-top: calc(137 * var(--formula));
  }
}



/* ===============================================### 
コンテンツ07
###=============================================== */
.LB250530candy .content07{
  margin-top: calc(135 * var(--formula));
}

.LB250530candy .content07 .content-inner{
}

.LB250530candy .content07 .content__item01{
  position: relative;
  width: 100%;
}

.LB250530candy .content07 .content__item01::after{
  content: '';
  position: absolute;
  top: calc(433 * var(--formula));
  right: 0;
  width: calc(300 * var(--formula));
  height: calc(1134 * var(--formula));
  background-image: url('../img/content07_bg.jpg');
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.LB250530candy .content07 .content__item02{
  margin-top: calc(50 * var(--formula));
}

/************** text **************/
.LB250530candy .content07 .credit{
  margin-top: calc(20 * var(--formula));
  text-align: center;
}

/*** クレジット位置微調整 ***/
.LB250530candy .content07 .credit a:nth-of-type(2){
  margin-left: calc(20 * var(--formula));
}

/************** image **************/
.LB250530candy .content07 .content__item01 .content__image.image01{
  width: calc(650 * var(--formula));
  margin-inline: auto;
}

.LB250530candy .content07 .content__item01 .content__image.image02{
  width: calc(570 * var(--formula));
  margin-top: calc(140 * var(--formula));
}

.LB250530candy .content07 .content__item02 .content__image{
  width: calc(750 * var(--formula));
  margin-inline: auto;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .LB250530candy .content07{
    margin-top: calc(133 * var(--formula));
  }
}



/* ===============================================### 
ALL ITEM
###=============================================== */
.LB250530candy .lineup {
  /* margin-top: 12rem;
  padding: 11.6rem 0 15rem;
  background-color: #FFF8F8;
  overflow: hidden; */
  margin-top: calc(120 * var(--formula));
  padding: calc(120 * var(--formula)) 0 calc(150 * var(--formula));
  /* background-color: #FFF8F8; */
  overflow: hidden;
}

.LB250530candy .lineup__title {
  /* margin-right: auto;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-size: 4.3rem;
  letter-spacing: 0.05rem; */
  margin-right: auto;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-family: var(--font-en);
  font-size: calc(62 * var(--formula));
  font-feature-settings: "palt";
  letter-spacing: 0.05rem;
}

.LB250530candy .lineup__slider {
  /* border-bottom: solid 1px #E2E2E2;
  background-color: #FFFFFF; */
  border-bottom: solid 1px var(--color-black);
  background-color: var(--color-white);
}

.LB250530candy .lineup__fast_slider {
  /* margin-top: 4rem;
  border-top: solid 1px #E2E2E2; */
  margin-top: calc(67 * var(--formula));
  border-top: solid 1px var(--color-black);
}

.LB250530candy .lineup__image {
  /* padding: 1.3rem 1.47rem 0.9rem;
  border-left: solid 1px #E2E2E2;
  width: 15.3rem; */
  padding: calc(15 * var(--formula)) calc(15 * var(--formula)) calc(10 * var(--formula));
  border-left: solid 1px var(--color-black);
  width: calc(217 * var(--formula));
}

.LB250530candy .lineup__links {
  /* margin: 12rem auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content; */
  margin: calc(140 * var(--formula)) auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.LB250530candy .lineup__btn {
  width: calc(650 * var(--formula));
}

.LB250530candy .lineup__btn:last-child {
  margin-top: calc(20 * var(--formula));
}

.LB250530candy .contents__max {
  width: 100%;
}
.LB250530candy .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .LB250530candy .lineup__fast_slider {
    margin-top: calc(55 * var(--formula));
  }

  .LB250530candy .lineup__image {
    width: calc(219 * var(--formula));
  }

  .LB250530candy .lineup__links {
    margin: calc(137 * var(--formula)) auto 0;
  }

  .LB250530candy .lineup {
    padding: calc(120 * var(--formula)) 0 calc(190 * var(--formula));
  }
}

