@charset "UTF-8";

#box1 + * .heading, #box2 + * .heading {
    margin: 0;
}
#box1 + * .wrapper_item, #box2 + * .wrapper_item {
    display: none;
    margin-bottom: 20px;
    padding: 0 0 0 30px;
}
#box1 + * .heading .h, #box2 + * .heading .h {
    position: relative;
    color: var(--i_txt_color);
    display: inline-block;
    margin: 0;
    padding-left: 30px;
    cursor: pointer;
    transition: all 0.3s;
}
#box1 + * .heading .h:before, #box2 + * .heading .h:before {
    content: "＋";
    position: absolute;
    left: 0;
    font-weight: bold;
}
#box1 + * .heading .h:hover, #box2 + * .heading .h:hover {
    opacity: 0.6;
}
#box1 + * .heading .h.active:before, #box2 + * .heading .h.active:before {
    content: "－";
}