@charset "UTF-8";

/* =========================
   全体
========================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: #ECE7E0;
    color: #000;
    font-family:
        "Noto Serif JP",
        "Hiragino Mincho ProN",
        "Yu Mincho",
        YuMincho,
        serif;
}

img {
    display: block;
    max-width: 100%;
}

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


/* =========================
   ヘッダー
========================= */

header {
    width: 100%;
    height: 85px;

    background-color: #E9D7C5;

    display: flex;
    align-items: center;
}

.site-title {
    display: flex;
    align-items: center;
    gap: 35px;

    margin-left: 45px;

    color: #000;
}

.site-title span {
    font-size: 38px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.site-title strong {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: 0.05em;
}


/* =========================
   メインビジュアル
========================= */

.mv {
    width: 100%;
    height: 420px;

    position: relative;
    overflow: hidden;
}

.mv > img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.mv-text {
    position: absolute;

    top: 18px;
    left: 15px;

    color: #fff;

    font-size: 22px;
    line-height: 1.6;

    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.7);
}

.mv-text p {
    margin: 0;
}


/* =========================
   共通セクション
========================= */

.menu,
.reservation,
.access {
    width: 82%;
    max-width: 805px;

    margin: 0 auto;

    padding: 35px 0;
}

h2 {
    margin: 0;

    padding-bottom: 8px;

    border-bottom: 1px solid #333;

    font-size: 25px;
    font-weight: 500;
}


/* =========================
   メニュー上部タイトル
========================= */

.menu-title {
    display: flex;
    align-items: center;

    gap: 70px;

    margin-bottom: 5px;
}

.menu-title p {
    margin: 0;

    font-size: 24px;
    font-weight: bold;
}

.menu-title h1 {
    margin: 0;

    font-size: 25px;
    font-weight: bold;
}

.menu-intro {
    margin: 20px 0 30px;

    text-align: center;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================
   メニュー
========================= */

.menu-list {
    display: flex;

    justify-content: space-between;

    gap: 30px;
}

.menu-item {
    width: 190px;

    text-align: center;
}

.menu-item img {
    width: 190px;
    height: 180px;

    object-fit: cover;
}

.menu-item h3 {
    margin: 8px 0 3px;

    font-size: 16px;
}

.menu-item p {
    margin: 0;

    font-size: 15px;
    line-height: 1.45;
}


/* =========================
   予約方法
========================= */

.reservation {
    padding-top: 30px;
}

.reservation-inner {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    margin-top: 30px;
}

.reservation-step h3 {
    margin: 0 0 30px;

    font-size: 25px;
}

.reservation-step p {
    margin: 0;

    font-size: 16px;
    line-height: 1.6;
}

.arrow {
    margin: 13px 0;

    padding-left: 55px;

    font-size: 28px;
}


/* LINEボタン */

.reservation-button {
    text-align: center;
}

.reservation-button a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 340px;
    height: 65px;

    background-color: #5AF14F;

    color: #fff;

    border-radius: 15px;

    font-size: 22px;
    font-weight: bold;

    box-shadow:
        0 3px 4px rgba(0, 0, 0, 0.2);
}

.reservation-button p {
    margin-top: 22px;

    font-size: 15px;
    line-height: 1.6;
}


/* =========================
   営業・アクセス
========================= */

.access {
    padding-top: 30px;
    padding-bottom: 100px;
}

.access-content {
    margin-top: 60px;

    text-align: center;
}

.access-content h3 {
    margin: 0 0 5px;

    font-size: 24px;
}

.access-content p {
    margin: 0;

    font-size: 20px;
    line-height: 1.6;
}

.access-content h3:nth-of-type(2) {
    margin-top: 55px;
}

.contact-text {
    margin: 65px 0 0;

    text-align: center;

    font-size: 14px;
}


/* =========================
   フッター
========================= */

footer {
    width: 100%;
    height: 100px;

    background-color: #E9D7C5;
}


/* =========================
   タブレット
========================= */

