@charset "UTF-8";
/* production date 2025/11/10 ~ 2026/01/23 */
/* アニメーション用 scss */
/*----------------------------------------------------------------------------------------------------------------
media query
----------------------------------------------------------------------------------------------------------------*/
/* variable declaration */
/* main margin */
/* main padding */
/*----------------------------------------------------------------------------------------------------------------
variable declaration / mixin
----------------------------------------------------------------------------------------------------------------*/
/* color */
/* gradient */
/* underline */
/* drop-shadow */
/* tx drop-shadow */
/* font */
/* hover transition */
/* img */
/*----------------------------------------------------------------------------------------------------------------
スクロール表示アニメーション
----------------------------------------------------------------------------------------------------------------*/
/* fadeIn */
/* 単体 */
.fadeIn {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

/* 連続 */
.fadeIn--02,
.fadeIn--03,
.fadeIn--04,
.fadeIn--05,
.fadeIn--06,
.fadeIn--07 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.fadeIn--02 {
  transition-delay: 0.2s;
}

.fadeIn--03 {
  transition-delay: 0.3s;
}

.fadeIn--04 {
  transition-delay: 0.4s;
}

.fadeIn--05 {
  transition-delay: 0.5s;
}

.fadeIn--06 {
  transition-delay: 0.6s;
}

.fadeIn--07 {
  transition-delay: 0.7s;
}

.fadeIn.is_active,
.fadeIn--02.is_active,
.fadeIn--03.is_active,
.fadeIn--04.is_active,
.fadeIn--05.is_active,
.fadeIn--06.is_active,
.fadeIn--07.is_active {
  opacity: 1;
  transform: translateY(0);
}

/* flowTx */
/* topFVのflowTxだけ、ローディング中は止める */
body:not(.is_loaded) #topFv .flowTx--white-fv::before {
  animation: none !important;
}

body:not(.is_loaded) #topFv .flowTx--white-fv {
  transition: none !important;
  color: transparent !important;
}

/* 共通 */
.flowTx--blueGreen,
.flowTx--black,
.flowTx--white,
.flowTx--white-fast,
.flowTx--white-fv {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: transparent !important;
  font-feature-settings: "palt";
  line-height: 1 !important;
  padding-bottom: 10px;
  text-shadow: 0px 0px 0px rgba(55, 72, 90, 0) !important;
  z-index: 0;
}
@media screen and (max-width: 576px) {
  .flowTx--blueGreen,
  .flowTx--black,
  .flowTx--white,
  .flowTx--white-fast,
  .flowTx--white-fv {
    padding-bottom: 6px;
  }
}

/* 改行用 */
.span--normal {
  display: inline-block !important;
}

.span--spNone {
  display: inline-block !important;
}
@media screen and (max-width: 576px) {
  .span--spNone {
    display: none !important;
  }
}

.span--pcNone {
  display: none !important;
}
@media screen and (max-width: 576px) {
  .span--pcNone {
    display: inline-block !important;
  }
}

.span--tabNone {
  display: inline-block !important;
}
@media screen and (max-width: 992px) {
  .span--tabNone {
    display: none !important;
  }
}

.span--tabPcNone {
  display: none !important;
}
@media screen and (max-width: 992px) {
  .span--tabPcNone {
    display: inline-block !important;
  }
}

/* 背景（マーカー） */
.flowTx--blueGreen::before,
.flowTx--black::before,
.flowTx--white::before,
.flowTx--white-fast::before,
.flowTx--white-fv::before {
  content: "";
  position: absolute;
  inset: -1px;
  transform: translateX(-100%);
  padding-bottom: 10px;
  z-index: 10;
}

/* is_active で文字色を戻す */
.flowTx--blueGreen.is_active,
.flowTx--black.is_active,
.flowTx--white.is_active,
.flowTx--white-fast.is_active,
.flowTx--white-fv.is_active {
  transition: color 0s linear;
  transition-delay: 0.8s;
}

.flowTx--white-fv.is_active {
  text-shadow: 0px 0px 8px rgba(55, 72, 90, 0.2) !important;
}

/* is_active で背景アニメ */
.flowTx--blueGreen.is_active::before,
.flowTx--black.is_active::before,
.flowTx--white.is_active::before,
.flowTx--white-fast.is_active::before,
.flowTx--white-fv.is_active::before {
  animation: bg-flow 1.2s ease-in-out forwards;
}

/* 個別色 */
/* blueGreen */
.flowTx--blueGreen::before {
  background: #00BAA5 !important;
}

.flowTx--blueGreen.is_active {
  color: #00BAA5 !important;
}

/* black */
.flowTx--black::before {
  background: #37485A !important;
}

.flowTx--black.is_active {
  color: #37485A !important;
}

/* white */
.flowTx--white::before,
.flowTx--white-fast::before,
.flowTx--white-fv::before {
  background: #FFF !important;
}

.flowTx--white.is_active,
.flowTx--white-fast.is_active,
.flowTx--white-fv.is_active {
  color: #FFF !important;
}

