body {
    width: 100%;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background: url('image/e6c0d9438b17f482419c67df165fce44_t.jpeg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header {
    background: #726250;
    color: #726250;
    padding: 1rem;
    text-align: center;
}

.site_title img {
    max-width: 100%;
    height: auto;
}

.menu_block {
    background: rgba(51, 51, 51, 0.8);
    color: #fff;
}

.menu_toggle {
    display: none;
    padding: 10px;
    background: #333;
    color: #fff;
    text-align: center;
    cursor: pointer;
}

.menu_wrap {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

.menu_wrap.open {
    display: block;
}

.menu_list {
    margin: 0 10px;
}

.menu_list_link {
    color: #fff;
    text-decoration: none;
}

.menu_list_link:hover {
    text-decoration: underline;
}


.main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main,
.contact_wrap,
.reservation_wrap,
.coupon_wrap,
.about_area {
    width: 100%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 20px;
}


.contact_area,
.reservation_area {
    margin-bottom: 1rem;
}

.contact_area label,
.reservation_area label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.contact_area input,
.contact_area textarea,
.reservation_area input,
.reservation_area textarea,
.reservation_area select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.contact_area textarea,
.reservation_area textarea {
    height: 150px;
    resize: vertical;
}

.contact_form_button_wrap,
.reservation_form_button_wrap {
    text-align: center;
}

.contact_form_button_wrap input,
.reservation_form_button_wrap input {
    background: #50b3a2;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1.25rem;
    cursor: pointer;
}

.contact_form_button_wrap input:hover,
.reservation_form_button_wrap input:hover {
    background: #419486;
}

.contact_form_personal_info {
    margin-top: 2rem;
}

.contact_form_personal_info_title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.contact_form_personal_info_description {
    font-size: 1rem;
    line-height: 1.5;
}


.footer {
    text-align: center;
    padding: 1rem;
    background: rgba(80, 179, 162, 0.8);
    color: #fff;
    width: 100%;
}

.footer_social_wrap a {
    color: #fff;
    font-size: 2rem;
    margin-right: 1rem;
    text-decoration: none;
}

.footer_social_wrap a:hover {
    color: #ccc;
}

.footer_list_wrap {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin: 0;
}

.footer_list {
    margin: 0 10px;
}

.footer_list a {
    color: #99FFCC;
    text-decoration: none;
    font-family: 'Lucida Calligraphy';
}

.footer_list a:hover {
    text-decoration: underline;
}

.map {
    height: 600px;
    width: 100%;
}


a {
    transition: 0.3s;
}

a img {
    transition: 0.3s;
}

.button {
    transition: 0.3s;
}

.icon_menu {
    transition: 0.3s;
}

.menu_list_link:hover {
    transition: 0.3s;
}

.menu_block_device .menu_list_link:hover {
    transition: 0.3s;
}


