@charset "utf-8";
/* CSS Document */

.workshop-box {
    .workshop-box_title {
        background: var(--color-green-light);
        margin-bottom: 25px;
        padding: 8px 10px 10px 40px;
        font-size: 2.0rem;
        font-weight: bold;
        color: var(--color-main);
        position: relative;
        cursor: pointer;
        @media (width <= 999px) {
            font-size: 1.8rem;
        }
        &::before {
            font-family: var(--fa);
            font-weight: 900;
            content: "\2b";
            position: absolute;
            top: 9px;
            left: 15px;
        }
        &.active {
            &::before {
                content: "\f068";
            }
        }
    }
    .workshop-box_content {
        margin-bottom: 50px;
        display: none;
    }
}