
html {
    overflow-y: scroll;
}
.navbar {
    background-color: white;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: gray;
    .navbar-nav {
        .nav-item {
            .nav-link.active {
                font-weight: bold;
                border-bottom-style: solid;
                border-bottom-width: 2px;
                border-bottom-color: green;
            }
        }
    }
}

.background-image {
    /* background-image: url("../image/banner02.png"); */
    opacity: 0.8;
}

.content-1 {
    display: inline-block;
    min-height: 256px;
}

.sticky-bottom {
    position: sticky;
    top: 100vh;
    z-index: 1020;
}

th.name {
    width: 20%;
}
th.description {
    width: 60%;
}
th.price {
    width: 20%;
}

/* お問い合わせフォーム */
.contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-top: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

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

.contact-form button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #337ab7;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #286090;
}