@charset "UTF-8";
/* ==========================================
   ■ 設定値（ここだけ触ればOK）
   ========================================== */
/* ==========================================
   ■ CSS変数として出力
   ========================================== */
html {
  scroll-behavior: smooth;
}

:root {
  --spSize: 750;
  --pcSize: 1400;
  --spSizeInPc: 510;
}

/* ==========================================
   ■ rem基準設定
   ========================================== */
/*
  ▼ PC幅以上
  1rem = 10px
*/
@media (min-width: 1401px) {
  html {
    font-size: 62.5%;
  }
}
/*
  ▼ PC幅以下
  1400px時に1rem=10px
*/
@media (max-width: 1400px) {
  html {
    font-size: calc(100vw / (140));
  }
}
@media (max-width: 768px) {
  :root {
    --spSizeInPc: 750;
  }
  html {
    font-size: calc(100vw / (75));
  }
  .f-right,
  .f-left {
    display: none !important;
  }
}
/* ==========================================
   ■ LP変換関数
   ========================================== */
/*
  lp(デザインpx)
  SP基準(px) → PC表示サイズへ変換
  計算式：
  px × (PC表示幅 / SP基準幅)
  さらに px→rem（1px=0.1rem）
*/
/* ==========================================
   LP変換関数
   ========================================== */
/*
  lp(デザインpx)
  ▼ 計算
  SP基準(px) → PCデザイン幅へ変換
  例:
  SP750基準で 750px の要素を
  PCでは 500px にしたい場合
  750 × (500 / 750) = 500px
  さらに px→rem
  1px = 0.1rem
*/
.l-container {
  width: 100%;
}

.l-footer {
  padding-top: 0;
}
.l-footer .pc-footer {
  margin-top: 0;
}

