@charset "utf-8";

:root {
    /* ---------- カスタムプロパティ(カラー設定ほか) ---------- */
    --white-color: rgb(255 255 255 / 1.0);
    --background-color: rgb(248 243 237 / 1.0);
    --black-color: rgb(51 51 51 / 1.0);
    --link-bgcolor: rgb(19 209 9 / 1.0);
    --text-color: rgb(51 51 51 / 1.0);
    --gold-color: rgb(191 158 111 / 1.0);
    --button-border-color: rgb(152 141 128 / 1.0);
    --button-text-color: rgb(94 80 63 / 1.0);
    --footer-bgcolor: rgb(234 224 213 / 1.0);

    /* --- テキスト --- */
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    color: var(--text-color);
    --regular: 400;
    --semibold: 600;
    --bold: 700;
    --exbold: 900;

    /* -----------sp　全体レイアウト設定 ---------- */
    /*font-size: calc(3.5555vw);-*/
    background-color: var(--background-color);
}

/* 共通 */
html {
    font-size: 16px;
    scroll-behavior: smooth;
    background-color: var(--white-color);
    color: var(--black-color);
}

a {
    color: var(--black-color);
    transition: opacity 0.25s;
    text-decoration: none;
}

a:hover {
    opacity: 0.4;
}

ul {
    padding: 0;
}

ul li {
    list-style: none;
}

h2,
h3 {
    color: var(--gold-color);
    text-align: center;
    text-shadow: 0 0 0.875rem var(--white-color);
}

h2.child-page,
h3.child-page {
    text-align: left;
    color: var(--text-color);
}

h2.pagetop {
    display: flex;
    background: url("../img/pagetop_background.png") no-repeat center / cover;
    width: 100%;
    height: 12rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    color: var(--white-color);
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
}

h2.pagetop::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(0,0,0,0.25) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0,0,0,0.25) 1px, transparent 1px);
    background-size: 1px 1px;
    z-index: 1;
    pointer-events: none;
}

h2.pagetop span {
    position: relative;
    z-index: 2;
    transform: translateY(3rem);
}

h2.pagetop::before {
    content: attr(data-prefix) " - ";
}

p {
    margin-bottom: 1.5rem;
}

picture img {
    margin: 0 auto;
}

.break,
.s-break {
    display: block;
}
.message h2{
    background: url("../img/main_logo.png") no-repeat center / contain;
    display: block;
    position:absolute;
    font-size: 0;
    top: 50%;
    left: 50%;
    z-index: 50;
    width: 75%;
    height:10rem;
    transform: translate(-50%, -50%);
}

.dots {
    display: flex;
    gap: 1rem;
    z-index: 200;
    margin: 0 auto 6rem;
    align-items: center;
    justify-content: center;
}

.dot {
    width: 1rem;
    height: 1rem;
    margin: 1rem 0;
    border: none;
    border-radius: 50%;
    background-color: var(--button-border-color);
    cursor: pointer;
}

.dot.active {
    background-color: var(--gold-color);
}
.menu-category-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1rem;
    margin-bottom: 3rem;
}

.menu-category-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 1rem;
    border: 1px solid var(--button-border-color);
    color: var(--button-text-color);
    text-decoration: none;
    background: var(--white-color);
    box-sizing: border-box;
    text-align: center;
    width: 100%;
}
.menu-item {
    display: flex;
    width: 100%;
    height: 100%;
    margin: 0 auto 2rem;
    align-items:flex-start;
    justify-content:flex-start;
    padding: 0.8rem;
    border: 1px solid var(--button-border-color);
    background-color: var(--white-color);
    color: var(--button-text-color);
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    line-height: 1.4;
    text-decoration: none;
}

.menu-item img {
    width: 30%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    align-self: center;
    margin-right: 1rem;
}

.menu-item .price {
    text-align: right;
    margin: 1rem 0 0;
    font-size: 1.5rem;
    font-weight: bold;
    float:right;
}

.menu-image{
    margin-bottom: 2rem;
    width:100%;
}
.recommend {
    display: block;
    width: 5rem;
    aspect-ratio: 1;
    background: url("../img/recommend.png") center / contain no-repeat;
    position: relative;
    font-size: 0;
    float: left;
}
.menu-body h4{
    text-align: left !important;
}
/* 共通 */

.restaurant{
    display: inline-block;
}

