article#check .baeImage {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    border-radius: 50%;
    box-shadow: 0 0 10px 5px var(--default-background-color) inset;
}

article#check .write {
    left:16px;
    display:flex;
    flex-direction: column;
    gap: 12px;
    width: calc(100% - 32px);
    padding: 16px 0;
    background: url(../img/ver2/img_hr_pattern_mobile.svg) left bottom repeat-x;
}

article#check .info {
    width: 100%;
    color: var(--default-font-color);
}

article#check .info table {
    width: 100%;
}

article#check .info table thead td {
    padding-bottom: 8px;
    font-size: 0.875rem;
    font-weight: 700;
}

article#check .info table td {
    width: 33%;
    font-size: 0.875rem;
}

article#check .info table td.point {
    padding: 0 0 0 16px;
    background: url(../img/ver2/icon_add_point.svg) left center no-repeat;
}

article#check .comment {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 16px;
}

article#check .comment form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.comment .btn-area {
    display:flex;
    flex-direction:row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.comment .btn-area .dailycheck {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width:fit-content;
    font-size: 0.75rem;
}

.dailycheck .description {
    color: var(--alpha-50);
}

.dailycheck .available,
 .dailycheck .unavailable {
    padding: 4px 6px;
    border-radius: 4px;
}

.dailycheck .unavailable {
    color: var(--alpha-50); /* 수정 */
    background: var(--alpha-5);
    border: 1px solid var(--alpha-5);
}

.dailycheck .available {
    color: var(--point-color);
    background: var(--point-background-color-10);
    border: 1px solid var(--point-background-color-10);
}

article#check .comment input {
    width: 100%;
}

/* 출석체크 목록 */

article#check .checkList {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 0;
}

article#check .checkList .item {
    display: flex;
    flex-direction: row;
    gap: 0;
    width: 100%;
    height: 68px;
    padding-right: 16px;
}

.checkList .item .head {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width:60px;
    height:68px;
    background: url(../img/ver2/img_praynote.svg) left center no-repeat;

}

.checkList .item .head span {
    padding: 4px 6px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--alpha-70);
    background: var(--default-background-color);
    border: 1px solid rgb(0 0 0 / 10%));
    border-radius: 4px;
    box-shadow: 0 1px 0 0 rgb(0 0 0 / 5%));
}

.checkList .item:last-of-type .head span {
    color: var(--default-background-color);
    background: var(--default-font-color);
}

.checkList .item .message-area {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.checkList .item .message-area .author {
    display: flex;
    flex-direction : row;
    align-items: flex-end;
    justify-content: space-between;
    height: 29px;
    padding: 4px 0 8px;
}

.message-area .nickname {
    font-size: 0.875rem;
    font-weight: bold;
}

.message-area .day {
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center;
}

.day .continue {
    font-size: 0.6875rem; /* 1004 수정 */
    font-weight: 400; /* 1104 수정 */
    color: var(--alpha-70);
}

.day .point {
    display: flex;
    flex-direction: row;
    gap: 2px;
    align-items: center;
    font-size: 0.6875rem; /* 1004 수정 */
    font-weight: 400; /* 1104 수정 */
    color: var(--point-color);
}

.message-area .message {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 28px;
    font-size: 0.875rem;
    color: #000000B2;
    word-break: break-all;
    background: #E8F6F7;
    border-radius: 0 1px 1px 0;
    box-shadow: 0 1px 0 0 var(rgb(0 0 0 / 5%));
}

section.btn-area {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: center;
    padding-top: 24px;
}


@media only screen and (max-width: 1199px) {
    article#check .checkList .item .comment {
        padding: unset;
    }

    article#check .baeImage {
        width: 300px;
        height: 300px;
        background-size: 300px 300px;
    }
}

@media only screen and (min-width: 1200px) {
    /* 1004 추가 */
    .day .point,
    .day .continue {
        font-size: 0.75rem;
        font-weight: 400; /* 1104 수정 */
    }

    /* 여기까지 */ 
    article#check .baeImage {
        width: 512px;
        height: 512px;
    }

    article#check .write {
        display: flex;
        flex-direction: row;
        gap : 16px;
        width: 740px;
        padding: 32px 40px 26px;
        margin: 0 auto;
        background: url(../img/ver2/img_hr_pattern_pc.svg) left bottom repeat-x;
    }

    article#check .checkList {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}