#main .second_guide {
    padding-bottom: 60px;
    border-bottom: 1px dashed #ccc;
    .summary {
        margin: 20px 0;
        > p {
            margin: 0;
            line-height: 1.7;
        }
    }

    .accept {
        display: flex;
        justify-content: center;
        gap: 0 20px;
        --primary-color: #003E9F;
        .button {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            width: 240px;
            height: 50px;
            text-align: center;
            border: 1px solid var(--primary-color);
            border-radius: 5px;
            text-decoration: none;
            color: var(--primary-color);
            font-weight: 700;
            &:hover {
                background-color: var(--primary-color);
                color: white;
            }
            span {
                font-size: 12px;
            }
        }
        &.over_deadline {
            .button {
                pointer-events: none;
                opacity: .5;
            }
        }
    }

    .limit {
        margin: 20px 0 0;
        text-align: center;
        color: #555;
        strong {
            display: block;
            margin-top: 5px;
            color: #c00;
        }
    }

    .members_second_guide {
        margin: 30px 0 0;
        padding: 10px 15px;
        border-radius: 4px;
        background: #f8eaba;
        .common + .personal {
            margin-top: 1.4em;
        }
        .schedule {
            display: flex;
            justify-content: center;
            margin: 30px 0 0;
            p {
                border: 1px solid #cfcfba;
                border-radius: 3px;
                background-color: rgba(255, 255, 255, 0.7);
                padding: 10px 20px;
                color: #3f3e0c;
                line-height: 1;
                font-size: 13px;
                text-align: center;
                span {
                    font-weight: 700;
                    font-size: 20px;
                    font-feature-settings: "palt";
                }
                span.title {
                    display: block;
                    margin: 6px 0;
                    line-height: 1.3;
                    font-size: 13px;
                    text-align: left;
                }
                span.jst, span.utc {
                    display: block;
                    margin: 10px 0;
                    font-size: 18px;
                }
            }
        }
        .confirm {
            margin: 20px 0 15px;
            display: flex;
            justify-content: center;
            flex-direction: column;
            align-items: center;
            p {
                margin: 10px 0 15px;
                font-size: 14px;
            }
            button {
                display: block;
                border: none;
                border-radius: 40px;
                padding: 10px 20px;
                cursor: pointer;
                background-color: #003E9F;
                color: white;
                font-weight: 700;
                &:hover {
                    background-color: #185cc8;
                }
                &[disabled] {
                    background-color: #eee;
                    cursor: not-allowed;
                    color: #666;
                    border: 1px solid #ccc;
                }
            }
            .done {
                margin: 10px 0 0;
                font-size: 13px;
                color: #666;
            }
        }
    }
}
