@charset "UTF-8";
/* ===============================================### 
可変設定
###=============================================== */
.lp_variable {
  /*デザインの値*/
  --pc-width: 1200;/*PCデザイン幅*/
  --sp-width: 750;/*SPデザイン幅*/
  --pc-artboard-width: 600;/*SP共通デザイン幅*/
  --sp-artboard-width: 750;/*PC共通デザイン幅*/
  /*可変率の計算式*/
  --formula: calc(var(--variable) * var(--ratio));/*SP,PC共通箇所の可変割合の計算式*/
  --formula_pc: calc(var(--variable) * 1);/*PCデザインの可変割合の計算式*/
}

/* PC画面幅 1201px以上 固定 */
@media (min-width: 1201px) {
  .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: 1200px) {
  .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)); /* 画面幅に基づく可変値 */
  }
}



/* ===============================================### 
初期設定
###=============================================== */
@font-face {
  font-family: 'font-credit';
  src: url("../fonts/futura-book.ttf") format("truetype");
}

.FR251105Reebok{
  position: relative;
  /* --font-ja:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "Open Sans", "メイリオ", sans-serif; */
  /* --font-en: 'font-credit'; */
  /* --font-common: "pragmatica", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "Open Sans", "メイリオ",  sans-serif; */
  --fw-thin: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semi-bold: 600;
  --fw-bold: 700;
  font-weight: 400;
  font-style: normal;
  --color-black: #1E1E1E;
  --color-white: #ffffff;
  --color-pink: #F2D0DE;
  --bg-color: #E6F1F5;
  color: #1E1E1E;
  overflow: clip;
  --header-container-height: 120px;
}

.FR251105Reebok{
  max-width: calc(1200 * var(--formula_pc));
  margin-inline: auto;
}

.FR251105Reebok img{
  width: 100%;
  height: auto;
}

.main-area * {
  box-sizing: border-box;
}


/* * {
  font-family: 'my-font';
} */


/* ===========### PC用設定 ###=========== */
@media screen and (min-width: 768px) {
  .main-area{
    overflow-x: visible!important;
  }

  .FR251105Reebok .pc-visible{
    display: block;
  }

  .FR251105Reebok .sp-visible{
    display: none;
  }

  .FR251105Reebok .bg-image{
    background-color: #fff;
  }

  .FR251105Reebok .bg-image a:hover{
    opacity: 0.7;
  }
}

/* ===========### SP用設定 ###=========== */
@media screen and (max-width: 767px) {
  .FR251105Reebok{
    overflow: hidden;
  }
  
  .FR251105Reebok .pc-visible{
    display: none;
  }

  .FR251105Reebok .sp-visible{
    display: block;
  }
}



/* ===============================================### 
アニメーション設定
###=============================================== */
/************** fade **************/
.FR251105Reebok .js-fade-up{
  transform: translateY(100px);
  opacity: 0;
  transition-duration: 1.1s;
}

.FR251105Reebok .js-fade-up.is-active{
  transform: translateY(0);
  opacity: 1;
}

/************** text-anime **************/
.FR251105Reebok .js-text-anime{
  transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
}

.FR251105Reebok .content08 .js-text-anime{
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}

.FR251105Reebok .js-text-anime.is-active{
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}

.FR251105Reebok .js-text-anime .content__text{
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
}

.FR251105Reebok .content08 .js-text-anime .content__text{
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}

.FR251105Reebok .js-text-anime.is-active .content__text{
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}



/* ===============================================### 
コンテンツ共通設定
###=============================================== */
.FR251105Reebok .content{
}

.FR251105Reebok .content .content__inner{
  width: calc(750 * var(--formula));
  margin-inline: auto;
}

.FR251105Reebok .flex-wrap{
  display: flex;
}

.FR251105Reebok .grid-wrap{
  display: grid;
}

/************** slide **************/
.FR251105Reebok .slide-wrap{
  /* width: 100%; */
  width: calc(1120 * var(--formula));
  overflow: hidden;
}

