@charset "utf-8";

/*===　スタイル調整 start　===*/
* {
    margin: 0;
    padding: 0;
}

img {
    vertical-align: middle;
}

header, article, aside, section, footer {
    display: block;
}
/*===　スタイル調整 end　===*/

/*===　フォント start　===*/
html {
    width: 100%;
    font-size: 62.5%;
    font-family: 'Lato', 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

body {
    /* 16px */
    font-size: 1.8rem;
    line-height: 2;
    color: #333;
    background: #fff;
}

h1 {
    /* IE8以下とAndroid4.3以下用フォールバック */
    font-size: 36px;
    /* 24px~36pxで可変 */
    font-size: calc(2.4rem + ((1vw - 0.64rem) * 2.1429));
    line-height: 1.3;
}

h2 {
    /* IE8以下とAndroid4.3以下用フォールバック */
    font-size: 24px;
    /* 20px~24pxで可変 */
    font-size: calc(2rem + ((1vw - 0.64rem) * 0.7143));
    line-height: 1.3;
}

.marB16 {
    margin-bottom: 1.6rem;
}
.marB32 {
    margin-bottom: 3.2rem;
}


.B {
    font-weight: bold;
}

.Left {
    text-align: left;
}
/*===　フォント end　===*/

/*===　トップ画像・ロゴ start　===*/
header {
    position: relative;
    background: url(../image/top.jpg) no-repeat center;
    background-size: cover;
    background-position: center;
    margin: 1.6rem 3.2rem;
}

header h1 span {
    width: 100%;
    font-weight: bold;
    text-align: left;
    line-height: auto;
    text-shadow: 3px 3px 0 #ccc;
    color: rgb(166, 166, 166);
    mix-blend-mode: multiply;
}

header h1 {
    font-weight: normal;
    padding: 3% 0 20% 3%;
}
/*===　トップ画像・ロゴ end　===*/

.sticker_stp {
    position: absolute;
    bottom: 0px;
    right: 0px;
    transform: rotate(15deg);
}

img.sticker {
    position: absolute;
    bottom: 0px;
    right: 0px;
    animation-name: anim_s;
    transform: rotate(15deg);
    animation-duration: 1s;
}
.animation{
    animation-timing-function: ease-in-out;
    animation-iteration-count: 3;
    animation-direction: alternate;
    animation-duration: 1s;
}
@keyframes anim_s {
    50% {
        transform: rotate(-15deg);
    }
    100% {
        transform: rotate(15deg);
    }

}
@media screen and (max-width: 1580px) {
    .sticker, .sticker_stp {
        width: 100px;
    }
}
@media screen and (max-width: 900px) {
    .sticker, .sticker_stp {
        width: 70px;
    }
}
@media screen and (max-width: 750px) {
    .sticker, .sticker_stp {
        width: 65px;
    }
}
/*===　ナビメニュー start　===*/
nav {
    background: #ffbbbb;
    width: 100%;
    text-align: center;
}

nav ul li {
    display: inline-block;
    padding: 0.8rem 2.6rem;
    margin: 0;
    position: relative;
}

nav ul li a {
    color: #333;
    position: relative;
    text-decoration: none;
    font-weight: bold;
}

nav img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.navbtn {
    display: none;
}
/*===　ナビメニュー end　===*/

/*=======================*/
/*===　各ページ共通　===*/
#contents {
    margin: 1.6rem 3.2rem;
    text-align: center;
}

h2 {
    margin: 3.2rem auto 1.6rem;
}

.topslide {
    width: 100%;
    margin: 0.8rem auto;
}

