/*
Theme Name: 柳川農園
Author: naoko yanagawa
Description: 架空の農園　柳川農園のコーポレートサイト用テーマ
Version: 1.0
*/


@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fasthand&family=Kaisei+HarunoUmi:wght@700&family=Kosugi+Maru&display=swap');


/* Base
   ========================================================================== */

html {
    font-size: 62.5%;
}

body {
    font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Verdana, "Hiragino Kaku Gothic ProN", Meiryo, 'Kaisei HarunoUmi', sans-serif;
    font-size: 1.6rem;
    color: #333;
    background-color: #fff;
}

a,
a:hover {
    text-decoration: none;
}

a:hover {
    color: #fff;
}

h1 {
    text-align: center;
}

img {
    width: 100%;
}

figure {
    margin: 0;
}


/* Header
   ========================================================================== */

@media (max-width: 768px) {
    header {
        position: fixed;
        width: 100%;
    }
}

/* PC-nav */

@media (max-width: 768px) {
    .header_pc_inner {
        display: none;
    }
}

@media (min-width: 769px) {
    .header_pc_inner {
        display: block;
    }
}

.shop_area {
    background-color: #e1f0f1;
}

.shop_inner {
    height: 100px;
    max-width: 1300px;
    margin: 0 auto;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shop_area p {
    text-align: inherit;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 24px;
    margin: 0;
}

@media (min-width: 769px) {
    .shop_link {
        border-radius: 10px;
        width: 380px;
        height: 70px;
        background-image: url(./images/p0377_m.jpg);
        background-color: rgba(147, 220, 241, 0.4);
        background-blend-mode: lighten;
        display: flex;
        background-size: 22%;
        justify-content: space-around;
        box-shadow: 1px 1px 13px 1px rgba(0, 0, 0, 0.1);
    }
}

.shop_link a {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 30px;
    font-weight: bold;
    color: #549360;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .shop_link a {
        display: flex;
        color: #549360;
        background-image: url(./images/p0377_m.jpg);
        background-color: rgba(147, 220, 241, 0.4);
        background-blend-mode: lighten;
        background-size: 100%;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        font-size: 20px;
        border-radius: 50%;
    }

    .shop_link i :hover {
        color: #325939;
    }

    .shop_link {
        padding: 5px 0;
    }
}

.shop_link a:hover {
    color: #325939;
}

@media (min-width: 769px) {
    i.fas.fa-shopping-cart {
        font-size: 50px;
        padding-right: 24px;
    }
}

.pc-nav {
    background-color: #fff;
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.1);
}

.pc-nav-btn {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: space-around;
    align-items: center;
    height: 70px;
    font-size: clamp(12px, 2vw, 30px);
    font-family: 'Kaisei HarunoUmi', serif;
    max-width: 1300px;
    margin: 0 auto;
    width: 90%;
}

.pc-nav-btn a {
    color: #549360;
    white-space: nowrap;
}

.pc-nav-btn a:hover {
    color: #364d49;
}

li.logo {
    background-image: url(./images/menu_logo.gif);
    background-repeat: no-repeat;
    width: 254px;
    height: 68px;
}

li.logo a {
    display: block;
    width: 254px;
    height: 68px;
}

/* SP-nav */

@media (min-width: 769px) {
    .header_sp_inner {
        display: none;
    }
}

@media (max-width: 768px) {
    .header_sp_inner {
        background-color: #fff;
        box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.1);
        display: flex;
        height: 50px;
        justify-content: space-between;
        padding: 0 20px;
    }
}

.logo {
    width: 174px;
}

/* ハンバーガーメニュー
   ========================================================================== */

.openbtn {
    position: relative;
    cursor: pointer;
    width: 50px;
    background-image: url(./images/p0404_m.jpg);
    background-color: rgba(147, 220, 241, 0.4);
    background-blend-mode: lighten;
    background-size: 100%;
    border-radius: 5px;
}

/*ボタン内側*/
.openbtn span {
    display: inline-block;
    transition: all .4s;
    /*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background: #183b3f;
    width: 45%;
}

.openbtn span:nth-of-type(1) {
    top: 15px;
}

.openbtn span:nth-of-type(2) {
    top: 23px;
}

.openbtn span:nth-of-type(3) {
    top: 31px;
}

/*activeクラスが付与されると線が回転して×に*/

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
    /*真ん中の線は透過*/
}

.openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

@media (min-width: 769px) {
    .sp-nav {
        display: none;
    }

    .sp-nav-bth {
        display: none;
    }
}

