
body {
    font-family: Arial, sans-serif;
}

.navbar {
    margin-bottom: 20px;
}

h1 {
    color: #4CAF50;
    text-align: center;
}

.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
}


@keyframes backgroundAnimation {
    0% {
        background-color: #00d1b2; /* 初期色 */
    }
    50% {
        background-color: #3273dc; /* 中間色 */
    }
    100% {
        background-color: #00d1b2; /* 最終色 */
    }
}

.animated-background {
    animation: backgroundAnimation 20s infinite; /* アニメーションを5秒で無限に繰り返す */
}

/* パララックス効果の例 */
.parallax {
    background-image: url('path/to/your/image.jpg'); /* 背景画像のパス */
    height: 100vh; /* 高さを画面全体に */
    background-attachment: fixed; /* パララックス効果 */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.column.is-2 {
  height: 100vh; /* 画面全体の高さに合わせる */
  display: flex;
  flex-direction: column;
}

.menu {
    background-color: #fff; /* 背景色 */
    border-right: 1px solid #ddd; /* 右の境界線 */
    padding: 20px; /* パディング */
    flex-grow: 1; /* メニューを縦いっぱいに広げる */
    overflow-y: auto; /* リストが多くてもスクロール可能にする */
}

/* メニューラベルのスタイル */
.menu-label {
    font-weight: bold; /* 太字 */
    color: #3273dc; /* テキスト色 */
}

/* メニューリストのリンクスタイル */
.menu-list a {
    color: #4a4a4a; /* リンクのテキスト色 */
    padding: 10px; /* パディング */
    border-radius: 4px; /* 角を丸くする */
    transition: background-color 0.3s; /* ホバー時の背景色変更のトランジション */
}

/* ホバー時のスタイル */
.menu-list a:hover {
    background-color: none;
    color: #3273dc; 
    font-weight: bold;
}


.left-aligned-underlined {
    text-align: left; /* 左揃え */
    border-bottom: 1px solid #e4e4e4; /* 下線を引く */
    padding-bottom: 10px; /* 下線とテキストの間に余白を追加 */
    margin-bottom: 30px;
}
