@charset "UTF-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scrollbar-width: auto;
    scrollbar-color: rgba(152, 57, 255, 0.5) white;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

body {
    background-image: url('../../public/assets/富士山2.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
}

header {
    position: sticky;
    top: 0;
    background-color: white;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 6px -6px #777;
    flex-wrap: wrap;
}
header a.logo {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    text-decoration: none;
}
header a.logo h1 {
    font-size: 2.5rem;
    color: black;
}
header a.logo img {
    width: 6rem;
    height: 6rem;
}
header nav {
    flex: 5 1 500px;
}
header nav ul {
    display: flex;
    list-style-type: none;
    justify-content: space-around;
    align-items: center;
}
header nav ul li a {
    color: black;
    text-decoration: none;
    font-size: 1.35rem;
    transition: all 0.2s ease;
    padding-bottom: 0.3rem;
}
header nav ul li a:hover {
    color: rgba(152, 57, 255, 0.5);
    border-bottom: 3px solid rgba(152, 57, 255, 0.5);
}

footer {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    align-items: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.3);
}
footer section.logo {
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
footer section.logo img {
    width: 6rem;
    height: 6rem;
}
footer section.logo h3 {
    font-size: 2.5rem;
}
footer section.links {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
footer section.links a {
    margin: 1rem;
}
footer section.links a img {
    width: 4rem;
}

@media screen and (max-width: 1120px) {
    header {
        flex-direction: column;
    }
    header a.logo {
        flex: 1;
    }
    header nav {
        flex: 1;
        width: 100%;
        margin-bottom: 1rem;
    }
}
@media screen and (max-width: 680px) {
    header {
        position: static;
    }
    header a.logo {
        flex-direction: column;
        border-bottom: 1px solid black;
        margin-bottom: 0.5rem;
    }
    header a.logo h1 {
        font-size: 2rem;
        color: black;
    }
    header nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}
.form-container {
    padding: 2.5rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-title {
    text-align: center;
    font-size: 2rem;
    color: rgba(152, 57, 255, 0.5);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.form-instructions {
    text-align: center;
    color: #8a4be5;
    background-color: rgba(152, 57, 255, 0.09);
    border-left: 4px solid #9839ff;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    border-radius: 6px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #6d36b8;
    font-weight: 600;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #ccc;
    font-size: 1rem;
    transition:
        border 0.2s,
        box-shadow 0.3s ease;
}
.form-input:focus,
.form-textarea:focus {
    border: 1.5px solid rgba(152, 57, 255, 0.5);
    outline: none;
    box-shadow: 0 0 5px rgba(152, 57, 255, 0.5);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    display: block;
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    background: linear-gradient(90deg, #9839ff 60%, #a277ff 100%);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition:
        background-color 0.3s,
        transform 0.2s ease;
    box-shadow: 0 2px 6px rgba(152, 57, 255, 0.5);
    margin-top: 0.5rem;
}
.form-submit:hover {
    background: linear-gradient(90deg, #a277ff 0%, #9839ff 100%);
    transform: translateY(-2px);
}
.form-submit:active {
    transform: translateY(0);
}

main section.reservation-section {
    padding: 4rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
main section.reservation-section select[multiple] {
    height: auto;
    min-height: 2.5rem;
    padding: 0.8rem;
}
main section.reservation-section input[type='number'] {
    -webkit-appearance: textfield;
    appearance: textfield;
    -moz-appearance: textfield;
}
main section.reservation-section input[type='number']::-webkit-outer-spin-button,
main section.reservation-section input[type='number']::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

@media (max-width: 700px) {
    main section.contact-section {
        padding: 2rem 1rem;
    }
    main section.contact-section .form-container {
        padding: 1.5rem;
    }
} /*# sourceMappingURL=reservation.css.map */
