@charset "UTF-8";


/* ===============================================### 
可変設定
###=============================================== */
.lp_variable {
  /*デザインの値*/
  --pc-width: 1915;/*PCデザイン幅*/
  --sp-width: 750;/*SPデザイン幅*/
  --pc-artboard-width: 556;/*SP共通デザイン幅*/
  --sp-artboard-width: 750;/*PC共通デザイン幅*/
  /*可変率の計算式*/
  --formula: calc(var(--variable) * var(--ratio));/*SP,PC共通箇所の可変割合の計算式*/
  --formula_pc: calc(var(--variable) * 1);/*PCデザインの可変割合の計算式*/
}

/* PC画面幅 1916px以上 固定 */
@media (min-width: 1916px) {
  .lp_variable {
  --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width)); /* PCとSPのデザイン幅の比 */
  --variable: 1px; /* 固定値（可変しない） */
  }
}

/* PC画面幅 768～1915px 可変 */
@media (min-width: 768px) and (max-width: 1915px) {
  .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)); /* 画面幅に基づく可変値 */
  }
}


/* ===============================================### 
初期設定
###=============================================== */
.FR250620COOLCOLLECTION{
  --font-ja: "Noto Sans JP", sans-serif;
  --font-en01: "times-new-roman", sans-serif;
  --font-en02: "Jost", sans-serif;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-blue: #374173;
  --color-light-blue: #8cc4e3;
  --bg-color: #ffefcd;
}

/* html{
  overflow: visible!important;
}

#Contents {
  position: relative;
} */

.FR250620COOLCOLLECTION img,
.FR250620COOLCOLLECTION svg{
  width: 100%;
  height: auto;
}

.archive{
  z-index: 999;
  background: #fff;
}


/* ===========### PC用設定 ###=========== */
@media screen and (min-width: 768px) {
  .FR250620COOLCOLLECTION{
  }

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

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

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

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


/* ===========### SP用設定 ###=========== */
@media screen and (max-width: 767px) {
  .FR250620COOLCOLLECTION{
    overflow: clip;
  }

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

  .FR250620COOLCOLLECTION .pc-visible {
    display: none;
  }
}



/* ===============================================### 
left-area, right-area, center-area 設定
###=============================================== */
/* @media screen and (min-width: 768px) {
  .FR250620COOLCOLLECTION .mv .grid-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1fr calc(750 * var(--formula)) 1fr;
  }

  .FR250620COOLCOLLECTION .left-area {
    position: sticky;
    grid-column: 1;
    top: 0;
    height: 100vh;
    display: grid;
    place-content: center;
    background-color: var(--bg-color);
  }

  .FR250620COOLCOLLECTION .center-area {
    grid-column: 2;
  }

  .FR250620COOLCOLLECTION .right-area {
    position: sticky;
    grid-column: 3;
    top: 0;
    height: 100vh;
    display: grid;
    place-content: center;
    background-color: var(--bg-color);
  }

  .FR250620COOLCOLLECTION .fixed_title {
    grid-column: 1;
    width: calc(265 * (100vw / 1400));
  }
} */




/* ===============================================### 
アニメーション設定
###=============================================== */
/************** blur **************/
.FR250620COOLCOLLECTION .js-fade-blur{
  filter: blur(10px);
  transform: scale(1.02);
  opacity: 0;
  transition: filter 1s, opacity 1s, transform 1s;
}

.FR250620COOLCOLLECTION .js-fade-blur.is-active{
  filter: blur(0);
  transform: scale(1);
  opacity: 1;
}

/************** fade **************/
.FR250620COOLCOLLECTION .js-fade-in{
  opacity: 0;
}

.FR250620COOLCOLLECTION .js-fade-in.is-active{
  -webkit-animation: fade-in 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: fade-in 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  -webkit-animation-delay: var(--animation-delay, 0);
          animation-delay: var(--animation-delay, 0);
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}



/* ===============================================### 
コンテンツ共通設定
###=============================================== */
/************** sticky **************/
.FR250620COOLCOLLECTION .content-sticky{
  position: sticky;
}

.FR250620COOLCOLLECTION .content-sticky.sticky01{
  top: 0;
}

.FR250620COOLCOLLECTION .content-sticky.sticky02{
  /* top: 0; */
  top: calc(-11000 * var(--formula));
}

.FR250620COOLCOLLECTION .content-wrap.wrap01{
  background-color: var(--bg-color);
}

.FR250620COOLCOLLECTION .content-wrap.wrap01 .content-inner{
  position: relative;
}

.FR250620COOLCOLLECTION .content-wrap.wrap02{
  background-color: var(--bg-color);
}

.FR250620COOLCOLLECTION .content-wrap.wrap03{
  position: relative;
  z-index: 1;
  background-color: var(--bg-color);
}

.FR250620COOLCOLLECTION .content{
  width: calc(750 * var(--formula));
  margin-inline: auto;
  background-color: var(--color-white);
}

/************** slide **************/
.FR250620COOLCOLLECTION .swiper-horizontal>.swiper-pagination-bullets,
.FR250620COOLCOLLECTION .swiper-pagination-bullets.swiper-pagination-horizontal,
.FR250620COOLCOLLECTION .swiper-pagination-custom, .swiper-pagination-fraction{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  bottom: 0;
  left: initial;
  right: calc(25 * var(--formula));
}

.FR250620COOLCOLLECTION .swiper-pagination-bullet{
  width: calc(6 *  var(--formula_pc));
  height: calc(6 *  var(--formula_pc));
  background: transparent;
  border: 1px solid #89c2e1;
  opacity: 1;
}

.FR250620COOLCOLLECTION .swiper-pagination-bullet-active{
  background-color: #89c2e1;
}

.fade-slide .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.fade-slide .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
  margin: 0 3px;
}


