@charset "utf-8";
/* CSS Document */

/*=========================
　　　　基本設定
===========================*/
body {
	font-family:"メイリオ", Meiryo, sans-serif;
    margin:0;
    padding:0;
	-webkit-overflow-scrolling: touch;
}
a,a:hover{
	text-decoration:none;
	border:0;
}	
h1,h2,h3,h4,h5,h6,p{
	padding:0;
	margin:0;
}
h3{
    font-weight: normal;
}
ul,li{
    margin:0;
    padding:0;
	list-style:none;
}
a img{
	border:0;	
}
img{
    max-width:100%;
    height:auto;
}

/* 共通クラス */
.container{
	width:100%;
	margin:0 auto;
    display:block;
}

.block-left{
    float:left;
}
.block-right{
	float:right;
}
.clear{
	clear:both;
}
.SP{
    display:none;
}

.font_12{font-size: 12px;}
.font_14{font-size: 14px;}
.font_16{font-size: 16px;}
.font_18{font-size: 18px;}
.font_20{font-size: 20px;}
.font_22{font-size: 22px;}
.font_27{font-size: 27px;}
.font_32{font-size: 32px;}
.font_36{font-size: 36px;}
.font_b{font-weight: bold;}

.text_left{text-align: left;}
.text_center{text-align: center;}
.text_right{text-align: right;}

.color_red{
    color: #FF0000;
}

.margin_t_10{margin-top:10px!important;}
.margin_t_20{margin-top:20px!important;}
.margin_t_30{margin-top:30px!important;}
.margin_t_40{margin-top:40px!important;}
.margin_t_50{margin-top:50px!important;}
.margin_t_60{margin-top:60px!important;}
.margin_t_70{margin-top:70px!important;}
.margin_t_100{margin-top:100px!important;}

.margin_b_10{margin-bottom:10px!important;}
.margin_b_20{margin-bottom:20px!important;}
.margin_b_30{margin-bottom:30px!important;}
.margin_b_40{margin-bottom:40px!important;}
.margin_b_50{margin-bottom:50px!important;}
.margin_b_60{margin-bottom:60px!important;}
.margin_b_70{margin-bottom:70px!important;}
.margin_b_100{margin-bottom:100px!important;}

.reserve{
    text-align: center;
    font-weight: 600;
}
.reserve_s{
    color: #009900;
}
/* エフェクト */
/*---共通css----*/
figure {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

/*---拡大----*/
.top_contents_img figure img{
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.top_contents_img figure:hover img{
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

/*---一瞬点滅----*/
.menu_effect figure:hover img {
  opacity: 1;
  -webkit-animation: flash 1.5s;
  animation: flash 1.5s;
}
@-webkit-keyframes flash {
  0% {
    opacity: .2;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: .2;
  }
  100% {
    opacity: 1;
  }
}

/*=========================
　　　　ヘッダー
===========================*/
#header{
    width:100%;
	background-color:#D23544;
	height:30px;
}
#header h1,#header p{
	font-size:14px;
    font-weight: normal;
	color:#FFF;
    padding: 4px 20px;
}
/*=========================
　　　トップページ
===========================*/
/* トップ画像 */
#top_img{
    position: relative;
}
#top_img img{
    width: 100%;
    vertical-align: middle;
}
#top_text{
    position:absolute;
    top: 78%;
    transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    width: 100%;
    color: #FFF;
    text-align: center;
    font-weight: 600;
    text-shadow: 1px 1px 8px #000,-1px 1px 8px #000,1px -1px 8px #000,-1px -1px 8px #000;
}
#top_text a{
    color: #FFF;
}
#top_text_s{
    font-size: 2.4vw;
}
#top_text_b{
    font-size: 3.7vw;
}

/* メニュー */
.menu{
    width: 100%;
    background: #689432;
    color: #FFF;
    text-align: center;
    font-size: 14px;
    padding: 22px 0;
}
.menu ul li{
    display: inline-block;
    width: 115px;   
}
.fixed_pc {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
    padding: 15px 0!important;
    background: rgba(104,148,50,0.85);
}
.fixed_pc img{
    display: none;
}

.menu_text{
    margin-top: 5px;
}
.fixed_pc .menu_text{
    margin-top: 0;
}
.menu_text a{
    color: #FFF;
}


