.elementor-kit-14{--e-global-color-primary:#000000;--e-global-color-secondary:#000000;--e-global-color-text:#000000;--e-global-color-accent:#000995;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-primary-line-height:2em;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-secondary-line-height:2em;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-text-line-height:2em;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;--e-global-typography-accent-line-height:2em;background-color:#F0F0F0;}.elementor-kit-14 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//************
 wave-text
 黒スタート／黒エンド
 完全ループグラデーション
************/

.wave-text {
  background: linear-gradient(
    135deg,
    #000000,  /* 黒 */
    #0b1f4b,  /* ネイビー */
    #EBD436,  /* ブルー */
    #0b1f4b,  /* ネイビー */
    #000000   /* 黒（終点を必ず黒） */
  );
  background-size: 400% 400%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-weight: 900;
  letter-spacing: 0.05em;

  animation: umezawa-gradient 7s linear infinite;
}

@keyframes umezawa-gradient {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

/************
 wave-text2
 紺背景用：白 → シルバー → 黄色 → シルバー → 白
 往復アニメーションでなめらかにループ
************/

.wave-text2 {
  background: linear-gradient(
    135deg,
    #ffffff,  /* 白 */
    #d8dde7,  /* シルバー寄りの薄グレー */
    #FFF6BD,  /* 黄色 */
    #d8dde7,  /* シルバー寄りの薄グレー */
    #ffffff   /* 白（終点も白） */
  );
  background-size: 400% 400%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-weight: 900;
  letter-spacing: 0.05em;

  /* 往復させて最後に色が飛ばないようにする */
  animation: umezawa-gradient2 15s ease-in-out infinite;
}

@keyframes umezawa-gradient2 {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}/* End custom CSS */