@keyframes bg-flow {
  0% {
    transform: translateX(-101%);
  }
  40% {
    transform: translateX(0);
  }
  60% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(101%);
  }
}
/* --------------------------------------------------
sp 縦書き用
-------------------------------------------------- */
@media (max-width: 767px) {
  .flowTx--blueGreen.is-vertical,
  .flowTx--black.is-vertical,
  .flowTx--white.is-vertical,
  .flowTx--white-fv.is-vertical {
    writing-mode: vertical-rl;
    line-height: 1.1 !important;
    padding-bottom: 0;
  }
  .flowTx--blueGreen.is-vertical::before,
  .flowTx--black.is-vertical::before,
  .flowTx--white.is-vertical::before,
  .flowTx--white-fv.is-vertical::before {
    transform: translateY(-100%);
  }
  .flowTx--blueGreen.is-vertical.is_active::before,
  .flowTx--black.is-vertical.is_active::before,
  .flowTx--white.is-vertical.is_active::before,
  .flowTx--white-fv.is-vertical.is_active::before {
    animation: bg-flow-vertical 1.2s ease-in-out forwards;
  }
}
@keyframes bg-flow-vertical {
  0% {
    transform: translateY(-101%);
  }
  40% {
    transform: translateY(0);
  }
  60% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(101%);
  }
}
/*---------------------------------------------------------------------------------------------------------------
視差スクロール(gsap)
----------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------
ローディングアニメーション（topのみ）
----------------------------------------------------------------------------------------------------------------*/
.loading {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #00BAA5;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 1.2s 1s ease-in-out;
  z-index: 999999;
}
.loading.is_open {
  opacity: 0;
  pointer-events: none;
}
.loading__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  opacity: 0;
  transform: translateY(18px);
  animation: logo_in 0.9s 0.2s ease forwards;
}
.loading {
  /* ロゴ */
}
.loading__logoBox {
  width: 150px;
}
@media screen and (max-width: 576px) {
  .loading__logoBox {
    width: 120px;
  }
}
@media screen and (max-width: 450px) {
  .loading__logoBox {
    width: 110px;
  }
}
.loading__logoBox img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.loading.is_open {
  opacity: 0;
  pointer-events: none;
}

@keyframes logo_in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ウェーブ */
.wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 1;
}
.wave__bar {
  width: 5px;
  height: 20px;
  background-color: #FFF;
  animation: bar-flow 1.2s linear infinite;
  opacity: 0.15;
}
.wave__bar:nth-child(1) {
  animation-delay: 0s;
}
.wave__bar:nth-child(2) {
  animation-delay: 0.12s;
}
.wave__bar:nth-child(3) {
  animation-delay: 0.24s;
}
.wave__bar:nth-child(4) {
  animation-delay: 0.36s;
}
.wave__bar:nth-child(5) {
  animation-delay: 0.48s;
}

@keyframes bar-flow {
  0% {
    opacity: 0;
    transform: translateY(0) scaleY(0.9);
  }
  10% {
    opacity: 0.25;
  }
  30% {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
  55% {
    opacity: 0.25;
  }
  100% {
    opacity: 0;
    transform: translateY(0) scaleY(0.9);
  }
}
/*---------------------------------------------------------------------------------------------------------------
ページ遷移アニメーション（top以外全て）
----------------------------------------------------------------------------------------------------------------*/
body.is-page-transition .animation-bg {
  background: #fff;
  position: fixed;
  inset: 0; /* top/left/width/heightの代わり */
  pointer-events: none;
  opacity: 1;
  z-index: 9999999;
  will-change: opacity;
  animation: PageAnime-fade 0.8s ease-in-out 0.5s forwards;
}

/* is-page-transition が付いている時、body を変形させない（保険） */
body.is-page-transition {
  transform: none !important;
  filter: none !important;
  opacity: 1 !important;
}

@keyframes PageAnime-fade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
/*----------------------------------------------------------------------------------------------------------------
左から右にループするテキスト(top)
----------------------------------------------------------------------------------------------------------------*/
.tx-scroll-infinityBox {
  position: relative;
  overflow: hidden;
  display: block;
  top: -100px;
  width: 100%;
  height: auto;
  z-index: 0;
}

.tx-scroll-infinity {
  width: 100%;
  height: auto;
  overflow: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.tx-scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
  padding: 8px 0;
  width: max-content;
  will-change: transform;
  contain: paint;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  animation: infinity-scroll-left 80s linear infinite;
  animation-play-state: paused;
}
.tx-scroll-infinity__list {
  display: flex;
  flex-shrink: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0;
}
.tx-scroll-infinity__list--left {
  animation: none !important;
}
.tx-scroll-infinity__item {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 170px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 9px;
  text-transform: uppercase;
  white-space: nowrap;
  padding-right: 40px;
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0 -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
  color: #00BAA5;
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .tx-scroll-infinity__item {
    padding-right: 30px;
    font-size: 150px;
    letter-spacing: 7px;
    color: #06BBA0;
  }
}
@media screen and (max-width: 576px) {
  .tx-scroll-infinity__item {
    font-size: 130px;
    letter-spacing: 5px;
    color: #00BBA2;
  }
}
@media screen and (max-width: 450px) {
  .tx-scroll-infinity__item {
    font-size: 120px;
    letter-spacing: 4px;
    color: #0CBB9E;
  }
}

/* フォント準備OKになったら動かす */
.tx-scroll-infinity.is-ready .tx-scroll-infinity__wrap {
  animation-play-state: running;
}

@keyframes infinity-scroll-left {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
/*---------------------------------------------------------------------------------------------------------------
ふわふわ揺れるアニメーション（businessイラスト）
----------------------------------------------------------------------------------------------------------------*/
.float {
  animation: float 5s ease-in-out infinite;
}

/* それぞれ開始タイミングをずらす */
.float01 {
  animation-delay: 0s;
}

.float02 {
  animation-delay: 1.5s;
}

.float03 {
  animation-delay: 3s;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