/* ---------- sp レイアウト ---------- */
@media (max-width: 768px) {
    .container {
        position: relative;
    }

    h2 {
        font-size: 1.375rem;
        text-shadow: var(--button-border-color) 0.125rem 0.125rem 1rem;
    }

    h3 {
        font-size: 0.75rem;
        margin-bottom: 1.5rem;
        text-shadow: var(--button-border-color) 0.125rem 0.125rem 1rem;
    }

    h4 {
        font-size: 1.25rem;
        margin: 1rem 0;
    }

    address {
        font-style: normal;
    }

    hr {
        border-color: var(--gold-color);
        margin: 2rem 0;
        padding: 0 1rem;
    }

    .button {
        width: fit-content;
        margin: 0 auto;
        align-items: center;
        justify-content: center;
        padding: 0.7rem 1.6rem;
        border: 1px solid var(--button-border-color);
        background-color: var(--white-color);
        color: var(--button-text-color);
        font-size: 0.875rem;
        letter-spacing: 0.08em;
        line-height: 1.4;
        text-decoration: none;
        text-align: center;
        display: block;
        transition: background-color 0.2s ease;
    }

    .restaurant .button {
        display: inline-block;
    }
    .button-group{
        display: flex;
        flex-direction:column; 
        gap: 1rem;
    }
    .button:active {
        border: 1px solid var(--button-border-color);
        background-color: var(--button-text-color);
        color: var(--white-color);
        opacity: 1;
    }

    .logo_svg {
        position: absolute;
        top: 1rem;
        left: 1rem;
    }

    #hamburger {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 1rem;
        right: 1rem;
    }

    #hamburger.active {
        display: flex;
    }

    #hamburger span {
        display: block;
        width: 1.5rem;
        height: 0.125rem;
        background-color: var(--black-color);
        margin: 0.25rem;
    }

    .arrow {
        position: absolute;
        top: 50%;
        z-index: 99;
    }

    .prev {
        left: 0.5rem;
    }

    .next {
        right: 0.5rem;
    }

    #thumbnails {
        margin: 1rem auto 0;
    }


    .thumbs {
        display: flex;
        gap: 0.5rem;
        width: fit-content;
        margin: 0 auto;
    }

    .thumb {
        width: 3rem;
        aspect-ratio: 1 / 1;
        overflow: hidden;
        flex-shrink: 0;
    }

    .thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .wrap {
        padding: 0 1rem;
    }

    #topics,
    #about,
    #menu,
    #chef,
    #access {
        margin-bottom: 3rem;
        scroll-margin-top: 7rem;
    }

    .topics-list:first-of-type {
        border-top: 0.0625rem dashed #333;
    }

    .topics-list {
        padding-top: 0.5rem;
        border-bottom: 0.0625rem dashed #333;
    }

    .topics-list:last-of-type {
        margin-bottom: 3rem;
    }

    .topics-list p {
        width: 100%;
        margin-bottom: 0.5rem;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .topics-list .category {
        display: inline-block;
        border: 1px solid var(--gold-color);
        border-radius: 0.125rem;
        color: var(--gold-color);
        padding: 0.125rem;
        font-size: 0.75rem;
        margin-left: 0.25rem;
    }

    .shop-contact {
        margin-top: 1.25rem;
    }

    .shop-sns {
        display: flex;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .shop-sns img {
        width: 2rem;
        height: 2rem;
    }

    .reserve .button {
        display: inline-block;
        margin: 0 2rem 2rem 0;
    }

    .pagination {
        letter-spacing: 0.6em;
        margin-bottom: 2rem;
    }

    .author {
        font-size: 0.85rem;
    }


    .menu-list {
        gap: 1rem;
        scroll-margin-top: 7rem;
    }

    .menu-list h3,
    .term-description {
        display: block;
        margin: 0 auto 1rem;
    }

    .menu-list h3 {
        font-size: 1.5rem;
    }

    .menu-list h3 span {
        font-size: 1rem;
    }

    .term-description {
        width: 100%;
        text-align: center;
    }




    /* ヘッダー */
    #global_header {
        position: sticky;
        top: 0;
        z-index: 100;
        background-color: rgb(255 255 255 / 85%);
        height: 4rem;
    }

    #global_header h1 {
        position: absolute;
        display: block;
        width: 100px;
        height: 34px;
        font-size: 0;
        background: url("../img/logo_sp.svg") no-repeat center / contain;
        overflow: hidden;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 0%;
    }

    #global_header h1 a {
        display: block;
        width: 100px;
        height: 34px;
    }

    #global_header a.button {
        font-size: 0.75rem;
        position: absolute;
        display: block;
        padding: 0.7rem 0.4rem;
        top: 50%;
        left: 1rem;
        transform: translateY(-50%);
    }

    #global_header a.button span {
        display: inline-block;
        transform: scaleX(0.85);
    }

    /* 全画面メニュー */
    #global_menu {
        position: fixed;
        inset: 0;
        background-color: var(--black-color);
        color: var(--white-color);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        z-index: 3000;
    }

    #global_menu h2 {
        width: 55px;
        height: 75px;
        font-size: 0;
        background: url("../img/menu_logo.svg") no-repeat center / contain;
        overflow: hidden;
        margin: 0 auto 1rem;
    }

    #global_menu.active {
        opacity: 1;
        visibility: visible;
    }

    #global_menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }

    #global_menu li {
        margin: 1.5rem 0;
    }

    #global_menu a {
        color: var(--white-color);
        font-size: 1.2rem;
        letter-spacing: 0.1em;
    }

    #global_menu a.button {
        color: var(--button-text-color);
        position: relative;
        top: auto;
        left: auto;
        margin-top: 2rem;
    }

    #global_menu #close {
        position: absolute;
        top: 1.5rem;
        left: 1.5rem;
        font-size: 2rem;
        background: none;
        border: none;
        color: var(--white-color);
    }

    body.menu_open {
        overflow: hidden;
    }

    /* スライダー */
    #main_visual {
        position: relative;
        margin-top: -4rem;
        height: 43.125rem;
        overflow: hidden;
        width: 100%;
    }

    #main_visual .slider {
        position: relative;
        height: 100%;
    }

    #main_visual .slider::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 5;
        background-image:
            linear-gradient(to right, rgba(0,0,0,0.25) 1px, transparent 1px),
            linear-gradient(to bottom, rgba(0,0,0,0.25) 1px, transparent 1px);
        background-size: 0.0625rem 0.0625rem;
    }

    /* activeスライドがある時だけ表示 */
    #main_visual .slider:has(.slide.active)::after {
        opacity: 1;
    }

    #main_visual .slide {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transform: scale(1.05);
        transition: opacity 1s ease, transform 6s ease;
    }

    #main_visual .slide.active {
        opacity: 1;
        z-index: 1;
        transform: scale(1);
    }


    /* 各コンテンツ */
    #single-post {
        width: 90%;
        margin: 0 auto;
        padding-top: 2rem;
    }

    #topics .button {
        display: block;
    }

    #about {
        background-image: url("../img/about_bg_right.png");
        background-repeat: no-repeat;
        background-position: bottom right;
    }

    #menu {
        background-image: url("../img/menu_bg_left_sp.png"), url("../img/menu_bg_right.png");
        background-repeat: no-repeat;
        background-position: bottom left, bottom right;
    }

    #chef {
        background-image: url("../img/chef_bg_left_sp.png"), url("../img/chef_bg_right_sp.png");
        background-repeat: no-repeat;
        background-position: bottom left, bottom right;
    }

    #chef .wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    main {
        width: 90%;
        padding: 0 0 1rem;
        margin: 10rem auto 0;
    }

    /* 投稿ページ */
    .topics-archive,
    #single-post {
        width: 100%;
        margin: 0 auto;
    }

    .post-list h2 {
        text-align: left;
        text-shadow: none;
        color: var(--black-color);
    }

    #topics-index {
        margin-top: 10rem;
    }

    .topics-title {
        margin: 2rem 0;
    }
    /* パンくず */
    a.breadcrumb.home {
        padding-left:1.5rem;
        background-image: url('../img/icon_house.svg');
        background-repeat: no-repeat;
        background-position: left center;
        background-size: 1rem;
    }


    /* フッター */
    footer {
        display: block;
        position: relative;
        background-color: var(--footer-bgcolor);
        padding-top: 3rem;
    }

    footer .wrap {
        padding: 0;
    }

    footer h2 {
        width: 164px;
        height: 56px;
        font-size: 0;
        background: url("../img/logo_sp.svg") no-repeat center / contain;
        overflow: hidden;
        margin: 0 auto 1rem;
    }
    footer h2 a {
        display: block;
        width: 100%;
        height: 100%;
    }
    footer address {
        font-style: normal;
        width: fit-content;
        margin: 0 auto;
        padding: 0 1rem;
    }

    footer nav {
        width: 80%;
        margin: 0 auto;
    }

    footer nav ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
        grid-auto-flow: column;
        margin: 2rem auto 5rem;
    }

    footer nav ul li {
        white-space: nowrap;
        text-align: center;
        font-size: 0.875rem;
    }

    footer #copyright {
        display: flex;
        height: 3.75rem;
        background-color: var(--gold-color);
        color: var(--white-color);
        margin: 0;
    }

    footer #copyright span {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin: 0 auto;
    }

    footer .tab a {
        display: flex;
        background-color: var(--gold-color);
        position: absolute;
        bottom: 3.75rem;
        height: 2rem;
    }

    footer #to-index a {
        width: 5rem;
        left: 3rem;
        color: var(--white-color);
        align-items: center;
        justify-content: center;
        border-radius: 1rem 1rem 0 0;
    }

    footer #pagetop a {
        width: 2rem;
        right: 3rem;
        background-image: url("../img/arrow_up.svg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 50%;
        font-size: 0;
    }

    /* メニューページ */
    ul.menu {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        list-style: none;
        padding: 0;
    }

    ul.menu li {
        width: 90%;
    }

    ul.menu li a {
        width: 100%;
    }
}

