@import url('/css/reset.css');
@import url('https://webfontworld.github.io/ChosunNm/ChosunNm.css');

body {
    font-family: 'Noto Sans KR', sans-serif;
}
#wrap {
    margin: 10rem 0 10rem 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
}
#reservation-notice-content {
    width: 1200px;
    margin: 0 auto;
}
.notice{
    position: relative;
    width: 100%;
    padding: 4rem;
    margin: 0  auto 30px auto;
    background-color: var(--bg-color-gray);
    border-radius: 5px;
}
.notice-text {
    margin: 0  auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 2rem;
}
.notice-text h2 {
    font-size: var(--font-size-subTitle);
}
.notice-text .line {
    width: 100%;
    height: 2px;
    margin: 0 auto;
    background-color: var(--sub-color-blue);
}
.notice-text ul li {
    margin-left: 20px;
    font-size: var(--font-size-smallText);
    line-height: 2.5rem;
    word-break: keep-all;
    list-style: disc;
}
.notice-text ul li::marker {
    color: var(--sub-color-blue);
}
table th {
    padding: 1.5rem;
    background-color: var(--sub-color-blue);
    color: #fff;
    word-break: keep-all;
}
.table {
    width: 1200px;
    border-collapse: collapse;
}
table td {
    padding: 1.5rem;
    text-align: center;
    background-color: #fff;
    word-break: keep-all;
}
.table-mobile {
    display: none;
}
#reservation-content {
    width: 1200px;
    margin: 50px auto 0 auto;
}
.reservation-content-wrap {
    width: 100%;
    margin: 0 auto;
}
.reservation-content-wrap {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.reservation {
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}
.reservation-box {
    width: 50%;
    border-radius: 20px;
    box-shadow: 5px 5px 10px 5px rgba(0, 0, 0, 0.1);
}
.reservation-box img {
    width: 100%;
    border-radius: 20px 20px 0 0;
    cursor: pointer;
}
.reservation-box .reservation-txt {
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.reservation-box .reservation-txt h4 {
    display: inline-block;
    width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1; 
    -webkit-box-orient: vertical;

    font-size: var(--font-size-subDesc);
    font-weight: 600;
    color: var(--font-color-subTitle);
}
.reservation-box .reservation-txt span {
    font-size: var(--font-size-mainText);
    color: var(--font-color-subDesc);
}

@media all and (max-width:1024px) {
    #wrap {
        width: 100%;
        padding: 0 3rem;
    }
    #reservation-notice-content  {
        width: 100%;
    }
    .notice {
        width: 100%;
    }
    .table-pc {
        width: 100%;
    }
    #reservation-content {
        width: 100%;
    }
    .reservation {
        width: 100%;    
    }
    .reservation-box {
        width: 100%;
    }
}


@media all and (max-width:768px) {
    #wrap {
        width: 100%;
        padding: 0 3rem;
    }
    #reservation-notice-content  {
        width: 100%;
    }
    .notice {
        width: 100%;
    }
    .table-pc {
        display: none;
    }
    table {
        width: 100%;
    }
    .table-mobile {
        width: 100%;
        display: block;
    }
    #reservation-content {
        width: 100%;
    }
    .reservation {
        width: 100%;
        flex-direction: column;
    }
    .reservation-box {
        width: 100%;
    }
    
}