
@media (min-width: 768px) {
  .archive {
    border-top: 1px solid #58595b;
  }
}

.FR250912LUMINE {
  --color-white: #ffffff;
  --color-black: #232323;
  --color-yellow: #FFF1C9;
  --font-en: "tt-commons-pro", sans-serif;
  --font-ja: "sawarabi-gothic", sans-serif;
  --fw-regular: 300;
  --fw-medium: 400;
  --fw-bold: 500;
  --fw-black: 600;
  font-style: normal;
  font-family: var(--font-en);
  color: var(--color-black);
  font-weight: var(--fw-regular);
  text-align: center;
  overflow: clip;
}

/* ▼ -----------可変設定---------- ▼ */
#FR250912LUMINE {
  --pc-width: 1400; /*PCデザイン幅*/
  --sp-width: 750; /*SPデザイン幅*/
  --pc-artboard-width: 400; /*SP共通デザイン幅*/
  --sp-artboard-width: 750; /*PC共通デザイン幅*/
  --formula: calc(var(--variable) * var(--ratio)); /*SP→PC 可変設定*/
  --formula_pc: calc(var(--variable) * 1); /*PC 1400以上は固定*/
}

/* PC画面幅 1400px以上 固定 */
@media (min-width: 1401px) {
  #FR250912LUMINE {
    --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width)); /* PCとSPのデザイン幅の比率 */
    --variable: calc(100vw / var(--pc-width));
    /*--variable: 1px;  固定値（可変しない）*/
  }
}
/* PC画面幅 768～1400px 可変 */
@media (min-width: 768px) and (max-width: 1400px) {
  #FR250912LUMINE {
    --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width)); /* PCとSPのデザイン幅の比率 */
    --variable: calc(100vw / var(--pc-width)); /* 画面幅に基づく可変値 */
  }
}
/* SP画面幅 767px以下 可変 */
@media (max-width: 767px) {
  #FR250912LUMINE {
    --ratio: 1; /* 比率は1（変わらない） */
    --variable: calc(100vw / var(--sp-width)); /* 画面幅に基づく可変値 */
  }
}
/* ▲ -----------可変設定---------- ▲ */

.FR250912LUMINE * {
  box-sizing: border-box;
  font-feature-settings: 'palt';
  line-height: 1;
}

.FR250912LUMINE a:hover {
  opacity: 0.7 !important;
}

.FR250912LUMINE img,
.FR250912LUMINE svg {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  image-rendering: optimizequality;
}

.FR250912LUMINE .animation-fade {
  opacity: 0;
  transform: translate(0, 0);
  filter: blur(5px);
  transition: all 1s ease;
}

.FR250912LUMINE .animation-fade.is-show {
  opacity: 1;
  filter: blur(0px);
  transform: translate(0, 0);
}

.FR250912LUMINE .animation-fade-to-top {
  opacity: 0;
  transform: translateY(5%);
}

.FR250912LUMINE .animation-fade-to-top.is-show {
  opacity: 1;
  transition: all 1.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(0);
}

.FR250912LUMINE .animation-fade-to-left {
  opacity: 0;
  transform: translateX(10%);
}

.FR250912LUMINE .animation-fade-to-left.is-show {
  opacity: 1;
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(0);
}

.FR250912LUMINE .animation-fade-to-right {
  opacity: 0;
  transform: translateX(-10%);
}

.FR250912LUMINE .animation-fade-to-right.is-show {
  opacity: 1;
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(0);
}

.FR250912LUMINE .animation-fade-to-left-hard {
  opacity: 0;
  transition-duration: 1.1s;
  transform: translate3d(30%, 0, 0);
}

.FR250912LUMINE .animation-fade-to-left-hard.is-show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.FR250912LUMINE .animation-fade-to-right-hard {
  opacity: 0;
  transition-duration: 1.1s;
  transform: translate3d(-30%, 0, 0);
}

.FR250912LUMINE .animation-fade-to-right-hard.is-show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.FR250912LUMINE .animation-slide-in-to-bottom {
  clip-path: inset(0 0 100% 0);
}