.f-container {
  background-color: #d5ddd0;
  opacity: 0;
}
.f-container.show {
  opacity: 1;
}
.f-container {
  scroll-margin-top: 80px;
  width: 100%;
  overflow: clip;
  display: flex;
  position: relative;
}
.f-container * {
  box-sizing: border-box;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
}
.f-container {
  font-feature-settings: "palt";
}
.f-container a.mask-img {
  position: relative;
}
.f-container a.mask-img::after {
  display: inline-block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.3s ease-in-out;
  -webkit-mask-size: cover;
          mask-size: cover;
  will-change: opacity;
}
.f-container a.mask-img:hover {
  opacity: 1;
}
.f-container a.mask-img:hover::after {
  opacity: 0.3;
}
@media (max-width: 768px) {
  .f-container a.mask-img:hover::after {
    opacity: 0;
  }
}
.f-container img,
.f-container video {
  width: 100%;
  height: auto;
  vertical-align: top;
  pointer-events: none;
}
.f-container video {
  filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
}
.f-container svg {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}
.f-container a {
  display: block;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  cursor: pointer;
}
.f-container a:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .f-container a:hover {
    opacity: 1;
  }
}
.f-container figure {
  display: block;
}
.f-container .f-left, .f-container .f-right {
  width: calc((100% - 51rem) / 2);
  height: calc(100vh - 80px);
  overflow: clip;
  position: sticky;
  top: 80px;
  display: flex;
}
.f-container .f-left {
  justify-content: flex-start;
  align-items: flex-start;
}
.f-container .f-left__title {
  width: 31.9586rem;
  margin-top: 5.9rem;
  margin-left: 5.7rem;
}
.f-container .f-right {
  justify-content: flex-end;
  align-items: flex-end;
}
.f-container .f-right__btn {
  width: 24rem;
  margin-right: 5.9rem;
  margin-bottom: 6rem;
}
.f-container .f-main {
  width: calc(750 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  min-height: 100vh;
}
@media (max-width: 768px) {
  .f-container .f-main {
    width: 100%;
  }
}
.f-container .f-main-wrap {
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  overflow: clip;
  background-color: #ecf2e9;
}
.f-container .fadeUp img {
  opacity: 0;
  transition: all 1.65s ease;
  transform: translateY(calc(100 * var(--spSizeInPc) / var(--spSize) * 0.1rem));
}
.f-container .fadeUp.showed img {
  opacity: 1;
  transform: translateY(0);
}
.f-container .item-blur img {
  filter: blur(10px) brightness(100%);
}
.f-container .item-blur.showed img {
  filter: blur(0px) brightness(100%);
}
.f-container .zoomRight {
  overflow: hidden;
}
.f-container .zoomRight img {
  opacity: 0;
  transform-origin: bottom left;
  transform: scale(1.1) translateX(-50px);
  filter: blur(5px);
  transition: all 2.25s cubic-bezier(0.33, 1, 0.68, 1);
}
.f-container .zoomRight.showed img {
  opacity: 1;
  filter: blur(0);
  transform: scale(1) translate(0, 0);
}
.f-container .zoomLeft {
  overflow: hidden;
}
.f-container .zoomLeft img {
  opacity: 0;
  transform-origin: bottom right;
  transform: scale(1.1) translateX(50px);
  filter: blur(5px);
  transition: all 2.25s cubic-bezier(0.33, 1, 0.68, 1);
}
.f-container .zoomLeft.showed img {
  opacity: 1;
  filter: blur(0);
  transform: scale(1) translate(0, 0);
}
.f-container .hero__box {
  position: relative;
  margin-bottom: calc(200 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .hero__title {
  width: calc(750 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  position: absolute;
  top: calc(757 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  left: calc(46 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  display: flex;
  flex-direction: column;
}
.f-container .hero__title > span:nth-of-type(1) {
  display: flex;
  flex-direction: column;
}
.f-container .hero__title > span:nth-of-type(1) > span {
  font-family: ingra-condensed, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: calc(120 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  line-height: calc(69 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  padding-top: calc(13 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  color: #fbff57;
  text-transform: uppercase;
}
.f-container .hero__title > span:nth-of-type(1) > span:nth-of-type(1) {
  margin-bottom: calc(37 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  letter-spacing: -0.05em;
}
.f-container .hero__title > span:nth-of-type(1) > span:nth-of-type(2) {
  margin-left: calc(-2 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  margin-bottom: calc(62 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  letter-spacing: -0.042em;
  display: flex;
}
.f-container .hero__title > span:nth-of-type(1) > span:nth-of-type(2) span {
  padding-left: calc(4 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .hero__title > span:nth-of-type(2) {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: calc(24 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  line-height: calc(22 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  letter-spacing: 0.025em;
  color: #fff;
  margin-left: calc(5 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .hero__movie {
  width: calc(650 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  position: relative;
  margin: 0 auto calc(202 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .hero__movie-btn {
  width: calc(156.93 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  height: calc(41.6 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  position: absolute;
  top: 0;
  right: 0;
  background: no-repeat url(../img/sound_on.svg) 0 0/contain;
}
.f-container .hero__movie-btn.off {
  background: no-repeat url(../img/sound_off.svg) 0 0/contain;
}
.f-container .sec__area {
  position: relative;
}
.f-container .sec__box {
  position: relative;
}
.f-container .sec__title {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  font-family: "sonar-sans", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: calc(28 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  line-height: calc(49 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  letter-spacing: 0.025em;
  color: #e25473;
}
.f-container .sec__text {
  display: flex;
  flex-direction: column;
  color: #e25473;
  font-family: "sonar-sans", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: calc(18 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  line-height: calc(28 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  letter-spacing: 0.025em;
}
.f-container .sec__credit {
  padding-top: calc(48 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .sec__credit .credit {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: calc(23 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
       column-gap: calc(23 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .sec__credit .item a {
  text-transform: uppercase;
  display: flex;
  color: #747c7f;
  position: relative;
}
.f-container .sec__credit .item a::before {
  display: inline-block;
  content: "";
  width: calc(100% + 4 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  height: 1px;
  background-color: #747c7f;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(32 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .sec__credit .item a span {
  font-family: "acumin-pro-condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(22 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  line-height: calc(44 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  letter-spacing: 0.05em;
  position: relative;
  z-index: 2;
}
.f-container .sec__credit.dfl {
  padding-left: calc(60 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .sec__credit.dfc .credit {
  justify-content: center;
}
.f-container .sec__credit.dfr {
  padding-right: calc(60 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .sec__credit.dfr .credit {
  justify-content: flex-end;
}
.f-container .sec__img {
  position: relative;
  z-index: 2;
}
.f-container .sec__name {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}
.f-container .sec01 .box01 {
  display: flex;
  flex-direction: column;
  margin-bottom: calc(55 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .sec01 .box01 .img01 {
  width: calc(550 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  margin: 0 auto calc(36 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .sec01 .box01 .title01 {
  top: calc(-76 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  left: calc(36 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .sec01 .box01 .text01 {
  margin: 0 auto;
}
.f-container .sec01 .box02 {
  margin-bottom: calc(209 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .sec02 {
  margin-bottom: calc(192 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .sec02 .img-box01 {
  width: calc(430 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  margin: 0 auto;
}
.f-container .sec02 .img-box01 .sec__img:nth-of-type(n + 2) {
  margin-top: calc(20 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .sec03 {
  margin-bottom: calc(230 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .sec03 .img02 {
  width: calc(480 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  margin: calc(80 * var(--spSizeInPc) / var(--spSize) * 0.1rem) 0 calc(40 * var(--spSizeInPc) / var(--spSize) * 0.1rem) auto;
}
.f-container .sec03 .img03 {
  width: calc(700 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .sec03 .credit03 {
  padding-right: calc(190 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .sec04 {
  margin-bottom: calc(170 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .sec04 .img01 {
  margin-bottom: calc(140 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .sec04 .img02 {
  width: calc(400 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  margin-left: calc(50 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  margin-bottom: calc(50 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .sec04 .box01 {
  width: calc(600 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  margin-left: auto;
}
.f-container .sec04 .box01::before {
  display: inline-block;
  content: "";
  width: calc(710 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  height: calc(900 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  background: no-repeat url(../img/sec04_bg01.png?269310_v1) 0 0/contain;
  position: absolute;
  top: calc(-445 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  left: calc(-150 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .sec04 .credit04 {
  padding-left: 0;
}
.f-container .sec05 {
  margin-bottom: calc(210 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .sec05 .box01 {
  display: flex;
}
.f-container .sec05 .box01 .img-box01 {
  display: flex;
  flex-shrink: 0;
  -moz-column-gap: calc(40 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
       column-gap: calc(40 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  margin-left: calc(-230 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .sec05 .box01 .img01,
.f-container .sec05 .box01 .img02 {
  width: calc(500 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .sec05 .box01 .name01 {
  width: calc(782.593 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  top: calc(41 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  left: calc(98 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .sec05 .credit05 {
  padding-top: calc(48 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .sec06 {
  margin-bottom: calc(273 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .sec06 .img01 {
  margin-bottom: calc(120 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .sec06 .img02 {
  width: calc(540 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  margin-left: calc(70 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  margin-bottom: calc(220 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .sec06 .box01 {
  width: calc(550 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  margin-left: auto;
}
.f-container .sec06 .box01 .text01 {
  width: calc(750 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  position: absolute;
  top: calc(-248 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  left: calc(132 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .sec06 .box01 .credit06 {
  padding-left: calc(170 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .sec07 {
  margin-bottom: calc(254 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .sec07 .box01 {
  width: calc(450 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  margin: 0 auto calc(140 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .sec07 .box01 .img-box01 .sec__img:nth-of-type(n + 2) {
  margin-top: calc(20 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .sec07 .box01 .name01,
.f-container .sec07 .box01 .name02 {
  width: calc(22.9219 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .sec07 .box01 .name01 {
  top: calc(120 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  left: calc(-18 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  transform: translateX(-100%);
}
.f-container .sec07 .box01 .name02 {
  bottom: calc(120 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  right: calc(-20 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  transform: translateX(100%);
}
.f-container .sec07 .box02 .credit07 {
  padding-left: calc(125 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  padding-right: calc(125 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .sec08 {
  margin-bottom: calc(142 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .sec08 .box01 {
  width: calc(590 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  margin-left: auto;
  margin-bottom: calc(270 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .sec08 .box01::before {
  display: inline-block;
  content: "";
  width: calc(500 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  height: calc(900 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  position: absolute;
  top: calc(35 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  left: calc(-90 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  background-color: #cbf7e8;
}
.f-container .sec08 .box01 .title01 {
  bottom: calc(12 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  left: calc(-32 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .sec08 .img02 {
  width: calc(580 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  margin-left: calc(30 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  margin-bottom: calc(100 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .sec08 .box02 .credit08 {
  padding-left: calc(210 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  padding-right: calc(210 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}
.f-container .all__btn {
  width: calc(580 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
  margin: 0 auto;
  padding-bottom: calc(150 * var(--spSizeInPc) / var(--spSize) * 0.1rem);
}