@charset "UTF-8";
/* 
//////////////////////////////////////////////////////////////////////////////////////////
default settings
//////////////////////////////////////////////////////////////////////////////////////////
*/
body {
  margin: 0;
}
#FR251107RIBBONLAB {
  --pc-width: 1400;
  --sp-width: 750;
  --pc-artboard-width: 430;
  --sp-artboard-width: 750;

  --formula: calc(var(--variable) * var(--ratio));
  --formula_pc: calc(var(--variable) * 1);
}

@media (min-width: 768px) {
  #FR251107RIBBONLAB {
    --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width));
    --variable: calc(100vw / var(--pc-width));
    padding-bottom: unset;
  }
}

@media (max-width: 767px) {
  #FR251107RIBBONLAB {
    --ratio: 1;
    --variable: calc(100vw / var(--sp-width));
  }
}

#FR251107RIBBONLAB img {
  display: block;
  width: 100%;
  height: auto;
}

#FR251107RIBBONLAB h2,
#FR251107RIBBONLAB h3,
#FR251107RIBBONLAB p,
#FR251107RIBBONLAB li {
  margin-block: calc((1em - 1lh) / 2);
}

#FR251107RIBBONLAB .invisible-heading {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
/* 
//////////////////////////////////////////////////////////////////////////////////////////
animation settings
//////////////////////////////////////////////////////////////////////////////////////////
*/

#FR251107RIBBONLAB .fade-up {
  position: relative;
  opacity: 0;
  transform: translateY(calc(80 * var(--formula)));
  visibility: hidden;
  transition: opacity 1.1s ease, transform 1.1s ease-out, visibility 1.1s ease;
}

#FR251107RIBBONLAB .fade-up::after {
  content: "";
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.4s;
  z-index: -1;
}

#FR251107RIBBONLAB .section03-img-02.fade-up::after {
  border-radius: 50%;
}

#FR251107RIBBONLAB .fade-up::after {
  opacity: 1;
  visibility: visible;
}

#FR251107RIBBONLAB .fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
/* パターン1: 左から右へ (LtoR) */
.mv-text-01,
.mv-text-02,
.section03-text-01,
.section04-text-01,
.section04-text-02 {
  opacity: 1;
  transform: none;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition-property: clip-path;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0s;
}

/* パターン2: 右から左へ (RtoL) */
.section01-text-01,
.section01-text-02 {
  opacity: 1;
  transform: none;
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transition-property: clip-path;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0s;
}

/* パターン3: 上から下へ (TtoB) */
.section01-text-03,
.section02-text-03,
.section02-text-02,
.section05-text-01,
.section05-text-02,
.section05-text-03 {
  opacity: 1;
  transform: none;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition-property: clip-path;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0s;
}

