body {
    margin: 0;
    color: #333333;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

h2 {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-style: normal;
}

h3 {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.section_01,
.section_02,
.section_03,
.section_04 {
    margin: 0 auto;
    padding: 2rem 0;
    text-align: center;
}

.green {
    background-image: url('../img/bg_gre.jpg');
}

.yellow {
    background-image: url('../img/bg_ye.jpg');
}

.wet {
    background-image: url('../img/bg_wet.jpg');
    background-size: cover;
}

.gray {
    background: #f6f6f6;
}

/* メニューボタン */
.menu-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    cursor: pointer;
    width: 80px;
    height: 80px;
}

.menu-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* グローバルナビゲーション */
.global-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 70%;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    transition: right 0.3s ease-in-out;
    display: flex;
    justify-content: flex-end;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
}

.global-nav.is-open {
    right: 0;
}

.global-nav .nav-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: auto;
    max-width: 300px;
    padding-top: 80px;
    box-sizing: border-box;
}

.global-nav .nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: right;
    width: 100%;
}

.global-nav .nav-list li {
    margin-bottom: 15px;
}

.global-nav .nav-list a {
    text-decoration: none;
    color: #333;
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
    padding: 5px 0;
}

.global-nav .nav-list a:hover {
    color: #007bff;
}

.global-nav .social-icons {
    display: flex;
    gap: 20px;
}

.global-nav .social-icons img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}


.global-nav .contact-number {
    margin-top: 20px;
    font-size: 1rem;
    /* 文字の大きさ */
    font-weight: bold;
    /* 太字 */
    text-align: left;
    width: 100%;
    /* 親要素に合わせる */
}

.global-nav .contact-number a {
    text-decoration: none;
    /* 下線を消す */
    color: #333;
    /* 文字色 */
}

.global-nav .contact-number a:hover {
    color: #007bff;
    /* ホバー時の色 */
}

.nav_list_02 {
    width: 50%;
}

/* PC向け調整 */
@media (min-width: 768px) {
    .global-nav {
        width: 60%;
        height: 70%;
    }

    .global-nav .nav-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 80%;
        max-width: 850px;
        padding-top: 0;
    }

    .global-nav .nav-list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        margin: 0;
    }

    .global-nav .nav-list li {
        margin-bottom: 15px;
        margin-left: 0;
    }

    .global-nav .nav-list a {
        font-size: 1.2rem;
        padding: 0;
        text-align: left;
    }

    .global-nav .social-icons {
        margin-left: auto;
    }
}

.sns-icons {
    margin: 16px 0;
}

.sns-icons img {
    margin-right: 8px;
    vertical-align: middle;
}

/** MV **/


.gallery {
    margin-bottom: 160px;
}

.gallery img {
    width: 60%;
}

.board {
    background-color: #fff;
    border-radius: 30px;
    width: 60%;
    margin: 1rem auto;
    padding: 1rem 0.5rem;
}

.buybtn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 250px;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s;
    background: #eee;
    text-decoration: none;
}

.buybtn img {
    width: 80%;
    object-fit: contain;
}

.buybtn_01 {
    background: linear-gradient(135deg, #ffe066 60%, #ffbb33 100%);
    margin: 0 auto;
}

.buybtn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}



.buylist {
    margin-top: 24px;
}

.category {
    margin-bottom: 32px;
}

.category h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    border-bottom: 2px solid #333333;
    padding-bottom: 4px;
    text-align: left;
}

.listgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px 18px;
    list-style: disc inside;
    margin: 0;
    padding-left: 0;
}

.listgrid li {
    font-size: 0.97rem;
    color: #444;
    margin-bottom: 4px;
    text-align: left;
}

.section_04 {
    min-height: 500px;
    background-image:
        url(../img/footer.png),
        url(../img/bg_ye.jpg);
    background-repeat: no-repeat, repeat;
    background-position: center bottom, left top;
    background-size: 100% auto, auto auto;
}

footer {
    text-align: center;
    padding: 24px 0;
}

.hero_wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 17 / 9;
    overflow: hidden;
}

.hero {
    position: absolute;
    inset: 0;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.farm-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
}

.farm-name img {
    max-width: 80%;
    height: auto;
}


.section_02 {
    padding: 50px 0;
}

.section_02_wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.section_block {
    margin-bottom: 50px;
}

.section_02_inner {
    width: 70%;
    margin: 0 auto;
    padding: 20px 0;
}

.content_wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.image_area {
    flex: 0 0 30%;
    max-width: 30%;
}

.image_area img {
    width: 100%;
    height: auto;
    display: block;
}

.text_area {
    flex: 1;
    text-align: left;
}

.slick-dots {
    display: none !important;
}

.slick-dotted.slick-slider {
    margin-bottom: 0;
}


@media screen and (max-width: 768px) {
    .menu-btn {
        top: 10px;
        right: 10px;
    }
    .menu-btn img {
        width: 90%;
    }
    .hero_wrap {
        aspect-ratio: 9 / 16;
    }
    .farm-name img {
    width: 100%;
    min-width: 300px;
  }
    .section_02 {
        padding: 40px 0;
        /* スマートフォン用の余白 */
    }

    .section_02_wrap {
        padding: 20px 0;
        /* スマートフォン用の余白 */
    }

    .section_block {
        margin-bottom: 40px;
        /* スマートフォン用のセクション間余白 */
    }

    .section_block h3.section_title {
        font-size: 1em;
        margin-bottom: 25px;
    }

    .section_02_inner {
        width: 90%;
        /* 横幅90% */
        padding: 15px 0;
        /* スマートフォン用の余白（必要に応じて調整） */
    }

    .content_wrapper {
        flex-direction: column;
        /* 上下に分ける */
        align-items: center;
        /* 中央寄せ（画像とテキスト） */
        gap: 20px;
        /* 上下の余白 */
    }

    .image_area {
        flex: unset;
        width: 100%;
        max-width: 80%;
    }

    .text_area {
        width: 100%;
        text-align: center;
    }

    .section_01 h2 {
        font-size: 1.25em;
    }

    .section_02 h2 {
        width: 80%;
        margin: auto;
        font-size: 1.25em;
        margin-bottom: 1em;
    }

    .section_02 p {
        font-size: 14px;
        line-height: 1.2;
        text-align: left;
        margin: auto;
    }

    .section_04 {
        min-height: auto;
    }

    .gallery {
        margin-bottom: 20px;
    }

    .gallery img {
        width: 90%;
    }

    .board {
        width: 90%;
    }

    .board p {
        font-size: 14px;
        line-height: 1.2;
        text-align: left;
    }

    .listgrid {
        grid-template-columns: repeat(2, 1fr);
    }
    .global-nav {
        height: auto;
        justify-content: center;
    }
    .global-nav .nav-list {
        text-align: left;
    }

    .global-nav .nav-list a {
        font-size: 1em;
    }
    .nav_list_02 {
        width: 100%;
    }
    .info_txt {
    width: 90%;
}

}