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

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

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

@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: #c8e5ed;
  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% - 51rem) / 2);
  height: calc(100vh - 80px);
  overflow: clip;
  position: sticky;
  top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.f-container .f-left__title {
  width: 20.3946rem;
}
.f-container .f-right .all__btn {
  width: 17.8535rem;
  margin-bottom: 0;
}
.f-container .f-right .all__btn a {
  padding-bottom: 0;
}
.f-container .f-main {
  width: 51rem;
  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%;
}
.f-container .maskDown01 {
  opacity: 0;
  animation: opa 1.8s cubic-bezier(0.51, 0.21, 0.41, 1) 0.4s 1 forwards;
  -webkit-animation: opa 1.8s cubic-bezier(0.51, 0.21, 0.41, 1) 0.4s 1 forwards;
  -webkit-mask-image: linear-gradient(0deg, transparent, transparent 39.6666666667%, rgba(0, 0, 0, 0.02) 43.3333333333%, rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0.18) 46.6666666667%, rgba(0, 0, 0, 0.32) 48.3333333333%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.68) 51.6666666667%, rgba(0, 0, 0, 0.82) 53.3333333333%, rgba(0, 0, 0, 0.92) 55%, rgba(0, 0, 0, 0.98) 56.6666666667%, #000 58.3333333333%, #000);
  mask-image: linear-gradient(0deg, transparent, transparent 39.6666666667%, rgba(0, 0, 0, 0.02) 43.3333333333%, rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0.18) 46.6666666667%, rgba(0, 0, 0, 0.32) 48.3333333333%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.68) 51.6666666667%, rgba(0, 0, 0, 0.82) 53.3333333333%, rgba(0, 0, 0, 0.92) 55%, rgba(0, 0, 0, 0.98) 56.6666666667%, #000 58.3333333333%, #000);
  -webkit-mask-size: 100% max(300%, 100vh);
  mask-size: 100% max(300%, 100vh);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center 100%;
  mask-position: center 100%;
  transform: translateZ(0);
  transition: mask-position 1.6s 0.4s linear, -webkit-mask-position 1.6s 0.4s linear;
}
.f-container .maskDown01.showed {
  animation: opa1 1s cubic-bezier(0.51, 0.21, 0.41, 1) forwards;
  animation-delay: 0.5s;
  -webkit-mask-position: center 0;
  mask-position: center 0;
}
.f-container .maskDown02 {
  opacity: 0;
  animation: opa 2s cubic-bezier(0.51, 0.21, 0.41, 1) 0.4s 1 forwards;
  -webkit-animation: opa 2s cubic-bezier(0.51, 0.21, 0.41, 1) 0.4s 1 forwards;
  -webkit-mask-image: linear-gradient(0deg, transparent, transparent 39.6666666667%, rgba(0, 0, 0, 0.02) 43.3333333333%, rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0.18) 46.6666666667%, rgba(0, 0, 0, 0.32) 48.3333333333%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.68) 51.6666666667%, rgba(0, 0, 0, 0.82) 53.3333333333%, rgba(0, 0, 0, 0.92) 55%, rgba(0, 0, 0, 0.98) 56.6666666667%, #000 58.3333333333%, #000);
  mask-image: linear-gradient(0deg, transparent, transparent 39.6666666667%, rgba(0, 0, 0, 0.02) 43.3333333333%, rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0.18) 46.6666666667%, rgba(0, 0, 0, 0.32) 48.3333333333%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.68) 51.6666666667%, rgba(0, 0, 0, 0.82) 53.3333333333%, rgba(0, 0, 0, 0.92) 55%, rgba(0, 0, 0, 0.98) 56.6666666667%, #000 58.3333333333%, #000);
  -webkit-mask-size: 100% max(300%, 100vh);
  mask-size: 100% max(300%, 100vh);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center 100%;
  mask-position: center 100%;
  transform: translateZ(0);
  transition: mask-position 1.8s 0.4s linear, -webkit-mask-position 1.8s 0.4s linear;
}
.f-container .maskDown02.showed {
  animation: opa1 1s cubic-bezier(0.51, 0.21, 0.41, 1) forwards;
  animation-delay: 0.5s;
  -webkit-mask-position: center 0;
  mask-position: center 0;
}
@keyframes opa1 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.f-container .hero__movie {
  width: calc(750 * var(--formula));
  position: relative;
  margin: 0 auto;
}
.f-container .hero__movie video {
  filter: drop-shadow(0px 0px rgb(200, 229, 237));
}
.f-container .hero__movie-btn {
  width: calc(156.93 * var(--formula));
  height: calc(41.6 * var(--formula));
  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 .hero__title {
  display: flex;
  flex-direction: column;
  margin-top: calc(150 * var(--formula));
  margin-bottom: calc(142 * var(--formula));
}
.f-container .hero__title > span > span {
  display: inline-block;
}
.f-container .hero__title > span:nth-of-type(1) {
  font-family: "ivybodoni", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(124 * var(--formula));
  line-height: calc(84 * var(--formula));
  padding-bottom: calc(10 * var(--formula));
  letter-spacing: 0.02em;
  margin-left: calc(142 * var(--formula));
  margin-bottom: calc(29 * var(--formula));
}
.f-container .hero__title > span:nth-of-type(1) > span:nth-of-type(2) {
  margin-left: calc(-4 * var(--formula));
}
.f-container .hero__title > span:nth-of-type(1) > span:nth-of-type(3) {
  margin-left: calc(-7 * var(--formula));
}
.f-container .hero__title > span:nth-of-type(1) > span:nth-of-type(4) {
  margin-left: calc(0 * var(--formula));
}
.f-container .hero__title > span:nth-of-type(1) > span:nth-of-type(5) {
  margin-left: calc(0 * var(--formula));
}
.f-container .hero__title > span:nth-of-type(1) > span:nth-of-type(6) {
  margin-left: calc(-2 * var(--formula));
}
.f-container .hero__title > span:nth-of-type(2) {
  font-family: "ivybodoni", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: calc(54 * var(--formula));
  line-height: calc(40 * var(--formula));
  padding-bottom: calc(10 * var(--formula));
  letter-spacing: 0.02em;
  margin-left: calc(225 * var(--formula));
  margin-bottom: calc(67 * var(--formula));
}
.f-container .hero__title > span:nth-of-type(2) > span:nth-of-type(3) {
  margin-left: calc(-2 * var(--formula));
}
.f-container .hero__title > span:nth-of-type(2) > span:nth-of-type(8) {
  margin-left: calc(-2 * var(--formula));
}
.f-container .hero__title > span:nth-of-type(2) > span:nth-of-type(9) {
  margin-left: calc(-2 * var(--formula));
}
.f-container .hero__title > span:nth-of-type(2) > span:nth-of-type(10) {
  margin-left: calc(-2 * var(--formula));
}
.f-container .hero__title > span:nth-of-type(3) {
  font-family: "haboro-soft-condensed", sans-serif;
  font-weight: 200;
  font-style: normal;
  font-size: calc(32 * var(--formula));
  line-height: calc(40 * var(--formula));
  letter-spacing: 0.045em;
  margin-left: calc(184 * var(--formula));
}
.f-container .thum {
  margin-bottom: calc(157 * var(--formula));
}
.f-container .thum__list {
  display: flex;
  flex-wrap: wrap;
}
.f-container .thum__img {
  position: relative;
  cursor: pointer;
  width: calc(375 * var(--formula));
}
.f-container .thum__img.wide {
  width: calc(750 * var(--formula));
}
.f-container .thum__name {
  width: calc(711.217 * var(--formula));
  position: absolute;
  z-index: 2;
  top: calc(20 * var(--formula));
  left: calc(20 * var(--formula));
  pointer-events: none;
}
.f-container .modal {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
  width: calc(750 * var(--formula));
  height: 100vh;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background-color: rgba(200, 229, 237, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}
.f-container .modal__inner {
  position: relative;
  width: calc(700 * var(--formula));
  height: calc(1060 * var(--formula));
  background-color: #fff;
}
.f-container .modal__close {
  width: calc(40 * var(--formula));
  position: absolute;
  top: calc(30 * var(--formula));
  right: calc(30 * var(--formula));
  cursor: pointer;
}
.f-container .modal__list {
  width: calc(610 * var(--formula));
  height: calc(900 * var(--formula));
  margin: calc(100 * var(--formula)) auto;
}
.f-container .modal__list > .slick-list {
  margin: 0 -5px;
}
.f-container .modal__list .slick-arrow {
  top: calc(430 * var(--formula));
  width: calc(38 * var(--formula));
  height: calc(41.4143 * var(--formula));
}
.f-container .modal__list .slick-arrow::before {
  display: none;
}
.f-container .modal__list .slick-arrow.slick-prev {
  background: no-repeat url(../img/slide_prev.svg?260422_v1) center center/calc(12.1211 * var(--formula)) calc(21.4143 * var(--formula));
  left: 0;
  transform: translateX(-100%);
}
.f-container .modal__list .slick-arrow.slick-next {
  background: no-repeat url(../img/slide_next.svg?260422_v1) center center/calc(12.1211 * var(--formula)) calc(21.4143 * var(--formula));
  right: 0;
  transform: translateX(100%);
}
.f-container .modal__box {
  position: relative;
  width: calc(610 * var(--formula));
  height: calc(900 * var(--formula));
  margin: 0 5px;
}
.f-container .modal__box::before {
  display: inline-block;
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid #000;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
}
.f-container .modal__box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.f-container .modal__slide {
  width: calc(580 * var(--formula));
  height: calc(870 * var(--formula));
  margin: 0 auto !important;
}
.f-container .modal__slide .slick-dots {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex !important;
  justify-content: flex-end;
  padding-right: calc(15 * var(--formula));
  padding-bottom: calc(15 * var(--formula));
}
.f-container .modal__slide .slick-dots.hide {
  display: none !important;
}
.f-container .modal__slide .slick-dots li {
  position: relative;
  display: inline-block;
  width: calc(10 * var(--formula));
  height: calc(10 * var(--formula));
  border-radius: 50%;
  margin: 0;
  padding: 0;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid #fff;
  opacity: 1;
}
.f-container .modal__slide .slick-dots li:nth-of-type(n + 2) {
  margin-left: calc(10 * var(--formula));
}
.f-container .modal__slide .slick-dots li.slick-active {
  background-color: #fff;
}
.f-container .modal__slide .slick-dots li button {
  width: calc(10 * var(--formula));
  height: calc(10 * var(--formula));
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  padding: 0;
}
.f-container .modal__slide .slick-dots li button::before {
  display: none;
}
.f-container .modal__credit {
  position: absolute;
  left: calc(34 * var(--formula));
  bottom: calc(24 * var(--formula));
}
.f-container .modal__credit .credit {
  display: flex;
  flex-direction: column;
}
.f-container .modal__credit .credit .item a {
  display: flex;
  font-family: "haboro-soft-condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(22 * var(--formula));
  line-height: calc(44 * var(--formula));
  letter-spacing: 0.05em;
  color: #fff;
  text-transform: uppercase;
  text-decoration: underline;
}
.f-container .modal.on {
  opacity: 1;
  pointer-events: auto;
}
.f-container .all__btn {
  width: calc(328.989 * var(--formula));
  margin: 0 auto calc(147 * var(--formula));
}
.f-container .all__btn a {
  position: relative;
  padding-bottom: calc(23 * var(--formula));
  box-sizing: content-box;
}
.f-container .all__btn a::after {
  display: inline-block;
  content: "";
  height: 1px;
  width: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background-color: #000;
  transition: 1.5s;
}
.f-container .all__btn a.showed::after {
  width: calc(330 * var(--formula));
}