/* --- B. 最終状態 (全ワイプ共通) --- */
.mv-text-01.is-visible,
.mv-text-02.is-visible,
.section01-text-01.is-visible,
.section01-text-02.is-visible,
.section01-text-03.is-visible,
.section02-text-03.is-visible,
.section02-text-02.is-visible,
.section03-text-01.is-visible,
.section04-text-01.is-visible,
.section04-text-02.is-visible,
.section05-text-01.is-visible,
.section05-text-02.is-visible,
.section05-text-03.is-visible {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* --- C. 個別のアニメーション速度 (Duration) --- */

/* 1秒グループ */
.mv-text-01,
.mv-text-02,
.section01-text-01,
.section01-text-02,
.section03-text-01,
.section04-text-01,
.section04-text-02,
.section05-text-02,
.section05-text-03 {
  transition-duration: 1s;
}

/* 3秒グループ */
.section02-text-03,
.section02-text-02,
.section05-text-01 {
  transition-duration: 3s;
}

/* 4秒 */
.section01-text-03 {
  transition-duration: 4s;
}

/* --- D. 個別のアニメーション遅延 (Delay) --- */

/* mv */
.mv-text-01.is-visible {
  transition-delay: 0.3s;
}
.mv-text-02.is-visible {
  transition-delay: 0.8s;
}

/* section01 */
.section01-text-02.is-visible {
  transition-delay: 0.3s;
}
.section01-text-01.is-visible {
  transition-delay: 0.8s;
}
.section01-text-03.is-visible {
  transition-delay: 1.9s;
}

/* section02 */
.section02-text-03.is-visible {
  transition-delay: 0.3s;
}
.section02-text-02.is-visible {
  transition-delay: 0s;
}

/* section03 */
.section03-text-01.is-visible {
  transition-delay: 0.3s;
}

/* section04 */
.section04-text-01.is-visible {
  transition-delay: 0.3s;
}
.section04-text-02.is-visible {
  transition-delay: 1.3s;
}

/* section05 */
.section05-text-01.is-visible {
  transition-delay: 0.3s;
}
.section05-text-02.is-visible {
  transition-delay: 0s;
}
.section05-text-03.is-visible {
  transition-delay: 1.3s;
}
/* 
//////////////////////////////////////////////////////////////////////////////////////////
common settings
//////////////////////////////////////////////////////////////////////////////////////////
*/

#FR251107RIBBONLAB {
  font-feature-settings: "palt";
  --brown: #3a2621;
  --white: #ffffff;
  --garamond: garamond-premier-pro-display, serif;
  --protipo: protipo-compact, sans-serif;
  --font-display: 400;
  --font-light: 300;
  display: flex;
  width: 100%;
  position: relative;
  padding-bottom: calc(56 * (100vw / 1400));
}

#FR251107RIBBONLAB .section-set {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}

#FR251107RIBBONLAB [class$="__lottie-cont"] {
  position: absolute;
  z-index: 10;
  pointer-events: none;
  shape-rendering: crispEdges;
}

#FR251107RIBBONLAB [class*="-img-"] {
  background-color: var(--white);
  z-index: 1;
}

#FR251107RIBBONLAB [class$="__credit"] {
  font-family: var(--protipo);
  font-weight: var(--font-light);
  color: var(--white);
  font-size: calc(22 * var(--formula));
  line-height: 1.85;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
}

#FR251107RIBBONLAB [class$="__credit"] li {
  display: flex;
  gap: calc(13 * var(--formula));
}

[class*="-img-"] {
  position: relative;
  z-index: 5;
}

#FR251107RIBBONLAB [class*="-text-"] {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

#FR251107RIBBONLAB .splide {
  position: relative;
  z-index: 1;
  background-color: var(--white);
}

#FR251107RIBBONLAB .splide__pagination {
  position: absolute;
  left: unset;
  right: unset;
}

#FR251107RIBBONLAB .splide__pagination__page {
  opacity: 1;
  margin: 0;
  height: calc(10 * var(--formula));
  width: calc(10 * var(--formula));
  background: transparent;
  border: solid 1px var(--brown);
}

button.splide__pagination__page {
}

#FR251107RIBBONLAB .splide__pagination__page.is-active {
  transform: scale(1);
  background-color: var(--brown);
}

/* 
//////////////////////////////////////////////////////////////////////////////////////////
layout settings
//////////////////////////////////////////////////////////////////////////////////////////
*/

#FR251107RIBBONLAB .lp-left-area {
  position: sticky;
  top: var(--lpHeaderHeight);
  height: calc(100vh - var(--lpHeaderHeight));
  flex: 1;
}

#FR251107RIBBONLAB .mv-cont {
  width: 100%;
  position: relative;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: clip;
}

#FR251107RIBBONLAB .mv-txt-cont {
  bottom: 32dvh;
  right: -15.5%;
  position: absolute;
  z-index: 5;
  transform-origin: bottom center;
  transform: translate(-50%, 0%);
  pointer-events: none;
}