/* トップページ メインコンテンツ */
.top_contents_left,.top_contents_right,.footer_contents_l,.footer_contents_r,.StreetView_left,.StreetView_right{
    width: 50%;
}
.top_contents_img img{
    display: block;
    width: 100%;
}
.top_cherry,.top_peach{
    color: #FFF;
}
.top_cherry{
    background: #D23544;
}
.top_peach{
    background: #FF6699;
}
.top_contents_table{
    width: 100%;
    padding: 1%;
}
.top_table_button{
    width: 30%;
}
.top_contents_text_s{
    font-size: 1vw;
}
.top_contents_text_b{
    font-size: 1.5vw;
}
.top_text_button{
    padding: 10px;
    border: 1px solid #FFF;
    text-align: center;
    font-size: 1.6vw;
}
.top_table_button a{
    color: #FFF;
}
.top_table_button p:hover{
    background-color:rgba(225,255,0,0.5);
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
.top_contents_right {
    text-align: center;
}
.instagram_info{
    padding: 10px 0;
}
.instagram_info li{
    display: inline-block;
    vertical-align: middle;
}
.instagram_img{
    border: 1px solid #dbdbdb;
    border-radius: 50%;
    width: 100px;
}
.instagram_name{
    font-size: 20px;
    font-weight: bold;
}
.instagram_explain{
    font-size: 12px;
}
.instagram_follow a{
    background-color: #3897f0;
    border: 1px solid #3897f0;
    border-radius: 4px;
    color: #fff;
    margin: 5px;
    padding: 0 10px;
    display: inline-block;
}

/* ストリートビュー */
#top_StreetView iframe{
    display: block;
}

.top_news{
    width: 100%;
    padding: 10px 0;
    background: #FFD700;
    text-align: center;
}
.top_news a{
    color: #000;
    font-size: 36px;
    font-weight: bold;
}

/*=========================
　　　フッター
===========================*/
#footer_contents{
    display: flex;
}
.footer_contents_l{
    background-image: url(img/footer_logo.png);
    background-repeat:no-repeat;
    background-position: 0% 50%;
    background-color: #689432;
    color: #FFF;
    position: relative;
}
.footer_table{
    width: 95%;
    position:absolute;
    left: 50%;
    transform: translate(-50%, 10%);
    -webkit-transform: translate(-50%, 10%);
}
.footer_table_r{
    text-align: right;
    width: 40%;
}
.footer_table_r img{
    width: 100%;
}
.footer_contents_text_s{
    font-size: 0.95vw;
}
.footer_contents_text_b{
    font-size: 1.35vw;
}
.map_button a{
    display: block;
    background-color: #FFF;
    border-radius: 10px;
    text-align: center;
    color: #669232;
    padding: 10px 0;
    width: 90%;
    background-size: 200% 100%;	
    background-image: -webkit-linear-gradient(left, transparent 50%, rgba(210, 53, 68, 1) 50%);	
    background-image: linear-gradient(to right, transparent 50%, rgba(210, 53, 68, 1) 50%);
    -webkit-transition: background-position .3s cubic-bezier(0.19, 1, 0.22, 1) .1s, color .5s ease 0s, background-color .5s ease;
    transition: background-position .3s cubic-bezier(0.19, 1, 0.22, 1) .1s, color .5s ease 0s, background-color .5s ease;
}
.map_button a:hover{
    color: #FFF;
	background-color: #D23544;
    background-position: -100% 100%;
}
.footer_contents_r img{
    width: 50%;
    vertical-align: middle;
}

.footer_contents_r li{
    display: inline;
}
a:hover img.footer_r_01,a:hover img.footer_r_02{
     -webkit-filter: hue-rotate(15deg);
     -moz-filter: hue-rotate(15deg);
     -o-filter: hue-rotate(15deg);
     -ms-filter: hue-rotate(15deg);
     filter: hue-rotate(15deg);
}
#footer{
    width:100%;
	background-color:#D23544;
}
#footer p{
	font-size:14px;
    font-weight: normal;
	color:#FFF;
    padding: 15px 20px;
}

/*=========================
　　　さくらんぼ狩り
===========================*/
#sub_title.cherry{
    background-color: #D23544;
}
#sub_title{
    padding: 10px 0;
}
#sub_title h2{
    text-align: center;
    font-size: 36px;
    color: #FFF;
}