/************** text **************/
.FR250620COOLCOLLECTION .credit{
  font-family: var(--font-en02);
  font-size: calc(19 * var(--formula));
  font-weight: var(--fw-light);
  letter-spacing: 0.02em;
  line-height: 1.4747368421;
  font-optical-sizing: auto;
  white-space: nowrap;
  color: var(--color-light-blue);
}

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

.FR250620COOLCOLLECTION .credit sup{
  vertical-align: bottom;
}

.FR250620COOLCOLLECTION .credit span{
  margin-left: calc(9 * var(--formula));
}

.FR250620COOLCOLLECTION .link-disable{
}

.FR250620COOLCOLLECTION .link-disable:hover{
  opacity: 1;
}

.FR250620COOLCOLLECTION .function{
  margin-top: calc(18 * var(--formula));
  margin-left: calc(34 * var(--formula));
  font-family: var(--font-en02);
  font-size: calc(16 * var(--formula));
  font-weight: var(--fw-light);
  letter-spacing: 0.02em;
  font-optical-sizing: auto;
  color: var(--color-light-blue);
}

.FR250620COOLCOLLECTION .function sup{
  vertical-align: bottom;
}

/************** image **************/
.FR250620COOLCOLLECTION .number{
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.FR250620COOLCOLLECTION .content__image{
  width: calc(750 * var(--formula));
}

.FR250620COOLCOLLECTION .content__image.small-image{
  width: calc(626 * var(--formula));
  margin-inline: auto;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .FR250620COOLCOLLECTION .swiper-horizontal>.swiper-pagination-bullets,
  .FR250620COOLCOLLECTION .swiper-pagination-bullets.swiper-pagination-horizontal,
  .FR250620COOLCOLLECTION .swiper-pagination-custom, .swiper-pagination-fraction{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    bottom: 0;
    left: initial;
    right: calc(25 * var(--formula));
  }

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

  .fade-slide .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
  .fade-slide .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
    margin: 0 2px;
  }
}


/* ===============================================### 
MV
###=============================================== */
.FR250620COOLCOLLECTION .mv{
  position: relative;
}

/************** image **************/
.FR250620COOLCOLLECTION .mv .mv__image{
}