.FR251105Reebok .content01 .slide-wrap,
.FR251105Reebok .content02 .slide-wrap{
  left: calc(-119 * var(--formula));
}

.FR251105Reebok .content04 .slide-wrap{
  left: calc(-226 * var(--formula));
}

.FR251105Reebok .content06 .slide-wrap{
  left: calc(-287 * var(--formula));
}

.FR251105Reebok .content09 .slide-wrap{
  left: calc(-61 * var(--formula));
}

.FR251105Reebok .slide-wrap .content__image{
  width: calc(550 * var(--formula));
  margin-right: calc(20 * var(--formula));
}

/************** text **************/
.FR251105Reebok .credit{
  font-family: 'font-credit', sans-serif;
  font-weight: var(--fw-medium);
  line-height: 1.5882352941;
  font-size: calc(17 * var(--formula));
  font-feature-settings: "palt";
  text-align: center;
  white-space: nowrap;
}

.FR251105Reebok .credit span.yen{
  position: relative;
  display: inline-block;
  font-weight: var(--fw-medium);
  padding-left: calc(14 * var(--formula));
  margin-left: calc(5 * var(--formula));
}

.FR251105Reebok .credit span.yen::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: calc(12 * var(--formula));
  height: calc(14 * var(--formula));
  background-image: url('../img/yen.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

.FR251105Reebok .credit span.slash{
  position: relative;
  display: inline-block;
  width: calc(16 * var(--formula));
  height: calc(18 * var(--formula));
  margin-left: calc(1 * var(--formula));
  margin-right: calc(-5 * var(--formula));
}

.FR251105Reebok .credit span.slash::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  height: 100%;
  /* width: calc(16 * var(--formula)); */
  /* height: calc(18 * var(--formula)); */
  background-image: url('../img/slash.svg');
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: calc(4 * var(--formula));
}

.FR251105Reebok .credit a.reebok{
  position: relative;
  padding-left: calc(166 * var(--formula));
}

