@charset "UTF-8";

/* ----------------------------------------------------------------------
 本文の色
---------------------------------------------------------------------- */
body {
  color: #666666;
}

/* ----------------------------------------------------------------------
 ヘッダー ロゴ　Scrollで画像変更
---------------------------------------------------------------------- */
.logo_image.headerLogoScroll.-before {
  display : none !important;
}
.logo_image.-after {
  display : none !important;
}
.logo_image.headerLogoScroll.-after {
  display : block !important;
}

/* ----------------------------------------------------------------------
 ヘッダー メニュー　Scrollで色変更
---------------------------------------------------------------------- */
.active a {
  color: #666666 !important;
  transition: color 0.4s ease-out;
}

/* メニューボタン */
header.active .global_menu_button span {
  background:#666666 !important;
}

/* ----------------------------------------------------------------------
 トップページ　動く文字
---------------------------------------------------------------------- */

/* ulタグ */
.scroll-list {
  display: flex;
  list-style: none;
  margin-left: 0 !important;
  padding-inline: 0;
  margin-inline: 0;
  gap: 0;
  overflow: hidden;
}

/* liタグ */
.scroll-list li {
  font-size: 3em;
  font-weight: bold;
  line-height: 1.2;
  white-space: nowrap;
  padding: 0 1em 0 0;
  margin: 0;
  animation: marquee-left 16s linear infinite;
  background: linear-gradient(90deg, #e88db5 0%, #d188c6 33%, #a687c6 66%, #898ec7 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

/* PCの時のフォントサイズ */
@media (min-width: 600px) {
  .scroll-list li {
    font-size: 8vw;
  }
}

/* アニメーション */
@keyframes marquee-left {
  100% {
    transform: translateX(-100%);
  }
}