.hero-section {
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}

.hero-section h1 {
    font-size: 3rem;
    color: #000000;
    margin-bottom: 20px;
}

.hero-section .lead {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 30px;
}

.hero-section .btn-primary {
    background-color: #f0b905;
    border-color: #ff9900;
}

.btn-primary {
    background-color: #f0b905;
    border-color: #ff9900;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.scroll-to-top {
    position: fixed;
    right: 15px;
    bottom: 15px;
    display: none;
    width: 50px;
    height: 50px;
    text-align: center;
    color: #fff;
    background: rgba(52, 58, 64, 0.5);
    line-height: 50px;
    z-index:1000;
}

.scroll-to-top:focus,
.scroll-to-top:hover {
    color: #fff;
}

.scroll-to-top:hover {
    background: #343a40;
}

.scroll-to-top i {
    font-weight: 800;
}

.feature-heading-wrapper {
    position: relative;
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .feature-heading {
    display: inline-block;
    position: relative;
    font-size: 2.5rem;
    z-index: 2;
    background: white;
    padding: 0 20px;
  }
  
  .feature-heading-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(90deg, rgba(0,123,255,1) 0%, rgba(220,53,69,1) 100%);
    z-index: 1;
    transform: skewY(-6deg);
    transform-origin: bottom left;
  }
  
#neko-animation, #neko-animation2 {
    position: relative;
    width: 300px; /* 画像のサイズに合わせて調整 */
    height: 300px; /* 画像のサイズに合わせて調整 */
    margin: 0 auto; /* 中央揃え */
}

.neko-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none; /* 透明度ではなく、表示/非表示で制御 */
}

.neko-img.active {
    display: block; /* アクティブな画像を表示 */
}

.custom-button {
    display: block; /* ブロックレベル要素として表示 */
    width: 50%; /* 幅を指定 */
    margin: 0 auto; /* 左右のマージンを自動で調整し、中央に配置 */
    background-color: rgb(233, 144, 42); /* 背景色を青色に設定 */
    color: white; /* テキスト色を白に設定 */
    padding: 10px 20px; /* パディングを設定 */
    font-size: larger; /* フォントサイズを大きくする */
    border: none; /* 枠線を非表示にする */
    border-radius: 5px; /* 角を丸める */
}

.custom-button:hover {
    background-color: rgb(185, 132, 62); 
}

#app-pause-notice {
    position: sticky;
    top: 56px; /* ナビゲーションバーの高さに合わせて調整 */
    z-index: 1020; /* 必要に応じてz-indexを設定 */
}