.FR250620COOLCOLLECTION .mv__text{
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.FR250620COOLCOLLECTION .mv__text.text-left{
  top: calc(32 * var(--formula));
  left: calc(25 * var(--formula));
  width: calc(348 * var(--formula));
}

.FR250620COOLCOLLECTION .mv__text.text-right{
  bottom: calc(199 * var(--formula));
  right: calc(30 * var(--formula));
  width: calc(290 * var(--formula));
}

/* ===========### responsive ###=========== */
@media screen and (min-width: 768px) {
  .FR250620COOLCOLLECTION .fixed-area{
    display: block;
    width: 100%;
    position: sticky;
    left: 0;
    /* top: calc(70 * (100vw / 1920)); */
    top: 0;
    pointer-events: none;
    z-index: 99;
  }

  .FR250620COOLCOLLECTION .fixed-area .title-left{
    position: absolute;
    left: calc(274 * (100vw / 1915));
    top: calc(383 * var(--formula));
  }

  .FR250620COOLCOLLECTION .fixed-area .title-right{
    position: absolute;
    right: calc(310 * (100vw / 1915));
    top: calc(470 * var(--formula));
  }

  /************** image **************/
  .FR250620COOLCOLLECTION  .fixed-area .title-left .fixed_title {
    width: calc(265 * var(--formula_pc));
  }

  .FR250620COOLCOLLECTION  .fixed-area .title-right .fixed_title {
    width: calc(215 * var(--formula_pc));
  }
}



/* ===============================================### 
lead-area
###=============================================== */
.FR250620COOLCOLLECTION .lead-area{
  padding-top: calc(59 * var(--formula));
}

.FR250620COOLCOLLECTION .lead-area .content-inner{
}

.FR250620COOLCOLLECTION .lead-area .content__item01{
  width: fit-content;
  margin-top: calc(47 * var(--formula));
  margin-inline: auto;
}

.FR250620COOLCOLLECTION .lead-area .content__item02{
  width: fit-content;
  margin-top: calc(110 * var(--formula));
  margin-inline: auto;
}

/************** text **************/
.FR250620COOLCOLLECTION .lead-area .lead__text{
  font-family: var(--font-ja);
  font-size: calc(23 * var(--formula));
  font-weight: var(--fw-regular);
  line-height: 2.7834782609;
  font-feature-settings: "palt";
  letter-spacing: 0.13em;
  text-align: center;
  color: var(--color-blue);
}

.FR250620COOLCOLLECTION .lead-area .credit{
  margin-top: calc(18 * var(--formula));
  margin-left: calc(34 * var(--formula));
}

/************** image **************/
.FR250620COOLCOLLECTION .decoration__text{
  width: calc(324 * var(--formula));
  margin-top: calc(67 * var(--formula));
  margin-inline: auto;
}

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

  .FR250620COOLCOLLECTION .decoration__text{
    margin-top: calc(68 * var(--formula));
  }
}


/* ===============================================### 
コンテンツ01
###=============================================== */
.FR250620COOLCOLLECTION .content01{
  padding-top: calc(90 * var(--formula));
}

.FR250620COOLCOLLECTION .content01 .content-inner{
}

.FR250620COOLCOLLECTION .content01 .content__item01{
  position: relative;
  width: fit-content;
}

.FR250620COOLCOLLECTION .content01 .fade-slide{
  width: calc(750 * var(--formula));
  padding-bottom: calc(45 *  var(--formula));
}

/************** text **************/
.FR250620COOLCOLLECTION .content01 .credit{
  position: relative;
  z-index: 1;
  margin-top: calc(-21 * var(--formula));
  margin-left: calc(34 * var(--formula));
}

/************** image **************/
.FR250620COOLCOLLECTION .content01 .number{
  top: calc(-28 * var(--formula));
  right: calc(64 * var(--formula));
  width: calc(70 * var(--formula));
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .FR250620COOLCOLLECTION .content01 .number{
    top: calc(-32 * var(--formula));
    right: calc(62 * var(--formula));
  }

  .FR250620COOLCOLLECTION .content01 .fade-slide{
    padding-bottom: calc(43 *  var(--formula));
  }

  .FR250620COOLCOLLECTION .content01 .credit{
    margin-top: calc(-21 * var(--formula));
    margin-left: calc(35 * var(--formula));
  }
}



/* ===============================================### 
コンテンツ02
###=============================================== */
.FR250620COOLCOLLECTION .content02{
  padding-top: calc(141 * var(--formula));
}

.FR250620COOLCOLLECTION .content02 .content-inner{
}

.FR250620COOLCOLLECTION .content02 .content__item01{
  position: relative;
  width: fit-content;
}

/************** text **************/
.FR250620COOLCOLLECTION .content02 .credit{
  margin-top: calc(18 * var(--formula));
  margin-left: calc(34 * var(--formula));
}

/************** image **************/
.FR250620COOLCOLLECTION .content02 .number{
  top: calc(-30 * var(--formula));
  right: calc(55 * var(--formula));
  width: calc(78 * var(--formula));
}

