@charset "UTF-8";
/* ==========================================
   ■ 設定値（ここだけ触ればOK）
   ========================================== */
html {
  scroll-behavior: smooth;
}

:root {
  --limitSizeNum: 100vw;
  --spSize: 750;
  --pcSize: 1400;
  --spSizeInPc: 490;
}

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

@media (min-width: 1401px) {
  html {
    font-size: 62.5%;
  }
  .f-container {
    --ratio: calc(
      var(--pc-artboard-width) / var(--sp-artboard-width)
    ); /* PCとSPのデザイン幅の比率 */
    --variable: 1px; /* 固定値（可変しない） */
  }
}
@media (max-width: 1400px) {
  html {
    font-size: calc(100vw / (140));
  }
}
/* PC画面幅 768～1400px 可変 */
@media (min-width: 768px) and (max-width: 1400px) {
  html {
    font-size: calc(100vw / (140));
  }
  .f-container {
    --ratio: calc(
      var(--pc-artboard-width) / var(--sp-artboard-width)
    ); /* PCとSPのデザイン幅の比率 */
    --variable: calc(100vw / var(--pc-width)); /* 画面幅に基づく可変値 */
  }
}
/* SP画面幅 767px以下 可変 */
@media (max-width: 767px) {
  :root {
    --spSizeInPc: 750;
    --pcSize: 750;
  }
  html {
    font-size: calc(100vw / (75));
  }
  .f-container {
    --ratio: 1; /* 比率は1（変わらない） */
    --variable: calc(100vw / var(--sp-width)); /* 画面幅に基づく可変値 */
  }
  .f-right,
  .f-left {
    display: none !important;
  }
}
.l-container {
  width: 100%;
}

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

