@charset "UTF-8";

@charset "utf-8";

/*reset*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

html {
    scroll-behavior: smooth;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    font-family: 'Noto Sans JP', "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "MS Pゴシック", "MS PGothic", sans-serif;
    line-height: 1;
    width: 100%;
    -webkit-text-size-adjust: 100%; /*スマホのブラウザでのフォントサイズの自動調整を無効化*/
    -webkit-font-smoothing: antialiased; /*フォントのスムージング*/
    -moz-osx-font-smoothing: grayscale; /*フォントのスムージング*/
    display: block; /*IE6のインラインブロック要素の余白のバグを解消*/
}
* {
    box-sizing: border-box; /*要素の幅と高さにborderとpaddingを含める*/
}
ol, ul {
    list-style: none;
}
/*ブロッククオート(転載・引用元)*/
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
a {
    text-decoration: none;
    color: inherit;
}
.container-fluid {
    width: 95%;
    max-width: 100%;
    margin: 0 auto;
}
.container-sm {
    width: 98%;
    max-width: 540px;
    margin: 0 auto;
}
.container-md {
    width: 95%;
    max-width: 720px;
    margin: 0 auto;
}
.container-lg {
    width: 95%;
    max-width: 960px;
    margin: 0 auto;
}
.container-xl {
    width: 95%;
    max-width: 1140px;
    margin: 0 auto;
}

/*画像のフルード化*/
img {
    max-width: 100%;
    height: auto;
}
/*マージン（top）*/
.mt-0 {
    margin-top: 0;
}
.mt-10 {
    margin-top: 0.625rem;
}
.mt-20 {
    margin-top: 1.25rem;
}
.mt-30 {
    margin-top: 1.875rem;
}
.mt-40 {
    margin-top: 2.5rem;
}
.mt-50 {
    margin-top: 3.125rem;
}
.mt-60 {
    margin-top: 3.75rem;
}
.mt-70 {
    margin-top: 4.375rem;
}
.mt-80 {
    margin-top: 5rem;
}
/*マージン（bottom）*/
.mb-0 {
    margin-bottom: 0;
}
.mb-10 {
    margin-bottom: 0.625rem;
}
.mb-20 {
    margin-bottom: 1.25rem;
}
.mb-30 {
    margin-bottom: 1.875rem;
}
.mb-40 {
    margin-bottom: 2.5rem;
}
.mb-50 {
    margin-bottom: 3.125rem;
}
.mb-60 {
    margin-bottom: 3.75rem;
}
.mb-70 {
    margin-bottom: 4.375rem;
}
.mb-80 {
    margin-bottom: 5rem;
}
/*テキスト*/
.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.text-justify {
    text-align: justify;
}

/*リンクボタン*/
.link-btn {
    display: block;
    text-align: center;
}
.link-btn a {
    color: #008F18;
    display: inline-block;
    border: 1px solid #008F18;
    border-radius: 40px;
    background-color: #fff;
    padding: 1.2em 1em 1.2em 1.8em;
    font-size: 0.875rem;
}
.link-btn a::after {
    content: '';
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    background-image: url('../images/weui_arrow-filled.png');
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-left: 0.5em;
    margin-top: -2px;
}
.link-btn a:hover {
    background-color: #d4ffd7;
    transition: .5s all;
}

/*ロゴ等*/
.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-logo {
    margin: 1.375rem 0;
}

/*ヘッダー*/
.navi-wrapper {
    background-color: #008F18;
}

/*ナビゲーション*/
.navi ul {
    display: flex;
    list-style: none;
    justify-content: space-between;
}
.navi ul li a {
    display: inline-block;
    color: #fff;
    padding: 1.125rem 0;
    font-weight: bold;
}

@media (min-width: 600px) {
    .openbtn2 {
        display: none;
    }
}

