@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 CSS */
#reservation-content {
    width: 1200px;
    margin: 0 auto 50px auto;
}
.reservation-content-wrap {
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}
.img-box {
    display: flex;
    gap: 2rem;
    width: 65%;
}
.img-box .promo-img {
    position: relative;
    text-align: center;
}
.img-box .promo-img p {
    position: absolute;
    font-size: 2.4rem;
    font-weight: bold;
    left: 50%;
    transform: translateX(-50%);
}
.img-box .promo-img img {
    width: 100%;
}
.img-box .promo-img:nth-child(1) img {
    background-color: #f5ead7;
}
.img-box .promo-img:nth-child(2) img {
    background-color: #35436c;
}
.reservation-select-wrap {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.5rem;
}
.reservation-select-wrap span {
    margin-bottom: 3rem;
    font-size: var(--font-size-mainText);
    color: var(--font-color-subTitle);
    word-break: keep-all;
    font-weight: 300;
}
#changeImg1 li {
    list-style: none;
}
button {
    width: 100%;
    height: 5rem;
    padding: 1.5rem;
    border: none;
    border-radius: 0.7rem;
    background-color: var(--sub-color-blue);
    line-height: 2.5rem;
    color: #fff;
    font-weight: 600;
    font-size: var(--font-size-subDesc);
    cursor: pointer;
}

/* Select Box Custom CSS */
.selectBox * {
box-sizing: border-box;
}
.selectBox {
position: relative;
width: 100%;
height: 5rem;
border-radius: 7px;
border: 1px solid #333;
background: url('../img/caret-down-solid.png') calc(100% - 1rem) center no-repeat;
background-size: 1.8rem;
cursor: pointer;
margin: 0 auto;
}
.selectBox:after {
content: '';
position: absolute; 
top: 0; 
right: 40px;
width: 1px;
height: 100%; 
background: var(--sub-color-blue);
display: block; 
}
.selectBox .label {
position: relative;
width: inherit;
height: inherit;
padding-right: 45px;
border: 0 none;
outline: 0 none;
background: transparent;
cursor: pointer;
color: #333;
text-align: left;
font-size: var(--font-size-smallText);
font-weight: normal;
display: block;
overflow:hidden;
white-space:nowrap;
text-overflow:ellipsis;
/* display: flex;
align-items: center; */
}
.selectBox2 .label span img {
position: absolute;
width: 20px;
right: 10px;
}
.selectBox .optionList {
position: absolute; 
width: 100%;
max-height: 0;
padding: 1px;
background: #fff;
color: #333;
list-style-type: none;
border-radius: 6px;
overflow: hidden;
border: none;
transition: none;
box-sizing: content-box;
right: -2px;
}
.selectBox.active .optionList {
max-height: 500px;
border: 1px solid #aaa;
z-index: 9999;
}
.selectBox .optionItem {
border-bottom: 1px solid #eee;
padding: 10px 20px 10px;
transition: .1s;
}
.selectBox .optionItem:last-child {
border-bottom: 0 none;
}
.selectBox .optionList::-webkit-scrollbar {
width: 6px;
}
.selectBox .optionList::-webkit-scrollbar-track {
background: transparent;
}
.selectBox .optionList::-webkit-scrollbar-thumb {
background: #303030;
border-radius: 45px;
}
.selectBox .optionList::-webkit-scrollbar-thumb:hover {
background: #303030;
}

@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-content-wrap {
        width: 100%;
    }
    .reservation-select-wrap span {
        margin-bottom: 0;
    }
    .selectBox {
        background: url('../img/caret-down-solid.png') calc(100% - 1.5rem) center no-repeat;
        background-size: 1.8rem;
        }
}

@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 td, .table-mobile th {
        padding: 1rem;
    }
    .table-mobile {
        width: 100%;
        display: block;
    }
    #reservation-content {
        width: 100%;
    }
    .reservation-content-wrap {
        flex-direction: column;
    } 
    .reservation-content-wrap span {
        text-align: center;
        margin-bottom: 0;
    }
    .img-box {
        width: 100%;
    }
    .reservation-select-wrap  {
        width: 100%;
    }   
    .img-box {
        margin-bottom: 3rem;
    }
    .img-box .promo-img p {
        font-size: 2.2rem;
    }
}