* {
    box-sizing: border-box;
}

:root {
    --border: rgba(128, 128, 128, 0.55);
    --background: #F2ECE1;    
    --color-brown: #3D2B1F;
}
body {
    margin: 0;
    padding: 0;
    background-color: var(--background);
}

header {
    display: flex;
    height: 80px;
    padding: 20px 29px 19px 20px;
    justify-content: space-between;
    align-items: center;
    background-color: #FFF;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 10;
}

.logo {
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 26px;
    font-weight: 700;
}

.logo a {
    color: inherit;
    text-decoration: none;
}

nav {
    display: flex;
    padding: 0 20px;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin: 0;
}

.nav-item {
    margin: 0;
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
}

.btn-reserve {
    font-family: "Shippori Mincho";
    font-size: 16px;
    font-weight: 700;
    color: #000;
    display: flex;
    width: 110px;
    height: 41px;
    padding: 0 3px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 20px;
    background-color: #E0A00B;
    border: none;
    text-decoration: none;
}

.nav-item,
.btn-reserve {
    white-space: nowrap;
}

.btn-reserve--header {
    display: none;
}

.phone-icon {
    width: 24.726px;
    height: 22.508px;
}

.hero,
.about {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.scale-wrapper {
    overflow-x: clip;
}

.hero {
    position: relative;
    display: flex;
    height: 600px;
    justify-content: space-between;
    align-items: center;
}

.hero::after,
.about::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 50vw;
    height: 100%;
}

.hero::after {
    background-color: #FEFEFE;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 840px;
    height: 100%;
    background-color: #FEFEFE;
}

.about::after {
    background-color: var(--color-brown);
}

.hero-menu::before {
    content: "";
    position: absolute;
    right: 100%;
    bottom: 120px;
    width: 50vw;
    height: 480px;
    background-color: var(--color-brown);
}