.sub_contents{
    width: 1080px;
    margin: 0 auto;
}
.contents_text{
    letter-spacing: 0.08em;
    line-height: 2;
}
.fee_title.cherry{
    color: #D23344;
}
.fee_course{
    display: inline-block;
    background-color: #009900;
    padding: 5px 25px 5px 15px;
    color: #FFF;
}
.fee_table{
    width: 100%;
    font-size: 22px;
    text-align: center;
}
.fee_table th{
    background-color:rgba(0,153,0,0.4);
    font-weight: normal;
}
.fee_table td{
    border: solid 1px #43A743;
}
.fee_table th,.fee_table td{
    padding: 10px 0px;
}
.net_reserve img{
    display: block;
    margin: auto;
}
.cherry_reserve_pc{
    width: 490px;
}
.privilege ul{
    text-align: center;
}
.privilege li{
    background-color: #FFFFCC;
    border-radius: 20px;
    display: inline-block;
    text-align: left;
    padding: 15px 20px;
    width: 28%;
    margin: 5px;
    vertical-align: top;
    min-height: 235px;
}
.privilege_img{
    margin: 10px 0;
}
.privilege_img.tokuten_one{
    margin:0 auto;
    width: 350px;
}
.cherry_tokuten_item{
    text-align: center;
    padding-top: 25px;
}
.privilege.cherry{
    background-color: #FFFFCC;
    border-radius: 20px;
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}
.cherry_tokuten.flexbox {
    width: 90%;
    margin: 10px auto;
    padding-bottom: 15px;
}
.privilege.cherry li{
    min-height: 435px;
}
.privilege_sub_text.cherry{
    color: #FF0000;
}
#brand_wrap{
    width: 100%;
    background-color: #FFEBDB;
    padding: 30px 0;
}
.brand_contents .block-left{
    margin-right: 10px;
    min-height: 170px;
}
.brand_contents li{
    width: 325px;
    display: inline-block;
    margin: 15px;
    vertical-align: top;
}
.brand_title{
    margin-bottom: 5px;
}
.brand_text{
    padding-top: 25px;
}
.cherry_caution{
    padding: 10px 0 10px 30px;
    margin: 40px 0;
}
.cherry_caution.cherry{
    border-left: 20px solid #FF0000;
}
.caution_title.cherry{
    color: #FF0000;
}
/*=========================
　　　さくらんぼ成長日記
===========================*/
.cherrygrow_table{
    background: #F7F4E6;
    padding: 20px 10px;
}
.cherrygrow_table td{
    width: 75%;
    vertical-align: top;
}
.cherrygrow_arrow{
    padding: 0 0 15px;
}
.cherrygrow_arrow img{
    width: 100px;
}
/*=========================
　　　桃狩り
===========================*/
#sub_title.momo{
    background-color: #FF6699;
}
.contents_text.momo b{
    color: #FF6699;
}
.fee_title.momo{
    color: #FF6699;
}
.privilege_sub_text.momo{
    color: #FF6699;
}
.privilege.momo li{
    min-height: 315px;
}
#brand_wrap.momo{
    background-color: #fffaf0;
}
.cherry_caution.momo{
    border-left: 20px solid #FF6699;
    display: inline-block;
    width: 40%;
    margin: 40px 20px;
    vertical-align: top;
}
.momo_caution{
    display: block!important;
    width: auto!important;
    margin: 40px 0!important;
}
.caution_title.momo{
    color: #FF6699;
}
.fee-left,.fee-right{
    width: 47%;
}
.momo_list{
    background-color: #FFFFCC;
    border-radius: 40px;
    display: inline-block;
    text-align: left;
    padding: 15px 20px 25px;
}
.momo_head{
    margin-top: 10px;
    padding: 0 0 0 30px;
    background-image: url(img/momo_head.png);
    background-repeat: no-repeat;
    background-position: 0 3px;
}
/*=========================
　　　当園について
===========================*/
#sub_title.aboutus{
    background-color: #FF9900;
}
.aboutus-left,.aboutus-right{
    width: 49%;
}
.aboutus-left img,.aboutus-right img{
    width: 100%;
}
.reserve_aboutus{
    font-size: 36px;
    color: #FFF;
    text-shadow:
       2px  2px 1px #ff0000,
      -2px  2px 1px #ff0000,
       2px -2px 1px #ff0000,
      -2px -2px 1px #ff0000,
       2px  0px 1px #ff0000,
       0px  2px 1px #ff0000,
      -2px  0px 1px #ff0000,
       0px -2px 1px #ff0000;
}
/*=========================
　　　アクセス
===========================*/
#sub_title.access{
    background-color: #0099FF;
}
.access_list {
    text-align: center;
}
.access_list li{
    display: inline-block;
    margin: 0 5px;
}
.cherry_caution.access{
    border-left: 20px solid #0099FF;
}
.caution_title.access{
    color: #0099FF;
}
.access_gmap{
    width: 515px;
    height: 600px;
}
.gmap-left,.gmap-right{
    width: 50%;
    text-align: center;
}
.map_caution{
    color: #D23444;
    font-size: 13px;
    margin-left: 1%;
}
/*=========================
　　　ご予約
===========================*/
#sub_title.reservation{
    background-color: #660000;
}
.cherry_caution.reservation{
    border-left: 20px solid #660000;
}
.caution_title.reservation{
    color: #660000;
}
#formWrap {
	width:790px;
	margin:0 auto;
	font-size:14px;
}
table.formTable{
	width:100%;
	margin:0 auto;
	border-collapse:collapse;
}
table.formTable th,table.formTable td{
	border:1px solid #CCC;
}
table.formTable th{
	width:30%;
	font-weight:normal;
	background:#F1F1F1;
	text-align:left;
    vertical-align:top;
    padding: 20px 10px 20px 30px;
}
table.formTable td{
    padding: 20px 30px;
}
input[type="text"], textarea {
    width:100%;
    padding:5px 0;
}
.required{
    color: #FFF;
    background: #FF0000;
    padding: 5px 15px;
    display: inline-block;
    float: right;
}
p.error_messe{
	margin:5px 0;
	color:red;
}
.form_caution{
    line-height: 1.7;
}
input[type="submit"], input[type="button"] {
    background: #F1F1F1;
    border: solid 1px #CCC;
    width: 40%;
    height: 40px;
}