.FR250912LUMINE .animation-slide-in-to-bottom.is-show {
  clip-path: inset(0 0 0 0);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.FR250912LUMINE .animation-slide-in-to-top {
  clip-path: inset(100% 0 0 0);
}

.FR250912LUMINE .animation-slide-in-to-top.is-show {
  clip-path: inset(0 0 0 0);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@keyframes loop-infinite-to-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}
@media (min-width: 768px) {
  .FR250912LUMINE .without-sp {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .FR250912LUMINE .without-pc {
    display: none !important;
  }
}


#FR250912LUMINE .mvWrap {
  width: 100%;
  position: relative;
  z-index: 1;
}

#FR250912LUMINE .mv_title {
  position: absolute;
  width: calc(560 * var(--formula));
  bottom: calc(128 * var(--formula));
  left: calc(95 * var(--formula));
  z-index: 10;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  #FR250912LUMINE {
    --header-container-height: 120px;
    display: flex;
    width: 100%;
    padding-bottom: calc(230 * var(--formula));
  }
  #FR250912LUMINE::-webkit-scrollbar {
    display: none;
  }
  #FR250912LUMINE .contents_left {
    position: sticky;
    top: 0;
    width: 50%;
    height: 100vh;
    z-index: 1;
    overflow: clip;
    /* height: calc(100vh - (var(--header-container-height, 0px)));
    top: var(--header-container-height, 0); */
  }
  #FR250912LUMINE .mvWrap {
    width: auto;
    /* height: calc(100vh - (var(--header-container-height, 0px))); */
    height: 100vh;
    overflow: clip;
  }
  #FR250912LUMINE .mvWrap .mvWrap__img {
    width: 100%;
    height: 100%;
    position: relative;
  }
  #FR250912LUMINE .mvWrap .mvWrap__img a {
    display: block;
    width: 100%;
    height: 100%;
  }
  #FR250912LUMINE .mvWrap .mvWrap__img a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 80% top;
  }
  #FR250912LUMINE .mvWrap .mvWrap__img picture {
    width: 100%;
    height: 100%;
  }
  #FR250912LUMINE .mvWrap .mv_title {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 1;
  }
  #FR250912LUMINE .mvWrap .mv_txt {
    position: absolute;
    width: calc(405 * (100vw / 1400));
    left: calc(52 * (100vw / 1400));
    bottom: 23.6dvh;
  }
  #FR250912LUMINE .contents_right {
    width: 50%;
    position: relative;
    overflow: clip;
  }
}

/*
//////////////////////////////////////////////////////////////////////////////////////////////
 共通
//////////////////////////////////////////////////////////////////////////////////////////////
*/
#FR250912LUMINE .landing-page__contents-container {
  overflow: clip;
  background-color: var(--color-yellow);
}
#FR250912LUMINE .landing-page__contents-main {
  width: calc(750 * var(--formula));
  margin: 0 auto;
}
#FR250912LUMINE .landing-page__contents-shell {
  width: 100%;
  margin: 0 auto;
}

#FR250912LUMINE .product01-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(6 * var(--formula));
  margin-right: calc(40 * var(--formula));
}
#FR250912LUMINE .product01-price a {
  font-size: calc(21 * var(--formula));
  font-family: var(--font-en);
  font-weight: var(--fw-regular);
  font-style: normal;
  line-height: 1.9;
  letter-spacing: 0.06em;
}
#FR250912LUMINE .product01-price-01 {
  margin-top: calc(30 * var(--formula));
}

@media (min-width: 768px) {

}

/*
//////////////////////////////////////////////////////////////////////////////////////////////
 intro
//////////////////////////////////////////////////////////////////////////////////////////////
*/
#FR250912LUMINE .intro{
  width: calc(750 * var(--formula));
  margin: 0 auto;
  padding-top: calc(106 * var(--formula));
}

#FR250912LUMINE .intro_txt{
  font-size: calc(24 * var(--formula));
  font-family: var(--font-ja);
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: var(--fw-bold);
}
@media (min-width: 768px) {

}

/*
//////////////////////////////////////////////////////////////////////////////////////////////
 collection 01
//////////////////////////////////////////////////////////////////////////////////////////////
*/
#FR250912LUMINE .contents-shell01{
  margin-top: calc(130 * var(--formula));
}

#FR250912LUMINE .contents-shell01 .contents-block01{
  width: calc(675 * var(--formula));
  margin-left: 0;
}

