#mainVisual .slider_slide_text_desc {
    left: 20vw;
}

.filter-box {
    padding: 0 20vw 10vw 20vw;
}

.filter-section {
    margin-bottom: 3em;
}

.filter-title {
    border-right: solid 2px #666666;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
}

.filter-options-inner {
    padding-left: 2em;
    font-size: 18px;
}

#filterButton {
    cursor: pointer;
    margin-left: 40px;
}

.custom-radio {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    cursor: pointer;
    margin-right: 20px;
}

.custom-radio input[type="radio"] {
    appearance: none;
    /* デフォルトのラジオボタンスタイルを消す */
    position: absolute;
    opacity: 0;
    /* 非表示にしてカスタムの見た目にする */
}

.custom-radio .radio-mark {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 1px solid #333;
    border-radius: 50%;
    margin-right: 3px;
    position: relative;
}

.custom-radio input[type="radio"]:checked+.radio-mark::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #333;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.custom-checkbox {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    cursor: pointer;
    margin-right: 20px;
}

.custom-checkbox input[type="checkbox"] {
    appearance: none;
    /* デフォルトのチェックボックススタイルを消す */
    position: absolute;
    opacity: 0;
    /* 非表示にしてカスタムの見た目にする */
}

.custom-checkbox .checkbox-mark {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 1px solid #333;
    border-radius: 2px;
    margin-right: 3px;
    position: relative;
}

.custom-checkbox input[type="checkbox"]:checked+.checkbox-mark::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background-color: #333;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 1px;
}

/* example-list */
#example-list .headerBlock01 {
    display: block;
}

#example-list .headMod01-main {
    font-size: 28px;
}

.about-contents {
    padding: 0;
}

.example-items-container {
    margin: 0 -30px;
}

.example-item-wrap {
    padding: 40px 30px;
}

.item-image-box {
    position: relative;
    width: 100%;
    padding-bottom: 57.14%;
    overflow: hidden;
}

.item-image-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.title-a {
    text-decoration: none;
    color: #333;
    font-size: 20px;
}

.title-a:hover {
    color: #333;
}

.tags-list {
    font-size: 15px;
    min-height: 60px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    font-family: Arial, sans-serif;
}

.pagination a,
.pagination strong {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid #ccc;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    transition: background-color 0.3s;
}

.pagination .page:hover {
    background-color: #8a8a8a;
    color: #fff;
    text-decoration: none;
}

.pagination .active {
    background-color: #888;
    color: white;
    border: none;
}

.pagination .prev,
.pagination .next {
    font-weight: bold;
}

.pagination .prev:hover,
.pagination .next:hover {
    background-color: #8a8a8a;
    color: #fff;
    text-decoration: none;
}

.div-hr {
    width: 100%;
    border-bottom: solid 1px #5A5A61;
    padding-top: 3em;
    margin-bottom: 5em;
}

.sp {
    display: none;
}

.pc {
    display: block;
}

.matter-title {
    width: 100%;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .filter-box {
        padding: 40px 10vw 10vw 10vw;
    }
}

@media screen and (max-width: 767px) {
    .filter-box {
        padding: 30px 30px 30px 30px;
    }

    .filter-options-inner {
        padding: 10px 0 0 0;
    }

    .filter-title {
        border: none;
    }

    .filter-section {
        margin: 0;
    }

    .service-info-wrap {
        text-align: right;
    }

    .service-button:after {
        top: -3px;
    }

    #example-list .headMod01-main {
        font-size: 20px;
    }

    #message .service-info-wrap {
        padding: 0px 10px 30px 30px;
    }

    .service-info-wrap {
        text-align: left;
        padding-left: 0;
    }

    .button-text-wrap {
        position: relative;
        top: -4px;
        display: inline;
    }

    .sp {
        display: block;
    }

    .pc {
        display: none;
    }

}