/* 特定のメニュー項目の背景を変更 */
.menu-highlight {
    background-color: #f13704; /* 好きな背景色（例：赤） */
    border-radius: 5px;       /* 角を丸くする場合 */
}

/* 文字の色や余白の調整 */
.menu-highlight a {
    color: #ffffff !important; /* 文字を白にする */
    padding: 4px 16px !important; /* 上下左右の余白 */
    display: inline-block;
}

/* ホバー（マウスを乗せた時）の色 */
.menu-highlight:hover {
    background-color: #cc0000; /* 少し暗い赤に */
}

.grade-bg {
    background: linear-gradient(90deg, #0693E3 0%, #14276D 100%) !important;
    color: #ffffff !important;
    display: inline-block !important;
    width: 400px !important;
    min-width: 400px !important;
    padding: 10px 20px !important;
    box-sizing: border-box !important;
}

/* Kadenceのスタイリッシュなカード型ボタン */

.stylish-card .kt-button {
    background-color: #ffffff !important;
    color: #14276D !important;
    border: 1px solid #e0e0e0 !important;
    border-left: 5px solid #0693E3 !important;
    padding: 20px 25px !important; /* 左右の余白を少し広めに */
    display: flex !important;
    justify-content: space-between !important; /* 文字とアイコンを左右に離す */
    align-items: center;
    border-radius: 4px !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05) !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    text-decoration: none !important;
    font-weight: bold !important;
font-size: 20px !important;
}



/* ホバー（マウスを乗せた時）の動き */
.stylish-card .kt-button:hover {
    background-color: #fcfcfc !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1) !important;
    border-color: #0693E3 !important;
}



/* クラス名を stylish-button に統一 */
.stylish-button .kt-button {
    background-color: #ffffff !important;
    color: #14276D !important;
    /* 左側の青いバーを消して、全辺同じ細い枠線に */
    border: 1px solid #e0e0e0 !important; 
    padding: 20px 25px !important;
    display: flex !important;
    /* space-betweenからcenterに変えて、文字を中央に配置 */
    justify-content: center !important; 
    align-items: center;
    border-radius: 4px !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05) !important;
    transition: all 0.3s ease !important;
    width: 60% !important;
    text-decoration: none !important;
    font-weight: bold !important;
    font-size: 20px !important;
}

/* ホバー（マウスを乗せた時）の動き */
.stylish-button .kt-button:hover {
    background-color: #fcfcfc !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1) !important;
    /* ホバー時も枠線が青くならないように固定（お好みで調整） */
    border-color: #d0d0d0 !important;
}