.main-content-wrapper {
    position: relative;

    color: #fff;
    background-color: #0098df;
}
    .main-content-title {
        font-size: 18px;

        position: relative;
        display: inline-block;

        margin-left: 30px;
    }
        .main-content-title::before {
            content: '';
            position: absolute;
            left: -10px;
            top: 14px;

            width: 4px;
            height: 1.2em;

            background-color: #fff;
            transform: translateY(-50%);
            border-radius: 0px;
        }

#main-item-wrapper {
}
    .main-item-category {
    }
        .main-item-head {
            position: relative;
            display: block;

            width: 100%;
            height: 46px;

            padding: 15px 24px;

            background-color: #cceaf8;

            font-weight: 600;
        }

    .main-item-content {
        display: flex;
        flex-direction: column;
        gap: 1px;
        background-color: #ccc;
    }

        .main-item {
            position: relative;
            display: block;

            width: 100%;
            min-height: 46px;

            padding: 15px 52px 15px 24px;
        }
        .main-item-content .main-item:nth-of-type(odd),
        .recruit-genre-list > .main-item:nth-of-type(odd),
        .recruit-popular-list > .main-item:nth-of-type(odd) {
            background-color: #fff;
        }
        .main-item-content .main-item:nth-of-type(even),
        .recruit-genre-list > .main-item:nth-of-type(even),
        .recruit-popular-list > .main-item:nth-of-type(even) {
            background-color: #f3fbff;
        }
            .main-item-title {
                position: relative;
                display: flex;
                font-size: 14px;
            }
                .main-item-title a {
                    color: inherit;
                }

                .main-item-title-tooltip-wrapper {
                    position: relative;
                    display: flex;
                    flex-direction: column;
                    padding-left: 5px;
                }
                    .main-item-title-tooltip-icon {
                        position: absolute;
                        top: 5px;
                        width: 11px;
                        aspect-ratio: 1;
                        opacity: 0.8;
                        cursor: pointer;
                    }
            .main-item-right-arrow {
                position: absolute;
                top: 50%;
                right: 22px;

                color: #0098df;
                font-size: 18px;
                font-weight: 700;
                line-height: 1;

                transform: translateY(-50%);
            }

.recruit-genre-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background-color: #ccc;
}

.recruit-popular-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background-color: #ccc;
}

.recruit-kodawari-list {
    display: flex;
    flex-direction: column;
    background-color: #fff;
}
    .main-item-toggle {
        cursor: pointer;
        border-bottom: 1px solid #cfcfcf;
    }
    .main-item-toggle[checked] {
        background-color: #cceaf8;
    }
    .main-item-toggle:last-child {
        border-bottom: 0px;
    }
        .main-item-toggle .main-item-category {
            position: relative;
            display: block;

            width: 100%;
            height: 46px;

            padding: 15px 24px;

            font-weight: 600;
        }
            .main-item-category-title {
                display: block;
                font-size: 14px;
            }
            .main-item-category-right-arrow {
                position: absolute;
                top: 12px;
                right: 22px;

                color: #0098df;
                font-size: 20px;
                font-weight: 700;
                line-height: 1;
            }
                .icon-collapse {
                    display: none;
                }
                .main-item-toggle[checked] .icon-collapse {
                    display: block;
                }

                .icon-expand {
                    display: block;
                }
                .main-item-toggle[checked] .icon-expand {
                    display: none;
                }
        .main-item-toggle .main-item-content {
            display: none;
            border-top: 1px solid #ccc;
        }
        .main-item-toggle[checked] .main-item-content {
            display: flex;
        }

.tippy-box {
    font-size: 14px;
    line-height: 1.5;
    padding: 10px 12px;
    border-radius: 10px;
    max-width: 520px;
    white-space: normal;

    overflow-wrap: break-word;
    word-break: keep-all;
}