.topslide img {
    margin: 0 1.6rem;
    -webkit-filter: drop-shadow(-1px 1px 5px #ccc);
    filter: drop-shadow(-1px 1px 5px #ccc);
    width: 15%;
    height: auto;
    min-width: 10%;
}

section {
    margin: 1.6rem auto 3.2rem;
}

.fadeInUp {
    opacity: 0;
    transform: translateY(40px);
    transition: 2.5s;
}

/*===　ステッチ囲み枠　===*/
.sec1 {
    width: 68.8rem;
    padding: 1.6rem;
    background: #fff9be;
    box-shadow: 0px 0px 0px 10px #fff9be;
    border: dashed 2px #5f4444;
    border-radius: 8px;
}

.sec1 ul {
    margin: 0 3.2rem;
}

.sec1 ul li {
    text-align: left;
}

h3 img {
    margin: 0 0.8rem;
    -webkit-filter: drop-shadow(-3px 3px 2px #999);
    filter: drop-shadow(-3px 3px 2px #999);
}

/*===　flexbox start　===*/
.sec3 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}

.noflex {
    width: 100%;
    padding-bottom: 1.6rem;
}

.sec3 .right-contents {
    width: 50%;
}

.sec3 .left-contents {
    width: 50%;
}

/*===　各ページ共通　===*/
/*=======================*/

/*===　トップページ start　===*/
.imagebox {
    width: 100%;
    height: auto;
    text-align: center;
    margin: 1.6rem 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.imagebox img {
    width: 20%;
    height: auto;
    overflow: hidden;
    border-radius: 80%;
    -ms-transition-duration: 5s;
    transition-duration : 0.5s;
    margin: 1.6rem;
    transform: scale(0.9,0.9);
}
 
.imagebox img:hover {
    border-radius: 0%;
    transform: scale(1,1);
}

.tfbox1 {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}
.tfbox2 {
    width: 50%;
}
.fbarea{
    width: 50%;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
}
.fbimg1 {
    margin: 0 auto 0 10%;
}
.fbimg2 {
    position: relative;
    top: -90px;
    left: 620px;

}
.fb-page {
    width: 90%;
    margin: 0 auto;
}

.box {
    width: 90%;
    height: auto;
    position: relative;
    padding: 1.6rem 4rem;
    text-align: left;
    border-top: 2px solid #999;
    border-bottom: 2px solid #999;
    margin: 3.2rem 5%;
}

.boxshort {
    width: 50%;
}

.box:before,
.box:after {
    content: '';
    position: absolute;
    top: -2rem;
    width: 2px;
    height: calc(100% + 4rem);
    background-color: #999;
}

.box:before {
    left: 2rem;
}

.box:after {
    right: 2rem;
}

.box img {
    position: absolute;
    right: -0px;
    bottom: -140px;
}
.yuuyuuCal {
    width: 60%;
    margin: 0 auto;
}
.ctw-marker-bold {
    padding: 3px 1px;
    background-size: 200% 12px;
    background-position: 0 10px;
    background-repeat: repeat-x;
    -webkit-transition: all 3s ease;
    -moz-transition: all 3s ease;
    -o-transition: all 3s ease;
    -ms-transition: all 3s ease;
}

.ctw-marker-bold.ctw-marker-position {
    background-position: -100% 10px;
}

.ctw-marker-yellow {
    background-image: -webkit-linear-gradient(left, rgba(255,235,6,0) 50%, rgba(255,235,6,0.75) 50%);
    background-image: -moz-linear-gradient(left, rgba(255,235,6,0) 50%, rgba(255,235,6,0.75) 50%);
    background-image: -o-linear-gradient(left, rgba(255,235,6,0) 50%, rgba(255,235,6,0.75) 50%);
    background-image: -ms-linear-gradient(left, rgba(255,235,6,0) 50%, rgba(255,235,6,0.75) 50%);
    background-image: linear-gradient(left, rgba(255,235,6,0) 50%, rgba(255,235,6,0.75) 50%);
}

.underline {
    text-align: left;
    width: 90%;
    margin: 15rem 5% 0 5%;
    position: relative;
    padding: 3.2rem;
}

.underline span {
    border-bottom: dashed 1.5px #ffbbbb;
}

.underline img {
    position: absolute;
    top: -40px;
    left: -40px;
}




/*===　いちご狩りページ,販売ページ料金表 start ===*/
.sec2 table, .sec3 table {
    border-collapse: collapse;
    width: 85%;
    margin: 1.6rem auto 1.6rem;
}

.sec2 th, .sec2 td {
    padding: 0.8rem 1.6rem;
    text-align: center;
    border-bottom: 1px solid #ccc;
}
.sec3 th, .sec3 td {
    padding: 0.8rem 1.6rem;
    text-align: center;
    border-bottom: 1px solid #ccc;
}

.sec2 th, .sec3 th {
    font-weight: bold;
    background: #ffcece;
}

.sec2 td, .sec3 td {
    background: #f0f0f0;
}

.fa-gift {
    margin-right: 0.8rem;
    color: #ffa700;
}

.fa-check-square {
    margin-right: 0.8rem;
}
.fa-calendar-alt {
    margin-right: 0.8rem;
}
.hanbai_annai {
    position: relative;
    text-align: center;
    width: 35rem;
}
.hanbai_annai img {
    position: absolute;
    z-index: -10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    opacity: 0.7;
}
.hanbaiimg {
    display: block;
    margin: 0 auto;
    margin-bottom: 6.4rem;
    width: auto;
    max-width: 90%;
}

.sec4 {
    display: flex;
    justify-content:center;
    width: 98%;
    align-items: flex-start;
}
.sec4 div {
    margin: 0 3.2rem;
}
.hanbai {
    margin: 5rem auto;
}
.pictureArea {
    display:  flex;
    margin: 6.2rem auto 0rem;
    justify-content: center;
    align-content: center;
}

.yuuyuuannai{
    max-width: 100%;
}

/*===　いちご狩りページ カレンダー　===*/
iframe {
    height: 500px;
    width: 90%;
    margin: 1.6rem auto 1.6rem;
}

/*===　いちご狩りページ マステメモ　===*/
.memo {
    width: 90%;
    position: relative;
    background: #fff9be;
    border-left: 4px dotted rgba(0, 0, 0, .1);
    border-right: 4px dotted rgba(0, 0, 0, .1);
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
    padding: 6rem 3.2rem 3.2rem;
    margin: 1.6rem auto 1.6rem;
}

.memo ul {
    text-align: left;
    margin: 0 0.8rem 0 4.4rem;
}

.tape {
    position: absolute;
    top: -1em;
    left: 35%;
    width: 100px;
    height: 30px;
    background-image: linear-gradient(-45deg, rgba(227, 155, 140, .4) 25%, transparent 25%, transparent 50%, rgba(227, 155, 140, .4) 50%, rgba(227, 155, 140, .4) 75%, transparent 75%, transparent 100%);
    background-size: 20px 20px;
    border-left: 2px dotted rgba(0, 0, 0, .1);
    border-right: 2px dotted rgba(0, 0, 0, .1);
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
    padding: 0.25em 2em;
    transform: rotate(-4deg);
}

/*===　品種紹介ページ ===*/
.hinsyuArea {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.hinsyu {
    width: 43%;
    display: flex;
    flex-wrap: wrap;
}

.hinsyu h3 {
    width: 100%
}

.hinsyu h3:before {
    font-family: "Font Awesome 5 Free";
    content: "\f14a";
    font-weight: 900;
    padding-right: 0.8rem;
    color: #ff3700;
    font-size: 2.25rem
}

.hinsyu img {
    max-width: 160px;
    max-height: 160px;
    margin: 0 auto;
}

.hinsyu ul {
    width: auto;
    list-style: none;
    margin: 0.8rem auto 0;
    flex-basis: auto;
}

.kugiri {
    background: #fff9be;
    border-top: 2px dashed #5f4444;
    width: 100%;
    margin: 0.8rem auto;
}


/*===　お問合せページ　　===*/
.mapTitle {
    font-weight: bold;
}
.fa-map-marked-alt {
    font-size: 2.2rem;
    margin-right: 0.8rem;
    color: #1b7600
}
.fa-street-view {
    font-size: 3rem;
    margin-right: 0.8rem;
    color: #ff8900;
}
.fa-lightbulb {
    margin-right: 0.8rem;
    color: darkorange;
}
.fa-truck {
    color: firebrick;
    margin-right: 0.8rem;
}
.fa-info-circle {

    margin-right: 0.8rem;  
}
.contacth3 {
    font-size: 2rem;
    font-weight: bold;
    margin: 6rem 0 1.2rem;
    text-align: center;
    padding: 0 auto;
}
.contactflex {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.contacttext {
    padding: 1.6rem 0 1.6rem 3.2rem;
    text-align: left;
}
.gmap iframe {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}
.gmap {
    display: inline-block;
    width: 550px;
    height: 400px;
    padding: 0;
    margin: 0;
    border: 1px solid #999;
}
.w90 {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}
    .pictureArea img {
        margin: 0 3.2rem;
    }

/*=======================*/
/*===　footer start　===*/
footer {
    height: auto;
    background: #ccc url(../image/footer.jpg);
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    background-size: cover;
    padding: 3.2rem;
}

footer section {
    background: rgba(255, 255, 255, 0.8);
    margin: 1.6rem auto;
    padding: 3.2rem;
    width: 90%;
    height: auto;
    border-radius: 30px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
}

footer section p {
    color: #404040;
}

.footerRogo {
    font-size: 2rem;
    width: 100%;
    font-weight: bold;
    text-align: left;
    line-height: auto;
    text-shadow: 3px 3px 0 #c0c0c0;
    color: rgb(102, 102, 102);
    mix-blend-mode: multiply;
}
footer ul {
    list-style-type: none;
}
footer a {
    color: #404040;
}
/*===　footer end　===*/
/*=======================*/

/*===　メディアクエリ 1580以下 start　===*/
@media screen and (max-width: 1580px) {
    /*==　フォントサイズ　==*/
    body {
        line-height: 2;
        font-size: 1.4rem;
    }
    h1 {
        /* 24px */
        font-size: 2.4rem;
    }

    h2 {
        /* 20px */
        font-size: 2rem;
        margin: 1.6rem 0 0rem; 
    }

    /*===　トップページ　===*/
    .box {
        width: 100%;
        padding: 0.8rem 3.2rem;
        margin: 1.6rem 0;
    }
    .boxshort {
        width: 50%;
    }
    .box:before,
    .box:after {
        top: -0.8rem;
        width: 2px;
        height: calc(100% + 1.6rem);
        background-color: #999;
    }

    .box:before {
        left: 0.8rem;
    }

    .box:after {
        right: 0.8rem;
    }
    
    .underline {
        width: 95%;
        margin-top: 20rem;
        margin-right: 0;
    }

    /*===　品種紹介ページ レイアウトばらつき対策===*/
    .hinsyu {
        display: block;
    }

    /*===　問合せページ===*/
    .gmap {
        width: 400px;
        height: 350px;
    }
    .tfbox2 {
        width: 40%;
    }
    .fbarea{
        width: 40%;
    }
    .fbarea div {
        data-width: 350px;
        width: 350px;
    }
    .fbimg1 {
        width: 300px;
        height: auto;
    }
    .fbimg2 {
        
    }

    .sec4 {
        width: 98%;
        justify-content: space-between;
    }

    .sec4 img {
        width: 170px;
    }
    .sec4 .yuuyuukanImg {
        width: 40%;
        height: auto;
    }
    section.pictureArea {
        width: 100%;
    }
    section.pictureArea img {
        max-width: 33%;
        margin: 0 auto;
    }
}

/*===　メディアクエリ 900以下 start　===*/
@media screen and (max-width: 900px) {
    /*===　各ページ===*/
    .topslide img {
        margin: 0 0.8rem;
    }

    .sec1 {
        width: 90%;
        padding: 0.8rem 0.8rem 0.8rem 2.4rem;
    }

    .sec1 ul {
        margin: 0 0.8rem;
    }

    /*===　トップページ===*/
   .imagebox {
        flex-wrap: wrap;
        width: 100%;
        margin: 0.8rem 0;
    }
    .imagebox img {
        width: 50%;
        height: auto;
        margin: 0;
    }

    h2.top img {
        width: 80px;
        height: auto;
    }
    
    .tfbox1 {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .tfbox2 {
        width: 100%;
    }
    .fbarea {
        width: 100%;
        flex-wrap: wrap;
        margin-bottom: 3.2rem;
        height: auto;
    }
    .fbarea div {
        width: 100%;
    }
    .fbimg1 {
        width: 300px;
        height: auto;
        margin: 0;
    }
    .box {
        width: 85%;
        margin: 1.6rem auto 12rem;
        padding: 0.8rem 1.6rem;
    }
    .box img {
        width: 200px;
        height: auto;
        bottom: -95px;
    }

    .underline {
        width: auto;
        margin: 0rem 3.5rem;
        padding: 0;
    }

    .underline img {
        width: 150px;
    }

    /*==　料金表　==*/
    .sec2 table, .sec3 table {
        width: 100%;
        margin-top: 0.8rem;
        margin-bottom: 5.6rem;
    }

    /*==　contents sec3 flexbox　==*/
    .sec3 {
        display: contents;
    }

    .sec3 .right-contents {
        width: 100%;
    }

    .sec3 .left-contents {
        width: 100%;
    }

    .memo {
        width: 90%;
        padding: 4rem 1.6rem 2.4rem;
        margin: 1.6rem auto 1.6rem;
    }

    .memo ul {
        margin-left: 1.6rem;
    }

    /*===　品種紹介ページ ===*/
    .hinsyu {
        display: block;
        padding: 0.8rem;
    }
    .mapcontents {
        margin: 3.2rem 0;
    }
    .gmap {
        width: 80%;
        height: 330px;
    }
    .contactflex {
        flex-wrap: wrap;
    }
    .contacttext{
        text-align: left;
        padding: 3.2rem 1.2rem;
    }

    .sec4 {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: auto;
    }

    .sec4 div {
        margin: 1.6rem auto 0.8rem;
        width: 27rem;
        height: auto;
    }

    .sec4 img {
        width: 130px;
        top: -10px;
    }
    .sec4 .boxshort {
        width: 90%;
    }
    .sec4 .yuuyuukanImg {
        width: 80%;
        max-width: 600px;
        margin: 0 auto;
    }
    .hanbai {
        flex-direction: column;
        margin: 0 auto 5rem;
    }
    .hanbai_annai img {
        top: 50%;
    }
    .yuuyuuCal {
        width: 80%;
    }
    .pictureArea {
        flex-direction: column;
    }
    section.pictureArea img {
        width: 500px;
        max-width: 90%;
        
    }
}

/*===　メディアクエリ 750以下 start　===*/
@media screen and (max-width: 750px) {
    .fbimg1 {
        width: 90%;
        height: auto;
    }
    /*===　スライド　===*/
    .topslide {
        flex-wrap: wrap;
    }
    .topslide img {
        margin: 0.4rem;
        width: 30%;
    }

    /*==　トップ画像　==*/
    header {
        margin: 6.6rem 0.8rem 0;
    }

    /*==　ナビメニュー　==*/
    nav {
        position: fixed;
        top: -150vw;
        width: 100vw;
        height: auto;
        padding-top: 50px;
        background: #ffbbbb;
        box-sizing: border-box;
        z-index: 2;
        margin: 0;
    }

    nav ul li {
        display: block;
        padding: 1rem 0;
        margin: 0;
    }

    nav ul li a {
        display: block;
        text-decoration: none;
        padding: 0;
        margin: 0;
    }

    .navbtn {
        display: inherit;
        background-color: #ffbbbb;
        position: fixed;
        top: 0rem;
        width: 100vw;
        text-align: center;
        height: 5rem;
        padding-top: 0.8rem;
        z-index: 3;
        box-sizing: border-box;
        cursor: pointer;
        -webkit-transition: all 400ms;
        transition: all 400ms;
        opacity: 0.95;
        font-weight: bold;
    }

    /*==　コンテンツ　==*/
    #contents {
        margin: 0.8rem;
    }

    /*==　料金表　==*/
    .sec2 thead, .sec3 thead {
        display: none;
    }

    .sec2 .kubun, .sec3 kubun {
        background-color: #ffcece;
        margin-top: 1.6rem;
    }

    .sec2 td, .sec3 td {
        display: block;
        width: 85%;
        margin: 0 auto;
        line-height: 1.5;
    }

    .sec2 td::before, .sec3 td::before {
        content: attr(data-label);
        font-size: 1.2rem;
        color: #999;
        display: block;
        margin-bottom: 0.25rem;
    }

    .sec4 img {
        width: 100px;
        top: -10px
    }

    .hanbai_annai img {
        top:50%;
        width: 130px;
    }
  

    /*===　goo cal　===*/
    iframe .calender {
        height: 400px;
    }

    /*===　品種紹介ページ ===*/
    .hinsyu img {
        width: 130px;
        height: 130px;
    }

    /*===　footer ===*/
    footer {
        padding: 1.6rem;
    }
    footer section {
        flex-wrap: wrap;
        flex-direction: column-reverse;
        margin: 0 auto;
        width: auto;
    }
    footer ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        text-align: center;
        margin-bottom: 3.2rem;
    }
    footer li {
        width:11.2rem;
        margin: 0 auto;
    }
    img.map {
        width: 95%;
    }
    .yuuyuuCal {
    width: 100%;
}
}
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
    display: block !important;
    margin: 0 auto;
}

.sp {
    display: none !important;
    margin: 0 auto;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 900px) {
    .pc {
        display: none !important;
        margin: 0 auto;
    }

    .sp {
        display: block !important;
        margin: 0 auto;
        max-width: 100%;
    }
}