.reservation-contents input[type=radio]{
    display: none;
}
.reservation-contents input[type="radio"] + label span {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin: -2px 5px 0 0;
    vertical-align: middle;
    cursor: pointer;
    background-size: cover;
}
.reservation-contents input[type="radio"]:checked + label span {
    background-size: cover;
}
.reservation-form  {
    display: flex;
}
.inputbox .inputinner-time {
    line-height: 1.0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.inputinner-time .count {
    margin-top: 5px;
    font-style: normal;
    display: block;
}
.reservation-wrap{
}
.reservation-tit{
    text-align: center;
    margin-top: 100px;
    margin-bottom: 50px;
}
.reservation-tit p{
    font-size: 18px;
    font-weight: 400;
}
.reservation-tit h1{
    font-size: 45px;
    font-weight: 700;
}
.reservation-tit h1 span{
    color: #2889e5;
}
.reservation-tab{
    margin-bottom: 50px;
}
.reservation-tab ul{
    text-align: center;
    margin: 0 auto;
}
.reservation-tab ul li{
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    line-height: 40px;
    color: #aaa;
    margin: 0 20px;
}
.reservation-tab ul li.reservation-active{
    border-bottom: 1px solid #2889e5;
    color: #2889e5;
}
.reservation-contents{
    max-width: 800px;
    width: 100%;
    border-radius: 15px;
    border: 1px solid #efefef;
    padding: 50px;
    margin: 0 auto 100px;
}
.reservation-contents h4{
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
}
.reservation-contents p.reservation-center{
    text-align: center;
}
.reservation-div{
    width: 100%;
    margin-bottom: 30px;
}
.reservation-div h6{
    position: relative;
    font-size: 20px;
    font-weight: 700;
    padding-left: 10px;
    margin-bottom: 10px;
}
.reservation-div h6::before{
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    border-radius: 1px;
    background-color: #fd9a2c;
}
.reservation-form .inputbox{
    float: left;
    height: 70px;
    margin-right: 10px;
}
.reservation-form .inputbox:last-child{
    margin-right: 0;
}
.type-01 .inputbox{
    width: calc(50% - 5px);
}
.inputbox .inputinner{
    cursor: pointer;
    text-align: center;
    width: 100%;
    height: 70px;
    font-weight: 500;
    line-height: 70px;
    border-radius: 10px;
    background-color: #fafafa;
    margin-right: 10px;
}
.inputbox input:checked+ .inputinner {
    color: white;
    background-color: #fd9a2c;
}
.type-02 .inputbox{
    width: calc((100% - 20px)/3);
}
.type-03 .inputbox{
    width: calc((100% - 30px)/4);
}
.reservation-input select,
.reservation-input input{
    width: 300px;
    height: 60px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding-left: 20px;
}
.input-people input{
    width: 60px;
}
.input-people button{
    display: none;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    border: 0;
}
.input-auto input{
    color: #ccc;
    border-color: #eee;
    background-color: #eee;
}
.input-radio{
    float: left;
    margin-right: 30px;
}
input[type="radio"] + label{
    position: relative;
}
input[type="radio"] + label span{
    width: 24px;
    height: 24px;
    border: 1px solid #ddd;
    border-radius: 12px;
}
input[type="radio"] + label span em{
    display: block;
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background-color: #ddd;
    margin: 5px;
}
input[type="radio"]:checked + label span {
    border: 1px solid #fd9a2c;
}
input[type="radio"]:checked + label span em{
    background-color: #fd9a2c;
}
.reservation-div p{
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px;
    background-color: #fafafa;
    padding: 30px;
    margin-bottom: 20px;
}
.reservation-btn{
    text-align: center;
    margin: 20px 0 auto;
}
.reservation-btn .apply-btn{
    background-color: #fd9a2c;
    margin-top: 50px;
}
.reservation-btn .final-btn{
    background-color: #333333;
}
.reservation-btn button{
    width: 300px;
    height: 60px;
    font-size: 18px;
    line-height: 60px;
    border: 0;
    border-radius: 10px;
    color: white;
    background-color: #2889e5;
}
.reservation-check p{
    font-size: 18px;
    color: #999;
    padding: 20px;
}
.reservation-check-btn button{
    width: 30%;
    margin: 0 3px;
}
.reservation-list{
    border-top: 1px solid #efefef;
}
.reservation-item{
    position: relative;
    border-bottom: 1px solid #efefef;
    padding: 20px
}
.reservation-item h5{
    font-size: 22px;
}
.reservation-item p .r-date{
    font-weight: 500;
}
.reservation-item button{
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 120px;
    height: 50px;
    border: 0;
    border-radius: 5px;
    color: white;
    background-color: #fd9a2c;
}

@media screen and (max-width: 768px) {
    .reservation-tit {
        margin-top: 50px;
        margin-bottom: 10px;
    }
    .reservation-tit h1 {
        font-size: 35px;
    }
    .reservation-tab {
        margin-bottom: 30px;
    }
    .reservation-tab ul li {
        font-size: 16px;
        letter-spacing: -.05em;
        margin: 0 5px;
    }
    .reservation-contents {
        border: 0;
        padding: 0;
        margin: 0 auto 50px;
    }
    .reservation-contents h4 {
        display: none;
        font-size: 26px;
        border-bottom: 2px solid #333;
        margin-bottom: 10px;
    }
    .reservation-div {
        margin-bottom: 15px;
    }
    .reservation-div h6 {
        font-size: 18px;
        margin-bottom: 5px;
    }
    .reservation-form .inputbox{
        height: 50px;
    }
    .inputbox .inputinner {
        height: 50px;
        font-size: 14px;
        line-height: 50px;
    }
    .input-people input {
        width: 50px;
    }
    .reservation-input input {
        height: 50px;
        padding-left: 18px;
    }
    .input-people button {
        width: 50px;
        height: 50px;
    }
    .reservation-div p {
        padding: 15px 20px;
        margin-bottom: 15px;
    }
    .reservation-item h5{
        font-size: 20px;
        margin-bottom: 5px;
    }
    .reservation-item button{
        transform: unset;
        width: auto;
        height: auto;
        font-size: 14px;
        padding: 5px 20px;
        margin: 0 auto;
    }
}