@charset "utf-8";

@font-face {
    font-family: 'Hina Mincho';
    font-display: swap;
    src: url("../fonts/HinaMincho-Regular.ttf") format("TrueType");
    }

@font-face {
    font-family: 'Noto Sans JP';
    font-display: swap;
    src: url("../fonts/NotoSansJP-VariableFont_wght.ttf") format("TrueType");
}

*,
*:before,
*:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}
li {
    list-style-type: none;
}
html {
    font-size: 62.5%;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.5rem;
    color: #4B4B4B;
    background-color: #FFF1E7;
    letter-spacing: .08em;
}

h1, h2, h3 {
    font-size: 1.6rem;
    font-weight: normal;
}

a {
    text-decoration: none;
}

@media (width > 768px) {
    body {
        font-size: 1.6rem;
    }
}

/* ########################################################## */
/* ヘッダー */
/* ########################################################## */
#header {
    /*メニューとロゴを含めたエリアを一番上に固定*/
    position: fixed;
    top: 0;
    left: 0;
    padding: 8px;
    width: 100%;
    background-color: #ffffffa4;
    align-items: center;
    z-index: 1;
}
.header-img {
    width: 30px;
    height: 30px;
}
.header-logo {
    margin-right: 8px;
}
.header-inner {
    display: flex;
    align-items: center;
}
.header-inner h2 {
    font-family: "Hina Mincho", serif;
    font-size: 2.2rem;
}

@media (width > 768px) {
    .header-img {
        width: 50px;
        height: 50px;
    }
    .header-inner h2 {
        font-size: 3.6rem;
    }

}

/* ########################################################## */
/* スクロール途中でヘッダーが表示＆非表示 */
/* ########################################################## */

/*　上に上がる動き　*/

#header.UpMove2{
	animation: UpAnime2 0.5s forwards;
}

@keyframes UpAnime2{
from {
    opacity: 1;
	transform: translateY(0);
}
to {
    opacity: 0;
	transform: translateY(-100px);
}
}

/*　下に下がる動き　*/

#header.DownMove2{
	animation: DownAnime2 0.5s forwards;
}
@keyframes DownAnime2{
from {
    opacity: 0;
	transform: translateY(-100px);
}
to {
    opacity: 1;
	transform: translateY(0);
}
}