/*=========================
　　　産地直送
===========================*/
#scroll_advice {
    margin-top: 10px;
    color: #FF0000;
}
.scroll_table{
    overflow: auto;
}
/*さくらんぼ*/
.cherry_head{
    margin-top: 10px;
    padding: 0 0 0 30px;
    background-image: url(img/cherry_head.png);
    background-repeat: no-repeat;
    background-position: 0 3px;
}
table.cherrysales{
    margin-top: 0.2em;
    margin-bottom: 1em;
    width: 1000px;
    border:none;
    border-collapse: separate;
    font-size: 1em;
    border:1px #CCCCCC solid;
}
table.cherrysales th,
table.cherrysales td{
    padding: 5px 6px;
    font-size:0.9em;
    font-weight:normal;
    text-align: center;
}

table.cherrysales .title{
    background-color:#ffb5b5;
}
table.cherrysales .title th,
table.cherrysales .title td{
    border-bottom:1px #CCCCCC solid;
}
table.cherrysales .odd{
    background-color: #ffe8e8;
}

/*通信販売　送料*/
table.soryo_table	{
  margin-top: 0.2em;
  margin-bottom: 1em;
  width: 1000px;
  border-collapse: separate;
  font-size: 1em;
  border:1px #CCCCCC solid;
}

table.soryo_table th,
table.soryo_table td {
  padding: 5px 6px;
  font-size:0.9em;
  font-weight:normal;
}

table.soryo_table .title {
background-color: #f2f2f2;
}
table.soryo_table .title th,
table.soryo_table .title td {
border-bottom:1px #CCCCCC solid;
}

table.soryo_table .odd	{
background-color: #E5F2F8;
}

/*通信販売　もも　取扱い内容*/
.cherry_caution.momo.peachsales{
    display: block;
    margin: 0;
    width: auto;
}
table.table003 {
  width: 650px;
  border-collapse: separate;
  border-spacing: 2px;
  font-size: 1em;
  border-bottom:2px #FF3333 dotted;
}
table.table003 caption {
  margin-top: 1em;
  text-align: right;
}
table.table003 th,
table.table003 td {
  padding: 3px 6px;
}
table.table003 th {
  text-align: left;
  font-size:0.92em;
  color:#FF3333;
  width:150px;
}
table.table003 td {
  font-size:0.9em;
  text-align: left;
}