#FR251107RIBBONLAB .mv-text-01 {
  position: relative;
}

#FR251107RIBBONLAB .mv-text-02 {
  bottom: calc(-37 * (100vw / 1400));
  right: calc(-38 * (100vw / 1400));
}

#FR251107RIBBONLAB .lp-mv {
  z-index: 1;
}

#FR251107RIBBONLAB .lp-main-area {
  flex: 1;
  /* background-color: var(--brown); */
}

#FR251107RIBBONLAB .section-cont {
  width: calc(750 * var(--formula));
  margin: 0 auto;
  overflow-x: clip;
  background-color: var(--brown);
}

#FR251107RIBBONLAB .section1 {
  padding-top: calc(160 * var(--formula));
  padding-bottom: calc(177 * var(--formula));
}

#FR251107RIBBONLAB .section01-text-01 {
  top: calc(220 * var(--formula));
  left: calc(93 * var(--formula));
  position: absolute;
  z-index: 5;
}

#FR251107RIBBONLAB .section01-text-02 {
  top: calc(231 * var(--formula));
  left: calc(224 * var(--formula));
  position: absolute;
  z-index: 5;
}

#FR251107RIBBONLAB .section01-img-01 {
  margin-bottom: calc(80 * var(--formula));
  align-self: flex-end;
}

#FR251107RIBBONLAB #section1__slider {
  width: 100%;
}

#FR251107RIBBONLAB #section1__slider .splide__pagination {
  right: calc(20 * var(--formula));
  bottom: calc(19 * var(--formula));
  gap: calc(12 * var(--formula));
  padding: 0;
}

#FR251107RIBBONLAB .section1__credit {
  align-self: flex-end;
  margin-top: calc(42 * var(--formula));
  margin-right: calc(39 * var(--formula));
  gap: calc(19 * var(--formula));
  align-items: flex-end;
}

#FR251107RIBBONLAB .section01-text-03 {
  left: calc(-110 * var(--formula));
  top: calc(334 * var(--formula));
}

#FR251107RIBBONLAB .section2 {
  margin-bottom: calc(180 * var(--formula));
}
#FR251107RIBBONLAB .section02-text-03 {
  right: calc(17 * var(--formula));
  top: calc(150 * var(--formula));
  position: absolute;
  z-index: 5;
}

#FR251107RIBBONLAB .section02-img-01 {
  margin-left: calc(25 * var(--formula));
  z-index: 5;
}
#FR251107RIBBONLAB #section2__slider {
  margin-top: calc(-30 * var(--formula));
  align-self: flex-end;
  width: calc(660 * var(--formula));
}
#FR251107RIBBONLAB #section2__slider .splide__slide {
  width: calc(468 * var(--formula));
}

#FR251107RIBBONLAB #section2__slider .splide__pagination {
  right: calc(20 * var(--formula));
  bottom: calc(19 * var(--formula));
  gap: calc(12 * var(--formula));
  padding: 0;
}
#FR251107RIBBONLAB .section2__credit {
  margin-top: calc(42 * var(--formula));
  margin-left: calc(89 * var(--formula));
  gap: calc(18 * var(--formula));
  padding: 0;
}

#FR251107RIBBONLAB .section02-text-02 {
  top: calc(1546 * var(--formula));
  right: calc(-3 * var(--formula));
}

#FR251107RIBBONLAB .section3 {
  margin-bottom: calc(176 * var(--formula));
}

#FR251107RIBBONLAB .section03-img-01 {
}

#FR251107RIBBONLAB .section3__img-cont {
  position: relative;
  align-self: center;
  display: grid;
  justify-items: center;
  margin-top: calc(80 * var(--formula));
  margin-bottom: calc(43 * var(--formula));
}
#FR251107RIBBONLAB .section03-text-01 {
  left: calc(-35 * var(--formula));
  bottom: calc(58 * var(--formula));
  position: absolute;
  z-index: 5;
}
#FR251107RIBBONLAB .section03-img-02 {
  border-radius: 50%;
}