/* ########################################################## */
/* スマホ用ナビゲーションメニュー */
/* ########################################################## */
.gnav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #008042;
}
.gnav-list {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.gnav-item {
    font-size: 2rem;
}
.gnav-item:not(:last-child) {
    margin-bottom: 20px;
}
.gnav-item a {
    color: #fff;
}
.current a {
    color: #D60C14;
}
.gnavPC {
    display: none;
}
/* ########################################################## */
/* ハンバーガーメニュー */
/* ########################################################## */
.btnMenu {
    position: fixed;
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    padding: 10px;
    text-align: center;
    border: none;
    border-radius: 0 0 0 8px;
    outline: none;
    appearance: none;
    cursor: pointer;
}

/*----------三本線-----------*/
.btnMenu-line {
    position: relative;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    transition: all .4s;
    border-radius: 4px;
    background-color: #4B4B4B;
}
.btnMenu-line::before,
.btnMenu-line::after {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    transition: inherit;
    border-radius: 4px;
    background-color: inherit;
}
.btnMenu-line::before {
    top: -8px;
}
.btnMenu-line::after {
    top: 8px;
}

/* ########################################################## */
/* jQueryでメニューを開くときの記述 */
/* ########################################################## */
.btnMenu.active .btnMenu-line {
    background-color: transparent;
}
.btnMenu.active .btnMenu-line::before,
.btnMenu.active .btnMenu-line::after {
    top: 0;
    background-color: #ffffff;
}
.btnMenu.active .btnMenu-line::before {
    transform: rotate(45deg);
}
.btnMenu.active .btnMenu-line::after {
    transform: rotate(-45deg);
}

/* ########################################################## */
/* メインビジュアル */
/* ########################################################## */
/* スライドショー */
.img-frame{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin: 0 auto;
    z-index: -1;
}
.img-01, .img-02, .img-03{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.img-01{
    background-image: url(../img/01_top/01_main_1.jpg);
    animation: slide-animation-01 24s infinite;
}
.img-02{
    background-image: url(../img/01_top/01_main_2.jpg);
    animation: slide-animation-02 24s infinite;
}
.img-03{
    background-image: url(../img/01_top/01_main_3.jpg);
    animation: slide-animation-03 24s infinite;
}
@keyframes slide-animation-01 {
    0% {opacity: 1; transform: scale(1.0);}
    30% {opacity: 1;}
    40% {opacity: 0; transform: scale(1.1);}
    90% {opacity: 0}
    100% {opacity: 1; transform: scale(1.0);}
}
@keyframes slide-animation-02 {
    0% {opacity: 0;}
    30% {opacity: 0; transform: scale(1.1);}
    40% {opacity: 1;}
    60% {opacity: 1;}
    70% {opacity: 0; transform: scale(1.0);}
    100% {opacity: 0;}
}
@keyframes slide-animation-03 {
    0% {opacity: 0;}
    60% {opacity: 0;  transform: scale(1.0);}
    70% {opacity: 1;}
    90% {opacity: 1;}
    100% {opacity: 0; transform: scale(1.1);}
}
.img-01-inner,
.img-02-inner,
.img-03-inner {
    display: flex;
}
.img-01-cont,
.img-02-cont,
.img-03-cont {
    text-align: left;
    max-height: fit-content;
}
.mainVisual-title {
    font-size: 3vh;
    /*font-size: 3rem;*/
    color: #D60C14;
    text-shadow: 0 3px 6px rgba(255, 180, 180, 0.2);
    animation-fill-mode: forwards;
    font-family: "Hina Mincho", serif;
    font-style: normal;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 10px 10px 10px 10px;
    border-radius: 3px;
    writing-mode:vertical-rl;

}
.mainVisual-title:not(:first-child) {
    margin-left: 30px;
}

.sp-only {
    display:block;
}

@media (width > 768px) {
    .sp-only {
        display: none;
    }

    #header {
        display: flex;
        justify-content: space-between;
    }
    .gnav {
        display: none;
    }
    .gnavPC {
        display: block;
    }
    .gnavPC-item.active a {
        color: #D60C14;
    }
    .gnavPC-logo img {
        backface-visibility: hidden;
    }
    .gnavPC-list {
        display: flex;
        justify-content: space-between;
    }
    .gnavPC-item {
        font-size: 1.5vw;
    }
    .gnavPC-item:not(:last-child) {
        margin-right: 30px;
    }
    .gnavPC-item a {
        transition: opacity .3s;
        color: #333;
    }
    .gnavPC-item a:hover {
        opacity: .8;
    }
    .mainVisual-title {
        font-size: 4vh;
    }
    .mainVisual-title:not(:first-child) {
        margin-left: 50px;
    }
    .btnMenu {
        display: none;
    }

}

/* ########################################################## */
/* 農場紹介 取り組み 農産物紹介 SP */
/* 有機JAS認証農場 SP */
/* 安心安全の有機栽培 SP */
/* 農場の風景 SP */
/* 農場の場所 SP */
/* 農場見学 SP */
/* 収穫体験 SP */
/* ########################################################## */
.syoukai_outer,
.torikumi_outer,
.yasai_outer,
.yuukijas_outer,
.anshin_outer,
.fuukei_outer,
.basyo_outer,
.kengaku_outer,
.taiken_outer,
.jyouhou_outer,
.toiawase_outer {
    background-color: #92BE16;
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
}
.yasai_outer,
.fuukei_outer,
.taiken_outer,
.jyouhou_outer,
.toiawase_outer {
    background-color: #EA7100;
}
.toiawase_outer {
    color: #ffffff;
}
.anshin_outer,
.basyo_outer {
    background-color: #FFF1E7;
}
.fuukei_outer {
    color: #ffffff;
}
.syoukai_name,
.torikumi_name,
.yasai_name,
.yuukijas_name,
.basyo_name,
.anshin_name,
.fuukei_name,
.kengaku_name,
.taiken_name,
.jyouhou_name {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
}
.yasai_name,
.taiken_name,
.jyouhou_name {
    color: #ffffff;
}
.yuukijas_name {
    font-size: 30px;
}
.anshin_name {
    font-size: 26px;
}
.h2_img {
    width: 40px;
    height: 40px;
}
.yuukijas_name .h2_img {
    width: 35px;
    height: 35px;
}
.anshin_name .h2_img,
.toiawase_name .h2_img {
    width: 30px;
    height: 30px;
}
.syoukai_cont,
.torikumi_cont,
.yasai_cont,
.yuukijas_cont,
.jyouhou_cont {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}
.jyouhou_cont {
    padding: 10px;
    margin-bottom: 10px;
}
.syoukai_img_outer,
.torikumi_img_outer,
.yasai_img_outer,
.jyouhou_img_outer {
    width: 100%;
}

.syoukai_img,
.torikumi_img,
.yasai_img,
.kengaku_img,
.taiken_img,
.jyouhou_img {
    border-radius: 15px;
}
.syoukai_name_inner,
.torikumi_name_inner,
.yasai_name_inner,
.yuukijas_name_inner,
.kengaku_name_inner,
.taiken_name_inner,
.jyouhou_name_inner {
    text-align: center;
    font-size: 24px;
    margin: 20px 0;
}
.jyouhou_name_inner {
    font-size: 16px;
    margin: 10px 0 0 0;
}
.syoukai_cont_text_inner, 
.torikumi_cont_text_inner,
.yasai_cont_text_inner,
.yuukijas_cont_text_inner,
.anshin_cont_text_inner,
.basyo_cont_text_inner,
.fuukei_inner figcaption,
.kengaku_cont_text_inner,
.kengaku_img_inner figcaption,
.taiken_cont_text_inner,
.taiken_img_inner figcaption {
    font-size: 16px;
    text-align: left;
    letter-spacing: .08em;
    line-height: 1.5;
}
.yasai_cont_text_inner {
    text-align: center;
}
.yuukijas_cont_text_inner:last-child {
    margin-bottom: 20px;
}
.anshin_cont_text_inner,
.kengaku_cont_text_inner,
.taiken_cont_text_inner {
    margin-bottom: 20px;
}
.torikumi_inner {
    display: flex;
    flex-direction: column;
}
.yasai_inner_01,
.yasai_inner_02 {
    display: flex;
    flex-direction: column;
}

/* ########################################################## */
/* 農場紹介 取り組み 農産物紹介 PC */
/* 有機JAS認証農場 PC */
/* 安心安全の有機栽培 PC */
/* 農場の風景 PC */
/* 農場の場所 PC */
/* 農場見学 PC */
/* 収穫体験 PC */
/* ########################################################## */

@media (width > 768px) {
.jyouhou_cont {
    padding: 20px;
}
/* 農場紹介　*/
.syoukai_cont{
    flex-direction: row;
}
.syoukai_name,
.torikumi_name,
.yasai_name,
.yuukijas_name,
.anshin_name,
.fuukei_name,
.basyo_name,
.kengaku_name,
.taiken_name,
.jyouhou_name {
    font-size: 40px;
    margin-bottom: 30px;
}
.syoukai_name_inner,
.torikumi_name_inner,
.yasai_name_inner,
.yuukijas_name_inner,
.jyouhou_name_inner {
    font-size: 2vw;
    margin: 30px 0;
}
.jyouhou_name_inner {
    margin: 20px 0 0 0;
}
.syoukai_cont_text_inner,
.torikumi_cont_text_inner,
.yasai_cont_text_inner,
.yuukijas_cont_text_inner,
.anshin_cont_text_inner,
.fuukei_inner figcaption,
.basyo_cont_text_inner,
.kengaku_cont_text_inner,
.kengaku_img_inner figcaption,
.kengaku_cont,
.taiken_cont_text_inner,
.taiken_img_inner figcaption,
.taiken_cont {
    font-size: 1.5vw;
    letter-spacing: .05em;
    line-height: 1.4;
}
.h2_img {
    width: 50px;
    height: 50px;
}
.yuukijas_name .h2_img,
.anshin_name .h2_img {
    width: 50px;
    height: 50px;
}
.toiawase_name .h2_img {
    width: 38px;
    height: 38px;
}
.syoukai_cont {
    margin-bottom: 30px;
}
.revers {
    flex-direction: row-reverse;
}
.syoukai_cont_text {
    width: 500px;
    padding: 0 40px;
    flex: 1 1 auto;
    align-self: center;
}
.syoukai_img_outer {
    width: 600px;
}
.syoukai_outer,
.torikumi_outer,
.yasai_outer,
.yuukijas_outer,
.anshin_outer,
.fuukei_outer,
.basyo_outer,
.kengaku_outer,
.taiken_outer,
.jyouhou_outer,
.toiawase_outer {
    padding: 40px;
    margin: 40px;
}
.anshin_outer,
.basyo_outer {
    padding: 10px 40px;
}
/* 取り組み　*/
.torikumi_inner {
    flex-direction: row;
}
.torikumi_cont:not(:last-child) {
    margin-right: 30px;
}
.torikumi_cont {
    margin-bottom: 30px;
    flex: 1;
}
/* 農産物紹介　*/
.yasai_inner_01,
.yasai_inner_02 {
    flex-direction: row;
}
.yasai_inner_01 .yasai_cont:not(:last-child),
.yasai_inner_02 .yasai_cont:not(:last-child) {
    margin-right: 30px;
}
.yasai_inner_01 .yasai_cont,
.yasai_inner_02 .yasai_cont {
    margin-bottom: 30px;
}

}

/* ########################################################## */
/* ビュー1 ビュー2 SP */
/* ########################################################## */
.view_img {
    height: 500px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}
.view_text_outer {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 20px;
    border-radius: 0 0 15px 15px;
}
.view_text {
    letter-spacing: .08em;
    line-height: 1.5;
}
.view_01, .view_02 {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}
/* ########################################################## */
/* ビュー1 ビュー2 PC */
/* ########################################################## */
@media (width > 768px) {
    .view_01 {
        flex-direction: row-reverse;
    }
    .view_02 {
        flex-direction: row;
    }
    .view_img {
        border-radius: 15px 0 0 15px;
    }
    .view_02 .view_img {
        border-radius: 0 15px 15px 0;
    }
    .view_img_outer {
        flex: 0 0 55%;
    }
    .view_text_outer {
        border-radius: 15px;
        align-self: center;
        padding: 60px 20px;
        margin: 0 20px 0 40px;
    }
    .view_02 .view_text_outer {
        margin: 0 40px 0 20px;
    }
    .view_text {
        /*font-size: 24px;*/
        font-size: 1.5vw;
        letter-spacing: .05em;
        line-height: 1.4;
    }

}

/* ########################################################## */
/* ビュー3 SP */
/* ########################################################## */
.view_img_03 {
    border-radius: 200px;
    height: 500px;
    object-fit: cover;
}
.view_03 {
    margin-bottom: 20px;
}
/* ########################################################## */
/* ビュー3 PC */
/* ########################################################## */
@media (width > 768px) {
    .view_img_03 {
        border-radius: 100px;
    }
    .view_03 {
        margin: 0 40px 40px 40px;
    }

}

/* ########################################################## */
/* ### 農場紹介 SP ### */
/* ########################################################## */
/* メインビジュアル */
/* 有機JAS認証農場 */ 
/* 安心安全の有機栽培 */
/* 農場の風景 */
/* 農場の場所 */
/* ########################################################## */

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

.mVisual_title {
    font-size: 32px;
    color: #D60C14;
    text-shadow: 0 3px 6px rgba(255, 180, 180, 0.2);
    animation-fill-mode: forwards;
    font-family: "Hina Mincho", serif;
    font-style: normal;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mVisual_title::before,
.mVisual_title::after {
    content: "";
    height: 7px;
    flex-grow: 1;
    background-color: #D60C14;
    border-radius: 2px;
}
.mVisual_title::before {
    margin-right: 1rem;
    background: linear-gradient(-90deg, #D60C14, transparent);
}
.mVisual_title::after {
    margin-left: 1rem;
    background: linear-gradient(90deg, #D60C14, transparent);
}
.mVisual_text_outer {
    margin: 0 20px;
    margin-bottom: 40px;
}
.mVisual_text {
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: .08em;
    line-height: 1.5;
}
.mVisual_img {
    height: 500px;
    object-fit: cover;
}

/* 有機JAS認証農場 SP */

.yuukijas_img,
.anshin_img,
.fuukei_img {
    border-radius: 15px;
}
.yuukijas_img_inner:first-child {
    margin-bottom: 30px;
}
.yuukijas_img_outer {
    margin-top: 30px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
}
.yuukijas_name_inner:first-child {
    margin-top: 10px;
}
.yuukijas_cont_text_inner:last-child {
    margin-bottom: 10px;
}

/* 安心安全の有機栽培 SP */

.anshin_img_inner:first-child {
    margin-bottom: 20px;
}
.anshin_img_outer {
    display: flex;
    flex-direction: column;
}

/* 農場の風景 SP */

.fuukei_inner figure {
    margin-bottom: 20px;
}
.fuukei_inner figcaption {
    text-align: center;
}
.fuukei_inner {
    display: flex;
    flex-direction: column;
}

/* 農場の場所 SP */

.basyo_map iframe {
    width: 100%;
    height: 300px;
    border-radius: 15px;
}
.basyo_map {
    margin: 20px 0;
}
.basyo_cont_text_inner:not(:last-child) {
    margin-bottom: 10px;
}

/* ########################################################## */
/* ### 農場紹介 PC ### */
/* ########################################################## */
/* メインビジュアル */
/* 有機JAS認証農場 */ 
/* 安心安全の有機栽培 */
/* 農場の風景 */
/* 農場の場所 */
/* ########################################################## */

@media (width > 768px) {

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

.mVisual_title {
    font-size: 40px;
    margin-top: 120px;
}
.mVisual_text {
    font-size: 1.5vw;
    letter-spacing: .05em;
    line-height: 1.4;
}
.mVisual_text_outer {
    margin: 0 15vw;
    margin-bottom: 70px;
    margin-top: 60px;
}
.mVisual_title::before,
.mVisual_title::after {
    height: 10px;
}

/* 有機JAS認証農場 PC */ 

.yuukijas_img_outer {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 30px;
    margin-bottom: 0px;
}
.yuukijas_img_inner:first-child {
    margin-bottom: 0px;
}
.yuukijas_img_inner {
    flex-basis: 48%;
}
.yuukijas_cont {
    padding: 20px 40px;
}

/* 安心安全の有機栽培 PC */

.anshin_cont_text_inner {
    margin-bottom: 40px;
}
.anshin_img_outer {
    flex-direction: row;
    justify-content: space-between;
}
.anshin_cont {
    padding: 0 40px;
}
.anshin_img_inner:first-child {
    margin-bottom: 0px;
}
.anshin_img_inner {
    flex-basis: 48%;
}

/* 農場の風景 PC */

.fuukei_inner {
    flex-direction: row;
    justify-content: space-between;
}
.fuukei_inner figure {
    flex-basis: 48%;
    margin-bottom: 0;
}
.fuukei_inner:not(:last-child){
    margin-bottom: 30px;
}

/* 農場の場所 PC */

.basyo_map iframe {
    max-width: 800px;
    height: 500px;
}
.basyo_map {
    text-align: center;
}
.basyo_cont_text_inner {
    max-width: 800px;
    margin: 0 auto;
}

}

/* ########################################################## */
/* ### 取り組み SP ### */
/* ########################################################## */
/* 農場見学 */
/* 収穫体験 */
/* ########################################################## */

/* 農場見学 */

.kengaku_img_outer,
.taiken_img_outer {
    display: flex;
    flex-direction: column;
}
.kengaku_img_inner figcaption,
.taiken_img_inner figcaption {
    text-align: center;
}
.kengaku_img_inner,
.taiken_img_inner {
    margin-bottom: 20px;
}
.kengaku_cont,
.taiken_cont {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 0px;
}
.kengaku_table th,
.kengaku_table td,
.taiken_table th,
.taiken_table td {
    padding: 5px 0;
}
.kengaku_cont_sub,
.taiken_cont_sub {
    margin: 10px 0;
    font-weight: bold;
}
.kengaku_cont_sub_text,
.taiken_cont_sub_text {
    padding-left: 30px;
}
.kengaku_cont_sub_text li,
.taiken_cont_sub_text li {
    list-style: square outside;
    padding-left: 0px;
    margin-bottom: 10px;
}

/* 収穫体験 */

.taiken_cont_text_inner,
.taiken_img_outer {
    color: #ffffff;
}

/* ########################################################## */
/* ### 取り組み PC ### */
/* ########################################################## */
/* 農場見学 */
/* 収穫体験 */
/* ########################################################## */

@media (width > 768px) {

/* 農場見学 */
/* 収穫体験 */

.kengaku_img_outer,
.taiken_img_outer {
    flex-direction: row;
    justify-content: space-between;
    margin: 30px 0 10px 0;
}
.kengaku_img_inner,
.taiken_img_inner {
    flex-basis: 48%;
}
.kengaku_name_inner,
.taiken_name_inner {
    font-size: 2vw;
    margin: 20px 0;
}

}

/* ########################################################## */
/* メニュー アンダーライン */
/* ########################################################## */

.gnav-item a,
.gnavPC-item a,
.footerNav-item a {
    position: relative;
}
.gnav-item a:after,
.gnavPC-item a:after,
.footerNav-item a:after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #ffffff;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform 0.3s;
}
.gnavPC-item a:after {
    background:#4B4B4B;
}
.current a:after,
.active a:after {
    background: #D60C14;
}
.gnav-item a:hover::after,
.gnavPC-item a:hover::after,
.footerNav-item a:hover::after {
    transform: scale(1, 1);
}

/* ########################################################## */
/* ボタン */
/* ########################################################## */
.syoukai_btn,
.torikumi_btn,
.yasai_btn,
.kengaku_btn,
.taiken_btn,
input[type="submit"] {
    display: block;
    margin: 0 auto;
    border: 0;
    letter-spacing: .08em;
    line-height: 2.5;
    padding: 0 70px;
    font-size: 20px;
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
    border-radius: 50px;
    background-color: #008042;
    background-image: linear-gradient(
    to top left,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.2) 30%,
    rgba(0, 0, 0, 0)
    );
    box-shadow:
    inset 2px 2px 3px rgba(255, 255, 255, 0.6),
    inset -2px -2px 3px rgba(0, 0, 0, 0.6);
}
.syoukai_btn:hover,
.torikumi_btn:hover,
.yasai_btn:hover,
.kengaku_btn:hover,
.taiken_btn:hover,
input[type="submit"]:hover {
    background-color: #00ac59;
}
.syoukai_btn:active,
.torikumi_btn:active,
.yasai_btn:active,
.kengaku_btn:active,
.taiken_btn:active,
input[type="submit"]:active {
    box-shadow:
    inset -2px -2px 3px rgba(255, 255, 255, 0.6),
    inset 2px 2px 3px rgba(0, 0, 0, 0.6);
}
.kengaku_cont .btn_class,
.taiken_cont .btn_class {
    margin: 40px 0 20px;
}

/* ########################################################## */
/* フッター */
/* ########################################################## */
.footer-container {
    background-color: #94692C;
    color: #ffffff;
}
.footerNav {
    text-align: center;
    padding-top: 40px;
    margin-bottom: 30px;
}
.footerNav-list li:not(:last-child){
    margin-bottom: 10px;
}
.footer-mem {
    line-height: 1.5;
    text-align: center;
    margin-bottom: 20px
}
.footerSns {
    display: flex;
    width: 130px;
    justify-content: space-between;
    margin: 0 auto;
    margin-bottom: 20px;
}
.sns-ig, .sns-fb, .sns-x {
    width: 30px;
    height: 30px;
}
.footer-copy {
    text-align: center;
    padding-bottom: 20px;
}
.footerSns li a img:hover {
    opacity: .5;
}

@media (width > 768px) {
    .footer-flex {
        display: flex;
        justify-content: space-around;
        align-items: flex-end;
        margin: 0 100px;
    }
    .footerNav {
        flex: 0 0 auto;
    }
    .footer-mem {
        flex: 1 1 auto;
    }
    .footerSns {
        flex: 0 0 auto;
        margin-bottom: 25px;
    }
    .footerNav {
        text-align: center;
        padding-top: 40px;
        margin-bottom: 25px;
    }
}

/* ########################################################## */
/* ページトップ */
/* ########################################################## */

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:30px;
	z-index: 2;
	opacity: 0;
	transform: translateY(150px);
}

/*　上に上がる動き　*/
#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
from {
    opacity: 0;
	transform: translateY(150px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

/*　下に下がる動き　*/
#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime{
from {
    opacity: 1;
	transform: translateY(0);
}
to {
    opacity: 1;
	transform: translateY(150px);
}
}

#page-top a {
	display: block;
	width: 60px;
	height: 60px;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
	background: url("../img/00_icon/carrot_Down.png") no-repeat center;
	background-size: contain;
}

#page-top.floatAnime a{
	width: 60px;
	height: 60px;
	background: url("../img/00_icon/carrot_Up.png") no-repeat center;
	background-size: contain;
	animation: floatAnime 2s linear infinite;
	opacity: 0;
}

