body {
    font-size: 15px;
}

.font-small {
    font-size: 0.9em !important;
}

.table-responsive {
    overflow-x: auto;
}

.styled-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    font-family: sans-serif;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.styled-table thead tr {
    background-color: #009879;
    color: #ffffff;
    text-align: left;
}

.styled-table thead tr .blue-banner {
    background-color: #50b2eb;
    color: #ffffff;
    text-align: left;
}

.styled-table th,
.styled-table td {
    padding: 12px 15px;
}

.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #009879;
}

.styled-table tbody tr.active-row {
    font-weight: bold;
    color: #009879;
}

.styled-table tbody tr:hover {
    background-color: #f1f1f1;
}

.center {
    text-align: center;
}

.thead-contents {
    width: 275px;
}

.thead-knowledge-contents {
    width: 300px;
}

/* tooltip */
.tooltip { /* 補足説明するテキストのスタイル */
    position: relative;
    cursor: pointer;
    padding: 0 5px;
    font-size: 1em;
    color: #4682b4;
}

.description_top { /* ツールチップのスタイル */
    width: 200px; /* 横幅 */
    position: absolute;
    left: 50%;
    bottom: 80%; /* Y軸の位置 */
    transform: translateX(-50%);
    margin-bottom: 8px; /* テキストとの距離 */
    padding: 8px;
    border-radius: 10px; /* 角の丸み */
    background-color: #666;
    font-size: 0.9em;
    color: #fff;
    text-align: center;
    visibility: hidden; /* ツールチップを非表示に */
    opacity: 0; /* 不透明度を0％に */
    z-index: 1;
    transition: 0.5s all; /* マウスオーバー時のアニメーション速度 */
}

.tooltip:hover .description_top { /* マウスオーバー時のスタイル */
    bottom: 100%; /* Y軸の位置 */
    visibility: visible; /* ツールチップを表示 */
    opacity: 1; /* 不透明度を100％に */
}
/* tooltip */

/* Page Top */
#scrollTopBtn {
    position: fixed; /* ページに対して固定位置 */
    bottom: 20px; /* 下から20pxの位置 */
    right: 20px; /* 右から20pxの位置 */
    padding: 10px 20px;
    background-color: #007bff; /* プライマリーカラー */
    color: #ffffff; /* 文字色 */
    border: none; /* 枠線なし */
    border-radius: 5px; /* 角丸のデザイン */
    cursor: pointer; /* カーソルを指に */
    opacity: 0; /* 初期状態では透明 */
    visibility: hidden; /* 見えない状態 */
    transition: opacity 0.3s, visibility 0.3s; /* 透明度と可視性の変化を滑らかに */
}

#scrollTopBtn:hover {
    background-color: #0056b3; /* ホバー時の背景色を少し暗く */
}
/* Page Top */

.noactiveListStyle {
    list-style: none;
}

.activeListStyle {
    list-style-type: disc;
    list-style-position: outside;
    list-style-image: none;
}