.FR251105Reebok .credit a.reebok::after{
  content: '';
  position: absolute;
  top: 50%;
  left: calc(10 * var(--formula));
  transform: translateY(-50%);
  width: calc(151 * var(--formula));
  height: calc(21 * var(--formula));
  background-image: url(../img/credit_text.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.FR251105Reebok .credit a{
  display: inline-block;
}

.FR251105Reebok .credit a.link-disable:hover{
  opacity: 1;
}

/************** image **************/
.FR251105Reebok .text-wrap{
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

/* ===========### responsive ###=========== */
/*** PC ***/
@media screen and (min-width: 768px) {
  .FR251105Reebok .flex-wrap{
    display: flex;
  }

  .FR251105Reebok .left-area,
  .FR251105Reebok .right-area{
    width: 50%;
  }

  .FR251105Reebok .right-area{
    overflow: hidden;
  }

  .FR251105Reebok .content-sticky{
    position: sticky;
    /* top: 0; */
    top: var(--header-container-height, 0);
  }
}

/*** SP ***/
@media screen and (max-width: 767px) {
  .FR251105Reebok .content-wrap.flex-wrap{
    flex-direction: column;
  }

  .FR251105Reebok .credit a.reebok{
    position: relative;
    padding-left: calc(164 * var(--formula));
  }

  .FR251105Reebok .credit a.reebok::after{
    width: calc(152 * var(--formula));
  }
}



/* ===============================================### 
MV
###=============================================== */
.FR251105Reebok .mv{
}

.FR251105Reebok .mv__inner{
}

.FR251105Reebok .mv__inner .item-wrap{
  width: 100%;
  position: relative;
}

/************** image **************/
.FR251105Reebok .mv__image{
}

.FR251105Reebok .mv__text.main-title{
  position: absolute;
  top: calc(80 * var(--formula));
  left: calc(47 * var(--formula));
  z-index: 1;
  pointer-events: none;
  width: calc(195 * var(--formula_pc));
}

.FR251105Reebok .mv__text.copy-text{
  position: absolute;
  bottom: calc(-9 * var(--formula));
  left: calc(-8 * var(--formula));
  z-index: 1;
  pointer-events: none;
  width: calc(366 * var(--formula_pc));
}


/* ===========### responsive ###=========== */
/*** PC ***/
@media screen and (min-width: 768px) {
  .FR251105Reebok .mv__inner .item-wrap{
    /* height: 100vh; */
    height: calc(100vh - (var(--header-container-height, 0px)));
  }

  .FR251105Reebok .mv__image{
    width: 100%;
    height: 100%;
  }

  .FR251105Reebok .mv__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
}

/* @media screen and (min-width: 1201px) {
  .FR251105Reebok .mv__text.main-title{
    width: calc(168 * (100vw / 1200));
  }

  .FR251105Reebok .mv__text.copy-text{
    width: calc(362 * (100vw / 1200));
  }
} */

/*** SP ***/
@media screen and (max-width: 767px) {
  .FR251105Reebok .mv__text.main-title{
    top: calc(80 * var(--formula));
    width: calc(245 * var(--formula));
  }

  .FR251105Reebok .mv__text.copy-text{
    bottom: calc(-2 * var(--formula));
    left: calc(-9 * var(--formula));
    z-index: 1;
    pointer-events: none;
    width: calc(450 * var(--formula));
  }
}



/* ===============================================### 
lead-area
###=============================================== */
.FR251105Reebok .lead-area{
  margin-top: calc(150 * var(--formula));
}

/************** image **************/
.FR251105Reebok .lead-text{
  width: calc(545 * var(--formula));
  margin-inline: auto;
}


/* ===============================================### 
コンテンツ01
###=============================================== */
.FR251105Reebok .content01{
  margin-top: calc(149 * var(--formula));
}

/************** text **************/
.FR251105Reebok .content01 .credit{
  margin-top: calc(27 * var(--formula));
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .FR251105Reebok .content01 .credit {
    margin-top: calc(30 * var(--formula));
  }
}


/* ===============================================### 
コンテンツ02
###=============================================== */
.FR251105Reebok .content02{
  margin-top: calc(144 * var(--formula));
  background-color: rgba(242, 208, 222, 0.5);
}

.FR251105Reebok .content02 .content__inner{
  padding-top: calc(80 * var(--formula));
  padding-bottom: calc(94 * var(--formula));
}

.FR251105Reebok .content02 .content__item01{
  width: fit-content;
  margin-inline: auto;
}

.FR251105Reebok .content02 .content__item02{
  margin-top: calc(98 * var(--formula));
}

/************** text **************/
.FR251105Reebok .content02 .credit{
  position: relative;
  left: calc(-2 * var(--formula));
  margin-top: calc(27 * var(--formula));
}

/************** image **************/
.FR251105Reebok .content02 .content__item01 .content__image{
  width: calc(600 * var(--formula));
}

.FR251105Reebok .content02 .content__item01 .content__text{
  width: calc(586 * var(--formula));
  margin-top: calc(50 * var(--formula));
  margin-inline: auto;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .FR251105Reebok .content02 .content__item01 .content__text{
    margin-top: calc(48 * var(--formula));
  }
}


/* ===============================================### 
コンテンツ03
###=============================================== */
.FR251105Reebok .content03{
  margin-top: calc(171 * var(--formula));
}

.FR251105Reebok .content03 .content__item01{
  position: relative;
  width: fit-content;
}

.FR251105Reebok .content03 .content__item02{
  margin-top: calc(53 * var(--formula));
  margin-left: calc(74 * var(--formula));
}

/************** text **************/
.FR251105Reebok .content03 .credit{
  margin-top: calc(17 * var(--formula));
  text-align: left;
}

.FR251105Reebok .content03 .credit a.reebok{
  padding-left: calc(159 * var(--formula));
}

.FR251105Reebok .content03 .credit a.reebok::after{
  left: calc(4 * var(--formula));
}

.FR251105Reebok .content03 .credit span.yen{
  margin-left: calc(3 * var(--formula));
}

/************** image **************/
.FR251105Reebok .content03 .content__item01 .content__image{
  position: relative;
  left: calc(10 * var(--formula));
  width: calc(546 * var(--formula));
  transform: rotate(5deg);
}

.FR251105Reebok .content03 .content__item02 .content__image{
  width: calc(675 * var(--formula));
}

.FR251105Reebok .content03 .text-wrap{
  top: calc(347 * var(--formula));
  right: calc(-131 * var(--formula));
}

.FR251105Reebok .content03 .text-wrap .content__text{
  width: calc(82 * var(--formula));
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .FR251105Reebok .content03 .content__item02{
    margin-top: calc(56 * var(--formula));
  }

  /************** text **************/
  .FR251105Reebok .content03 .credit a.reebok {
    padding-left: calc(158 * var(--formula));
  }

  .FR251105Reebok .content03 .credit a.reebok::after {
    left: calc(6 * var(--formula));
  }
}


/* ===============================================### 
コンテンツ04
###=============================================== */
.FR251105Reebok .content04{
  margin-top: calc(156 * var(--formula));
}

/************** text **************/
.FR251105Reebok .content04 .credit{
  margin-top: calc(25 * var(--formula));
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .FR251105Reebok .content04 .credit{
    margin-top: calc(24 * var(--formula));
  }
}


/* ===============================================### 
コンテンツ05
###=============================================== */
.FR251105Reebok .content05{
  margin-top: calc(144 * var(--formula));
}

.FR251105Reebok .content05 .content__item01{
  position: relative;
  width: fit-content;
  margin-inline: auto;
}

.FR251105Reebok .content05 .content__item02{
  width: calc(668 * var(--formula));
  margin-top: calc(30 * var(--formula));
}

.FR251105Reebok .content05 .flex-wrap{
  justify-content: space-between;
  align-items: end;
}

/************** text **************/
.FR251105Reebok .content05 .credit{
  margin-bottom: calc(-7 * var(--formula));
  text-align: left;
}

.FR251105Reebok .content05 .credit a.reebok{
  padding-top: calc(25 * var(--formula));
  padding-left: 0;
}

.FR251105Reebok .content05 .credit a.reebok::after{
  top: 0;
  left: calc(4 * var(--formula));
  transform: none;
}

/************** image **************/
.FR251105Reebok .content05 .content__item01 .content__image{
  width: calc(600 * var(--formula));
}

.FR251105Reebok .content05 .content__item02 .content__image{
  width: calc(430 * var(--formula));
}

.FR251105Reebok .content05 .text-wrap{
  top: calc(484 * var(--formula));
  right: calc(42 * var(--formula));
}

.FR251105Reebok .content05 .text-wrap .content__text{
  width: calc(82 * var(--formula));
}


/* ===============================================### 
コンテンツ06
###=============================================== */
.FR251105Reebok .content06{
  margin-top: calc(151 * var(--formula));
}

/************** text **************/
.FR251105Reebok .content06 .credit{
  margin-top: calc(27 * var(--formula));
}


/* ===============================================### 
コンテンツ07
###=============================================== */
.FR251105Reebok .content07{
  margin-top: calc(154 * var(--formula));
}

.FR251105Reebok .content07 .content__item01{
  position: relative;
  width: fit-content;
  margin-inline: auto;
}

.FR251105Reebok .content07 .content__item02{
  margin-top: calc(30 * var(--formula));
  margin-left: calc(300 * var(--formula));
}

.FR251105Reebok .content07 .content__item03{
  position: relative;
  z-index: 1;
  width: calc(611 * var(--formula));
  margin-top: calc(-187 * var(--formula));
}

.FR251105Reebok .content07 .flex-wrap{
  justify-content: space-between;
  align-items: end;
}

/************** text **************/
.FR251105Reebok .content07 .credit{
  margin-bottom: calc(6 * var(--formula));
  text-align: left;
}

.FR251105Reebok .content07 .credit a.reebok{
  padding-top: calc(25 * var(--formula));
  padding-left: 0;
}

.FR251105Reebok .content07 .credit a.reebok::after{
  top: 0;
  left: calc(4 * var(--formula));
  transform: none;
}

.FR251105Reebok .content07 .credit a.credit05.reebok{
  margin-top: calc(4 * var(--formula));
  padding-top: calc(23 * var(--formula));
}

/************** image **************/
.FR251105Reebok .content07 .content__item01 .content__image{
  width: calc(600 * var(--formula));
}

.FR251105Reebok .content07 .content__item02 .content__image{
  width: calc(450 * var(--formula));
}

.FR251105Reebok .content07 .content__item03 .content__image{
  width: calc(457 * var(--formula));
}

.FR251105Reebok .content07 .text-wrap{
  top: calc(612 * var(--formula));
  left: calc(31 * var(--formula));
}

.FR251105Reebok .content07 .text-wrap .content__text{
  width: calc(82 * var(--formula));
}


/* ===============================================### 
コンテンツ08
###=============================================== */
.FR251105Reebok .content08{
  margin-top: calc(136 * var(--formula));
}

.FR251105Reebok .content08 .content__inner{
  padding-top: calc(137 * var(--formula));
  padding-bottom: calc(50 * var(--formula));
  background-image: url('../img/content08_bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

.FR251105Reebok .content08 .content__item01{
  position: relative;
  width: fit-content;
  margin-inline: auto;
}

/************** text **************/
.FR251105Reebok .content08 .credit{
  position: relative;
  left: calc(-3 * var(--formula));
  margin-top: calc(26 * var(--formula));
}

/************** image **************/
.FR251105Reebok .content08 .content__image{
  width: calc(566 * var(--formula));
}

.FR251105Reebok .content08 .text-wrap{
  top: calc(-77 * var(--formula));
  left: 50%;
  transform: translateX(-50%);
}

.FR251105Reebok .content08 .text-wrap .content__text{
  width: calc(388 * var(--formula));
}


/* ===============================================### 
コンテンツ09
###=============================================== */
.FR251105Reebok .content09{
  margin-top: calc(150 * var(--formula));
}

/************** text **************/
.FR251105Reebok .content09 .credit{
  margin-top: calc(27 * var(--formula));
}


/* ===============================================### 
コンテンツ10
###=============================================== */
.FR251105Reebok .content10{
  margin-top: calc(145 * var(--formula));
}

.FR251105Reebok .content10 .content__item01{
  width: fit-content;
  margin-inline: auto;
}

.FR251105Reebok .content10 .content__item02{
  width: calc(691 * var(--formula));
  margin-top: calc(50 * var(--formula));
}

.FR251105Reebok .content10 .content__item03{
  margin-top: calc(-325 * var(--formula));
  margin-left: calc(390 * var(--formula));
}

.FR251105Reebok .content10 .flex-wrap{
  justify-content: space-between;
  align-items: flex-start;
}

/************** text **************/
.FR251105Reebok .content10 .credit{
  margin-top: calc(-4 * var(--formula));
  text-align: left;
}

.FR251105Reebok .content10 .credit a.reebok{
  padding-left: calc(160 * var(--formula));
}

.FR251105Reebok .content10 .credit a.reebok::after{
  left: calc(1 * var(--formula));
}

/************** image **************/
.FR251105Reebok .content10 .content__item01 .content__image{
  width: calc(600 * var(--formula));
}

.FR251105Reebok .content10 .content__item02 .content__image{
  width: calc(360 * var(--formula));
}

.FR251105Reebok .content10 .content__item03 .content__image{
  width: calc(360 * var(--formula));
}


/* ===============================================### 
コンテンツ11
###=============================================== */
.FR251105Reebok .content11{
  margin-top: calc(150 * var(--formula));
  margin-bottom: calc(180 * var(--formula));
}

/************** text **************/
.FR251105Reebok .staff-credit{
  margin-top: calc(141 * var(--formula));
  font-family: 'font-credit', sans-serif;
  font-size: calc(17 * var(--formula));
  font-weight: var(--fw-medium);
  line-height: 1.5882352941;
  letter-spacing: 0.01em;
  text-align: center;
}

/************** button **************/
.FR251105Reebok .link-button{
  width: calc(600 * var(--formula));
  margin-inline: auto;
}