#FR250912LUMINE .contents-shell01 .contents-block02{
  width: calc(570 * var(--formula));
  margin: calc(60 * var(--formula)) auto 0 calc(180 * var(--formula));
}

@media (min-width: 768px) {

}

/*
//////////////////////////////////////////////////////////////////////////////////////////////
 collection 02
//////////////////////////////////////////////////////////////////////////////////////////////
*/
#FR250912LUMINE .contents-shell02{
  margin-top: calc(168 * var(--formula));
}

#FR250912LUMINE .contents-shell02 .contents-block01{
  width: calc(615 * var(--formula));
  margin-left: 0;
  border-top-left-radius: calc(180 * var(--formula));
}

#FR250912LUMINE .contents-shell02 .contents-block02{
  width: calc(615 * var(--formula));
  margin: calc(20 * var(--formula)) auto 0 0;
  border-top-left-radius: calc(180 * var(--formula));
}
#FR250912LUMINE .contents-shell02 .product01-price {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-left: calc(41 * var(--formula));
}
@media (min-width: 768px) {

}

/*
//////////////////////////////////////////////////////////////////////////////////////////////
 collection 03
//////////////////////////////////////////////////////////////////////////////////////////////
*/
#FR250912LUMINE .contents-shell03{
  display: block;
  margin-top: calc(170 * var(--formula));
}

#FR250912LUMINE .contents-shell03 .contents-block01{
  width: calc(750 * var(--formula));
  margin: 0 auto;
}

#FR250912LUMINE .contents-shell03 .contents-block02{
  display: block;
  width: calc(558 * var(--formula));
  margin: calc(88 * var(--formula)) auto 0;
  padding-bottom: calc(250 * var(--formula));
  pointer-events: none;
  transform: translateZ(1px);
}

#FR250912LUMINE .contents-shell03 .contents-box {
  pointer-events: auto;
}

#FR250912LUMINE .contents-shell03 .contents-box .contents-image {
  display: block;
  background-color: var(--color-white);
}

#FR250912LUMINE .contents-shell03 .product01-price {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 0;
}

@media (min-width: 768px) {

}

/*
//////////////////////////////////////////////////////////////////////////////////////////////
 collection 04
//////////////////////////////////////////////////////////////////////////////////////////////
*/
#FR250912LUMINE .contents-shell04{
  margin-top: calc(180 * var(--formula));
  position: relative;
}

#FR250912LUMINE .contents-shell04 .contents-block01{
  width: calc(666 * var(--formula));
  margin-left: 0;
}

#FR250912LUMINE .contents-shell04 .contents-block02{
  width: calc(555 * var(--formula));
  position: absolute;
  left: calc(160 * var(--formula));
  top: calc(850 * var(--formula));
  z-index: 5;
}

#FR250912LUMINE .contents-shell04 .contents-block02 .contents-image {
  background-color: var(--color-yellow);
}

#FR250912LUMINE .contents-shell04 .product01-price {
  margin-top: calc(730 * var(--formula));
  margin-right: calc(35 * var(--formula));
}

@media (min-width: 768px) {

}

/*
//////////////////////////////////////////////////////////////////////////////////////////////
 collection 05
//////////////////////////////////////////////////////////////////////////////////////////////
*/
#FR250912LUMINE .contents-shell05{
  margin-top: calc(170 * var(--formula));
}

#FR250912LUMINE .contents-shell05 .contents-block01{
  width: calc(630 * var(--formula));
  margin: 0 auto;
  border-top-left-radius: calc(180 * var(--formula));
  border-bottom-right-radius: calc(180 * var(--formula));
}

#FR250912LUMINE .contents-shell05 .product01-price {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 0;
}
@media (min-width: 768px) {

}

/*
//////////////////////////////////////////////////////////////////////////////////////////////
 collection 06
//////////////////////////////////////////////////////////////////////////////////////////////
*/
#FR250912LUMINE .contents-shell06{
  margin-top: calc(172 * var(--formula));
  position: relative;
  z-index: 1;
}

#FR250912LUMINE .contents-shell06 .contents-block01{
  width: calc(750 * var(--formula));
  margin: 0 auto;
}

#FR250912LUMINE .contents-shell06 .contents-block02{
  width: calc(585 * var(--formula));
  margin: calc(60 * var(--formula)) auto 0 0;
}