/*通信販売　桃の品種*/
table.table004 {
  margin-top: 0.2em;
  margin-bottom: 1em;
  width: 1000px;
  border-collapse: separate;
  border-spacing: 2px;
  font-size: 100%;
}
table.table004 caption {
  margin-top: 1em;
  text-align: right;
}
table.table004 th,
table.table004 td {
  padding: 15px 6px;
}
table.table004 th {
  background:#C4FFC4;
  text-align: center;
  font-size:0.92em;
  color:#00582a;
  width:150px;
}
table.table004 td {
  background:#FFE8F3;
  font-size:0.9em;
  text-align: left;
  color:#c5004c;
}
table.table004 td.season {
  background:#ffe5c4;
  color:#FF6600;
  text-align: center;
}
table.table004 td.title {
  background:#ffb5b5;
  font-size:1em;
  color:#333333;
  text-align: center;
}
table.table004 th.title {
  background:#ffb5b5;
  font-size:1em;
  color:#333333;
  font-weight:normal;
  text-align: center;
}

/*ぶどう*/
#sub_title.grape{
    background-color: #660033;
}
.cherry_caution.grape{
    border-left: 20px solid #660033;
}
.caution_title.grape{
    color: #660033;
}
table.grape_table	{
  margin-top: 0.2em;
  margin-bottom: 1em;
  width: 1000px;
  border:none;
  border-collapse: separate;
  font-size: 1em;
  border:1px #CCCCCC solid;
}
table.grape_table th,
table.grape_table td {
  padding: 5px 6px;
　color: #1D5C79;
  font-size:0.9em;
  font-weight:normal;
}
table.grape_table .title {
background-color:#660033;
color:#FFFFFF;
}
table.grape_table .title th,
table.grape_table .title td {
border-bottom:1px #CCCCCC solid;
}
table.grape_table .odd	{
background-color: #ffe2f2;
}

/*フルーツ便の果物一覧*/
table.fruitsbin_table	{
    margin-top: 0.2em;
    margin-bottom: 1em;
    width: 1000px;
    border:none;
    border-collapse: separate;
    font-size: 1em;
    border:1px #CCCCCC solid;
}
table.fruitsbin_table th,
table.fruitsbin_table td {
    padding: 5px 6px;
    font-size:0.9em;
    font-weight:normal;
    text-align: center;
}
table.fruitsbin_table .title {
    background-color:#660033;
    color:#FFFFFF;
}
table.fruitsbin_table .title th,
table.fruitsbin_table .title td {
    border-bottom:1px #CCCCCC solid;
}
table.fruitsbin_table .odd	{
    background-color: #ffe2f2;
}


/*===========================================================================
　　レスポンシブ設定
=============================================================================*/

   /*=====タブレット=====*/
@media(max-width:979px){
    .PC{
		display:none!important;
	}
    .TAB{
        display:block;
    }
    .block-left,.block-right{
        float:none;
    }
    .top_contents_left,.top_contents_right,.footer_contents_l,.footer_contents_r,.StreetView_left,.StreetView_right{
        width: 100%;
    }
    .top_contents_text_s{
        font-size: 1.8vw;
    }
    .top_contents_text_b,.top_text_button{
        font-size: 3vw;
    }
    
    #footer_contents{
        display: inline;
    }
    .footer_contents_text_s{
        font-size: 14px;
    }
    .footer_contents_text_b{
        font-size: 20px;
    }
    .footer_contents_l{
        position: static;
    }
    .footer_table{
        width: 100%;
        padding: 10px;
        position:static;
        top: 0;
        left: 0;
        transform: translate(0);
        -webkit-transform: translate(0);
    }
    .map_button a{
        width: 100%;
    }
    .footer_contents_l .block-left{
        float: left;
    }
    .footer_contents_l .block-right{
        float: right;
    }
    
    /*=====さくらんぼ狩り=====*/
    .sub_contents{
        width: 95%;
    }
    .cherry_reserve_pc{
        margin-bottom: 40px!important;
    }
    .privilege li{
        width: 85%;
        padding: 15px;
        min-height: initial!important;
        min-height: auto!important;
    }
    .brand_contents{
        text-align: center;
    }
    .brand_contents li{
        text-align: left;
    }
    .brand_contents .block-left{
        float: left;
    }
    
    /*=====さくらんぼ成長日記=====*/
    table.cherrygrow_table th, table.cherrygrow_table td {
        padding: 0 0 15px;
        width:auto;
        display:block;
    }
    
    /*=====桃狩り=====*/
    .fee-left,.fee-right{
        width: 100%;
    }
    .momo_list{
        margin-top: 35px;
    }
    .cherry_caution.momo{
        border-left: 20px solid #FF6699;
        display: block;
        width: auto;
        margin: 40px 0;
    }
    
    /*=====当園について=====*/
    .aboutus-left,.aboutus-right{
        width: 100%;
    }
    
    /*=====アクセス=====*/
    .access_gmap{
        width: 100%;
        height: 400px;
    }
    .gmap-left,.gmap-right{
        width: 100%;
        margin-top: 25px;
    }
    .map_caution{
        margin: 0;
    }
    
    /*=====ご予約=====*/
    #formWrap {
        width:100%;
    }
}

   /*=====スマホ=====*/
