{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Shippori Mincho", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
    color: #333;
    background-color: #250D00;
}
header {
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}
.header-content h1 {
    font-size: 3em;
    margin-bottom: 10px;
}
.header-content p {
    font-size: 1.5em;
}
.header-nav {
    margin-left: 50px;
}
.section {
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
    background-color: #fff;
    box-sizing: border-box;
}
#top {
    background: url(images/br.webp);
    background-size: cover;
    width: 100%;
}
#about {
    padding-top: 20px;
}
#about,
#reservation {
    background-color: #151F25;
    color: white;
}
#about h2,
#reservation h2 {
    color: white !important;
}
.section h2 {
    font-size: 2em;
    margin-top: 10px;
    color: #333;
    margin-bottom: 40px;
}
.content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
    justify-content: center;
}
.section-image {
    width: 100%;
    max-width: 500px;
}
.text-content {
    max-width: 500px;
    text-align: center;
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.menu-item {
    padding: 20px;
    text-align: center;
}
.menu-item img {
    width: 100%;
    margin-bottom: 15px;
}
.reservation-grid img {
    width: 100%;
    margin-bottom: 15px;
}
.reservation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.reserve-button {
    background-color: #C09933;
    color: #fff;
    padding: 10px 20px;
    border: none;
    font-size: 1.1em;
    cursor: pointer;
    margin-top: 20px;
}
.reserve-button:hover {
    background-color: #B58855;
}
footer {
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}
/* ヘッダー */
.site-header {
    background-color: rgb(45 16 0 / 80%);
    color: #fff;
    padding: 5px 0;
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between; /* ロゴとメニューを左右に分ける */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}
.header-logo img {
    width: 120px;
}
.header-nav {
    display: flex;
    align-items: center;
}
.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}
.nav-list li a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s;
}
.nav-list li a:hover {
    color: #D4A373;
}
#top .kv::after {
    content: "　";
    width: 1px;
    height: 4.5rem;
    display: block;
    position: absolute;
    bottom: -1rem;
    left: 50%;
    z-index: 100;
    background: linear-gradient(to bottom, transparent 0%, #333 0.00001%, #fff 49.999%, transparent 50%);
    background-size: 200% 200%;
    -webkit-animation: bar 2.5s linear 0s infinite normal none running;
    animation: bar 2.5s linear 0s infinite normal none running;
}
/* ハンバーガーメニュー */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}
.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}
@media (min-width: 769px) {
.content {
    display: flex;
    flex-wrap: wrap; /* 折り返しを有効にする */
    justify-content: center; /* 子要素を中央揃えにする */
    gap: 40px; /* 子要素の間隔 */
    margin-top: 30px;
}
.section-image, .text-content {
    flex: 1 1 calc(50% - 40px); /* 子要素を1行に2つ収める */
    max-width: calc(50% - 40px); /* 子要素の最大幅を設定 */
}
}
#map {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* アスペクト比（16:9）を維持 */
    overflow: hidden;
}
#map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
/* モバイル対応 */
@media (max-width: 768px) {
    .header-container {
        display: flex;!important
        justify-content: space-between; !important
        align-items: center;!important
        padding: 0 20px; /* 左右の余白を追加 */
        padding-left: 0px;
    }
    .header-logo {
        margin-left: 0; /* ロゴの左寄せを解除 */
    }
    .menu-toggle {
        margin-right: 0; /* ハンバーガーメニューの右寄せを解除 */
        display: flex; /* ハンバーガーメニューを表示 */
    }
    .menu-toggle span {
        width: 25px;
        height: 3px;
        background: #fff;
        border-radius: 2px;
    }
    .header-nav {
        position: absolute;
        top: 60px;
        right: 0;
        background-color: rgb(45 16 0 / 80%);
        flex-direction: column;
        width: 200px;
        height: 0;
        overflow: hidden;
        transition: height 0.3s;
    }
    .header-nav.active {
        height: auto;
        padding: 20px 0;
    }
    .nav-list {
        flex-direction: column;
        gap: 10px;
    }
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    #top {
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 80svh;
        display: none;
    }
    .kv img {
        width: 100% !important;
        left: 0% !important;
        text-align: center;
        padding-top: 175px;
    }
    #page-top {
        cursor: default;
        width: 4rem;
        display: block;
        height: 4rem;
        border-radius: 4rem;
        background-color: #333;
        background-image: url(images/icon_arrow_w.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 1rem;
        transform: rotate(-90deg);
        position: fixed;
        bottom: 1.5rem;
        right: 2rem;
        z-index: 9;
        cursor: pointer;
        opacity: 0.7;
    }
    #page-top:hover {
        background: #eee;
    }
    .content {
        flex-direction: column;
    }
    .order1 {
        order: 1;
    }
    .order2 {
        order: 2;
    }
}