#FR250912LUMINE .contents-shell06 .product01-price {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-left: calc(41 * var(--formula));
}
@media (min-width: 768px) {

}

/*
//////////////////////////////////////////////////////////////////////////////////////////////
 collection 07
//////////////////////////////////////////////////////////////////////////////////////////////
*/
#FR250912LUMINE .contents-shell07{
  margin-top: calc(470 * var(--formula));
}

#FR250912LUMINE .contents-shell07 .contents-block01{
  width: calc(750 * var(--formula));
  margin: 0 auto;
  position: relative;
}

#FR250912LUMINE .contents-shell07 .contents-image{
  background-color: var(--color-white);
}

#FR250912LUMINE .contents-shell07 .contents-txt_image{
  width: calc(547 * var(--formula));
  position: absolute;
  top: calc(69 * var(--formula));
  left: calc(102 * var(--formula));
  z-index: 5;
  pointer-events: none;
}

#FR250912LUMINE .contents-shell07 .contents-block02{
  width: calc(540 * var(--formula));
  margin: calc(58 * var(--formula)) auto 0;
}

#FR250912LUMINE .contents-shell07 .product01-price {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 0;
}
@media (min-width: 768px) {

}

/*
//////////////////////////////////////////////////////////////////////////////////////////////
 foot
//////////////////////////////////////////////////////////////////////////////////////////////
*/
#FR250912LUMINE .landing-page__contents-foot{
  width: calc(750 * var(--formula));
  margin: 0 auto;
  position: relative;
  margin-top: calc(192 * var(--formula));
}

#FR250912LUMINE .landing-page__contents-foot-link-button{
  width: calc(440 * var(--formula));
  position: absolute;
  top: calc(568 * var(--formula));
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

#FR250912LUMINE .landing-page__contents-foot-credit{
  font-family: var(--font-en);
  position: absolute;
  font-size: calc(21 * var(--formula));
  color: var(--color-white);
  letter-spacing: 0.06em;
  line-height: 1.9;
  top: calc(770 * var(--formula));
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 20;
  pointer-events: none;
}

@media (min-width: 768px) {

}

/*
//////////////////////////////////////////////////////////////////////////////////////////////
 splide
//////////////////////////////////////////////////////////////////////////////////////////////
*/

.FR250912LUMINE .splide__pagination {
  position: absolute;
  right: initial;
  left: calc(0 * var(--formula));
  bottom: calc(22 * var(--formula));
  column-gap: calc(12 * var(--formula));
  padding: 0 calc(20 * var(--formula));
}

.FR250912LUMINE .splide__pagination__page {
  width: calc(10 * var(--formula));
  height: calc(10 * var(--formula));
  padding: 0;
  margin: 0;
  background: transparent;
  border: 1px solid var(--color-white);
  opacity: 1;
}

.FR250912LUMINE .splide__pagination__page.is-active {
  background: var(--color-white);
  transform: scale(1);
}


/*
//////////////////////////////////////////////////////////////////////////////////////////////
 sticky
//////////////////////////////////////////////////////////////////////////////////////////////
*/

#FR250912LUMINE .sticky_box {
  display: block;
  width: 100%;
}


#FR250912LUMINE #sec_sticky {
  position: sticky;
  left: 0;
  top: calc(-700 * var(--formula));
  z-index: 1;
}

#FR250912LUMINE #sec_sticky_active {
  display: block;
  width: 100%;
  position: relative;
  z-index: 40;
  background-color: var(--color-yellow);
  transform: translateZ(1px);
}


/* 768px以下：.sticky_box > .contents-block を基準に sticky 発火 */
@media screen and (max-width: 767px) {
  #FR250912LUMINE .sticky_box .contents-block01 {
    position: sticky;
    top: calc(160 * var(--formula));
    left: 0;
  }
}

@media screen and (min-width: 768px) {
  #FR250912LUMINE .common_sticky {
    position: sticky;
    top: var(--header-container-height, 0);
    left: 0;
  }
}

#FR250912LUMINE .sticky_box .fadeInSticky{
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .5s ease,transform .5s ease;
}
#FR250912LUMINE .sticky_box .fadeInSticky.is-show{
  opacity: 1;
  transform: translateY(0);
}