.FR250620COOLCOLLECTION .content02 .content__image.image02{
  margin-top: calc(20 * var(--formula));
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .FR250620COOLCOLLECTION .content02 .credit{
    margin-top: calc(22 * var(--formula));
    margin-left: calc(36 * var(--formula));
  }
}



/* ===============================================### 
コンテンツ03
###=============================================== */
.FR250620COOLCOLLECTION .content03{
  padding-top: calc(256 * var(--formula));
}

.FR250620COOLCOLLECTION .content03 .content-inner{
}

.FR250620COOLCOLLECTION .content03 .content__item01{
  width: fit-content;
  margin-inline: auto;
}

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

/************** text **************/
.FR250620COOLCOLLECTION .content03 .credit{
  margin-top: calc(22 * var(--formula));
  margin-left: calc(34 * var(--formula));
}

.FR250620COOLCOLLECTION .content03 .function{
  margin-top: calc(23 * var(--formula));
}

/************** image **************/
.FR250620COOLCOLLECTION .content03 .number{
  top: calc(-24 * var(--formula));
  left: calc(61 * var(--formula));
  width: calc(77 * var(--formula));
}

.FR250620COOLCOLLECTION .content03 .content__image.small-image{
}

.FR250620COOLCOLLECTION .content03 .content__image.small-image.image02{
  margin-top: calc(11 * var(--formula));
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .FR250620COOLCOLLECTION .content03 .content__item02{
    margin-top: calc(166 * var(--formula));
  }

  .FR250620COOLCOLLECTION .content03 .credit{
    margin-top: calc(25 * var(--formula));
  }

  .FR250620COOLCOLLECTION .content03 .content__image.small-image{
    width: calc(623 * var(--formula));
  }

  .FR250620COOLCOLLECTION .content03 .content__image.small-image.image02{
    margin-top: calc(15 * var(--formula));
  }
}



/* ===============================================### 
コンテンツ04
###=============================================== */
.FR250620COOLCOLLECTION .content04{
  padding-top: calc(114 * var(--formula));
  padding-bottom: calc(120 * var(--formula));
}

.FR250620COOLCOLLECTION .content04 .content-inner{
}

.FR250620COOLCOLLECTION .content04 .content__item01{
  position: relative;
  width: fit-content;
}

.FR250620COOLCOLLECTION .content04 .content__item02{
  width: fit-content;
  margin-inline: auto;
  margin-top: calc(153 * var(--formula));
}

/************** text **************/
.FR250620COOLCOLLECTION .content04 .content__item01 .credit{
  margin-top: calc(17 * var(--formula));
  margin-left: calc(32 * var(--formula));
}

.FR250620COOLCOLLECTION .content04 .content__item02 .credit{
  margin-top: calc(16 * var(--formula));
}

/************** image **************/
.FR250620COOLCOLLECTION .content04 .number{
  top: calc(-27 * var(--formula));
  right: calc(55 * var(--formula));
  width: calc(78 * var(--formula));
}

.FR250620COOLCOLLECTION .content04 .content__item01 .content__image.image02{
  margin-top: calc(22 * var(--formula));
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .FR250620COOLCOLLECTION .content04{
    padding-bottom: calc(94 * var(--formula));
  }

  .FR250620COOLCOLLECTION .content04 .content__item01 .content__image.image02{
    margin-top: calc(23 * var(--formula));
  }

  .FR250620COOLCOLLECTION .content04 .content__item01 .credit{
    margin-top: calc(21 * var(--formula));
  }
}



/* ===============================================### 
コンテンツ05
###=============================================== */
.FR250620COOLCOLLECTION .content05{
}

.FR250620COOLCOLLECTION .content05 .content-inner{
}

.FR250620COOLCOLLECTION .content05 .content__item01{
  position: relative;
  width: fit-content;
}

.FR250620COOLCOLLECTION .content05 .content__item02{
  position: relative;
  width: fit-content;
  margin-top: calc(183 * var(--formula));
}

/************** text **************/
.FR250620COOLCOLLECTION .content05 .credit{
  margin-top: calc(23 * var(--formula));
  margin-left: calc(35 * var(--formula));
}

.FR250620COOLCOLLECTION .content05 .credit span:nth-of-type(3){
  margin-left: calc(2 * var(--formula));
  margin-right: calc(4 * var(--formula));
}

.FR250620COOLCOLLECTION .content05 .function{
  margin-top: calc(23 * var(--formula));
}