.f-container {
  background-color: #e7fffd;
  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 {
  color: #000;
  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 {
  background: rgb(255, 255, 255);
  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 svg {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}
.f-container a {
  color: #000;
  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% - 49rem) / 2);
  height: calc(100vh - 80px);
  overflow: clip;
  position: sticky;
  top: 80px;
  display: flex;
  justify-content: center;
}
.f-container .f-left__box {
  position: relative;
  width: 30.2rem;
  height: calc(100vh - 80px);
}
.f-container .f-left__title {
  width: 22.3668rem;
  margin-top: 6.8rem;
  margin-left: -1rem;
}
.f-container .f-left__img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.f-container .f-right__box {
  position: relative;
  width: 30.2rem;
  height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.f-container .f-right__text {
  width: 20.8657rem;
  position: absolute;
  right: 0;
  bottom: 6rem;
}
.f-container .f-right__img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.f-container .f-main {
  width: 49rem;
  overflow: clip;
}
@media (max-width: 768px) {
  .f-container .f-main {
    max-width: calc(750 * var(--formula));
    width: 100%;
  }
}
.f-container .f-main-wrap {
  width: 100%;
  min-height: 200vh;
}
.f-container .fadeIn {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.f-container .fadeIn.showed {
  opacity: 1;
}
.f-container .scroll-ani {
  position: relative;
  overflow: hidden;
}
.f-container .scroll-ani::before {
  display: inline-block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: linePassThrough 2.5s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}
@keyframes linePassThrough {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}
.f-container {
  /** loop **/
}
.f-container .scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
.f-container .scroll-infinity__wrap .scroll-infinity__list {
  animation: infinity-scroll-left 30s infinite linear 0.5s both;
}
.f-container .scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.f-container.is-scrolling .hero {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.f-container.pc .hero {
  height: calc(100vh - 80px);
  top: 80px;
}
.f-container.pc .navi {
  top: 80px;
}
.f-container.pc .mv {
  margin-top: calc((100vh - 80px) * -1);
}
.f-container.pc .modal {
  height: calc(100vh - 80px);
  top: 80px;
}
.f-container.sp .hero {
  height: calc(100dvh - 51px);
  top: 51px;
}
.f-container.sp .navi {
  top: 51px;
}
.f-container.sp .mv {
  margin-top: calc((100dvh - 51px) * -1);
}
.f-container.sp .modal {
  height: calc(100dvh - 51px);
  top: 51px;
  left: 0;
  transform: translate(0);
}
.f-container.app .hero {
  height: 100vh;
  top: 0;
}
.f-container.app .mv {
  margin-top: -100vh;
}
.f-container.app .modal {
  height: 100vh;
  top: 0;
  left: 0;
  transform: translate(0);
}
.f-container .mv {
  position: relative;
}
.f-container .mv__movie {
  width: calc(750 * var(--formula));
  position: relative;
  margin: 0 auto;
}
.f-container .mv__movie video {
  filter: drop-shadow(0px 0px rgb(231, 255, 253));
}
.f-container .mv__skip {
  width: calc(180 * var(--formula));
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(160 * var(--formula));
}
.f-container .hero {
  opacity: 1;
  visibility: visible;
  transition: all 1s ease;
  position: sticky;
  z-index: 10;
}
.f-container .hero.disnon {
  opacity: 0 !important;
  visibility: hidden !important;
}
.f-container .hero::before {
  display: inline-block;
  content: "";
  width: 100%;
  height: 300%;
  background-color: rgba(231, 255, 253, 0.86);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.f-container .hero__box {
  width: 100%;
  height: calc(1125 * var(--formula));
  position: relative;
}
.f-container .hero__title {
  width: calc(526.23 * var(--formula));
  position: absolute;
  top: calc(415 * var(--formula));
  left: calc(109 * var(--formula));
  z-index: 3;
}
.f-container .hero__scroll {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.f-container .hero__scroll-text {
  width: -moz-fit-content;
  width: fit-content;
  font-family: "baskerville-display-pt", serif;
  font-weight: 400;
  color: #1264c6;
  font-size: calc(21 * var(--formula));
  line-height: calc(14 * var(--formula));
  padding-top: calc(2 * var(--formula));
  margin-bottom: calc(20 * var(--formula));
}
.f-container .hero__scroll-line {
  width: 1px;
  height: calc(80 * var(--formula));
}
.f-container .hero__scroll-line::before {
  background-color: #1264c6;
}
.f-container .navi {
  position: sticky;
  top: 0;
  z-index: 5;
}
.f-container .navi__list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.f-container .navi__list::after {
  display: inline-block;
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: 2;
  background-color: #000;
}
.f-container .navi__btn {
  width: calc(375 * var(--formula));
  height: calc(160 * var(--formula));
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  background-color: #ffff94;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.f-container .navi__btn:nth-of-type(1) img {
  width: calc(266.236 * var(--formula));
}
.f-container .navi__btn:nth-of-type(2) img {
  width: calc(173.824 * var(--formula));
}
.f-container .sec__area {
  position: relative;
  margin-bottom: calc(135.5 * var(--formula));
}
.f-container .sec__box {
  position: relative;
}
.f-container .sec__img {
  margin: 0 auto;
  position: relative;
}
.f-container .sec__img::before {
  display: inline-block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
}
.f-container .sec__img a {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.f-container .sec__slide {
  position: relative;
}
.f-container .sec__slide .swiper {
  overflow: hidden;
}
.f-container .sec__slide .swiper-container-horizontal > .swiper-pagination-bullets,
.f-container .sec__slide .swiper-pagination-custom,
.f-container .sec__slide .swiper-pagination-fraction {
  position: absolute;
  z-index: 3;
  bottom: calc(30 * var(--formula));
  right: calc(30 * var(--formula));
  width: auto;
  display: flex;
  justify-content: flex-end;
}
.f-container .sec__slide .swiper-pagination-bullet {
  width: calc(14 * var(--formula));
  height: calc(14 * var(--formula));
  margin: 0;
}
.f-container .sec__slide .swiper-pagination-bullet:nth-child(n+2) {
  margin-left: calc(35 * var(--formula));
}
.f-container .sec__slide .swiper-pagination-bullet {
  border-radius: 100%;
  background-color: #d9e8f4;
  border: 1px solid #000;
  opacity: 1;
}
.f-container .sec__slide .swiper-pagination-bullet-active {
  background-color: #000;
  opacity: 1;
}
.f-container .sec__scroll {
  pointer-events: none;
  position: absolute;
  right: calc(43 * var(--formula));
  top: calc(980 * var(--formula));
  z-index: 3;
  display: flex;
  flex-direction: column;
}
.f-container .sec__scroll-line {
  width: 1px;
  height: calc(160 * var(--formula));
  margin-bottom: calc(9 * var(--formula));
  margin-left: calc(6 * var(--formula));
}
.f-container .sec__scroll-line::before {
  background-color: #000;
}
.f-container .sec__scroll-text {
  width: calc(14.5947 * var(--formula));
}
.f-container .sec__credit {
  padding-top: calc(31.5 * var(--formula));
}
.f-container .sec__credit .credit {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  -moz-column-gap: calc(13 * var(--formula));
       column-gap: calc(13 * var(--formula));
}
.f-container .sec__credit .item {
  font-family: "baskerville-display-pt", serif;
  font-weight: 400;
  font-size: calc(24 * var(--formula));
  line-height: calc(46.8 * var(--formula));
  letter-spacing: 0.04em;
}
.f-container .sec__credit .item a {
  display: flex;
}
.f-container .sec__credit .br-line {
  flex-basis: 100%;
  height: 0;
}
.f-container .sec02 {
  margin-bottom: calc(130 * var(--formula));
}
.f-container .sec02 .img01 {
  width: calc(680 * var(--formula));
}
.f-container .sec03 {
  margin-bottom: calc(131 * var(--formula));
}
.f-container .sec04 {
  margin-bottom: calc(133 * var(--formula));
}
.f-container .sec05 {
  margin-bottom: calc(132 * var(--formula));
}
.f-container .sec05 .img01 {
  width: calc(680 * var(--formula));
}
.f-container .sec06 {
  margin-bottom: calc(130 * var(--formula));
}
.f-container .sec08 {
  margin-bottom: calc(135 * var(--formula));
}
.f-container .sec08 .img01 {
  width: calc(680 * var(--formula));
}
.f-container .btm {
  position: relative;
  padding-bottom: calc(220 * var(--formula));
}
.f-container .btm__box {
  margin-bottom: calc(74 * var(--formula));
  position: relative;
}
.f-container .btm__img {
  width: calc(600 * var(--formula));
  margin: 0 auto;
}
.f-container .btm__text {
  position: absolute;
  top: calc(348 * var(--formula));
  left: calc(-19 * var(--formula));
}
.f-container .btm__text .scroll-infinity__item {
  font-family: "baskerville-display-pt", serif;
  font-weight: 400;
  font-size: calc(66 * var(--formula));
  line-height: calc(100 * var(--formula));
  color: #ffff94;
}
.f-container .btm__btn {
  width: calc(228 * var(--formula));
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(80 * var(--formula));
}
.f-container .btm__title {
  padding-left: calc(40 * var(--formula));
  font-family: "baskerville-display-pt", serif;
  font-weight: 400;
  font-size: calc(23 * var(--formula));
  line-height: calc(40 * var(--formula));
  margin-bottom: calc(19 * var(--formula));
}
.f-container .btm__staff {
  padding-left: calc(40 * var(--formula));
  font-family: "baskerville-display-pt", serif;
  font-weight: 400;
  font-size: calc(23 * var(--formula));
  line-height: calc(40 * var(--formula));
}
.f-container .btm__brand {
  width: calc(216.276 * var(--formula));
  position: absolute;
  right: calc(44 * var(--formula));
  bottom: calc(237 * var(--formula));
}
.f-container .modal {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
  width: calc(750 * var(--formula));
  height: 100%;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}
.f-container .modal.on {
  opacity: 1;
  pointer-events: auto;
}
.f-container .modal__inner {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: rgba(231, 255, 253, 0.86);
}
.f-container .modal__close {
  width: calc(48 * var(--formula));
  position: absolute;
  top: calc(30 * var(--formula));
  right: calc(30 * var(--formula));
  z-index: 100;
  cursor: pointer;
}
.f-container .modal__list {
  width: calc(750 * var(--formula));
  height: 100%;
}
.f-container .modal__each {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
}
.f-container .modal__each:nth-of-type(1) {
  padding-top: calc(214 * var(--formula));
}
.f-container .modal__each:nth-of-type(2) {
  padding-top: calc(285 * var(--formula));
}
.f-container .modal__each.on {
  opacity: 1;
  visibility: visible;
}
.f-container .modal__title {
  box-sizing: content-box;
  padding-left: calc(47 * var(--formula));
  margin-bottom: calc(24 * var(--formula));
  margin-bottom: calc(72 * var(--formula));
}
.f-container .modal__title.title01 {
  width: calc(450 * var(--formula));
}
.f-container .modal__title.title02 {
  width: calc(462.38 * var(--formula));
}
.f-container .modal__text {
  padding-left: calc(80 * var(--formula));
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-size: calc(28 * var(--formula));
  line-height: calc(56 * var(--formula));
  letter-spacing: 0.05em;
}