@charset "UTF-8";

body {
    font-size: 18px;
    font-family: "Noto Sans JP", serif;
    width: 100%;
}

img {
    max-width: 100%;
}

.wrapper {
    width: 92%;
    max-width: 1000px;
    margin: 0 auto;
}

/* ヘッダー */

header {
    background-color: #2e4a34;
}

.header {
    /* position: fixed; */
}

header h1 {
    width: 143px;
    margin: 0px auto;
    padding: 21px 0;
}

.nav-wrapper ul {
    width: 251px;
    font-size: 16px;
    margin: 0 auto 21px;
    display: flex;
    justify-content: space-between;
    gap: 34px;
}

.nav-wrapper li {
    color: #F9F8F4;
}

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

.mainvisual {
    background: url(../img/mainvisual.jpg) no-repeat center bottom/cover;
    height: 600px;
    margin-bottom: 144px;
}

.mainvisual p {
    color: #F9F8F4;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 33px;
}

.mainvisual p span {
    font-size: 24px;
}

.shop-link {
    background-color: #C46B45;
    display: block;
    width: 120px;
    border-radius: 8px;
    color: #F9F8F4;
    font-weight: bold;
    font-size: 13px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.copy {
    position: relative;
    top: 227.5px;
    left: 15px;
}

/* main */

.wrapper h2 {
    font-size: 32px;
    letter-spacing: 10%;
    font-weight: bold;
    text-align: center;
    margin: 89px 0;
}

.about-us p {
    line-height: 1.8em;
    margin-bottom: 178px;
}

/* products */

.item {
    display: flex;
    flex-direction: column;
    gap: 33px;
    align-items: center;
}

.item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
}


.contents-img {
    height: 240px;
}

.contents-img img {
    height: 240px;
    width: 345px;
    object-fit: cover;
}

.contents-title {
    letter-spacing: 10%;
    height: 46px;
    font-size: 20px;
    font-weight: bold;
    line-height: 10%;
}

/* access */

.access {
    margin: 178px 15px 144px;
}

.access iframe {
    width: 100%;
    height: 250px;
    margin: 89px auto 55px;
}

.access h3 {
    font-size: 32px;
    font-weight: bold;
    text-align-last: left;
    margin-bottom: 34px;
}

.access dl {
    display: grid;
    grid-template-columns: 21% 79%;
    gap: 30px;
    line-height: 1.8em;
}

.access dl dt {
    font-weight: bold;
}

/* footer */

footer {
    background-color: #2e6a34;
    color: #F9F8F4;
    text-align: center;
    margin-top: 144px;
}

@media screen and (min-width:769px) {


    .header h1 {
        margin: 0;
        width: 380px;
    }

    .header {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    h2 {
        font-size: 40px;
    }

    .nav-wrapper {
        width: 299px;

    }

    .nav-wrapper li a:hover {
        text-decoration: underline solid 1px;
    }

    .copy {
        max-width: 1000px;
        margin: 0 auto;
    }

    .copy p {
        font-size: 64px;
    }

    .copy p span {
        font-size: 36px;
    }


    .shop-link {
        width: 190px;
        height: 62px;
        font-size: 20px;
        letter-spacing: 10%;
        padding: 21px 33px;
    }

    .mainvisual a:hover {
        background: #F9F8F4;
        color: #C46B45;
    }

    .about-us p {
        max-width: 450px;
        margin: 0 auto;
    }

    .products ul {
        height: 540.73px;
        display: grid;
        grid-template-rows: 50% 50%;
        grid-template-columns: 1fr 1fr 1fr;
        column-gap: 24px;
        row-gap: 33px;
    }

    .products ul li:hover {
        filter: brightness(130%);
        color: rgb(215, 69, 69);
    }

}