@charset "UTF-8";

html {
    scroll-behavior: auto;
}

main {
    display: block;
}

.intro-text {
    display: block;
    margin: 32px auto;
    font-weight: bold;
    font-size: 1.2em;
    width: fit-content;
}

.contact-area {
    display: block;
    max-width: 400px;
    background: #6B6350;
    padding: 16px;
    box-sizing: border-box;
    text-align: center;
    border-radius: 32px;
    color: white;
    font-size: 1.5em;
    font-weight: bold;
    margin: 32px auto;
    transition: .25s;
}

.contact-area:hover {
    opacity: .8;
}

.fv_area {
    background-image: url("reserve.jpg");
}

#nav {
    margin-top: -40px;
}

.cloud_wrapper {
    display: none;
}

/* カレンダー */
.calendar_wrapper {
    /* overflow-x: scroll; */
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-around;
}

.NRCalendar {
    text-align: center;
    width: 100%;
    margin: 32px 0;
    font-size: 18px;
}

@media screen and (min-width: 700px) {
    .NRCalendar {
        width: 45%;
    }
}

.NRCalendar .sun {
    color: red;
}
.NRCalendar .sat {
    color: blue;
}

.calendar_wrapper > * {
    margin: 0 16px;
}

.NRCalendar tr:nth-of-type(2) th {
    padding: 8px 0;
}

.NRCalendar .heading {
    background: #6B6350;
    color: #FFF;
    border-radius: 32px;
    width: fit-content;
    padding: 8px 16px;
    margin: 16px auto;
}

form {
    padding: 16px;
    border: solid 2px white;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    /* max-width: 768px; */
}

.required_marker {
    color: red;
    font-weight: bold;
}

.form_parts_list {
    margin: 0;
}

.form_parts_list .rows {
    padding: 1em 0;
}

.form_parts_list .rows:not(:last-child) {
    border-bottom: dashed 1px gray;
}

.form_parts_list dt {
    font-weight: bold;
}

.form_parts_list dd {
    margin-left: 0;
}

.form_parts_list dd input[type="text"],
.form_parts_list dd input[type="email"],
.form_parts_list dd input[type="tel"],
.form_parts_list dd input[type="number"],
.form_parts_list dd textarea {
    font-size: 16px;
    padding: 4px;
    width: 100%;
    box-sizing: border-box;
}

.submit_btn {
    display: block;
    width: 240px;
    margin: 2em auto;
    box-sizing: border-box;
    border: solid 1px #6B6350;
    background: white;
    text-decoration: none;
    color: black;
    padding: 1em 16px;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    font-family: inherit;
    transition: all .2s;
    border-radius: 5px;
}

.submit_btn:hover {
    background: #6B6350;
    color: white;
}

.fix_btn {
    display: block;
    width: 240px;
    margin: 2em auto;
    box-sizing: border-box;
    border: solid 1px gray;
    background: gray;
    color: white;
    padding: 1em 16px;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    font-family: inherit;
    transition: all .2s;
    border-radius: 5px;
}

.fix_btn:hover {
    opacity: .5;
}

#about_reserve {
    background: #EEEADD;
    padding: 48px 0;
}

#about_reserve .note {
    text-align: left;
    font-weight: bold;
    color: red;
    margin-left: 0;
}