@charset "UTF-8";
/* 予約フォームCSS */
.flatpickr-calendar.inline{
    width: 60%;
    margin: 0 auto;
    max-height: 100%;
    .flatpickr-months{
        height: 2rem;
        align-items: center;
        font-size: 1.5rem;
        .flatpickr-month{
            position: static;
            height: 100%;
        }
       
    }
    .flatpickr-innerContainer{
        .flatpickr-rContainer{
            width: 100%;
            margin-top: 50px;
            .flatpickr-days{
                width: 100%;
                display: block;
                .dayContainer{
                    width: 100%;
                    max-width: 100%;
                    min-width: 100%;
                    .flatpickr-day{
                        max-width: 100%;
                        height: 100%;
                        font-size: 2rem;
                        line-height: 5rem;
                    }
                }
            }
        }
    }
}
#step1{
    p{
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.2rem;
    }
}
.nextbtn{
    display: inline-block;
    padding: 5px 50px 5px 25px;
    border-radius: 40px;
    position: relative;
    left: 45%;
    background-color: #ffe51d;
    margin-top: 80px;
    p{
        button{
            background-color: #ffe51c;
            border: none;
            display: flex;
            font-size: 1rem;
            text-align: center;
            gap: 20px;
            padding-left: 50px;
        }
    }
    img{
        width: 16px;
        right: 18px;
    }
}
.textbox{
     height: 100%;
     p{
        line-height: 1.45em;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        font-size: 1.2rem;
        width: 60%;
        margin: 0 auto 30px auto;
            .wpcf7-form-control{
                width: 100%;
                height: 50px;
                border-radius: 10px;
                border: 0.2px solid;
                margin: 10px auto 10px auto; 
            }
    }
}
.fileup{
    margin: 0 auto 80px auto;
    font-size: 1.2rem;
    width: 60%;
    p{
        margin-bottom: 10px;
    }
}
.submitbtn{
    width: 100%;
    p{
        display: flex;
        justify-content: center;
        flex-direction: column;
        .wpcf7-submit{
                width: 25%;
                margin: 0 auto;
                height: 50px;
                font-size: 1.2rem;
                border-radius: 40px;
                border: none;
                background-color: #ffffff;
                transition: background-color 0.5s ease;
        }
        .wpcf7-submit:hover {
        background-color: #0b198c;
        color: #fff;
        }
    }
    .wpcf7-spinner{
        margin: 0 auto;
    }
}