@keyframes floatAnime {
    0% { transform: translateX(0); opacity: 0; }
    25% { transform: translateX(-6px);opacity: 1; }
    50% { transform: translateX(0) }
    100% { transform: translateX(6px);opacity: 1; }
}

#page-top span{
    position: absolute;
    bottom: -24px;
    right: 13px;
	color: #4B4B4B;
    font-size: 10px;
}

@media (width > 768px) {

    #page-top a {
        width: 80px;
        height: 80px;
    }
    
    #page-top.floatAnime a{
        width: 80px;
        height: 80px;
    }

    #page-top span{
        bottom: -20px;
        right: 10px;
        font-size: 10px;
    }

}

/* ########################################################## */
/* ローディング */
/* ########################################################## */

/* Loading背景画面設定　*/
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 999;
	text-align:center;
	color:#fff;
}

/* Loading画像中央配置　*/
#splash_text {
	position: absolute;
	top: 50%;
	left: 50%;
    z-index: 999;
	transform: translate(-50%, -50%);
	color: #fff;
	width: 100%;
}

/*割れる画面のアニメーション*/
.loader_cover {
    width: 100%;
    height: 50%;
    background-color: #008042;
    transition: all .2s cubic-bezier(.04, .435, .315, .9);
    transform: scaleY(1);
}
/*上の画面*/
.loader_cover-up {
    transform-origin: center top;
}