/*スマホ用ナビゲーション*/
@media (max-width:599px) {

    .navi-wrapper {
        position: fixed;
        z-index: 999;
        top: 0;
        left: -120%;
        width: 100%;
        height: 100vh;
        background-color: #40944e;
        transition: all .6s;
    }
    .header-logo img {
        width: 100%;
        height: auto;
        padding-right: 70px;
    }

    .header-insta-icon {
        display: none;
    }
    
    .navi-wrapper.panelactive {
        left: 0;
    }

    .navi ul {
        flex-direction: column;
        text-align: center;
        padding-top: 5rem;
        justify-content: flex-start;
    }
    
    .navi ul li {
        margin-bottom: 2rem;
    }
    
    .navi ul li a {
        padding: 1rem 2rem;
        font-size: 1.2rem;
    }

    /*ボタンのためのCSS*/
    .openbtn2 {
        position: fixed;
        top: 10px;
        right: 20px;
        z-index: 9999;
        cursor: pointer;
        width: 50px;
        height: 50px;
    }
    /*xに変化*/
    .openbtn2 span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #008F18;
        width: 45%;
    }
    .openbtn2 span:nth-of-type(1) {
        top: 15px;
    }
    .openbtn2 span:nth-of-type(2) {
        top: 23px;
    }
    .openbtn2 span:nth-of-type(3) {
        top: 31px;
    }
    .openbtn2.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }
    .openbtn2.active span:nth-of-type(2) {
        opacity: 0;
    }
    .openbtn2.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

}

