/** yanakawa add **/

.c-commentList-post .reply {
    display: none;
    visibility: hidden;
}

.comment-respond textarea[id*="comment-"] {
    -webkit-appearance: none;
    background: #fff;
    width: 100%;
}
.comment-respond input[type="submit"][id*="submit-"] {
    -webkit-appearance: none;
    background-color: orange;
    border: none;
    color: #000;
    margin: 1em 0 0;
    padding: .5em 1.5em;
}

.link-btn {
    display: inline-block;
    line-height: 1;
    padding: 18px 1.5em;
    text-decoration: none;
    background-color: var(--color_main);
    color: #fff;
    margin: 10px 0;
}
.link-btn-orange {
    background-color: orange !important;
    color: #000 !important;
}
/* =========== Add Style ========== */
.text-center {
    text-align: center;
}

.reply_comment_item {
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
}
.reply_comment_item_text span {
    width: 60px;
    margin-right: 8px;
    display: inline-block;
}

.star-wrap {
    width: max-content;
    margin: 0 auto;
    position: relative;
    display: inline-flex;
}
.star-label.hidden {
    display: none;
}
.star-label {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
}
@media (min-width: 840px) {
    .star-label {
        width: 3rem;
        height: 3rem;
    }
}

.star-shape {
    background-color: gold;
    width: 80%;
    height: 80%;
    /*star shaped cutout, works  best if it is applied to a square*/
    /* from Clippy @ https://bennettfeely.com/clippy/ */
    clip-path: polygon(
        50% 0%,
        61% 35%,
        98% 35%,
        68% 57%,
        79% 91%,
        50% 70%,
        21% 91%,
        32% 57%,
        2% 35%,
        39% 35%
    );
}

/* make stars *after* the checked radio gray*/
.star:checked + .star-label ~ .star-label .star-shape {
    background-color: lightgray;
}

/*hide away the actual radio inputs*/
.star {
    position: fixed;
    opacity: 0;
    /*top: -90000px;*/
    left: -90000px;
}

/*
.star:focus + .star-label {
    outline: 2px dotted black;
}
*/

.comment-rating p {
    margin: 0 !important;
}
.star-label-text {
    color: gold !important;
    font-size: 1.8rem !important;
}
.star-label-color {
    color: gold !important;
}

.skip-button {
    display: block;
    width: 2rem;
    height: 2rem;
    border-radius: 1rem;
    position: absolute;
    top: -2rem;
    right: -1rem;
    /*transform: translateY(-50%);*/
    text-align: center;
    line-height: 2.3rem;
    font-size: 1.6rem !important;
    background-color: rgba(255, 230, 0, 0.5);
}
.skip-button:hover {
    background-color: rgba(255, 230, 0, 1);
}
.skip-rating:checked ~ .skip-button {
    display: none;
}