@media (max-width: 768px) {
    .sp-nav {
        display: none;
        width: 100%;
        height: 100vh;
        background-image: url(./images/p0377_m.jpg);
        background-color: rgba(147, 220, 241, 0.4);
        background-blend-mode: lighten;
        background-size: 170%;
        font-size: 30px;
        font-weight: bold;
    }

    .sp-nav-btn {
        margin: 0;
        padding: 0 0 0 35px;
        list-style: none;
    }

    a .sp-nav-btn {
        display: block;
    }

    li.concept {
        padding-top: 90px;
    }

    li.concept a {
        display: flex;
        align-items: center;
        color: #549360;
    }

    li.concept i {
        display: flex;
        color: #549360;
        background-color: #fff;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        font-size: 20px;
        border-radius: 50%;
    }

    li.plant {
        padding-top: 30px;
    }

    li.plant a {
        display: flex;
        align-items: center;
        color: #549360;
    }

    li.plant i {
        display: flex;
        color: #549360;
        background-color: #fff;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        font-size: 20px;
        border-radius: 50%;
    }

    li.diary {
        padding-top: 30px;
    }

    li.diary a {
        display: flex;
        align-items: center;
        color: #549360;
    }

    li.diary i {
        display: flex;
        color: #549360;
        background-color: #fff;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        font-size: 20px;
        border-radius: 50%;
    }

    li.cart {
        padding-top: 30px;
    }

    li.cart a {
        display: flex;
        align-items: center;
        color: #549360;
    }

    li.cart i {
        display: flex;
        color: #549360;
        background-color: #fff;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        font-size: 20px;
        border-radius: 50%;
    }

    li.contact {
        padding-top: 30px;
    }

    li.contact a {
        display: flex;
        align-items: center;
        color: #549360;
    }

    li.contact i {
        display: flex;
        color: #549360;
        background-color: #fff;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        font-size: 20px;
        border-radius: 50%;
    }

    li.access {
        padding-top: 30px;
    }

    li.access a {
        display: flex;
        align-items: center;
        color: #549360;
    }

    li.access i {
        display: flex;
        color: #549360;
        background-color: #fff;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        font-size: 20px;
        border-radius: 50%;
    }
}

/* Cover
   ========================================================================== */

#cover #slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

@media (max-width: 768px) {
    #cover {
        z-index: -1;
        padding-top: 50px;
        position: relative;
    }

    #cover #slide img {
        height: 240px;
    }
}


/* content
   ========================================================================== */

#content h1 {
    margin: 0;
    font-size: 30px;
    font-weight: bold;
    color: #549360;
    padding: 50px 0 20px 0;
}

.top-text {
    font-size: 24px;
    margin: 0;
    text-align: center;
    padding-bottom: 30px;
}

@media (max-width: 768px) {
    #content h1 {
        font-size: 24px;
        padding: 75px 0 20px 0;
    }

    .top-text {
        font-size: 16px;
        padding: 0 20px 30px 20px;
        text-align: start;
    }
}

/* NEWS
   ========================================================================== */

.news-content {
    background-color: #c9dfe0;
}

.news_inner {
    max-width: 1300px;
    margin: 0 auto;
    width: 90%;
    padding-top: 20px;
}

.news-top {
    width: 150px;
    border-radius: 10px;
    height: 40px;
    font-size: 24px;
    font-weight: bold;
    color: #2e6c73;
    background-image: url(./images/p0377_m.jpg);
    background-color: rgba(147, 220, 241, 0.4);
    background-blend-mode: lighten;
    background-size: 47%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .news-top {
        width: 90px;
        height: 30px;
        font-size: 16px;
    }
}

.news-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-top: 20px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .news-container {
        display: flex;
        flex-direction: column;
        padding-bottom: 5px;
        padding-top: 20px;
    }

    .news-item {
        background-color: #fff;
        margin-bottom: 10px;
    }

    .news-item img {
        width: 50%;
        object-fit: cover;
    }

    .news-item-1 {
        width: 100%;
        display: flex;
        background-color: #fff;
        margin-bottom: 20px;
        box-sizing: border-box;
        flex-direction: column;
    }

    .news-item-1 img {
        object-fit: cover;
    }

    .news-body {
        padding: 5px 10px 0 10px;
        line-height: 1.3
    }

    .date {
        font-size: 16px;
    }

    p.news-title {
        margin: 0;
        font-size: 16px;
    }

    p.news-text {
        margin: 0;
        font-size: 16px;
    }

    .center-btn {
        display: flex;
        justify-content: center;
    }

    .center1 {
        width: 150px;
        height: 30px;
        border-radius: 10px;
        font-size: 16px;
        font-weight: bold;
        background-image: url(./images/p0377_m.jpg);
        background-color: rgba(147, 220, 241, 0.4);
        background-blend-mode: lighten;
        background-size: 47%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        box-shadow: 1px 1px 13px 1px rgba(0, 0, 0, 0.1);
    }
}