#FR251107RIBBONLAB .section3__credit {
  align-self: center;
  align-items: center;
  gap: calc(18 * var(--formula));
  padding: 0;
  margin: 0;
}

#FR251107RIBBONLAB .section3__credit li:nth-child(1) {
  gap: calc(12 * var(--formula));
  margin-left: calc(3 * var(--formula));
}

#FR251107RIBBONLAB .section3__credit li:nth-child(2) {
  margin-left: calc(2 * var(--formula));
}

#FR251107RIBBONLAB .section04-text-02 {
  top: calc(931 * var(--formula));
  right: calc(15 * var(--formula));
  position: absolute;
  z-index: 5;
}

#FR251107RIBBONLAB .section04-img-01 {
  align-self: flex-end;
}

#FR251107RIBBONLAB .section04-img-02 {
  align-self: flex-start;
  margin-bottom: calc(42 * var(--formula));
  margin-top: calc(127 * var(--formula));
}

#FR251107RIBBONLAB .section4__credit {
  align-self: flex-start;
  gap: calc(18 * var(--formula));
  padding: 0;
  margin: 0 0 0 calc(40 * var(--formula));
}

#FR251107RIBBONLAB .section04-text-01 {
  top: calc(558 * var(--formula));
  left: calc(-61 * var(--formula));
}

#FR251107RIBBONLAB .section5 {
  margin-bottom: calc(156 * var(--formula));
  margin-top: calc(179 * var(--formula));
}
#FR251107RIBBONLAB .section05-text-02 {
  left: calc(15 * var(--formula));
  bottom: calc(1028 * var(--formula));
  position: absolute;
  z-index: 5;
}

#FR251107RIBBONLAB .section05-img-01 {
  margin-bottom: calc(80 * var(--formula));
}

#FR251107RIBBONLAB .section05-img-02 {
  align-self: flex-end;
}

#FR251107RIBBONLAB .section05-img-03 {
  margin-top: calc(-54 * var(--formula));
  margin-left: calc(40 * var(--formula));
}

#FR251107RIBBONLAB .section05-text-01 {
  top: calc(-281 * var(--formula));
  right: calc(-48 * var(--formula));
}

#FR251107RIBBONLAB .section05-text-03 {
  bottom: calc(62 * var(--formula));
  right: calc(-96 * var(--formula));
}

#FR251107RIBBONLAB .section5__credit {
  margin-top: calc(42 * var(--formula));
  margin-left: calc(40 * var(--formula));
  align-self: flex-start;
  padding: 0;
}

#FR251107RIBBONLAB .section6 {
  padding-bottom: calc(158 * var(--formula));
}

#FR251107RIBBONLAB .section6 a {
  border-bottom: 1px solid var(--white);
  position: relative;
  margin-bottom: calc(88 * var(--formula));
  font-family: var(--garamond);
  color: var(--white);
  font-size: calc(62 * var(--formula));
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  width: calc(214 * var(--formula));
  align-self: center;
  white-space: nowrap;
}

#FR251107RIBBONLAB .section6 a::after {
  content: "";
  position: absolute;
  bottom: calc(-7 * var(--formula));
  left: 0;
  width: 100%;
  border-bottom: 1px solid var(--white);
}

#FR251107RIBBONLAB .section6__staff {
  display: flex;
  flex-direction: column;
  gap: calc(19 * var(--formula));
  font-family: var(--protipo);
  color: var(--white);
  font-size: calc(22 * var(--formula));
  line-height: 1.85;
  letter-spacing: 0.05em;
  text-align: center;
  align-self: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

#FR251107RIBBONLAB .lp-mv__frame {
  width: 100%;
  height: 100%;
}

#FR251107RIBBONLAB .lp-mv__frame img {
  height: 100%;
  object-fit: cover;
  transform-origin: top center;
}