/* -----------PC　全体レイアウト設定 ---------- */
@media screen and (width > 768px) {
    /*:root {
        font-size: min(1.5625vw, 16px);
    }*/

    .wrapper {
        max-width: 1024px;
        margin: auto;
    }

    .t-break {
        display: inline;
    }
    .button-group{
        display: flex;
        flex-direction: row;
        width: fit-content;
        gap: 1rem;
        margin: 0 auto;
    }

}

/* ---------- pc レイアウト ---------- */
@media screen and (width > 768px) {
    #hamburger,
    #global_header a.button.reserve,
    #global_menu h2,
    #global_menu #close {
        display: none;
    }

    h2 {
        font-size: 1.875rem;
        text-shadow: var(--button-border-color) 0.125rem 0.125rem 1rem;
    }

    h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        text-shadow: var(--button-border-color) 0.125rem 0.125rem 1rem;
    }

    h4 {
        font-size: 1.25rem;
        margin: 1.5rem 0;
        text-align: center;
    }

    hr {
        border-color: var(--gold-color);
        margin: 2rem 0;
        padding: 0 1rem;
    }

    address {
        font-style: normal;
    }

    .button {
        width: fit-content;
        margin: 0 auto;
        align-items: center;
        justify-content: center;
        padding: 0.7rem 1.6rem;
        border: 1px solid var(--button-border-color);
        background-color: var(--white-color);
        color: var(--button-text-color);
        font-size: 0.875rem;
        letter-spacing: 0.08em;
        line-height: 1.4;
        text-decoration: none;
        text-align: center;
        display: block;
        transition: border 0.6s ease, background-color 0.6s ease, color 0.6s ease;
    }

    .button:hover {
        border: 1px solid var(--button-border-color);
        background-color: var(--button-text-color);
        color: var(--white-color);
        opacity: 1;
    }

    .arrow {
        position: absolute;
        top: 50%;
        z-index: 99;
    }

    .prev {
        left: 0.5rem;
    }

    .next {
        right: 0.5rem;
    }

    .thumbs {
        display: flex;
        gap: 0.5rem;
        width: fit-content;
        margin: 0 auto;
    }

    .thumb {
        width: 8rem;
        aspect-ratio: 1 / 1;
        overflow: hidden;
        flex-shrink: 0;
    }

    .thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        cursor: pointer;
    }

    .topics-list:first-of-type {
        border-top: 0.0625rem dashed #333;
    }

    .topics-list {
        padding-top: 0.5rem;
        border-bottom: 0.0625rem dashed #333;
    }

    .topics-list:last-of-type {
        margin-bottom: 3rem;
    }

    .topics-list p {
        width: 100%;
        margin-bottom: 0.5rem;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .topics-list .category {
        display: inline-block;
        border: 1px solid var(--gold-color);
        border-radius: 0.125rem;
        color: var(--gold-color);
        padding: 0.125rem;
        font-size: 0.75rem;
        margin: 0 0.75rem;
    }

    .shop-contacts {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .shop-sns img {
        width: 3rem;
        margin-right: 1rem;
        display: inline-block;
    }

    .reserve .button {
        display: inline-block;
        margin-left: 15px;
    }

    .pagination {
        letter-spacing: 0.375rem;
        margin-bottom: 2rem;
    }

    .author {
        font-size: 0.85rem;
    }

    .menu-category-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem 1rem;
        padding: 0;
        margin: 2rem 0 4rem;
        list-style: none;
    }

    .menu-list > a {
        display: block;
        width: 100%;
    }

    .menu-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem 1.25rem;
        scroll-margin-top: 8rem;
    }

    .menu-list#takeout,
    .menu-list#bottle-of-red-wine,
    .menu-list#bottle-of-white-wine,
    .menu-list#bottled-rose-wine,
    .menu-list#bottled-sparkling-wine,
    .menu-list#bottled-champagne,
    .menu-list#all-you-can-drink
     {
        display: block;
        margin-bottom: 1rem;
        clear: both;
    }
    .menu-list h3,
    .term-description {
        display: block;
        grid-column: 1 / -1;
        margin: 0 auto;
    }

    .menu-list h3 {
        font-size: 1.5rem;
    }

    .menu-list h3 span {
        font-size: 1rem;
    }

    .term-description {
        width: 50%;
        text-align: center;
        margin-bottom: 1rem;
    }

    .menu-item img {
        width: 10rem;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        margin-right: 1.2rem;
    }

    .menu-item .price {
        text-align: right;
        margin: 1rem 0 0;
        font-size: 1.5rem;
        font-weight: bold;
    }

    .menu-body {
        width: 100%;
    }

    /* ヘッダー */
    #global_header {
        position: fixed;
        top: 0;
        z-index: 100;
        background-color: rgb(255 255 255 / 85%);
        height: 6rem;
        width: 100%;
    }

    #global_header h1 {
        position: absolute;
        display: block;
        width: 129px;
        height: 44px;
        font-size: 0;
        background: url("../img/logo_sp.svg") no-repeat center / contain;
        overflow: hidden;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 0%;
        z-index: 5000;
        transition: opacity 0.25s;
    }

    #global_header h1 a {
        display: block;
        width: 129px;
        height: 44px;
        z-index: 5000;
    }

    #global_header h1:hover {
        opacity: 0.4;
    }

    #global_menu {
        position: sticky;
        width: 100%;
        height: 6rem;
        top: 0;
        left: 0;
        z-index: 300;
    }

    #global_menu ul {
        display: flex;
        text-align: center;
        align-items: center;
        justify-content: center;
        top: 50%;
        transform: translate(-60px, 100%);
        width: 100%;
        z-index: 1000;
    }

    #global_menu li {
        margin-right: 3.5rem;
    }

    #global_menu li:nth-child(5) {
        width: 129px;
    }

    #global_menu a.button {
        font-size: 0.75rem;
        position: absolute;
        display: flex;
        padding: 0.7rem 0.4rem;
        right: 1rem;
        top: 50%;
        transform: translateY(-80%);
    }

    /* スライダー */
    #main_visual {
        position: relative;
        margin-top: -6rem;
        height: 52.5rem;
        overflow: hidden;
        width: 100%;
    }

    #main_visual .slider {
        position: relative;
        height: 100%;
    }

    #main_visual .slider::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 5;
        background-image:
            linear-gradient(to right, rgba(0,0,0,0.25) 1px, transparent 1px),
            linear-gradient(to bottom, rgba(0,0,0,0.25) 1px, transparent 1px);
        background-size: 0.0625rem 0.0625rem;
    }

    /* activeスライドがある時だけ表示 */
    #main_visual .slider:has(.slide.active)::after {
        opacity: 1;
    }

    #main_visual .slide {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transform: scale(1.05);
        transition: opacity 1s ease, transform 6s ease;
    }

    #main_visual .slide.active {
        opacity: 1;
        z-index: 1;
        transform: scale(1);
    }


    #thumbnails {
        margin: 1rem auto 0;
    }

    /* 各コンテンツ */
    #topics,
    #about,
    #menu,
    #chef,
    #access {
        width:100%;
        clear: both;
        margin: 0 auto;
        scroll-margin-top: 7rem;
        padding-bottom: 20rem;
    }
    #access {
        padding-bottom: 0;
        margin-bottom: 10rem;
    }
    #about {
        background-image: url("../img/about_bg_left.png"), url("../img/about_bg_right.png");
        background-repeat: no-repeat;
        background-position: bottom left, bottom right;
        background-size: 50%, 28%;
    
    }

    #menu {
        background-image: url("../img/menu_bg_left.png"), url("../img/menu_bg_right.png");
        background-repeat: no-repeat;
        background-position: bottom left, bottom right;
        background-size: 15%, 28%;
    }

    #chef {
        background-image: url("../img/chef_bg_left.png"), url("../img/chef_bg_right.png");
        background-repeat: no-repeat;
        background-position: bottom left, bottom right;
        background-size: 50%, 35%;
    }

    #topics .wrap,
    #about .wrap,
    #menu .wrap,
    #chef .wrap,
    #access .access-wrap,
    #access hr {
        width: 75%;
        margin: 0 auto;
    }
    #about .wrap{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    #about .wrap img {
        width: 100%;
    }

    #topics .wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 2rem;
        padding: 1rem
    }

    #topics h2,
    #topics h3,
    #topics .more,
    #about .button,
    #chef .button {
        display: block;
        grid-column: 1 / -1;
    }

    #about .button {
        margin: 0 auto;
    }

    #menu .wrap {
        padding: 0 1rem;
    }

    #menu picture {
        margin-bottom: 2rem;
    }

    #chef .wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap:1rem;
        padding-left: 1rem;
    }

    #access .access-wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: "map info";
        gap: 3.75rem;
        align-items: center;
        padding: 3.75rem 0;
    }

    #access .access-wrap iframe {
        width: 100%;
        height: 22.5rem;
        display: block;
    }

    .access-wrap .map {
        grid-area: map;
    }

    .access-wrap .wrap {
        grid-area: info;
    }

    main {
        width: 75%;
        padding: 0 0 1rem;
        margin: 14rem auto 0;
    }

    /* 投稿ページ */
    .topics{
        margin-top: 9rem;
    }
    .topics-archive,
    #single-post {
        width: 65rem;
        margin: 0 auto;
    }

    #topics-index {
        margin-top: 14rem;
    }

    .post-list h2 {
        text-align: left;
        text-shadow: none;
        color: var(--black-color);
    }
    /* シェフ */
    #chef img{
        width:100%;
        margin-bottom: 1rem;
    }
    
    /* パンくず */
    a.breadcrumb.home {
        padding-left:1.5rem;
        background-image: url('../img/icon_house.svg');
        background-repeat: no-repeat;
        background-position: left center;
        background-size: 1rem;
    }

    /* フッター */
    footer {
        display: block;
        position: relative;
        background-color: var(--footer-bgcolor);
        padding-top: 3rem;
    }

    footer .wrap {
        padding: 0;
    }

    footer h2 {
        width: 164px;
        height: 56px;
        font-size: 0;
        background: url("../img/logo_sp.svg") no-repeat center / contain;
        overflow: hidden;
        margin: 0 auto 1rem;
    }

    footer address {
        font-style: normal;
        width: fit-content;
        margin: 0 auto 3rem;
    }

    footer nav {
        width: 100%;
        display: block;
        margin: 0 auto;
    }

    footer nav ul {
        display: flex;
        gap: 1rem;
        justify-content: center;
        margin-bottom: 6rem;
    }

    footer #copyright {
        display: flex;
        height: 3.75rem;
        background-color: var(--gold-color);
        color: var(--white-color);
        margin: 0;
    }

    footer #copyright span {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin: 0 auto;
    }

    footer .tab a {
        display: flex;
        background-color: var(--gold-color);
        position: absolute;
        bottom: 3.75rem;
        height: 2rem;
    }

    footer #to-index a {
        width: 5rem;
        left: 5rem;
        color: var(--white-color);
        align-items: center;
        border-radius: 1rem 1rem 0 0;
        justify-content: center;
    }

    footer #pagetop a {
        width: 2rem;
        right: 5rem;
        background-image: url("../img/arrow_up.svg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 50%;
        font-size: 0;
    }

    /* メニューページ */
    .menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        list-style: none;
        padding: 0;
    }

}