@media (min-width: 769px) {
    .news-item {
        width: 32%;
        height: 200px;
        display: flex;
        background-color: #fff;
        margin-bottom: 20px;
    }

    .news-item img {
        width: 50%;
        object-fit: cover;
    }

    .news-item-1 {
        width: 100%;
        display: flex;
        background-color: #fff;
        margin-bottom: 20px;
        box-sizing: border-box;
    }

    .news-item-1 img {
        width: 50%;
        height: 100%;
        object-fit: cover;
    }

    .news-body {
        padding: 10px 20px;
        line-height: 1.3
    }

    .date {
        font-size: 16px;
    }

    p.news-title {
        margin: 0;
        font-size: 18px;
        padding-top: 20px;
    }

    p.news-text {
        margin: 0;
        font-size: 16px;
    }

    .center-btn {
        display: flex;
        justify-content: center;
    }

    .center1 {
        width: 200px;
        height: 40px;
        border-radius: 10px;
        font-size: 24px;
        font-weight: bold;
        background-image: url(./images/p0377_m.jpg);
        background-color: rgba(147, 220, 241, 0.4);
        background-blend-mode: lighten;
        background-size: 47%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        box-shadow: 1px 1px 13px 1px rgba(0, 0, 0, 0.1);
    }
}

.news-item a {
    display: flex;
    color: #333;
}

.news-item a:hover {
    color: #31a35c;
}

.center1 a {
    color: #2e6c73;
}

/* plant
   ========================================================================== */