/************** image **************/
.FR250620COOLCOLLECTION .content05 .number{
  top: calc(-37 * var(--formula));
  left: calc(54 * var(--formula));
  width: calc(78 * var(--formula));
}

.FR250620COOLCOLLECTION .content05 .content__item02 .content__image.image02{
  margin-top: calc(22 * var(--formula));
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .FR250620COOLCOLLECTION .content05 .credit{
    margin-top: calc(22 * var(--formula));
    margin-left: calc(34 * var(--formula));
  }
}



/* ===============================================### 
コンテンツ06
###=============================================== */
.FR250620COOLCOLLECTION .content06{
  padding-top: calc(103 * var(--formula));
}

.FR250620COOLCOLLECTION .content06 .content-inner{
}

.FR250620COOLCOLLECTION .content06 .content__item01{
  position: relative;
  width: fit-content;
}

/************** text **************/
.FR250620COOLCOLLECTION .content06 .credit{
  margin-top: calc(26 * var(--formula));
  margin-left: calc(35 * var(--formula));
}

.FR250620COOLCOLLECTION .content06 .function{
  margin-top: calc(26 * var(--formula));
}

/************** image **************/
.FR250620COOLCOLLECTION .content06 .number{
  top: calc(-28 * var(--formula));
  right: calc(56 * var(--formula));
  width: calc(77 * var(--formula));
}

.FR250620COOLCOLLECTION .content06 .content__image.image02{
  margin-top: calc(19 * var(--formula));
}

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

  .FR250620COOLCOLLECTION .content06 .credit{
    margin-top: calc(24 * var(--formula));
  }
}



/* ===============================================### 
コンテンツ07
###=============================================== */
.FR250620COOLCOLLECTION .content07{
  padding-top: calc(153 * var(--formula));
}

.FR250620COOLCOLLECTION .content07 .content-inner{
}

.FR250620COOLCOLLECTION .content07 .content__item01{
  position: relative;
  width: fit-content;
}

/************** text **************/
.FR250620COOLCOLLECTION .content07 .credit{
  margin-top: calc(25 * var(--formula));
  margin-left: calc(34 * var(--formula));
}

.FR250620COOLCOLLECTION .content07 .function{
  margin-top: calc(14 * var(--formula));
}

/************** image **************/
.FR250620COOLCOLLECTION .content07 .number{
  top: calc(-34 * var(--formula));
  right: calc(56 * var(--formula));
  width: calc(77 * var(--formula));
}

.FR250620COOLCOLLECTION .content07 .content__image.image02{
  margin-top: calc(20 * var(--formula));
}

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



/* ===============================================### 
コンテンツ08
###=============================================== */
.FR250620COOLCOLLECTION .content08{
  padding-top: calc(94 * var(--formula));
  padding-bottom: calc(63 * var(--formula));
}

.FR250620COOLCOLLECTION .content08 .content-inner{
}

.FR250620COOLCOLLECTION .content08 .content__item01{
  width: fit-content;
  margin-inline: auto;
}

.FR250620COOLCOLLECTION .content08 .content__item02{
  margin-top: calc(136 * var(--formula));
}

.FR250620COOLCOLLECTION .content08 .content__item03{
  margin-top: calc(193 * var(--formula));
}

/************** text **************/
.FR250620COOLCOLLECTION .content08 .credit{
  margin-top: calc(14 * var(--formula));
}

.FR250620COOLCOLLECTION .staff__text{
  margin-top: calc(49 * var(--formula));
  margin-left: calc(49 * var(--formula));
  font-family: var(--font-en02);
  font-size: calc(20 * var(--formula));
  font-weight: var(--fw-light);
  line-height: 1.601;
  letter-spacing: 0.06em;
  color: #2e3661;
}

/************** image **************/
.FR250620COOLCOLLECTION .link__button{
  width: calc(625 * var(--formula));
  margin-inline: auto;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .FR250620COOLCOLLECTION .content08{
    padding-top: calc(180 * var(--formula));
  }

  .FR250620COOLCOLLECTION .content08 .credit{
    margin-top: calc(13 * var(--formula));
  }

  .FR250620COOLCOLLECTION .content08 .content__item02{
    margin-top: calc(113 * var(--formula));
  }

  .FR250620COOLCOLLECTION .content08 .content__item03{
    margin-top: calc(76 * var(--formula));
  }
}