/*下の画面*/
.loader_cover-down {
    position: absolute;
    bottom: 0;
    transform-origin: center bottom;
}
/*クラス名がついたらY軸方向に0*/
.coveranime {
    transform: scaleY(0);
}

.loading {
    display: none;
    &.is-active {
    display: block;
    }
}
/* ########################################################## */
/* スクロールフェードイン */
/* ########################################################## */

.fadeInTrigger {
    opacity: 0;
}

/* その場でフワッと */
.fadeIn{
    animation-name:fadeInAnime;
    animation-duration:2.5s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
@keyframes fadeInAnime{
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (width > 768px) {

    .fadeRightTrigger,
    .fadeLeftTrigger,
    .zoomInTrigger {
        opacity: 0;
    }

    /* 右から */
    .fadeRight{
        animation-name:fadeRightAnime;
        animation-duration:1s;
        animation-fill-mode:forwards;
        opacity:0;
        }
        
    @keyframes fadeRightAnime{
        from {
            opacity: 0;
            transform: translateX(100px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* 左から */
    .fadeLeft{
        animation-name:fadeLeftAnime;
        animation-duration:1s;
        animation-fill-mode:forwards;
        opacity:0;
        }
        
    @keyframes fadeLeftAnime{
        from {
            opacity: 0;
            transform: translateX(-100px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* 拡大 */
    .zoomIn{
        animation-name:zoomInAnime;
        animation-duration:1s;
        animation-fill-mode:forwards;
    }
    
    @keyframes zoomInAnime{
        from {
            transform: scale(0.6);
            opacity: 0;
        }
        to {
            transform: scale(1);
            opacity: 1;
        }
    }

}

/* ########################################################## */
/* スライダーのためのcss 1 */
/* ########################################################## */
.slider img {
    width:100%;
    height:500px;
    object-fit: cover;
    border-radius: 2px;
}

.slider .slick-slide {
    margin:0 2px;
}

/* ########################################################## */
/* スライダーのためのcss 2 */
/* ########################################################## */

.slider2 {
    width:94%;
    margin:0 auto;
}

.slider2 img {
    width:100%;
    height:500px;
    border-radius: 2px;
    object-fit: cover;
}

.slider2 .slick-slide {
    margin:0 10px;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;
    top: 42%;
    cursor: pointer;
    outline: none;
    border-top: 2px solid #666;
    border-right: 2px solid #666;
    height: 15px;
    width: 15px;
}

.slick-prev {
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
    margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
    margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;
    height:8px;
    display:block;
    border-radius:50%;
    background:#ccc;
}

.slick-dots .slick-active button{
    background:#333;
}

/* ########################################################## */
/* ボックスシャドウ */
/* ########################################################## */

.syoukai_cont,
.torikumi_cont,
.yuukijas_cont,
.kengaku_cont {
    box-shadow: 10px 10px 8px rgba(40, 161, 0, 0.747);
}
.yasai_cont,
.taiken_cont,
.jyouhou_cont {
    box-shadow: 10px 10px 8px rgba(240, 1, 45, 0.747);
}
.view_text_outer {
    box-shadow: 10px 10px 8px rgba(0,0,0,0.16);
}

/* ########################################################## */
/* 流れるテキスト左から右 */
/* ########################################################## */

/*全共通*/

.slide-in {
	overflow: hidden;
    display: inline-block;
}

.slide-in_inner {
	display: inline-block;

}

.leftAnime{
    opacity: 0;
}

.slideAnimeLeftRight {
	animation-name:slideTextX100;
	animation-duration:1.8s;
	animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextX100 {
    from {
        transform: translateX(-100%); 
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.slideAnimeRightLeft {
	animation-name:slideTextX-100;
	animation-duration:1.8s;
	animation-fill-mode:forwards;
    opacity: 0;
}


@keyframes slideTextX-100 {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ########################################################## */
/* マーカー */
/* ########################################################## */

/* 緑マーカー */
.marker {
    background:linear-gradient(transparent 80%, rgba(40, 161, 0, 0.747) 80%);
    display: inline;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    transition:background-size 1.5s;
}

.marker.on,
.marker2.on,
.marker3.on {
    background-size: 100% 100%;
}

/* 赤マーカー */
.marker2 {
    background:linear-gradient(transparent 80%, rgba(240, 1, 45, 0.747) 80%);
    display: inline;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    transition:background-size 1.5s;
}

/* 茶マーカー */
.marker3 {
    background:linear-gradient(transparent 80%, #94692Cbe 80%);
    display: inline;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    transition:background-size 1.5s;
}

/* ########################################################## */
/* 農産物情報 */
/* ########################################################## */

.jyouhou_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 20px;
}

@media screen and (min-width: 768px) {
    .jyouhou_list {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr;
    }

}

/* ########################################################## */
/* テキストがじわっと出現 */
/* ########################################################## */

.blur{
	animation-name:blurAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}

@keyframes blurAnime{
    from {
        filter: blur(10px);
        transform: scale(1.02);
        opacity: 0;
    }

    to {
        filter: blur(0);
        transform: scale(1);
        opacity: 1;
    }
}

.blurTrigger{
    opacity: 0;
}

/* ########################################################## */
/* お問い合わせ */
/* ########################################################## */

/* 基本 */
input,
textarea {
    -webkit-appearance: auto;
    appearance: auto;
    border-width: 1px;
    background-color: #fff;
    font-size: 0.9em;
    padding: 0.4em;
}

/* 選択系パーツ */
input[type="radio"] {
    cursor: pointer;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    margin-right: 4px;
}

.toiawase_innerWrap {
    max-width: 1240px;
    margin: 0 auto;
}
form {
    max-width: 600px;
    margin: 0 auto;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    border: 1px solid #cccccc;
    background-color: #ffffff;
    width: 100%;
    margin-top: 5px;
    padding: 4px 8px;
    color: #4B4B4B;
}
textarea {
    height: 148px;
    margin-bottom: 20px;
}
form > p {
    line-height: 1.4;
    margin-bottom: 20px;
}
.toiawase_01 {
    margin-bottom: 10px;
}

.toiawase_name {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;    
}
.toiawase_cont_text {
    font-size: 18px;
}

@media (width > 768px) {
    .toiawase_name {
        font-size: 28px;
        margin-bottom: 30px;
    }
    textarea {
        margin-bottom: 30px;
    }

}

/* ########################################################## */
/* 画像をキラッ */
/* ########################################################## */

.shine span.mask{
	position: relative;
    display: block;
    line-height: 0;
    overflow: hidden;
}

.shine span.mask::before {
	position: absolute;
	content:"";
	width: 50%;
	height: 100%;
	top: 0;
	left: -75%;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	transform: skewX(-25deg);
}

.shine span.mask:hover::before {
	animation: shine 0.7s;
}

@keyframes shine {
	100% {
		left: 125%;
	}
}

/* ########################################################## */
/* 画像をフワフワ */
/* ########################################################## */

@media (width > 1150px) {
#area-01 {
    position: relative;
}
.fuwafuwa1 {
    position: absolute;
    animation: fuwafuwa 3s ease-in-out infinite alternate;
    background: url(../img/06_toiawase/01_f_yasai.png) no-repeat center center / 60px auto;
    display: inline-block;
    transition: 1.5s ease-in-out;
    width: 70px;
    height: 70px;
    top: 50px;
    left: 100px;
    margin-top: 15px;
}
@keyframes fuwafuwa {
    0% {
        transform:translate(0, 0) rotate(-7deg);
    }
    50% {
        transform:translate(0, -7px) rotate(0deg);
    }
    100% {
        transform:translate(0, 0) rotate(7deg);
    }
}
.fuwafuwa2 {
    position: absolute;
    animation: fuwafuwa2 3s ease-in-out infinite alternate;
    background: url(../img/06_toiawase/02_f_yasai.png) no-repeat center center / 60px auto;
    display: inline-block;
    transition: 1.5s ease-in-out;
    width: 100px;
    height: 100px;
    top: 300px;
    left: 170px;
    margin-top: 15px;
}
@keyframes fuwafuwa2 {
    0% {
        transform:translate(0, 0) rotate(7deg);
    }
    50% {
        transform:translate(0, -7px) rotate(0deg);
    }
    100% {
        transform:translate(0, 0) rotate(-7deg);
    }
}
.fuwafuwa3 {
    position: absolute;
    animation: fuwafuwa 3s ease-in-out infinite alternate;
    background: url(../img/06_toiawase/03_f_yasai.png) no-repeat center center / 60px auto;
    display: inline-block;
    transition: 1.5s ease-in-out;
    width: 70px;
    height: 70px;
    top: 600px;
    left: 100px;
    margin-top: 15px;
}
.fuwafuwa4 {
    position: absolute;
    animation: fuwafuwa2 3s ease-in-out infinite alternate;
    background: url(../img/06_toiawase/04_f_yasai.png) no-repeat center center / 60px auto;
    display: inline-block;
    transition: 1.5s ease-in-out;
    width: 70px;
    height: 70px;
    top: 50px;
    right: 100px;
    margin-top: 15px;
}
.fuwafuwa5 {
    position: absolute;
    animation: fuwafuwa 3s ease-in-out infinite alternate;
    background: url(../img/06_toiawase/05_f_yasai.png) no-repeat center center / 60px auto;
    display: inline-block;
    transition: 1.5s ease-in-out;
    width: 70px;
    height: 70px;
    top: 300px;
    right: 150px;
    margin-top: 15px;
}
.fuwafuwa6 {
    position: absolute;
    animation: fuwafuwa2 3s ease-in-out infinite alternate;
    background: url(../img/06_toiawase/06_f_yasai.png) no-repeat center center / 60px auto;
    display: inline-block;
    transition: 1.5s ease-in-out;
    width: 70px;
    height: 70px;
    top: 600px;
    right: 100px;
    margin-top: 15px;
}

}

/* ########################################################## */
/* パララックス */
/* ########################################################## */

.sec_para {
    margin-bottom: 400px;
    background-color: #FFF1E7;
    padding: 1px 0;
}
.sec_para::after {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../img/06_toiawase/07_para.jpg) no-repeat center/cover;
    z-index: -1;
}

.sub_04 main {
    background-color: #FFF1E7;
    padding: 1px 0;    
}

/* ########################################################## */
/* subページ */
/* ########################################################## */

.sub_name {
    font-size: 24px;
    font-family: "Hina Mincho", serif;
    font-weight: bold;
    text-align: center;
    padding: 20px 0;
}
.sub_img {
    width: 300px;
    height: 230px;
    object-fit: cover;
    border-radius: 15px;
}
.sub_img_outer {
    text-align: center;
}
.sub_cont_text {
    line-height: 1.4;
    letter-spacing: .08em;
    padding: 20px 40px;
}
.sub_button_outer {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: fixed;
    bottom: 0;
    width: 100%;
    padding-bottom: 50px;
}
.sub_button {
    padding: 6px 18px;
    background-color: #008042;
    color: #ffffff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}
.sub_button:hover {
    background-color: #00ac59;
}
.sub_footer_outer {
    background-color: #94692C;
    color: #ffffff;
    position: absolute;
    bottom: 0;
    width: 100%;
}
.sub_footer_inner {
    text-align:center;
    padding-top: 6px;
    padding-bottom: 10px;
}