@media screen and (max-width: 959px) {

    /* ヘッダー */

    header {
        height: 75px;
    }

    .site-title {
        margin-left: 25px;
        gap: 25px;
    }

    .site-title span {
        font-size: 32px;
    }

    .site-title strong {
        font-size: 44px;
    }


    /* メイン画像 */

    .mv {
        height: 450px;
    }

    .mv-text {
        font-size: 20px;
    }


    /* セクション */

    .menu,
    .reservation,
    .access {
        width: 82%;

        padding-top: 30px;
        padding-bottom: 35px;
    }


    /* メニュー */

    .menu-title {
        gap: 60px;
    }

    .menu-title p,
    .menu-title h1 {
        font-size: 22px;
    }

    .menu-list {
        gap: 20px;
    }

    .menu-item {
        width: 190px;
    }

    .menu-item img {
        width: 190px;
        height: 180px;
    }


    /* 予約 */

    .reservation-inner {
        gap: 30px;
    }

    .reservation-button a {
        width: 280px;
        font-size: 18px;
    }
}


/* =========================
   スマホ
========================= */

@media screen and (max-width: 767px) {

    /* -------------------------
       ヘッダー
    ------------------------- */

    header {
        height: 58px;
    }

    .site-title {
        gap: 20px;
        margin-left: 10px;
    }

    .site-title span {
        font-size: 22px;
    }

    .site-title strong {
        font-size: 32px;
    }


    /* -------------------------
       メインビジュアル
    ------------------------- */

    .mv {
        height: 272px;
    }

    .mv-text {
        top: 8px;
        left: 10px;

        font-size: 12px;
        line-height: 1.45;
    }


    /* -------------------------
       セクション
    ------------------------- */

    .menu,
    .reservation,
    .access {
        width: calc(100% - 86px);

        padding-top: 17px;
        padding-bottom: 25px;
    }

    h2 {
        font-size: 18px;

        padding-bottom: 7px;
    }


    /* -------------------------
       メニュー
    ------------------------- */

    .menu-title {
        gap: 25px;

        align-items: flex-start;
    }

    .menu-title p,
    .menu-title h1 {
        font-size: 14px;
    }

    .menu-title h1 {
        flex: 1;
    }

    .menu-intro {
        margin: 12px 0 28px;

        font-size: 13px;
        line-height: 1.65;
    }

    .menu-list {
        flex-direction: column;

        align-items: center;

        gap: 30px;
    }

    .menu-item {
        width: 140px;
    }

    .menu-item img {
        width: 140px;
        height: 140px;
    }

    .menu-item h3 {
        margin: 5px 0 2px;

        font-size: 14px;
    }

    .menu-item p {
        font-size: 13px;
        line-height: 1.4;
    }


    /* -------------------------
       予約方法
    ------------------------- */

    .reservation-inner {
        display: flex;

        flex-direction: column;

        gap: 25px;

        margin-top: 18px;
    }

    .reservation-step h3 {
        margin-bottom: 25px;

        font-size: 18px;
    }

    .reservation-step p {
        font-size: 13px;
    }

    .arrow {
        margin: 7px 0;

        padding-left: 50px;

        font-size: 20px;
    }

    .reservation-button {
        text-align: left;
    }

    .reservation-button a {
        width: 180px;
        height: 40px;

        border-radius: 20px;

        font-size: 13px;
    }

    .reservation-button p {
        margin-top: 10px;

        font-size: 11px;
    }


    /* -------------------------
       営業・アクセス
    ------------------------- */

    .access {
        padding-bottom: 80px;
    }

    .access-content {
        margin-top: 35px;
    }

    .access-content h3 {
        font-size: 17px;
    }

    .access-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .access-content h3:nth-of-type(2) {
        margin-top: 45px;
    }

    .contact-text {
        margin-top: 55px;

        font-size: 12px;
    }


    /* -------------------------
       フッター
    ------------------------- */

    footer {
        height: 80px;
    }

}