@media (min-width: 769px) {
    .plant-content {
        padding: 50px 0;
        max-width: 1300px;
        margin: 0 auto;
        width: 90%;
    }

    .plant-top {
        width: 200px;
        height: 40px;
        border-radius: 10px;
        font-size: 24px;
        font-weight: bold;
        background-image: url(./images/p0404_m.jpg);
        background-color: rgba(147, 220, 241, 0.4);
        background-blend-mode: lighten;
        background-size: 47%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .plant-container {
        padding-top: 20px;
        padding-bottom: 20px;
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .plant-item {
        width: 24%;
        display: flex;
        flex-direction: column;
        box-shadow: 1px 1px 13px 1px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
    }

    .center2 {
        width: 300px;
        height: 40px;
        border-radius: 10px;
        font-size: 24px;
        font-weight: bold;
        background-image: url(./images/p0404_m.jpg);
        background-color: rgba(147, 220, 241, 0.4);
        background-blend-mode: lighten;
        background-size: 47%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 1px 1px 13px 1px rgba(0, 0, 0, 0.1);
    }

    .plant-body {
        padding: 20px;
        font-size: clamp(12px, 2vw, 18px);
        line-height: 1.6;
    }

    .plant-item img {
        border-radius: 10px 10px 0px 0px;
        height: 180px;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .plant-content {
        padding: 20px 20px 50px 20px;
    }

    .plant-top {
        width: 150px;
        height: 30px;
        border-radius: 10px;
        font-size: 16px;
        font-weight: bold;
        background-image: url(./images/p0404_m.jpg);
        background-color: rgba(147, 220, 241, 0.4);
        background-blend-mode: lighten;
        background-size: 47%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .plant-container {
        padding-top: 20px;
        padding-bottom: 5px;
        display: flex;
        width: 100%;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .plant-item {
        width: 48%;
        display: flex;
        flex-direction: column;
        box-shadow: 1px 1px 13px 1px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        margin-bottom: 15px;
    }

    .center2 {
        width: 200px;
        height: 30px;
        border-radius: 10px;
        font-size: 16px;
        font-weight: bold;
        background-image: url(./images/p0404_m.jpg);
        background-color: rgba(147, 220, 241, 0.4);
        background-blend-mode: lighten;
        background-size: 47%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 1px 1px 13px 1px rgba(0, 0, 0, 0.1);
    }

    .plant-body {
        padding: 10px;
        font-size: clamp(12px, 2vw, 18px);
        line-height: 1.6;
    }

    .plant-item img {
        border-radius: 10px 10px 0px 0px;
        height: 150px;
        object-fit: cover;
    }
}


.plant-item a {
    color: #333;
}

.plant-item a:hover {
    color: #31a35c;
}

p.plant-title {
    margin: 0;
    font-weight: bold;
    font-size: 18px;
}

p.plant-text {
    margin: 0;
    box-sizing: border-box;
}

.center2 a {
    color: #fff;
    display: block;
    width: 100%;
    text-align: center;
}

/* footer
   ========================================================================== */

#contact {
    width: 100%;
    height: 360px;
    background-image: url(./images/p0377_m.jpg);
    background-color: rgb(255 255 255 / 40%);
    background-blend-mode: lighten;
    background-size: 47%;
}

nav.footer-nav {
    max-width: 1300px;
    margin: 0 auto;
    width: 90%;
    padding-top: 30px;
}

@media (max-width: 768px) {
    nav.footer-nav {
        display: none;
    }

    #contact {
        width: 100%;
        height: 360px;
        background-image: url(./images/p0377_m.jpg);
        background-color: rgb(255 255 255 / 40%);
        background-blend-mode: lighten;
        background-size: 100%;
    }

    ul.footer-sns {
        padding: 0 0 20px 0;
        margin: 0;
        list-style: none;
        display: flex;
        justify-content: center;
    }

    ul.footer-sns li a {
        display: flex;
        color: #549360;
        background-color: #fff;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        font-size: 20px;
        border-radius: 50%;
    }

    .footer_address {
        margin: 0;
        font-size: 20px;
        color: #2e6c73;
        line-height: 1;
        text-align: center;
    }
}

ul.footer-nav {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-around;
    font-weight: bold;
    font-size: clamp(12px, 2vw, 30px);
    font-family: 'Kaisei HarunoUmi', serif;
}


.footer-nav a {
    color: #549360;
    white-space: nowrap;
}

.footer-nav a:hover {
    color: #364d49;
}

.footer-info {
    display: flex;
    justify-content: space-evenly;
    padding-top: 50px;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-logo {
    height: 107px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo img {
    width: 393px;
}

@media (min-width: 769px) {
    ul.footer-sns {
        padding: 60px 0 0 0;
        margin: 0;
        list-style: none;
        height: 50px;
    }

    ul.footer-sns li a {
        display: flex;
        color: #549360;
        background-color: #fff;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        font-size: 30px;
        border-radius: 50%;
    }

    .footer_address {
        margin: 0;
        font-size: clamp(12px, 2vw, 24px);
        color: #2e6c73;
        line-height: 1;
    }
}

ul.footer-sns li a:hover {
    color: #325939;
}

p.text1,
.text2,
.text3,
.text4 {
    margin: 0;
}

p.text2 {
    padding: 20px 0;
}

@media (max-width: 768px) {
    .footer-info {
        display: flex;
        flex-direction: column;
        padding: 0 20px;
    }

    .footer-logo img {
        width: 335px;
    }
}

#copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    background-color: #fff;
}


/* about.html
   ========================================================================== */

.plant-content1 {
    background-color: #c9dfe0;
    padding: 75px 20px 20px;
}

@media (min-width: 769px) {
    .plant-content1 {
        background-color: #c9dfe0;
        padding: 50px 0;
        text-align: center;
        font-size: 24px;
    }

    .plant-content1 h2 {
        font-size: 30px;
    }

    .schedule-box {
        display: flex;
        max-width: 1300px;
        margin: 0 auto;
        width: 90%;
        padding-bottom: 50px;
    }

    .schedule {
        width: 50%;
    }

    .calendar {
        width: 50%;
    }

    .calendar h2 {
        color: #aaa36d;
        font-size: clamp(24px, 2vw, 35px);
        text-align: center;
        margin: 0;
        padding: 20px 0;
    }
}

.about-text {
    margin: 0;
}

.plant-title1 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plant-title1 h2 {
    margin: 0;
    padding: 20px 0;
}

.plant-title1 p {
    margin: 0;
}

.calendar {
    padding: 0 20px 50px 20px;
}

@media (max-width: 768px) {
    .calendar h2 {
        color: #aaa36d;
        font-size: 24px;
        text-align: center;
        margin: 0;
        padding: 20px 0;
    }
}


/* plant.html
   ========================================================================== */
@media (min-width: 769px) {
    .plant-content2 {
        padding: 50px 0 30px 0;
        max-width: 1300px;
        margin: 0 auto;
        width: 90%;
    }

    .top-title {
        font-size: 30px;
        font-weight: bold;
        color: #549360;
        text-align: center;
    }

    .plant-container1 {
        padding-top: 20px;
        display: flex;
        justify-content: space-between;
        width: 100%;
        flex-wrap: wrap;
    }

    .plant-item-1 {
        width: 32%;
        display: flex;
        flex-direction: column;
        box-shadow: 1px 1px 13px 1px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .plant-body {
        padding: 20px;
        font-size: clamp(12px, 2vw, 18px);
        line-height: 1.6;
    }

    .plant-item-1 img {
        border-radius: 10px 10px 0px 0px;
        height: 180px;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .plant-content2 {
        padding: 35px 20px 0 20px;
    }

    .top-title {
        font-size: 24px;
        font-weight: bold;
        color: #549360;
        text-align: center;
    }

    .plant-container1 {
        padding-top: 20px;
        padding-bottom: 20px;
        display: flex;
        justify-content: space-between;
        width: 100%;
        flex-wrap: wrap;
    }

    .plant-item-1 {
        width: 48%;
        display: flex;
        flex-direction: column;
        box-shadow: 1px 1px 13px 1px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .plant-body {
        padding: 0 10px 10px 10px;
        font-size: clamp(12px, 2vw, 18px);
        line-height: 1.6;
    }

    .plant-item-1 img {
        border-radius: 10px 10px 0px 0px;
        height: 150px;
        object-fit: cover;
    }
}


.plant-item-1 a {
    color: #333;
}

.plant-item-1 a:hover {
    color: #31a35c;
}


/* blog.html
   ========================================================================== */
@media (max-width: 768px) {
    .plant-content3 {
        background-color: #c9dfe0;
        padding: 15px 0 35px 0;
    }
}

@media (min-width: 769px) {
    .plant-content3 {
        background-color: #c9dfe0;
        padding: 0 0 35px 0;
    }
}


/* contact.html
   ========================================================================== */
@media (min-width: 769px) {
    .contact-box {
        max-width: 1300px;
        margin: 0 auto;
        width: 90%;
        padding-bottom: 50px;
    }

    .top-contact {
        padding: 20px 0;
        font-size: 30px;
        font-weight: bold;
        color: #549360;
        text-align: center;
    }

    .center3 {
        border: 1px solid #333;
        width: 100px;
        display: flex;
        justify-content: center;
        padding: 10px;
    }

    .center3 a {
        color: #333;
    }
}

@media (max-width: 768px) {
    .contact-box {
        padding: 0 20px 50px 20px;
    }

    .top-contact {
        padding: 35px 0 20px 0;
        font-size: 24px;
        font-weight: bold;
        color: #549360;
        text-align: center;
    }

    .center3 {
        border: 1px solid #333;
        width: 100px;
        display: flex;
        justify-content: center;
        padding: 10px;
    }

    .center3 a {
        color: #333;
    }
}


/* contact.html
   ========================================================================== */

.map_address {
    font-size: 20px;
}

/* cart-top.html
   ========================================================================== */

@media (min-width: 769px) {

    .shop_cart_link {
        border-radius: 10px;
        width: 250px;
        height: 70px;
        background-image: url(./images/p0377_m.jpg);
        background-color: rgba(147, 220, 241, 0.4);
        background-blend-mode: lighten;
        display: flex;
        background-size: 22%;
        justify-content: space-around;
        box-shadow: 1px 1px 13px 1px rgba(0, 0, 0, 0.1);
    }


    .login_link {
        border-radius: 10px;
        width: 250px;
        height: 70px;
        background-image: url(./images/p0360_m.jpg);
        background-color: rgba(147, 220, 241, 0.4);
        background-blend-mode: lighten;
        display: flex;
        background-size: 22%;
        justify-content: space-around;
        box-shadow: 1px 1px 13px 1px rgba(0, 0, 0, 0.1);
    }
}

.shop_cart_link a {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 25px;
    font-weight: bold;
    color: #d05c23;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.shop_cart_link a:hover {
    color: #325939;
}

.login_link a {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 25px;
    font-weight: bold;
    color: #4f9599;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.login_link a:hover {
    color: #2f5b5d;
}


@media (max-width: 768px) {
    .shop_cart_link a {
        display: flex;
        color: #d05c23;
        background-image: url(./images/p0377_m.jpg);
        background-color: rgba(147, 220, 241, 0.4);
        background-blend-mode: lighten;
        background-size: 72%;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        font-size: 20px;
        border-radius: 50%;
    }

    .login_link a :hover {
        color: #2f5b5d;
    }

    .shop_cart_link {
        padding: 5px 0;
    }

    .login_link {
        padding: 5px 0;
    }

    .login_link a {
        display: flex;
        color: #4f9599;
        background-image: url(./images/p0360_m.jpg);
        background-color: rgba(147, 220, 241, 0.4);
        background-blend-mode: lighten;
        background-size: 72%;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        font-size: 20px;
        border-radius: 50%;
    }
}

@media (min-width: 769px) {
    i.fas.fa-shopping-cart {
        font-size: 35px;
        padding-right: 24px;
    }

    i.fas.fa-lock {
        font-size: 35px;
        padding-right: 24px;
    }
}

@media (min-width: 769px) {
    .sp-cart-nav {
        display: none;
    }

    .cart-nav-bth {
        display: none;
    }

    .top {
        font-family: 'Kaisei HarunoUmi', serif;
        width: 320px;
        text-align: center;
        background-color: #fff;
        border-radius: 10px;
        height: 70px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 25px;
        font-weight: bold;
        box-shadow: 1px 1px 13px 1px rgba(0, 0, 0, 0.1);
    }

    .top a {
        color: #4f9599;
        display: block;
        width: 100%;
        text-align: center;
    }

    .top a:hover {
        color: #2f5b5d;
        display: block;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .sp-cart-nav {
        display: none;
        width: 100%;
        background-color: #a4cbcd;
        font-size: 24px;
        font-weight: bold;
        overflow-y: scroll;
        height: calc(100vh - 95px);
    }

    .cart-nav-btn {
        font-family: 'Kaisei HarunoUmi', serif;
        margin: 0;
        padding: 20px;
        list-style: none;
    }

    .cart-top {
        border-bottom: 2px solid #fff;
        width: 100%;
        text-align: center;
        padding: 20px 0 10px 0;
    }

    .cart-top a {
        color: #fff;
        display: block;
        width: 100%;
        text-align: center;
    }

    .shop {
        border-bottom: 2px solid #fff;
        width: 100%;
        text-align: center;
        padding: 20px 0 10px 0;
    }

    .shop a {
        color: #fff;
        display: block;
        width: 100%;
        text-align: center;
    }

    .faq {
        border-bottom: 2px solid #fff;
        width: 100%;
        text-align: center;
        padding: 20px 0 10px 0;
    }

    .faq a {
        color: #fff;
        display: block;
        width: 100%;
        text-align: center;
    }

    .guide {
        border-bottom: 2px solid #fff;
        width: 100%;
        text-align: center;
        padding: 20px 0 10px 0;
    }

    .guide a {
        color: #fff;
        display: block;
        width: 100%;
        text-align: center;
    }

    .privacy {
        border-bottom: 2px solid #fff;
        width: 100%;
        text-align: center;
        padding: 20px 0 10px 0;
    }

    .privacy a {
        color: #fff;
        display: block;
        width: 100%;
        text-align: center;
    }

    .top {
        width: 100%;
        text-align: center;
        padding: 10px 0;
        background-color: #fff;
        border-radius: 10px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
        box-shadow: 1px 1px 13px 1px rgba(0, 0, 0, 0.1);
    }

    .top a {
        color: #4f9599;
        display: block;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .plant-content4 {
        padding: 35px 20px 50px 20px;
    }

    .plant-content4 h2 {
        font-size: 24px;
        margin: 0;
        text-align: center;
        color: #4f9599;
    }

    .plant-container2 {
        padding-top: 20px;
        display: flex;
        justify-content: space-between;
        width: 100%;
        flex-wrap: wrap;
    }
}

@media (min-width: 769px) {
    #content1 {
        max-width: 1300px;
        margin: 0 auto;
        width: 90%;
        display: flex;
    }

    .plant-content4 {
        width: 70%;
        padding: 50px 0;
    }

    p.shop-text {
        margin: 0;
        padding: 20px 0;
        font-size: 20px;
    }

    .plant-content4 h2 {
        font-size: 24px;
        text-align: center;
        color: #4f9599;
        margin: 0;
    }

    .plant-container2 {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding-top: 20px;
    }
}

/* サイドバー
   ========================================================================== */

@media (max-width: 768px) {
    .side {
        display: none;
    }

    aside.side2 {
        display: none;
    }

    .menu {
        font-family: 'Noto Sans JP', sans-serif;
        padding: 0 20px;
    }

    .login_side {
        display: flex;
        align-items: center;
        justify-content: center;
        background-image: url(./images/p0360_m.jpg);
        background-color: rgba(147, 220, 241, 0.4);
        background-blend-mode: lighten;
        background-size: 72%;
        width: 100%;
        height: 50px;
        border-radius: 10px;
        box-shadow: 1px 1px 13px 1px rgba(0, 0, 0, 0.1);
    }

    .login_side a {
        color: #4f9599;
        font-weight: bold;
        display: block;
        width: 100%;
        text-align: center;
    }

    ul.side-btn {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    li.vegetables {
        width: 100%;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 20px 0 10px 0;
        border-bottom: 2px solid #fff;
        padding-bottom: 10px;
        color: #fff;
    }

    li.tomato,
    li.cucumber,
    li.carrot,
    li.potato,
    li.broccoli,
    li.burdock {
        width: 100%;
        height: 30px;
        background-color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 10px 0 10px 0;
        padding: 10px 0;
        box-shadow: 1px 1px 13px 1px rgba(0, 0, 0, 0.1);
    }

    li.tomato a,
    li.cucumber a,
    li.carrot a,
    li.potato a,
    li.broccoli a,
    li.burdock a {
        color: #4f9599;
        display: block;
        width: 100%;
        text-align: center;
    }
}

@media (min-width: 769px) {
    aside.side {
        padding: 0 0 0 20px;
        width: 30%;
    }

    .side {
        padding-top: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .login_side {
        display: flex;
        align-items: center;
        justify-content: center;
        background-image: url(./images/p0360_m.jpg);
        background-color: rgba(147, 220, 241, 0.4);
        background-blend-mode: lighten;
        background-size: 72%;
        width: 100%;
        height: 50px;
        border-radius: 10px;
        box-shadow: 1px 1px 13px 1px rgba(0, 0, 0, 0.1);
    }

    .login_side a {
        color: #4f9599;
        font-weight: bold;
        display: block;
        width: 100%;
        text-align: center;
    }

    ul.side-btn {
        list-style: none;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    li.vegetables {
        width: 100%;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 20px 0 10px 0;
        border-bottom: 2px solid #4f9599;
    }

    li.tomato,
    li.cucumber,
    li.carrot,
    li.potato,
    li.broccoli,
    li.burdock {
        width: 100%;
        height: 30px;
        background-color: #a4cbcd;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 10px 0 10px 0;
        box-shadow: 1px 1px 13px 1px rgba(0, 0, 0, 0.1);
    }

    li.tomato a,
    li.cucumber a,
    li.carrot a,
    li.potato a,
    li.broccoli a,
    li.burdock a {
        color: #fff;
        display: block;
        width: 100%;
        text-align: center;
    }
}

/* 商品詳細ページ
   ========================================================================== */
@media (min-width: 769px) {
    .plant-content5 {
        width: 70%;
        padding: 50px 0;
    }

    .vegetables-container2 {
        padding: 20px 0;
    }

    aside.side2 {
        padding: 50px 0 0 20px;
        width: 30%;
    }

    .vegetables-item {
        display: flex;
        padding-bottom: 20px;
    }

    .vegetables-item img {
        width: 50%;
        border-radius: 30px;
        object-fit: cover;
        height: 400px;
    }

    .vegetables-body {
        width: 50%;
        padding: 20px;
    }

    p.vegetables-title {
        margin: 0;
        font-size: 25px;
        font-weight: bold;
        text-align: center;
    }

    p.vegetables-text {
        font-size: 20px;
        margin: 0;
        padding: 10px 0;
    }

    p.vegetables-text2 {
        font-size: 20px;
        margin: 0;
        padding: 10px 0;
    }

    .number {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .vegetables-text3 {
        font-size: 20px;
    }

    .vegetables-text4 {
        font-size: 20px;
        border: 1px solid #ddd;
        padding: 15px 25px;
    }

    .cart-page a {
        background-color: #a0c544;
        width: 100%;
        height: 50px;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 10px;
        color: #fff;
    }

    .cart-page a:hover {
        color: #556924;
    }

    .plant-page a {
        background-color: #b8b8b8;
        width: 100%;
        height: 50px;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
        font-weight: bold;
        color: #fff;
    }

    .plant-page a:hover {
        color: #5d5d5d;
    }
}

@media (max-width: 768px) {
    .plant-content5 {
        padding: 30px 20px 50px 20px;
    }

    .vegetables-container2 {
        padding: 20px 0 0 0;
    }

    .vegetables-item img {
        border-radius: 30px;
        object-fit: cover;
        height: 250px;
    }

    .vegetables-item {
        padding-bottom: 20px;
    }

    p.vegetables-title {
        margin: 0;
        padding: 20px 0;
        text-align: center;
        font-size: 20px;
        font-weight: bold;
    }

    p.vegetables-text {
        margin: 0;
        font-size: 18px;
    }

    p.vegetables-text2 {
        margin: 0;
        padding: 20px 0;
        font-size: 18px;
    }

    .number {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .vegetables-text3 {
        font-size: 18px;
    }

    .vegetables-text4 {
        font-size: 18px;
        border: 1px solid #ddd;
        padding: 15px 25px;
    }

    .cart-page a {
        background-color: #a0c544;
        width: 100%;
        height: 50px;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 10px;
        color: #fff;
    }

    .plant-page a {
        background-color: #b8b8b8;
        width: 100%;
        height: 50px;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        font-weight: bold;
        color: #fff;
    }
}


/* ガイドライン
   ========================================================================== */
@media (min-width: 769px) {
    .faq-content {
        width: 70%;
        padding: 50px 0;
    }

    ul.guide-list li {
        width: 50%;
    }

    .guide-nav {
        padding: 30px;
    }

    .table1>tbody>tr>th {
        border-bottom: 1px dotted #5d443c;
        width: 320px;
        padding-right: 20px;
        padding: 20px 0;
        font-size: 15px;
        font-size: 1.5rem;
        text-align: left;
        line-height: 1.8;
        vertical-align: top;
        letter-spacing: 0.22em;
        word-break: break-all;
    }
}

@media (max-width: 768px) {
    .faq-content {
        padding: 75px 20px 50px 20px;
    }

    .guide-nav {
        padding: 30px 5px;
    }

    ul.guide-list li {
        width: 100%;
    }

    .table1>tbody>tr>th {
        border-bottom: 1px dotted #5d443c;
        width: 40%;
        padding-right: 20px;
        padding: 20px 0;
        font-size: 15px;
        font-size: 1.5rem;
        text-align: left;
        line-height: 1.8;
        vertical-align: top;
        letter-spacing: 0.22em;
        word-break: break-all;
        min-width: 145px;
    }
}

.faq-title {
    text-align: center;
    font-size: 24px;
    padding-bottom: 10px;
    color: #5d443c;
    font-weight: bold;
    border-bottom: 2px solid;
}

.faq-box {
    padding-top: 20px;
}

details {
    margin-bottom: 10px;
    width: 100%;
}

summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    font-size: 18px;
    background-color: #d6d6d6;
    border-radius: 10px;
    cursor: pointer;
}

summary::-webkit-details-marker {
    display: none;
}

summary:hover,
details[open] summary {
    background-color: #bbb;
}

summary::after {
    content: '+';
    margin-left: 30px;
    color: #5b8f8f;
    font-size: 21px;
    transition: transform .5s;
}

details[open] summary::after {
    transform: rotate(45deg);
}

.answer {
    padding: 20px;
    line-height: 1.6;
}

details[open] .answer {
    animation: fadein .5s ease;
}

@keyframes fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.guide-box {
    padding-top: 30px;
}

ul.guide-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

ul.guide-list li a {
    display: block;
    border: 1px solid #5d443c;
    height: 40px;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    line-height: 40px;
    letter-spacing: 0.34em;
    color: #5d443c;
}

ul.guide-list li a:hover {
    color: #4f9599;
    background-color: #ddd;
}

.block_head {
    text-align: center;
    font-size: 24px;
    padding-bottom: 10px;
    color: #5d443c;
    font-weight: bold;
    border-bottom: 2px solid;
}

span.anker {
    display: block;
    padding-top: 70px;
    margin-top: -70px;
}

#law_block {
    padding-top: 20px;
}

#postage_block {
    padding-top: 50px;
}

#pay_block {
    padding-top: 50px;
}

#cancel_block {
    padding-top: 50px;
}

.table1 {
    width: 100%;
}

.table1>tbody>tr>td {
    border-bottom: 1px dotted #5d443c;
    padding: 20px 0;
    font-size: 15px;
    font-size: 1.5rem;
    text-align: left;
    line-height: 1.8;
    vertical-align: top;
    letter-spacing: 0.22em;
    word-break: break-all;
}

/* 追加
   ========================================================================== */

.container1 {
    max-width: 1300px;
    margin: 0 auto;
    width: 90%;
}

.blog-body {
    padding-bottom: 50px;
}

.blog-header {
    padding-bottom: 20px;
}

ul.news-list {
    font-size: 20px;
    list-style: none;
    padding: 0;
}

.center {
    display: flex;
    justify-content: center;
}

.center a {
    background-color: #b8b8b8;
    width: 200px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 50px;
}

form.wpcf7-form.init {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: -1;
}


/* Breadcrumb NavXT
  ========================================================================== */

.breadcrumbs {
    padding: 70px 20px 0 20px;
}

@media screen and (max-width: 768px) {
    .plant-item-2 {
        display: flex;
        box-shadow: 1px 1px 13px 1px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        margin: 20px 0 20px 0;
        flex-direction: column;
    }

    .plant-item-2 img {
        border-radius: 10px 10px 0 0;
        height: 250px;
        object-fit: cover;
    }
}

@media screen and (min-width: 769px) {
    .breadcrumbs {
        max-width: 1300px;
        margin: 0 auto;
        width: 90%;
        padding-top: 20px;
    }

    .plant-item-2 {
        display: flex;
        box-shadow: 1px 1px 13px 1px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        margin: 20px 0 20px 0;
    }

    .plant-item-2 img {
        border-radius: 10px 0 0 10px;
        width: 50%;
        height: 300px;
        object-fit: cover;
    }

    section.page-navi {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    .wp-pagenavi a,
    .wp-pagenavi span {
        text-decoration: none;
        border: 1px solid #BFBFBF;
        padding: 10px 20px;
        margin: 10px;
        background-color: #ddd;
        border-radius: 10px;
    }

    .plant-body1 {
        padding: 10px;
    }

    .plant-item1 {
        width: 32%;
        box-shadow: 1px 1px 13px 1px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        margin-bottom: 10px;
    }

    div.loopimg img {
        height: 200px;
        object-fit: cover;
    }

    div#single {
        display: flex;
        max-width: 1300px;
        margin: 0 auto;
        width: 90%;
        padding-bottom: 50px;
    }

    div#content {
        width: 70%;
    }

    #itempage .itemimg img {
        margin: 0 auto;
        padding: 0px;
        object-fit: none;
    }

    .itempage {
        display: flex;
        justify-content: space-between;
        width: 70%;
    }

    .itempage ul {
        box-sizing: border-box;
        list-style: none;
        padding: 50px 0 0 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 0;
    }

    .itempage li {
        width: 32%;
        margin-bottom: 20px;
        box-shadow: 1px 1px 13px 1px rgba(0, 0, 0, 0.1);
    }

    .itempage img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .btn {
        padding: 20px;
    }

    div#mw_wp_form_mw-wp-form-230 {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    #itempage .skuform {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }
}

@media screen and (max-width: 768px) {
    .plant-body1 {
        padding: 10px;
    }

    .plant-item1 {
        width: 49%;
        box-shadow: 1px 1px 13px 1px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        margin-bottom: 10px;
    }

    div.loopimg img {
        height: 150px;
        object-fit: cover;
    }

    div#single {
        margin: 0 auto;
        width: 90%;
        margin-bottom: 50px;
    }

    #itempage .itemimg img {
        margin: 0 auto;
        padding: 0px;
        object-fit: none;
    }

    .itempage {
        display: flex;
        justify-content: space-between;
    }

    .itempage ul {
        box-sizing: border-box;
        list-style: none;
        padding: 50px 0 0 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 0;
    }

    .itempage li {
        width: 48%;
        margin-bottom: 20px;
        box-shadow: 1px 1px 13px 1px rgba(0, 0, 0, 0.1);
    }

    .itempage img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .itempage h1 {
        font-size: 20px;
    }

    .btn {
        padding: 20px;
    }

    div.usccart_navi ol.ucart {
        font-size: 12px;
    }

    #cart .upbutton {
        text-align: right;
        font-size: 12px;
    }

    #cart table#cart_table {
        margin-bottom: 10px;
        font-size: 12px;
    }

    input {
        line-height: normal;
        width: 100%;
        margin-top: 10px;
    }

    textarea {
        overflow: auto;
        width: 100%;
    }

    #itempage .skuform {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}