.hero-text {
    display: flex;
    width: 596px;
    padding: 0 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.hero-text h2 {
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

.hero-text p {
    color: #000;
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.hero-image {
    position: relative;
    width: 840px;
    height: 600px;
    -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 80px), transparent);
    mask-image: linear-gradient(to right, #000 calc(100% - 80px), transparent);
}

.about {
    position: relative;
    height: 600px;
}

.about-bg {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 870px;
    height: 600px;
    background-color: var(--color-brown);
    margin: 0;
}

.about-image {
    position: absolute;
    left: 60px;
    top: 40px;
    width: 692px;
    height: 519px;
    margin: 0;
}

.about-text {
    position: absolute;
    left: 830px;
    top: 188px;
    color: #FFF;
    font-family: "Shippori Mincho";
    font-size: 27px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 148.148% */
    white-space: nowrap;
}

.news {
    height: 600px;
    padding-top: 72px;
    text-align: center;
}

.news h2 {
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 100% */
    text-align: center;
    margin: 0;
}

.news-list {
    list-style: none;
    padding: 0;
    width: 1036px;
    margin: 40px auto 0;
    text-align: left;
}

.news-item {
    display: flex;
    flex-direction: column;
    width: 1036px;
    padding: 15px 176px 0 15px;
    align-items: flex-start;
    border-bottom: 1px solid var(--border);
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-date {
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 200% */
    margin: 0;
}

.news-tag {
    display: inline-flex;
    height: 40px;
    padding: 0 18px 0 16px;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-family: "Shippori Mincho";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.tag--hours {
    background-color: #3D2B1F;
}

.tag--menu {
    background-color: #C17B2A;
}

.tag--news {
    background-color: #4A7C59;
}

.news-title {
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 11px 0 0 0;
}

.btn-more {
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 133.333% */
    display: inline-flex;
    margin-top: 13px;
    padding: 13px 5px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    border: 2px solid var(--color-brown);
    text-decoration: none;
    white-space: nowrap;
}

.menu {
    height: 2400px;
}

.menu h2 {
    display: flex;
    justify-content: center;
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 40px 0 0 0;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu .menu-list{
    margin-top: 40px;
}

.menu-item {
    display: flex;
    width: 1120px;
    margin: 0 auto;
    align-items: center;
    gap: 60px;
}

.menu-item + .menu-item {
    margin-top: 140px;
}

.menu-item:nth-child(2) {
    margin-top: 90px;
}

.menu-image {
    width: 640px;
    height: 460px;
}

.menu-text {
    display: flex;
    width: 420px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.menu-text h3 {
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

.menu-text p {
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal; /* 200% */
    margin: 0;
}

.btn-view-menu {
    display: flex;
    align-items: center;
    padding: 13px 5px;
    justify-content: center;
    gap: 10px;
    border-radius: 4px;
    border: 2px solid var(--color-brown);
    text-decoration: none;
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.menu-item--reverse {
    flex-direction: row-reverse;
}

.menu-item--reverse .menu-text {
    align-items: flex-end;
}

.menu-item--reverse .menu-text h3,
.menu-item--reverse .menu-text p {
    width: 100%;
    text-align: right;
}

.access {
    height: 600px;
}

.access h2 {
    display: flex;
    justify-content: center;
    margin: 72px 0 0 0;
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 100% */
}

.access-group {
    display: flex;
    width: 986px;
    height: 431px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 40px auto 60px;
}

.access-info {
    display: grid;
    grid-template-columns: 80px 1fr;
    width: 528px;
}

.access-info dt {
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 200% */
}

.access-info dd {
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px; /* 200% */
    margin: 0;
    padding-left: 68px;
}

.access-info a {
    color: inherit;
    text-decoration: none;
}

.access-info address {
    font-style: normal;
}
.access-info dd,
.access-info dt {
    border-bottom: 1px solid var(--border);
}

.access-map {
    width: 424px;
    height: 403px;
}

.footer {
    background-color: #1B1616;
    min-height: 600px;
    padding-top: 97px;
}

.footer-group {
    display: flex;
    width: 438px;
    margin: 0 auto 8px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 38px;
    list-style: none;
}

.footer-group h2 {
    color: #FFF;
    font-family: "Shippori Mincho";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 100% */
}

.footer-group address {
    color: #FFF;
    font-family: "Shippori Mincho";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px; /* 200% */
    text-align: center;
}

.footer-tel {
    color: inherit;
    text-decoration: none;
}

.footer-sns {
    width: 47.972px;
    height: 47.991px;
}

.footer-sns-icon {
    width: 100%;
    height: 100%;
}

.footer-nav .nav-item {
    color: #FFF;
}

.footer-nav {
    width: 470px;
}
.footer p {
    color: #FFF;
    font-family: "Shippori Mincho";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.hero-menu {
    position: relative;
    height: 600px;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.hero-bg {
    position: absolute;
    left: 0;
    bottom: 120px;
    width: 972px;
    height: 480px;
    background-color: var(--color-brown);
    margin: 0;
}

.hero-menu-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 780px;
    height: 560px;
    margin: 0;
}

.hero-menu h2 {
    position: absolute;
    left: 275px;
    top: 99px;
    color: #FFF;
    font-family: "Shippori Mincho";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 100% */
}

.menu-nav {
    display: flex;
    width: 700px;
    max-width: 700px;
    margin: 0 auto;
    padding: 15px 0 0;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
}

.menu-nav-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.menu-nav p {
    color: #000;
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.menu-section-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.menu-section-heading h2 {
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 40px;
    font-style: normal;
    line-height: normal;
    margin: 0;
}

.menu-section-heading p {
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 20px;
    font-style: normal;
    line-height: normal;
    margin: 0;
}

.menu-category {
    width: 922px;
    margin: 0 auto;
}

.menu-category + .menu-category {
    margin-top: 19px;
}

.menu-category h3 {
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 30px;
    font-style: normal;
    line-height: normal;
    margin: 0;
}

.menu-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 922px;
    margin: 0 auto;
    line-height: 48px;
    font-family: "Shippori Mincho";
    color: #000;
    font-size: 20px;
    border-bottom: 1px solid var(--border);
}

.menu-row p {
    margin: 0;
}

#lunch,
#set-meal,
#a-la-carte,
#drinks{
    scroll-margin-top: 80px;
    padding-bottom:78px;
}

#access {
    scroll-margin-top: 80px;
}

.hamburger-icon {
    display: none;
}

.menu-toggle {
    display: none;
}

.sp-br {
    display: none;
}

@media (max-width: 1024px) {
    .sp-br {
        display: block;
    }

    .pc-br {
        display: none;
    }

    .hamburger-icon {
        display: block;
    }

    header {
        gap: 20px;
    }

    .btn-reserve--header {
        display: flex;
    }

    .logo {
        font-size: 18px;
        white-space: nowrap;
        margin-right: auto;
    }

    .menu-toggle {
        display: none;
    }

    .icon-close {
        display: none;
    }

    .menu-toggle:checked ~ .hamburger-icon .icon-menu {
        display: none;
    }

    .menu-toggle:checked ~ .hamburger-icon .icon-close {
        display: block;
    }

    header nav {
        display: none;
    }

    .menu-toggle:checked ~ nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 32px;

        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100% - 80px);
        background-color: #fff;
        z-index: 9;
    }

    .menu-toggle:checked ~ nav .nav-item {
        font-size: 28px;
    }

    .menu-toggle:checked ~ nav .btn-reserve {
        width: 192.5px;
        height: 71.75px;
        font-size: 28px;
    }

    .footer-nav {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        padding: 0;
        flex-wrap: wrap;
        row-gap: 12px;
        column-gap: 32px;
    }

    .hero {
        position: relative;
        display: block;
        height: auto;
        aspect-ratio: 402 / 287;
        overflow: hidden;
    }

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        width: auto;
        background-color: rgba(0, 0, 0, 0.45);
        z-index: 1;
    }

    .hero-image {
        -webkit-mask-image: none;
        mask-image: none;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-text {
        position: relative;
        z-index: 2;
        width: 100%;
        height: 100%;
        padding: 0 40px;
        box-sizing: border-box;
    }

    .hero-text h2 {
        color: #fff;
        font-size: 36px;
    }

    .hero-text p {
        color: #fff;
        font-size: 16px;
    }

    .about {
        position: static;
        height: auto;
    }

    .about-bg {
        display: none;
    }

    .about-image {
        position: static;
        width: 100%;
        height: auto;
        aspect-ratio: 402 / 302;
        object-fit: cover;
    }

    .about-text {
        position: static;
        display: block;
        background-color: var(--color-brown);
        width: 100%;
        padding: 40px 25px;
        white-space: normal;
        text-align: center;
        font-size: 17px;
        line-height: 30px;
    }

    .news {
        height: auto;
        padding: 40px 20px 0;
    }

    .news-list {
        width: 100%;
        max-width: 362px;
        margin: 40px auto 0;
    }

    .news-item {
        width: 100%;
        padding: 15px 0 0 0;
    }

    .menu {
        height: auto;
        padding: 0 20px;
    }

    .menu-item,
    .menu-item--reverse {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 24px;
        padding-bottom: 60px;
    }

    .menu-item + .menu-item {
        margin-top: 0;
    }

    .menu-item:nth-child(2) {
        margin-top: 0;
    }

    .menu-image {
        width: 100%;
        height: auto;
        aspect-ratio: 402 / 289;
        object-fit: cover;
    }

    .menu-text {
        width: 100%;
        align-items: flex-start;
    }

    .menu-item--reverse .menu-text {
        align-items: flex-start;
    }

    .menu-item--reverse .menu-text h3,
    .menu-item--reverse .menu-text p {
        text-align: left;
    }

    .menu-text p {
        line-height: 40px;
    }

    .access {
        height: auto;
        padding: 40px 20px 60px;
    }

    .access-group {
        flex-direction: column;
        width: 100%;
        height: auto;
        padding: 0;
        margin: 40px auto 0;
    }

    .access-info {
        width: 100%;
        max-width: 362px;
    }

    .access-info dd {
        text-align: center;
        padding-left: 20px;
    }

    .access-map,
    .access-map iframe {
        width: 362px;
        height: 344px;
    }

    .footer {
        padding-top: 60px;
    }

    .footer-group {
        width: 100%;
        max-width: 362px;
        padding: 0 20px;
    }

    .hero-menu {
        height: auto;
        aspect-ratio: 402 / 340;
        overflow: visible;
    }

    .hero::after,
    .about::after,
    .hero-menu::before {
        display: none;
    }

    .hero-bg {
        position: absolute;
        left: 0;
        top: 0;
        bottom: auto;
        width: 85.57%;
        height: 66.76%;
        z-index: 1;
    }

    .hero-menu-image {
        position: absolute;
        left: 14.18%;
        top: 23.82%;
        right: auto;
        bottom: auto;
        width: 85.82%;
        height: 76.18%;
        object-fit: cover;
        z-index: 2;
    }

    .hero-menu h2 {
        left: 27.86%;
        top: 4.71%;
        font-size: 30px;
        white-space: nowrap;
        z-index: 3;
    }

    .menu-nav {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 40px 20px 0;
        gap: 24px;
    }

    .menu-nav-group {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        width: 100%;
        max-width: 362px;
    }

    .menu-nav-group .btn-view-menu {
        width: 100%;
        font-size: 20px;
    }

    .menu-section-heading {
        padding: 0 20px;
    }

    .menu-category {
        width: 100%;
        max-width: 362px;
    }

    .menu-row {
        width: 100%;
        max-width: 362px;
        line-height: 35px;
    }

    .menu-row p:first-child {
        flex: 1;
        white-space: normal;
        padding-right: 12px;
    }

    .menu-row p:last-child {
        white-space: nowrap;
        flex-shrink: 0;
    }
}