@charset "utf-8";
/* meinvisual部分*/

#header .mainvisual{
    width:100%;
    margin-left:1rem;
    background-image: url("../img/top/ryujin.webp");
    background-position: center center;
    position:relative;
    height:500px;
    background-size:cover;
    border-radius: 30px;
    
    display:flex;
    justify-content: center;
    align-items: center;
}

#header .mainvisual .header-title{
  font-size: 5rem;
  font-weight: bold;
  font-family:'Dancing Script',serif;
  /* font-family: 'Zen Kaku Gothic New', sans-serif; */
  animation: titleColor 3s linear infinite;
}

/* 色がなめらかに変わるアニメーション */
@keyframes titleColor {
  0% {
    color: #ff4b4b;   /* 赤系 */
  }
  33% {
    color: #ffb84b;   /* オレンジ系 */
  }
  66% {
    color: #4bb8ff;   /* 青系 */
  }
  100% {
    color: #ff4b4b;   /* 最初の色に戻る */
  }
}

/*-------------------------------------------
スマートフォン
-------------------------------------------*/

@media screen and (max-width: 767px) {

#header .mainvisual .header-title{
  font-size: 3rem;
}

}