#FR251107RIBBONLAB .section01-img-01__frame {
  width: calc(600 * var(--formula));
}

#FR251107RIBBONLAB .section01-text-03__frame {
  width: calc(965 * var(--formula));
}

#FR251107RIBBONLAB .section02-img-01__frame {
  width: calc(468 * var(--formula));
}

#FR251107RIBBONLAB .section02-text-02__frame {
  width: calc(751 * var(--formula));
}

#FR251107RIBBONLAB .section03-img-01__frame {
  width: calc(750 * var(--formula));
}

#FR251107RIBBONLAB .section03-img-02__frame {
  width: calc(585 * var(--formula));
}

#FR251107RIBBONLAB .section04-img-01__frame {
  width: calc(660 * var(--formula));
}

#FR251107RIBBONLAB .section04-img-02__frame {
  width: calc(630 * var(--formula));
}

#FR251107RIBBONLAB .section04-text-01__frame {
  width: calc(407 * var(--formula));
}

#FR251107RIBBONLAB .section05-img-01__frame {
  width: calc(750 * var(--formula));
}

#FR251107RIBBONLAB .section05-img-02__frame {
  width: calc(600 * var(--formula));
}

#FR251107RIBBONLAB .section05-img-03__frame {
  width: calc(488 * var(--formula));
}

#FR251107RIBBONLAB .section05-text-01__frame {
  width: calc(949 * var(--formula));
}

#FR251107RIBBONLAB .section05-text-03__frame {
  width: calc(640 * var(--formula));
}
#FR251107RIBBONLAB .mv-text-01__frame {
  width: calc(374 * (100vw / 1400));
}

#FR251107RIBBONLAB .mv-text-02__frame {
  width: calc(233 * (100vw / 1400));
}

#FR251107RIBBONLAB .section01-text-01__frame {
  width: calc(251 * var(--formula));
}

#FR251107RIBBONLAB .section01-text-02__frame {
  width: calc(267 * var(--formula));
}

#FR251107RIBBONLAB .section02-text-03__frame {
  width: calc(223 * var(--formula));
}

#FR251107RIBBONLAB .section03-text-01__frame {
  width: calc(655 * var(--formula));
}

#FR251107RIBBONLAB .section04-text-02__frame {
  width: calc(370 * var(--formula));
}

#FR251107RIBBONLAB .section05-text-02__frame {
  width: calc(185 * var(--formula));
}
/* 
//////////////////////////////////////////////////////////////////////////////////////////
SP settings
//////////////////////////////////////////////////////////////////////////////////////////
*/
@media (max-width: 767px) {
  #FR251107RIBBONLAB {
    flex-direction: column;
    background-color: var(--brown);
    /* overflow-x: clip; */
  }
  #FR251107RIBBONLAB .lp-left-area {
    position: relative;
    top: 0;
    height: unset;
  }
  #FR251107RIBBONLAB .section-cont {
    width: 100%;
  }

  #FR251107RIBBONLAB .lp-mv__frame {
    width: 100%;
  }
  #FR251107RIBBONLAB .lp-mv__frame img {
    height: auto;
  }
  #FR251107RIBBONLAB .mv__lottie-cont {
    position: absolute;
    bottom: calc(362 * var(--formula));
    right: calc(21 * var(--formula));
    width: calc(530 * var(--formula));
  }
  #FR251107RIBBONLAB .mv-text-01__frame {
    width: calc(479 * var(--formula));
  }

  #FR251107RIBBONLAB .mv-text-02__frame {
    width: calc(326 * var(--formula));
  }
  #FR251107RIBBONLAB .mv-txt-cont {
    bottom: calc(414 * var(--formula));
    right: calc(-168 * var(--formula));
    top: unset;
  }
  #FR251107RIBBONLAB .mv-text-02 {
    right: calc(-50 * var(--formula));
    bottom: calc(-49 * var(--formula));
  }
}
