@charset "utf-8";

/* ここから　3ページ同じどころ */
html {
    scroll-behavior: smooth;
    font-family: "Shippori Mincho", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    line-height: 1.8;
    max-width: 100%;
}

/*header nav stsrt  */
header {
    >p {
        width: 80px;
        position: absolute;
        left: 80px;
        top: 15px;
    }

    >h1 {
        font-size: 30px;
        font-weight: bold;
        margin: 0 200px;
    }

    /* header nav stsrt */
    >nav {
        background-color: #D9D9D9;
        /* position: fixed;
        z-index: 1; */
        padding: 10px;

        >ul {
            display: flex;
            justify-content: space-evenly;

            >li {
                font-size: 20px;
                font-weight: bold;

                >a:hover {
                    text-decoration: underline double;
                }
            }

        }
    }
}

/* header nav END */
/* ここまで同じどころ */

/* main start */
main {
    >div {
        display: flex;
        justify-content: space-evenly;
        margin-top: 10px;

        >section {
            img {
                margin: 20px 0;
            }
        }

        div {
            margin-top: 20px;

            >.address {
                display: flex;
                justify-content: space-evenly;
                margin-bottom: 10px;
            }
        }
    }

    h2 {
        font-size: 25px;
        font-weight: bold;
    }

    h3 {
        font-size: 23px;
        font-weight: bold;
    }

    article {
        >h3 {
            margin: 20px auto;
            text-align: center;
        }

        .shop {
            display: flex;
            justify-content: space-evenly;

            h4 {
                font-size: 20px;
                font-weight: bold;
                margin: 40px 0 10px;
            }
        }
    }
}

footer {
    text-align: center;
    margin: 30px 0;
}