:root {
    --sub-color: #ff5283;
    --sub-hover-color: #bf1948;
    --theme-color: #3a5e98;
    --loading-text-color: #000;
}

.list-wrap {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: li_count;
}

.list {
    padding: 10px;
    margin-bottom: 5px;
    font-size: 30px;
}

.list:before {
    counter-increment: li_count;
    content: counter(li_count)".";
    color: #F44336;
    margin-right: 5px;
}

.box {
    padding-top: 50px;
    max-width: 500px;
}

.title {
    font-size: 25px;
}

.description {
    font-size: 20px;
}

.image {
    width: 100%;
}

.description,
.image {
    padding-left: 35px;
}

.tyuigaki {
    padding-top: 50px;
    padding-left: 20px;
    padding-bottom: 10px;
}

.youtubebox {
    width: 100%;
    padding: 20px;
}

.splide__slide iframe {
    margin-left: 2px;
    margin-right: 2px;
    height: 300px;
    width: 80%;
}

/* スクロールバー全体のスタイル */
::-webkit-scrollbar {
    width: 12px; /* 横スクロールバーの幅 */
    height: 12px; /* 縦スクロールバーの高さ */
}

/* スクロールバーのスライダー部分 */
::-webkit-scrollbar-thumb {
    background-color: var(--theme-color); /* スライダーの色 */
    border-radius: 6px; /* 角丸の半径 */
    border: 3px solid transparent; /* スライダー周りのスペース */
    background-clip: content-box; /* スライダーの内側だけ色を適用 */
}

/* スクロールバーの背景 */
::-webkit-scrollbar-track {
    background: #f0f0f0; /* 背景の色 */
    border-radius: 6px; /* 背景も角丸に */
}

body {
    background-color: #fff !important;
}

body.dark{
    background-color: #202124 !important;
}


