/* サイドバーのデザイン */
.sidebar {
    border: 3px solid rgba(211, 220, 50, 0.6);
    background-color: #fafafa;
    max-width: 280px;
    height: 100%;
    padding: 15px;
    line-height: 1.8;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sidebar h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    border-bottom: 2px solid #d3dc32;
    padding-bottom: 5px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin-bottom: 8px;
}

.sidebar select {
    width: 100%;
    padding: 5px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
}

/* レスポンシブ対応 */
@media screen and (max-width: 430px) {
    .sidebar {
        width: 100%;
        max-width: 87%;
        margin: 10px auto;
        text-align: center;
    }
    .sidebar select {
        font-size: 16px;
    }
}
