@charset "UTF-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}
img {
    width: 100%;
    vertical-align: bottom;
}
/* common */
body {
    background-color: black;
    color: white;
    /* font-family: "Yuji Syuku", serif; */
    font-family: serif;
    font-weight: 400;
    font-style: normal;
    transition: 0.5s;
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}
html {
    scroll-behavior: smooth;
}
/* reservation Section */
.reservation {
    position: relative;
    padding-top: 50px;
    padding-left: 30px;
    font-size: 40px;
    margin: 50px;
}
.reservation span {
    position: relative;
    z-index: 2;
}
.reservation::before {
    content: attr(data-en);
    position: absolute;
    transform: rotate(-5deg);
    top: -20px;
    left: 0;
    color: rgba(169, 169, 169, 0.5);
    font-size: 80px;
    font-weight: 400;
    font-family: luxus-brut, cursive;
    font-style: italic;
}

dl {
    /* width: 100%; */
    border-top: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
    border-left: 1px solid #cccccc;
}

dl dt {
    float: left;
    padding: 1em;
    color: #998484;
}

dl dd {
    border-bottom: 1px solid #cccccc;
    margin: 0;
    padding: 1em 0 1em 10em;
}

dl dt .must {
    color: #d23939;
}

input[type="email"] {
    width: 25em;
    /* width: 50%; */
}

input {
    font-size: 1em;
    padding: 5px;
}

label {
    margin-right: 1em;
}

select {
    font-size: 1em;
}

textarea {
    width: 30em;
    font-size: 1em;
    padding: 5px;
}

p.submit {
    text-align: center;
}

input[type="submit"] {
    padding: 20px 100px;
    background: #7f6666;
    font-size: 1em;
    color: #ffffff;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    margin: 50px;
}
@media (max-width: 769px) {
    body {
        width: 90%;
    }
    dl dd {
        padding: 1em 0 1em 10em;
        /* max-width: 90%; */
    }
    input[type="email"] {
        max-width: 90%;
    }
    textarea {
        max-width: 90%;
    }
}