@media (max-width:759px){
    .PC_TAB{
        display: none;
    }
    .SP{
        display: block;
    }
    
    .top_news a{
        font-size: 30px;
    }
    
    .accordion {
        text-align: center;
        color: #FFF;
    }
    .accordion .inner {
        display: none;
    }
    .accordion .ac_button{
        cursor: pointer;
        padding: 10px 0;
        background-image: url(img/ac_arrow.svg);
        background-repeat: no-repeat;
        background-position: 95% 50%;
        background-size: 20px;
        background-color: #689432;
    }
    .accordion .inner li{
        padding: 5px 0;
        background-color: #689432;
        border-top: 1px solid #FFF;
    }
    .accordion .inner a{
        color: #FFF;
    }
    .accordion .inner table{
        margin: 0 auto;
    }
    .accordion .inner th{
        width: 15%;
    }
    .accordion .inner th img{
        width: 30px;
    }
    
    /*=====メニュー（fixed）=====*/
    .menu{
        padding: 5px 0;
    }
    .menu ul li{
        padding: 10px 0;
    }
    .menu img{
        width: 30px;
    }
    .sp_menu_fixed{
        display: none;
    }
    .fixed_pc{
        position: static!important;
        visibility:hidden;
    }
    .fixed_sp{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 10;
        display: block;
    }
    .sp_header{
        background-color: rgba(104,148,50,0.85);
        padding: 0 10px 5px;
    }
    .sp_header .block-left{
        float: left;
    }
    .sp_header .block-right{
        float: right;
    }
    #nav_toggle{
        display: none;
    }
    nav{
		display: none;
		width: 100%;
		left: 0;
	}
    .sp_header nav{
        margin-right: -16px;
    }
	.sp_header nav ul{
		display: block;
		margin: 0 auto;
		width: 90%;
	}
	.sp_header nav ul li{
		margin: 0 auto;
		text-align: center;
		border-bottom: 1px solid #fff;
	}
	.sp_header nav ul li:last-child{
		border: none;
	}
	.sp_header nav ul li a{
        color: #fff;
        text-decoration: none;
        font-weight: bold;
        padding: 16px ;
		display: block; 
	}
    /*開閉ボタン*/
	#nav_toggle{
		display: block;
		width: 40px;
		height: 40px;
		position: relative;
		top: 10px;
		z-index: 100;
	}
	#nav_toggle div {
		position: relative;
	}
	#nav_toggle span{
		display: block;
		height: 3px;
		background: #fff;
		position:absolute;
		width: 100%;
		left: 0;
		-webkit-transition: 0.5s ease-in-out;
		-moz-transition: 0.5s ease-in-out;
		transition: 0.5s ease-in-out;	
	}
	#nav_toggle span:nth-child(1){
		top:0px;
	}
	#nav_toggle span:nth-child(2){
		top:12px;
	}
	#nav_toggle span:nth-child(3){
		top:24px;
	}
	/*開閉ボタンopen時*/
	.open #nav_toggle span:nth-child(1) {
        top: 12px;
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        transform: rotate(135deg);
    }
    .open #nav_toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }
    .open #nav_toggle span:nth-child(3) {
        top: 12px;
        -webkit-transform: rotate(-135deg);
        -moz-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }
    .sp_logo{
        padding: 10px 0 5px;
    }
    .sp_logo a{
        color: #FFF;
        font-size: 18px;
        font-weight: 600;
        text-shadow: 1px 1px 8px #000, -1px 1px 8px #000, 1px -1px 8px #000, -1px -1px 8px #000;
    }
    .sp_tel img{
        width: 40px;
        margin: 5px 5px -5px 0;
    }
    
    #top_text{
        top: 75%;
    }
    #top_text_s{
        font-size: 4.4vw;
    }
    #top_text_b{
        font-size: 5.7vw;
    }
    .top_contents_text_s{
        font-size: 12px;
    }
    .top_contents_text_b{
        font-size: 18px;
    }
    .top_text_button{
        font-size: 4vw;
    }
    .footer_table{
        text-align: center;
    }
    .footer_table_l{
        text-align: left;
        display: inline-block;
    }
    
    /*=====さくらんぼ狩り=====*/
    #sub_title h2{
        font-size: 30px;
    }
    .brand_contents li{
        width: 100%;
        margin: 0;
    }
    
    /*=====当園について=====*/
    .reserve_aboutus{
        font-size: 24px;
    }
    
    /*=====アクセス=====*/
    .access_list li{
        width: 28%;
    }
    
    /*=====ご予約=====*/
    table.formTable th, table.formTable td {
        padding: 10px 30px;
        width:auto;
        display:block;
    }
    table.formTable th {
        margin-top:5px;
        border-bottom:0;
    }
    input[type="submit"], input[type="button"] {
        width:100%;
    }
    .required{
        padding: 0 15px;
    }
}
@media(max-width:410px){
    .privilege_img.tokuten_one {
        margin: 0 auto;
        width:auto;
    }
}
/* ========== privacy policy ========== */
.privacypolicy{
    padding: 5rem 0;
}
.privacypolicy p,.privacypolicy li{
    font-size: 1rem;
}
.privacypolicy h2{
    margin: 2rem 0 1.5rem 0;
    padding: 15px 20px 15px 20px;
    font-size: 1.35rem;
    border-left: 5px solid #b02b53;
    line-height: 1.5;
}
.privacypolicy h2.policy_item{
    margin: 2rem 0;
    padding: 0;
    border-left: none;
    font-size: 1.45rem;
}
.privacypolicy ol{
    margin: 0.5rem 0;
}
.privacypolicy ol li{
    list-style: decimal!important;
}
.privacypolicy ol li::marker {
    font-size: 120%;
    font-weight: 700;
    color: #b02b53;
}
.privacypolicy p.privacy_contact{
    margin-top: 1rem;
}
.privacypolicy .tR{
    text-align: right;
    margin-top: 0.5rem;
}
.privacypolicy .hina-layTblTyp01{
    width: 100%;
    margin-top: 1rem;
}
.privacypolicy .hina-layTblTyp01 th {
    width: 25%;
    padding:1rem;
    white-space: nowrap;
    border-bottom: 1px solid #dfdfcd;
    font-weight: normal;
}
.privacypolicy .hina-layTblTyp01 td {
    padding:1rem;
    border-bottom: 1px solid #dfdfcd;
    font-weight: normal;
}
.privacypolicy .hina-layTblTyp01 td a{
    text-decoration: underline;
}
@media (any-hover: hover){
    .privacypolicy .hina-layTblTyp01 td a:hover{
        text-decoration: none;
    }
}
a.f-privacylink {
    display: inline-block;
    font-size: 12px;
    color: #fff;
    padding-left: 1em;
}
/* ========== privacy policy ========== */
/* ------------ cookie ------------- */
.cookie-consent {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  font-size: 13px;
  gap:0 1.15em;
  color: #fff;
  background: rgba(0,0,0,.7);
  padding: 0.75em 1.2em;
  box-sizing: border-box;
  z-index: 100;
  visibility: hidden;
}
.cookie-consent.is-show {
  visibility: visible;
}
.cookie-consent a {
  color: #fff !important;
}
.cookie-consent{
  line-height:1.5;
}
.cookie-agree {
  color: #fff;
  background: dodgerblue;
  padding: .5em 1.5em;
  letter-spacing: 0.25em;
  border-radius: 3px;
}
.cookie-agree:hover {
  cursor: pointer;
}
/* パッと消える */
.cc-hide1 {
  display: none;
}
@media (any-hover: hover){
    .cookie-text > a:hover{text-decoration: underline;}
}

@keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@media screen and (max-width: 600px) {
  .cookie-consent{
    font-size:12px;
  }
}
/* -------------- cookie -------------- */