/*ヒーローイメージ*/
.hero-images {
    background-image: url('../images/hero-image.png');
    background-size: cover;
    background-position: center;
    height: 530px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.hero-images h2 {
    display: inline-block;
    background-image: linear-gradient(90deg, #ff0000, #fff200);
    font-size: 2.25rem;
    font-weight: bold;
    padding: 0.3em;
    line-height: 1.3em;
}
@media (min-width: 600px) {
    .br-on {
        display: none;
    }
}

/*お知らせ・更新情報*/
.information-wrapper {
    background-color: #D6F1DA;
    border-radius: 10px;
    margin: 3.6rem 0;
    padding: 2rem;
}
.information-wrapper h3 {
    color: #008F18;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5em;
    margin-bottom: 1.125rem;
}

.information-date dt {
    float: left;
    line-height: 1.5rem;
    margin-bottom: 1rem;
}
.information-date dd {
    margin-left: 9.5rem;
    line-height: 1.5rem;
    margin-bottom: 1rem;
}
.information-date dd a {
    text-decoration: none;
}
.information-date dd a:hover {
    opacity: 0.8;
    transition: .5s all;
}

/*公式Instagram（フロントページ）*/
.main-home-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 3.625rem;
}
.main-home-wrapper > div {
    flex: 1;
}
.main-instagram-wrapper h3 {
    color: #008F18;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5em;
    margin-bottom: 0.5em;
    position: relative;
}
.main-instagram-wrapper h3::before {
    content: "";
    background-image: url('../images/insta-honbun-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 2rem;
    height: 2rem;
    display: inline-block;
    margin-right: 0.5rem;
    vertical-align: middle;
}
.main-instagram-wrapper p {
    color: #008F18;
    font-size: 0.875rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5em;
    margin-bottom: 1.25rem;
}

/*公式X（フロントページ）*/
.main-twitter-wrapper h3 {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5em;
    margin-bottom: 1em;
    position: relative;
}
.main-twitter-wrapper h3::before {
    content: '';
    background-image: url('../images/prime_twitter.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 2rem;
    height: 2rem;
    display: inline-block;
    margin-right: 0.5rem;
    vertical-align: middle;
}
@media (max-width: 599px) {
    .main-home-wrapper {
        display: block;
    }
    .main-twitter-wrapper {
        margin-top: 70px;
    }
}

/*直売所情報*/
.tyokubai h3 {
    color: #008F18;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5em;
}
.tyokubai h3::before {
    content: "";
    background-image: url('../images/uiw_map.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 2rem;
    height: 2rem;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
    margin-top: -5px;
}
.tyokubai-tyui ul {
    margin: 2rem 0;
}
.tyokubai-tyui ul li {
    color: #ff0000;
    line-height: 1.5em;
}

/*直売所一覧*/
.tyokubaijyo-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}
.tyokubaijyo-wrapper > div {
    flex: 1;
}
.tyokubaijyo-wrapper > div h4 {
    border-left: 5px solid #008F18;
    color: #008F18;
    font-size: 1.25rem;
    font-weight: bold;
    padding: 0.3em 0 0.3em 10px;
    margin-bottom: 0.5em;
}
.tyokubaijyo-wrapper > div li {
    line-height: 1.7em;
}
.jigyousyo-map a {
    color: #fff;
    background-color: #008F18;
    font-size: 0.875rem;
    padding: 0.3em 0 0.3em 0.8em;
}
.jigyousyo-map a::after {
    content: '';
    background-image: url('../images/white-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 1.5em;
    height: 1.5em;
    display: inline-block;
    margin-left: 0.5em;
    vertical-align: middle;
    margin-top: -4px;
}
.jigyousyo-map a:hover {
    opacity: 0.8;
    transition: .5s all;
}
@media (max-width: 599px) {
    .tyokubaijyo-wrapper {
        display: block;
    }
    .jigyousyo-map {
        margin-top: 70px;
    }
}

/*関連グループロゴ*/
.related-group-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}
.related-group-logo > div {
    flex: 1;
    text-align: center;
    border: 2px solid #008F18;
    padding: 1em 2em;
    border-radius: 5px;
}
.st-logo img {
    width: 100%;
    height: auto;
    max-width: 230px;
    margin: 4px 0;
}
.kokoro-logo img {
    width: 100%;
    height: auto;
    max-width: 180px;
}
.related-group-logo a:hover {
    opacity: 0.8;
    transition: .5s all;
}
@media (max-width: 599px) {
    .related-group-logo {
        display: block;
    }
    .related-group-logo > div {
        margin: 2rem 0;
    }
}

/*フッター*/
.footer-wrapper {
    position: relative;
    background-color: #EFFFF1;
    padding: 2em 0 1rem 0;
}
.footer-logo {
    width: 100%;
    height: auto;
    max-width: 350px;
}
address {
    line-height: 1.5em;
}
.map-btn a {
    color: #008F18;
    font-weight: bold;
    text-decoration: underline;
}
.map-btn a::before {
    content: '';
    background-image: url('../images/uiw_map.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 1.5em;
    height: 1.5em;
    display: inline-block;
    margin-right: 0.5em;
    vertical-align: middle;
    margin-top: -5px;
}
.insta-footer-icon-btn a img {
    width: 100%;
    height: auto;
    max-width: 50px;
}
.insta-footer-icon-btn a:hover {
    opacity: 0.8;
    transition: .5s all;
}
.footer-copyright p {
    font-size: 0.875rem;
}

/*ページトップボタン*/
.page-top-btn {
    position: absolute;
    right: 20px;
    bottom: 0;
    width: 50px;
}

/*下層コンテンツ*/
/*共通*/

.title-container {
    color: #008F18;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.5em;
    background-color: #EEF4EF;
    padding: 0.5em 0;
}
.pankuzu a {
    color: #008F18;
}
.contents-page p {
    line-height: 1.7em;
}
.contents-page h3 {
    color: #008F18;
    font-size: 2rem;
    font-weight: bold;
    margin: 0.7em 0;
    line-height: 1.3em;
}
.contents-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.contents-a-block {
    width: 60%;
}

.contents-a-block a {
    color: #ff9900;
    display: inline-block;
    border: 1px solid #ff9900;
    border-radius: 40px;
    padding: 1em 2em;
}
.contents-a-block a:hover {
    background-color: #f8e6cc;
    transition: .5s all;
}
.contents-a-block a::after {
    content: '';
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    background-image: url('../images/orange-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-left: 0.5em;
    margin-top: -4px;
}
.contents-a-block > address {
    line-height: 1.5em;
    font-weight: bold;
    margin-top: 1rem;
}

.contents-b-block {
    width: 40%;
    margin: 4rem 0;
}
@media (max-width: 599px) {
    .contents-row {
        display: block;
    }
    .contents-a-block, .contents-b-block {
        width: 100%;
        margin: 2rem 0;
    }
}

/*下層コンテンツ（事業内容）*/
.jigyou-image-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.jigyou-image-row > div {
    flex: 1;
}

@media (max-width: 599px) {
    .jigyou-image-row {
        display: block;
    }
    .jigyou-image-row > div {
        margin: 2rem 0;
    }
    .jigyou-image-row > div img {
        width: 100%;
        height: auto;
    }
}

.about-table-wrapper h3 {
    border-left: 5px solid #008F18;
    color: #008F18;
    font-size: 1.25rem;
    font-weight: bold;
    padding: 0.3em 0 0.3em 10px;
    margin-bottom: 0.5em;
}
.about-table {
    width: 100%;
    border-collapse: collapse;
}
.about-table th,
.about-table td {
    border-top: 1px solid #C6C6C6;
    border-bottom: 1px solid #C6C6C6;
    padding: 1em;
    text-align: left;
    line-height: 1.5em;
}
.about-table th {
    background-color: #F6F6F6;
}
.about-table ul li {
    line-height: 1.5em;
}
/*下層コンテンツ（施設）*/
.about-sisetu-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.about-sisetu-wrapper > div {
    flex: 1;
    margin: 1rem 0;
}
.about-sisetu-wrapper > div p {
    text-align: center;
    margin-top: 0.5em;
    line-height: 1.5em;
}
@media (max-width: 599px) {
    .about-sisetu-wrapper {
        display: block;
    }
    .about-sisetu-wrapper > div {
        margin: 2rem 0;
    }
    .about-sisetu-wrapper > div img {
        width: 100%;
        height: auto;
    }
}

/*中玉トマト（フルティカ）の美味しさの秘密*/
.tomatohimitsu-container {
    background-color: #FBFAE9;
    padding: 3rem 0;
    margin: 5rem 0;
}
.tomatohimitsu-wrapper h3 {
    color: #008F18;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.3em;
    border-bottom: 3px solid #008F18;
    padding-bottom: 0.2em;
}
.tomatohimitsu-wrapper h3::before {
    content: "";
    background-image: url('../images/tomato_title_checkbtn.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 2rem;
    height: 2rem;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

/*トマトが選ばれる理由（5つ）*/
.tomatoreason-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.tomatoreason-wrapper > div {
    flex: 0 1 calc(33.333% - 21px);
    margin-bottom: 10px;
}
@media (max-width: 599px) {
    .tomatoreason-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .tomatoreason-wrapper > div {
        flex: none;
        width: 100%;
        margin-bottom: 20px;
    }
}
.tomatoreason-wrapper h4 {
    color: #008F18;
    margin: 10px 0;
    font-size: 1.25rem;
    line-height: 1.3em;
    font-weight: bold;
}
.tomatoreason-wrapper p {
    line-height: 1.5em;
}

/*中玉トマトのおいしさの秘密*/
.tomatooisisa-wrapper h3 {
    color: #ff9900;
    border-bottom: 3px solid #ff9900;
    font-size: 2rem;
    line-height: 1.3em;
    font-weight: bold;
    padding-bottom: 0.3em;
}
.tomatooisisa-wrapper h3::before {
    content: "";
    background-image: url('../images/tomato-oisisa-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 2rem;
    height: 2rem;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

/*こだわりの栽培方法*/
.tomatooisisa-row {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin: 2rem 0;
}
.tomatooisisa-row > div h4 {
    color: #ff9900;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.3em;
    margin: 0 0 0.5em 0;
}
.tomatooisisa-row > div p {
    line-height: 1.5em;
}
.tomatooisisa-row > div h5 {
    color: #fff;
    background-color: #ff9900;
    padding: 0.5em;
    font-weight: bold;
    border-radius: 5px;
    margin: 2rem 0 1em 0;
}
@media (max-width: 599px) {
    .tomatooisisa-row {
        display: block;
    }
    .tomatooisisa-row > div img {
        margin-top: 1rem;
    }
}

/*低段密植栽培中玉トマト栽培ポイント（3点）*/
.tomatooisisa-point-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.tomatooisisa-point-wrapper > div {
    color: #ff9900;
    flex: 1;
    font-weight: bold;
    text-align: center;
    border: 2px solid #ff9900;
    border-radius: 5px;
    padding: 1rem;
}
@media (max-width: 599px) {
    .tomatooisisa-point-wrapper {
        display: block;
    }
    .tomatooisisa-point-wrapper > div {
        margin: 1rem 0;
    }
}

.tomato-picku {
    display: block;
    text-align: center;
    margin: 1rem 0;
    color: #ff9900;
    font-weight: bold;
    font-size: 1.25rem;
    line-height: 1.3em;
}

.h5title {
    color: #fff;
    background-color: #ff9900;
    padding: 0.5em;
    font-weight: bold;
    border-radius: 5px;
    margin: 2rem 0 1em 0;
}
.system-point-wrapper p {
    line-height: 1.5em;
}

/*投稿詳細ページ（single.php）*/
.contents-single h3 {
    color: #008F18;
    font-size: 1.25rem;
    font-weight: bold;
    margin: 2rem 0 1rem 0;
}
.contents-single p {
    line-height: 1.5em;
    margin-bottom: 1rem;
}

/*archiveページ（archive.php）*/
.contents-single dt {
    line-height: 1.5em;
    padding-top: 1rem;
}
.contents-single dd {
    line-height: 1.5em;
    margin-top: 1rem;
    border-bottom: 1px solid #008F18;
    padding-bottom: 1rem;
}
.contents-single dd a {
    color: #008F18;
    text-decoration: underline;
}
.contents-single dd a:hover {
    opacity: 0.8;
    transition: .5s all;
}

/*お問合せ*/
.contact-page-wrapper address {
    line-height: 1.5em;
    font-weight: bold;
    margin-top: 1rem;
}