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

:root {
  --limitSizeNum: 100vw;
  --spSize: 750;
  --pcSize: 1280;
  --spSizeInPc: 400;
}

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

/* PC画面幅 768～1400px 可変 */
html {
  font-size: calc(100vw / (128));
}

.f-container {
  --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width)); /* PCとSPのデザイン幅の比率 */
  --variable: calc(100vw / var(--pc-width)); /* 画面幅に基づく可変値 */
}

/* SP画面幅 767px以下 可変 */
.l-container {
  width: 100%;
}

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

.f-container {
  opacity: 0;
}
.f-container.show {
  opacity: 1;
}
.f-container {
  background-color: #e0effe;
  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: #000000;
  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: #000000;
  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-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.f-container .f-bg img {
  width: 100%;
  height: 100%;
}
.f-container .f-left, .f-container .f-right {
  width: calc((100% - 40rem) / 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.265rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s ease;
}
.f-container .f-left__title.show {
  visibility: visible;
  opacity: 1;
}
.f-container .f-right__btn {
  width: 16.3rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s ease;
}
.f-container .f-right__btn.show {
  visibility: visible;
  opacity: 1;
}
.f-container .f-main {
  max-width: calc(750 * var(--formula));
  width: 100%;
}
.f-container .f-main-wrap {
  max-width: calc(750 * var(--formula));
  width: 100%;
  margin: 0 auto;
  overflow: clip;
}
.f-container .item-blur img {
  opacity: 0;
  filter: blur(20px) brightness(100%);
  transition: filter 1.5s ease, opacity 0.8s ease;
}
.f-container .item-blur.showed img {
  opacity: 1;
  filter: blur(0px) brightness(100%);
}
.f-container .maskDown {
  opacity: 0;
  -webkit-mask-image: linear-gradient(to bottom, #000, #000 33%, rgba(0, 0, 0, 0) 66%, rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to bottom, #000, #000 33%, rgba(0, 0, 0, 0) 66%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-size: 100% 300%;
          mask-size: 100% 300%;
  -webkit-mask-position: 0 100%;
          mask-position: 0 100%;
  display: block;
  will-change: mask-image;
}
.f-container .maskDown img {
  transform: scale(1.001) scale(1.035);
  transition: 1.8s;
}
.f-container .maskDown.showed {
  opacity: 1;
  -webkit-mask-position: 0% 0%;
          mask-position: 0% 0%;
  transition: transform, -webkit-mask-position;
  transition: mask-position, transform;
  transition: mask-position, transform, -webkit-mask-position;
  transition-duration: 1.8s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: scale(1);
}
.f-container .maskDown.showed img {
  transition: 1.8s;
  transform: scale(1);
}
.f-container .hero__box {
  position: relative;
}
.f-container .hero__title {
  position: absolute;
  bottom: calc(9 * var(--formula));
  left: calc(142.9 * var(--formula));
  width: calc(463 * var(--formula));
  pointer-events: none;
}
.f-container .sec__area {
  background-color: #fff;
  position: relative;
}
.f-container .sec__credit {
  position: absolute;
  z-index: 2;
}
.f-container .sec__credit.one {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.f-container .sec__credit .credit {
  display: flex;
  flex-direction: column;
}
.f-container .sec__credit .item a {
  display: flex;
  font-family: "punto", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: calc(19.98 * var(--formula));
  line-height: calc(24.47 * var(--formula));
  color: #fff;
}
.f-container .sec__box {
  position: relative;
}
.f-container .sec__box.js-trigger {
  cursor: pointer;
}
.f-container .sec__box.js-trigger a {
  pointer-events: none;
}
.f-container .sec__box.js-trigger .credit a {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.f-container .sec__box.js-trigger::after {
  display: inline-block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  background-color: #999999;
  mix-blend-mode: multiply;
}
.f-container .sec__box.js-trigger.clicked a {
  pointer-events: auto;
}
.f-container .sec__box.js-trigger.clicked .credit a {
  opacity: 1;
  visibility: visible;
}
.f-container .sec__box.js-trigger.clicked::after {
  opacity: 1;
  visibility: visible;
  pointer-events: none;
}
.f-container .sec__title {
  margin: calc(43 * var(--formula)) auto calc(120 * var(--formula));
}
.f-container .sec01 .box01 {
  background-color: #e0efff;
  width: calc(750 * var(--formula));
  height: calc(880 * var(--formula));
  display: flex;
  flex-direction: column;
  align-items: center;
}
.f-container .sec01 .box01 .bg01 {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.f-container .sec01 .box01 .sec__text {
  position: relative;
  z-index: 3;
}
.f-container .sec01 .box01 .text01 {
  width: calc(315.7 * var(--formula));
  margin-top: calc(141 * var(--formula));
  margin-bottom: calc(97 * var(--formula));
}
.f-container .sec01 .box01 .text02 {
  width: calc(279.627 * var(--formula));
  margin-bottom: calc(59 * var(--formula));
}
.f-container .sec01 .box01 .text03 {
  width: calc(376.316 * var(--formula));
  margin-bottom: calc(66 * var(--formula));
}
.f-container .sec01 .box01 .text04 {
  width: calc(326.96 * var(--formula));
}
.f-container .sec01 .box02 {
  margin-top: -1px;
  z-index: 2;
}
.f-container .sec01 .box02 .title01 {
  width: 100%;
  text-align: center;
  font-family: "punto", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: calc(22 * var(--formula));
  line-height: calc(25.47 * var(--formula));
  color: #fff;
  position: absolute;
  top: calc(337 * var(--formula));
  left: calc(0 * var(--formula));
}
.f-container .sec02 {
  padding-top: calc(140 * var(--formula));
}
.f-container .sec02 .box01 {
  width: calc(480 * var(--formula));
  margin: 0 auto;
}
.f-container .sec02 .title01 {
  width: calc(287.781 * var(--formula));
}
.f-container .sec02 .box02 .sec__credit {
  top: calc(617 * var(--formula));
}
.f-container .sec02 .box02 .credit02_2 {
  left: calc(35 * var(--formula));
}
.f-container .sec02 .box02 .credit02_3 {
  right: calc(35 * var(--formula));
}
.f-container .sec02 .box03 .credit02_4 {
  top: calc(480 * var(--formula));
  left: calc(35 * var(--formula));
}
.f-container .sec02 .box03 .credit02_5 {
  top: calc(589 * var(--formula));
  right: calc(35 * var(--formula));
}
.f-container .sec03 {
  padding-top: calc(140 * var(--formula));
}
.f-container .sec03 .box01 {
  width: calc(480 * var(--formula));
  margin: 0 auto;
}
.f-container .sec03 .title01 {
  width: calc(299.856 * var(--formula));
}
.f-container .sec03 .box02 .sec__credit {
  top: calc(533 * var(--formula));
}
.f-container .sec03 .box02 .credit03_2 {
  left: calc(35 * var(--formula));
}
.f-container .sec03 .box02 .credit03_3 {
  right: calc(35 * var(--formula));
}
.f-container .sec03 .box03 {
  margin-top: -1px;
}
.f-container .sec03 .box03 .credit03_4 {
  top: calc(451 * var(--formula));
  left: calc(35 * var(--formula));
}
.f-container .sec03 .box03 .credit03_5 {
  top: calc(704 * var(--formula));
  right: calc(35 * var(--formula));
}
.f-container .sec04 {
  padding-top: calc(140 * var(--formula));
}
.f-container .sec04 .box01 {
  width: calc(480 * var(--formula));
  margin: 0 auto;
}
.f-container .sec04 .title01 {
  width: calc(273.02 * var(--formula));
}
.f-container .sec04 .box02 .credit04_2 {
  top: calc(430 * var(--formula));
  left: calc(35 * var(--formula));
}
.f-container .sec04 .box02 .credit04_3 {
  top: calc(589 * var(--formula));
  right: calc(35 * var(--formula));
}
.f-container .sec04 .box03 {
  margin-top: -1px;
}
.f-container .sec04 .box03 .sec__credit {
  top: calc(518 * var(--formula));
}
.f-container .sec04 .box03 .credit04_4 {
  left: calc(35 * var(--formula));
}
.f-container .sec04 .box03 .credit04_5 {
  right: calc(35 * var(--formula));
}
.f-container .sec05 {
  padding-top: calc(140 * var(--formula));
}
.f-container .sec05 .box01 {
  width: calc(480 * var(--formula));
  margin: 0 auto;
}
.f-container .sec05 .title01 {
  width: calc(242.298 * var(--formula));
}
.f-container .sec05 .box02 .sec__credit {
  top: calc(622 * var(--formula));
}
.f-container .sec05 .box02 .credit05_2 {
  left: calc(35 * var(--formula));
}
.f-container .sec05 .box02 .credit05_3 {
  right: calc(35 * var(--formula));
}
.f-container .sec05 .box03 .sec__credit {
  top: calc(434 * var(--formula));
}
.f-container .sec05 .box03 .credit05_4 {
  left: calc(35 * var(--formula));
}
.f-container .sec05 .box03 .credit05_5 {
  right: calc(35 * var(--formula));
}
.f-container .sec06 {
  padding-top: calc(140 * var(--formula));
}
.f-container .sec06 .box01 {
  width: calc(480 * var(--formula));
  margin: 0 auto;
}
.f-container .sec06 .title01 {
  width: calc(250.612 * var(--formula));
}
.f-container .btm {
  position: relative;
  z-index: 5;
  width: calc(750 * var(--formula));
  height: calc(380 * var(--formula));
  background-color: #fff;
  background: no-repeat url(../img/btm_bg.svg?260511_v1) 0 0/100% auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.f-container .btm__btn {
  width: calc(206.353 * var(--formula));
  margin-top: calc(68.9 * var(--formula));
  margin-bottom: calc(46 * var(--formula));
}
.f-container .btm__staff {
  text-align: center;
  font-family: "punto", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: calc(13 * var(--formula));
  line-height: calc(25.81 * var(--formula));
  letter-spacing: 0.01em;
}