@charset "UTF-8";

:root {
	--content-width: 1080px;
}

body {
    font-family: 'Noto Serif JP', serif;
    line-height: 2.0;
    letter-spacing: 0.1em;
    font-size: 16px;
    color: #333;
    background-color: rgb(227, 231, 215);
}

.section-wrap {
    max-width: 1000px;
    width: 92%;
    margin:96px auto 0;
}

@media screen and (min-width: 768px) {
    .section-wrap {
        max-width: 1600px;
    }
}

.section_title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.section_title__sub {
    font-size: 16px;
    text-align: center;
    font-weight: bold;
    margin-top: 24px;

}

/* utility */
.u_mt60 {
    margin-top: 60px;
}

/* header */
.header {
    /* position: stickyでheader要素の高さが変わる */
    position: sticky;
    top: 0px;
    background-color: rgb(149, 206, 149);
    z-index: 1000;
    padding-bottom: 10px;
}

.header-inner {
    /* background-color: red; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@media screen and (min-width: 768px) {
    .header-inner {
        flex-direction: row;
        justify-content: space-around;
        max-width: var(--content-width);
        margin: 0 auto;
    }
}

.header_title {
    font-size: 40px;
    font-weight: bold;
}

.header-nav_list {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.header-nav_item {
    display: flex;
    flex-direction: column;
    justify-content: left;
}



.header-nav_link {
    font-size: 28px;
    color:  #000d99;
    border-bottom: 1px solid #000;
    transition: 0.3s;
}

.header-nav_link.is-open {
    border-bottom: 1px solid #000;
}

.js_header-nav_link {
    height: 0;
    display: none;
}

.js_header-nav_link.is-open {
    height: auto;
    font-size: 12px;
    display: block;
    color: #000d99;
    border-bottom: 1px solid #000;
}

.header-nav_link:hover {
    border-bottom: none;
    opacity: 0.5;
    cursor: pointer;
}

/* main */
@media screen and (min-width: 768px) {
    .main {
        width: 90%;
        max-width: var(--content-width);
        margin: 0 auto;
    }
}


/* producer */
.producer {
    position: relative;
}


/* kvの背景画像 */
.producer::before {
    content: "";
    display: block;
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 600px;
    /* background: url(../img/kv.jpg) no-repeat bottom / contain; */
    opacity: 0.2;
}

.producer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

@media screen and (min-width: 768px) {
    .producer-content {
        flex-direction: row;
        width: 100%;
    }
} 


.producer-img img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
}


.producer-thought_title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.producer-thought_txt {
    margin-top: 20px;
}

@media screen and (min-width: 768px) {
    .producer-thought {
        max-width: 500px;
    }
}

.producer-thought_txt br {
    display: none;
}

/* event */
.event-list {
    display: flex;
    flex-wrap: wrap;
    text-align: left;
    width: 92%;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 768px) {
    .event-list {
        text-align: center;
        width: 80%;
    }
}

.event_date, .event_content {
    border-bottom: 1px solid #ccc;
    padding-top: 10px;
}

.event_date {
    width: 30%;
}

.event_content {
    width: 70%;
}

/* item page */
.item-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.item-img img {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

/* customer */
.customer-area_box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.customer_txt-box {
    margin-top: 20px;
}

/* shop */
.shop {
    width: 92%;
}

.shop_contents {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

@media screen and (min-width: 768px) {
    .shop_contents {
        flex-direction: row;
        gap: 60px;
    }
}

.shop_contents:nth-of-type(2) {
    margin-top: 60px;
}

.shop-img iframe  {
    width: 300px;
    height: 225px;
    margin: 0 auto;
}

@media screen and (min-width: 768px) {
    .shop-img iframe  {
        width: 400px;
        height: 400px;
    }
}

.shop-access_title, .shop-access_content {
    border-bottom: 1px solid #ccc;

}

.shop-access {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


@media screen and (min-width: 768px) {
    .shop-access {
        flex-direction: column;
    }
}

.shop-access_title {
    width: 30%;
}

@media screen and (min-width: 768px) {
    .shop-access_title {
        width: 100%;
    }
}

.shop-access_content {
    width: 65%;
}

@media screen and (min-width: 768px) {
    .shop-access_content {
        width: 100%;
    }
}

/* sns */
.sns-img-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.sns-img img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

/* footer */
.footer {
    text-align: center;
    padding-bottom: 20px;
}