/* コメント */
#product .comments {
    display: none;
    height: 100%;
    /* float: right; */
}
.comment_container {
    height: 100%;
    margin: 0 1em;
}
.comment_item_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.comment_item_header p {
    margin: 0.3em;
}
.comment_textarea {
    color: var(--content-color);
}
.comment_content {
    color: var(--content-color);
    /* white-space: pre-wrap;
    word-break: break-all; */
    margin-top: 0.5em;
    word-break: break-all;
}
.comment_item {
    /* background-color: #fdfef0; */
    padding: 1.5em 1em;
    border-radius: 5px;
    margin-top: 1em;
    position: relative;
    /* border: 1px solid #eee; */
    border: 1px solid rgba(var(--main-color-rgb), 0.3);
    box-shadow: 0 0 2px rgba(var(--main-color-rgb), 0.7);
}
.comment_form {
    margin-bottom: 2em;
    border: 1px solid rgba(var(--main-color-rgb), 0.3);
}
.comment_help_button {
    position: absolute;
    top: 0.5em;
    right: 15px;
}
.user_name {
    cursor: pointer;
    color: var(--main-color);
    font-size: 1.1em;
    text-shadow: 0 0 1px #13ffa9;
}
.comment_operate_button {
    display: flex;
    position: absolute;
    top: 3px;
    right: 2px;
    font-size: 13px;
    color: var(--main-color);
    align-items: center;
    cursor: pointer;
    opacity: 0.7;
}
.comment_operate_button:active, .comment_operate_button:hover {
    opacity: 1;
}
.comment_operate_menu {
    position: absolute;
    top: 32px;
    right: -4px;
    list-style: none;
    padding: 0 0.5em 0.5em 0.5em;
    margin: 0;
    display: flex;
    flex-direction: column;
    row-gap: 4px;
}
.comment_operate_menu li, .comment_operate_menu button {
    width: 100%;
    height: 2em !important;
}
.comment_operate_menu i {
    margin-right: 3px;
}

/* 返信 */
.bottom_menu {
    display: flex;
    justify-content: space-between;
    margin-top: 1em;
}
.comment_reply_button {
    display: block;
    background-color: inherit;
    border: none;
    color: var(--main-color);
    cursor: pointer;
    text-decoration: underline;
}
.comment_reply_container {
    margin: 0.25em 0 1.5em 1em;
    padding: 0.5em 0.25em 0.5em 1em;
    border-left: 1px solid var(--main-color);
    /* background-color: #fdfefd; */

    & .comment_form {
        margin-bottom: 0;
    }
}

#product .comment_active {
    width: 60% !important;
}
#product .no_active {
    /* 何も指定しない */
    width: 40% !important;
}

@media (max-width: 1024px) {
    #product .comment_active {
        width: 100% !important;
    }
    #product .no_active {
        display: none;
    }
    .comment_item {
        font-size: 1.05em;
    }
}