@charset "utf-8";
/* CSS Document */

html{
	-webkit-text-size-abjust:100%;
}

body{
	background-color: #fff6b8;
	color:#4e1502;
	background-image: url("../image/back.png");
	background-size: contain;
}
img{
	vertical-align: bottom;
}

/*h2の日本語見出し*/
.titleh2{
	font-size: 27px;
font-family: tbcinergothic-std, sans-serif;
	font-weight: 600;
	font-style: normal;
	margin-bottom: 10px;
	padding-left: 10px;
	padding-bottom: 5px;
	border-bottom: 2px dotted;
	border-left: 10px solid;
}

p{
	font-size: 16px;
	font-family: tbcinergothic-std, sans-serif;
	font-weight: 600;
	font-style: normal;
	line-height: 24px;
	padding:0 10px 0 20px;
	letter-spacing: 0.8px;
}

/*h2英語見出しのフォント*/
.ingh2{
	font-size: 45px;
	font-family: azote, serif;
	font-weight: 700;
	font-style: normal;
}

h3{
	font-size: 24px;
	font-family: tbcinergothic-std, sans-serif;
	font-weight: 600;
	font-style: normal;
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

/*ここからheader*/

.site-header{
	width: 100%;
	margin: 0 auto;
	position: fixed;
	 transition: .5s;
	z-index: 10;
}

.site-header.hide{
   transform: translateY(-100%);
}
header h1{
	max-width: 100%;
	text-align: center;
	padding:10px 0;
}

#head_info{
	position: fixed;
	right:20px;
	top:20px;
	text-align: center;
	font-size: 16px;
	font-family: tbcinergothic-std, sans-serif;
}

#head_info a{
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	font-weight: bold;
	color: #4e1502;
	font-size: 16px;
}

.bee_top_img{
max-width: 100%;
	height: 450px;
	padding-top:212px;
	background-image: url("../image/bee_img.jpg");
	background-repeat: no-repeat;
	background-position: bottom;
}

.honey_top_img{
max-width: 100%;
	height: 450px;
	padding-top:212px;
	background-image: url("../image/honey_img.jpg");
	background-repeat: no-repeat;
	background-position: bottom;
	display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.honey_top_img p{
	font-size:40px;
	padding: 30px;
	background-color: rgba(255,255,255,0.3);
	box-shadow: 0 0 15px rgba(0,0,0,0.3) inset;
}

.bee_top_img p{
	padding-top:100px;
	padding-left: 50px;
	font-size:40px;
	color: #fff;
}

.nav_top{
	max-width: 100%;
	font-family: azote, serif;
	font-weight: 400;
	font-style: normal;
	font-size: 34px;
}

.nav_top a{
	display: inline-block;
	padding: 10px 20px;
	text-decoration: none;
	color: #4e1502;
}

button {
	margin: 0;
	padding: 0;
	outline: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
	vertical-align: middle;
	text-align: inherit;
	font: inherit;
	-webkit-appearance: none;
	appearance: none;
}

/**************** ハンバーガーボタンのスタイリング ****************/
.btn {
	position: fixed;
	top: 150px;
	left: 10px;
	z-index: 10;
	width: 48px;
	height: 48px;
}

/***** 真ん中のバーガー線 *****/
.btn-line {
	display: block;
	position: relative;
	width: 100%;
	height: 4px;
	background-color: #6e6e6e;
	transition: .2s;
}

/***** 上下のバーガー線 *****/
.btn-line::before , .btn-line::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #6e6e6e;
	transition: .5s;
}

.btn-line::before {
	transform: translateY(-16px);
}

.btn-line::after {
	transform: translateY(16px);
}

/*****************メニューオープン時*****************/
.btn-line.open {
	background-color: transparent;
}

.btn-line.open::before , .btn-line.open::after {
	content: "";
	background-color: #333;
	transition: .2s;
}

.btn-line.open::before {
	transform: rotate(45deg);
}

.btn-line.open::after {
	transform: rotate(-45deg);
}

.menu {
	/* メニューを縦に */
	display: flex;
	flex-direction: column;
	position: fixed;
	/* メニューの位置マイナス指定で画面外に */
	right: -70%;
	width: 70%;
	height: 100vh;
	transition: .3s;
	background-color: rgba(255,255,255,0.3);
}

.menu-list {
	display: inline-block;
	text-align: center;
	width: 300px;
}

.menu-list a{
	display: inline-block;
	width: 100%;
	text-decoration: none;
	font-family: azote, serif;
	font-weight: 600;
	font-style: normal;
	font-size: 34px;
	text-shadow: 0 0 3px #fff;
}

.menu-list:hover {
	text-decoration: underline;
	cursor: pointer;
	transition: .3s;
}
.menu.open {
	position: absolute;
	right: 0;
}
/*****************幅が761px以上のとき*****************/
@media screen and (min-width:761px){
	.btn {
		display: none;
	}
.nav_top{
	width: 100%;
	font-family: azote, serif;
	font-weight: 400;
	font-style: normal;
	font-size: 34px;
}

.nav_top a{
	display: inline-block;
	padding: 10px 20px;
	text-decoration: none;
	color: #4e1502;
}
	.nav_top a:active{
	color: #FFB600;
}
		
	.menu {
		/* メニューを横に */
		display: flex;
		flex-direction: row;
		justify-content: space-around;
		position: fixed;
		right: 0;
		width: 100%;
		height: 50px;
	}
}
/*ここまでheader*/

/*****************蜂蜜について*****************/
.honey_content{
	width: 100%;
}

.honey_intro{
	max-width: 1000px;
	margin: 80px auto;
	background-image: url("../image/honey_intro_text.jpg");
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: 55%;
}

.honey_intro p{
	padding: 20px;
	margin-bottom: 10px;
	width: 500px;
	background-color: rgba(255,255,255,0.5);
}

.honey_intro h2,.honey_make h2{
	max-width: 1000px;
	margin: 0 auto 10px;
	font-size: 36px;
font-family: tbcinergothic-std, sans-serif;
	font-weight: 600;
	font-style: normal;
	text-align: center;
	border: none;
	color: #fff;
	text-shadow: 0 0  5px #000;
	padding: 10px 0;
	background-image: url("../image/honey_intro_back.gif");
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 20px;
}

.wrapper2{
	max-width: 980px;
	margin: 0 auto;
}


.honey{
	width: 300px;
	text-align: center;
	margin-bottom: 80px;
}

.honey_le{
	float: left;
	margin-right: 40px;
}

.honey_ri{
	float: right;
}


.honey h2, .make_honey h2{
	padding:10px 5px;
	font-size: 24px;
	text-align: center;
	border: none;
	background: repeating-linear-gradient(135deg, #ffd200, #fff4c5, 10px, #ffe77b 10px, #ffe77b 20px);
}

.honey p{
	text-align: left;
}

.sugar_img{
	padding-top: 40px;
}

.honey2{
	max-width: 1000px;
	height:500px;
	margin:80px auto 0;
		background-image: url("../image/honey2.jpg");
		background-repeat: no-repeat;
	background-position: right;
	background-size: 55%;
	}
.honey2 .text_area{
	max-width: 650px;
	padding: 20px;
	background-color: rgba(255,255,255,0.5);
}

.wrapper3{
	width: 100%;
	height: 600px;
	clear: both;
	background-image: url("../image/honey_make_back.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom;
}

.honey_make{
	max-width: 1000px;
	height: 660px;
	margin: 0 auto;
	padding-top:30px;
}

.make_honey{
	max-width: 1000px;
	margin: 0 auto;
}
.make_honey_text{
	width: 400px;
	background-color: rgba(255,255,255,0.5);
	padding: 10px 5px 10px 0;
	margin:30px;
}

.acacia_text, .soba_text,.clover img, .renge img{
	float: left;
}
.clover_text, .renge_text,.acacia img, .soba img{
	float: right;
}

.acacia,.renge,.soba,.clover{
	margin: 10px 0;
	padding: 20px;
}

.acacia{
	background-image: url("../image/acacia_back.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}

.renge{
	background-image: url("../image/renge_back.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}

.soba{
	background-image: url("../image/soba_back.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}

.clover{
	background-image: url("../image/clover_back.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}

.make_honey img{
	filter: drop-shadow(0 0 10px #000);
}

.make_honey h3{
	text-align: center;
	margin-bottom: 10px;
}

/**********************************/
/***********ミツバチについて*******************/
.bee_content{
	max-width: 1000px;
	margin: 0 auto;
}

.bee_intro{
	height: 500px;
	margin: 80px 0 40px;
	background-image: url("../image/bee_intro_text_back.jpg");
	background-repeat: no-repeat;
	background-position: top;
	border-radius: 25px 25px 0 0;
	position: relative;
}

.intro_bee1{
	position: absolute;
	bottom: 10px;
	left: 50px;
	animation: bee 1.5s infinite 0.5s alternate;
}
.intro_bee2{
	position: absolute;
	top: 10px;
	right: 50px;
	animation: bee 1.5s infinite alternate;
}

.bee_text h2{
	max-width: 1000px;
	margin: 0 auto 10px;
	font-size: 36px;
font-family: tbcinergothic-std, sans-serif;
	font-weight: 600;
	font-style: normal;
	text-align: center;
	border: none;
	color: #fff;
	text-shadow: 0 0  5px #000;
	padding: 10px 0;
	background-image: url("../image/bee_intro_back.gif");
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 20px;
}

.bee_text p{
	width: 300px;
	margin: 130px auto 0;
	text-shadow: 1px 1px 5px #fff;
	line-height: 36px;
}

.wrapper4{
	max-width: 980px;
}

.bee h2{
	padding:10px 5px;
	font-size: 24px;
	text-align: center;
	border: none;
	background: repeating-linear-gradient(135deg, #ffd200, #fff4c5, 10px, #ffe77b 10px, #ffe77b 20px);
}

.bee{
	width: 300px;
	text-align: center;
	
}
.bee p{
	text-align: left;
}

.vegetable_img{
	margin-top:60px;
}

.bee_7_img{
	margin-top:30px;
}

.bee_le{
	float: left;
	margin-right: 40px;
}

.bee_ri{
	float: right;
}


/*************************/

/*****************商品一覧のページ*****************/

.shop{
	padding-top:240px;
		text-align: center;
}/*高さを調節*/

.shop_sb_title{
	padding: 0;
}/*位置がずれるのを調整*/

.shop_title::before{
	content:url("../image/shop1.gif");
	margin-right: 60px;
}
.shop_title::after{
	content: url("../image/bee_cart.gif");
	margin-left: 50px;
}

.shop_sb_title::after{
	content: "";
	padding-right: 50px;/*見出しの日本語部分の位置がずれるのを調節*/
}

.shop h3{
	margin: 20px 0;
	border-bottom: 2px dotted;
	border-left: 10px solid;
	padding-left: 10px;
	padding-bottom: 5px;
	text-align: left;
}/*商品見出しのフォントとデザインの設定*/

.item_box{
	max-width: 1000px;
	margin: 0 auto 50px;
}/*コンテンツの幅を指定*/

.honey_area, .sweet_area{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}/*商品一覧を横並びにする*/

.item{
	width: 180px;
	margin: 20px 10px 50px;
	padding: 19px;
	background: #fff;
	border: 1px solid #CCCCCC;
}/*商品の幅を調節*/

.item p{
	padding: 0;
	font-family:initial;
	font-weight: normal;
	text-align: left;
}/*textをデフォルトに戻し、文字は左に寄せる*/

.item h4{
	font-weight: bold;
	text-align: left;
	padding-top:5px;
}/*商品名を太字にする*/

.item img:hover{
	filter: brightness(80%);
}

/*****************ご注文はこちらのボタン設定*****************/
.contact_btn{
	color: #4e1502;
	font-weight: bold;
	text-decoration: none;
	font-size: 24px;
	display: inline-block;
	padding: 24px 30px 20px;
	background: #FFB600;
	border-radius: 8px;
	margin-top:20px;
	text-align: center;
	transition: 0.2s;
}

.contact_btn:hover{
	background: #4e1502;
	color: #fff;
}

.contact_btn:active{
	background: #4e1502;
	color: #FFB600;
}
/****************************************/

/*****************モーダルウィンドウで表示される領域の設定**********************/
.item_img{
	float: left;
	margin-bottom: 30px;
}
.item_text{
	width: 300px;
	float:left;
	margin-bottom: 30px;
}

.item_text h3{
	margin: 10px 0;
	padding-left: 20px;
}

/************************************************/

/*****************レシピのページ*****************/
.recipi{
	padding-top:240px;
}/*高さを調節*/
.wrapper{
	width: 1000px;
	margin: 0 auto;
}

.recipi_link{
	margin: 20px 0;
	display: flex;
	justify-content:center;
}

.recipi_link a{
	display: inline-block;
color: #f00;	
width:300px;
	text-align: center;
	margin: 20px;
	font-family: tbcinergothic-std, sans-serif;
	font-weight: 600;
	font-style: normal;
}

.recipi_search{
	width: 230px;
	height: 500px;
	margin-top:70px;
	float: left;
}/*検索一覧の幅などを設定*/

.recipi_area{
	width: 760px;
	float: right;
	text-align: center
}

.recipi_sb_title {
	margin-bottom: 30px;
}

.recipi_list{
	display: flex;
	flex-wrap: wrap;
}

.recipi_item{
	padding: 0px;
	width: 175px;
	margin:5px;
}

.recipi_item h4{
	font-weight: bold;
	text-align: left;
	padding-top:5px;
}/*商品名を太字にする*/

.recipi_item img:hover{
	filter: brightness(80%);
}

/**********************************/


/********************検索バー設定********************/
.search-area{
	margin-top:10px;
}

.search-area input[type="text"] {
  padding: 5px 5px 3px;
  font-size: 16px;
  border: 1px solid #D6D6D6;
}

.search-area input[type="text"]:focus {
  background: #F9F9F9;
}

.search-result {
  margin-top: 20px;
}
.search-result__hit-num span {
  font-weight: bold;
}
#search-result__list {
  margin-top: 15px;
}
#search-result__list span {
  display: inline-block;
  margin-right: 15px;
  padding: 5px;
  background: #F2F2F2;
}
.target-area {
  margin-top: 50px;
}

.target-area li{
	padding: 5px 0;
	border-bottom: 1px dotted;
}

.target-area li a{
	text-decoration: none;
	color: #4e1502;
	padding-left: 5px;
}
/****************************************/


.food_recipi{
	padding-top:240px;
	max-width: 1000px;
	margin: 0 auto;
}

.food_title{
	font-size: 36px;
	font-family: tbcinergothic-std, sans-serif;
	font-weight: 600;
	font-style: normal;
	text-align: center;
	margin-bottom: 20px;
}

.material, .food_img{
	float: left;
	margin:0 20px 20px 0;
}

.material{
	width: 300px;
}

.make{
	clear: both;
	background: #fff;
	padding-bottom: 10px;/*	下の余白*/
	border-radius: 8px;
}

.food_recipi h3{
	display: inline-block;
	font-size: 24px;
	font-family: tbcinergothic-std, sans-serif;
	font-weight: 600;
	font-style: normal;
	margin: 10px 10px;
	border-bottom: 2px dotted;
	border-left: 10px solid;
	padding:5px 5px;
}

.recipi_box li{
	margin: 0px 10px;
	padding: 10px 0;
	border-bottom: 1px dotted;
}

ul li span{
	float: right;
}

.make li{
	list-style-type: decimal;
	margin-left:  30px;
}


/*************お問い合わせフォーム**************/
.contact{
	padding-top:250px;
	max-width: 1000px;
	margin: 0 auto;
}

.contact h2{
	font-weight: bold;
	font-size: 24px;
	border-bottom: 2px dotted;
	border-left: 10px solid;
	margin: 0 5px;
	padding:5px 10px;
}

.contact_form{
	width: 600px;
	float: left;
}

.tel_form{
	width: 320px;
	float: right;
}
.counter1{
	width: 44px;
}

.mair_order{
	width: 100%;
	margin-top:30px;
}

.mair_order input[type="text"],
.mair_order input[type="email"],
.mair_order textarea,
.mair_order select{
	width: 100%;
	padding: 10px;
	border: 1px solid #eee;
	box-sizing: border-box;
	font-size: 1em;
	border-radius: 8px;
}

.mair_order input[type="number"]{
	padding: 5px;
}

.mair_order input[type="text"]:focus,
.mair_order input[type="email"]:focus,
.mair_order textarea:focus{
	outline: none;
	background-color: #FFEE83;
	border: 1px solid #4e1502;
	border-left: 5px solid #B92F2F;
	box-shadow: 1px 1px 5px #4e1502;
}

.mair_order th, .mair_order td{
	padding: 5px 20px;
}

.mair_order th{
	width: 140px;
	font-weight: bold;
	text-align: left;
}

.item_name td{
	width: 180px;
	padding-left: 30px;
}

label,input,textarea,select{
	cursor: pointer;
}

.entry_btns{
	text-align: center;
	margin-bottom: 10px;
}

.entry_btns input{
	width: 150px;
	margin: 30px 10px;
	padding: 10px;
	background: #FFB600;
	border-radius: 8px;
	border-bottom: 2px solid #4e1502;
	border-right: 2px solid #4e1502;
	border-top: 2px solid #A37D71;
	border-left: 2px solid #A37D71;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
	-webkit-appearance:none;
	transition: 0.3s;
}

.entry_btns input[type="reset"]{
	background: #fff;
}

.entry_btns input:hover{
	opacity: 0.7;
}

.entry_btns input:active{
	outline: none;
	border-bottom:2px solid #A37D71;
	border-right: 2px solid #A37D71;
	border-top: 2px solid #4e1502;
	border-left: 2px solid #4e1502;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.5) inset;
}

.about{
	padding-left: 20px;
	line-height: 24px;
}

.about h3{
	margin-bottom: 10px;
}

.tel_form p{
	padding-top:10px;
	font-family:initial;
	font-weight: normal;
}

.tel a{
	display: inline-block;
	font-size: 24px;
	font-weight: bold;
	color: #4e1502;
	text-decoration: none;
	font-family:"Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif"
}

.tel a:hover{
	text-decoration: underline;
}

.tel_form dt{
	padding: 5px 10px;
}

.tel_form dd{
	padding: 5px 25px;
}

/*ミツバチのアニメーション設定など*/
.bee_grop1{
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content:space-between;
	clear: both;
}

.bee_grop2{
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content:space-around;
}

.beeG1{
	animation: updwn 1s infinite alternate;
}

.beeG2{
	animation: updwn 1.2s infinite alternate;
}

.beeG3{
	animation: updwn 1s infinite alternate;
}

  

.beeG4{
	animation: updwn 1s infinite alternate;
}

 @keyframes updwn{
	0% {
        transform: translate(0,0px);
	}
		 100% {
        transform: translate(0,20px)
		}
    }

.beeG5{
	animation: bee 1.5s infinite alternate;
}

.beeG6{
	animation: bee 1s infinite alternate;
}

.beeG7{
	animation: bee 1.5s infinite alternate;
}

@keyframes bee{
	0% {
        transform: translate(0,0px);
	}
		 100% {
        transform: translate(0,-20px)
		}
    }


/*ここからfooter*/
footer{
	max-width: 100%;
	height: 400px;
	background-color:#4e1502;
	color: #fff;
}

.copyright{
	padding: 0;
	margin: 0;
	text-align: center;
	font-size: 12px;
}

.copyright_sb{
	padding-top:15px;
	text-align: center;
	font-size: 12px;
}

.footer_box{
	max-width: 1000px;
	margin: 0 auto;
	padding-top:30px;
}
.footer_info{
	width: 600px;
	float: left;
}

.footer_info img{
	padding-bottom: 30px;
}

.footer_info_list{
	display: flex;
	flex-wrap: wrap;
}

.footer_info_list dt{
	padding: 10px 0;
	width: 20%;
}

.footer_info_list dd{
	padding: 10px 0;
	width: 80%;
}

.footer_info_list a{
	color: #fff;
}

.map{
	width: 400px;
	float: right;
	overflow: hidden;
}


/*ここまでfoter*/



@media screen and (max-width:667px){
	
	/************header************/
	header h1 img{
	width:300px;
		height: auto;
}
	
	#head_info{
		display: none;
	}
	
	.honey_top_img p{
		font-size: 24px;
		padding: 15px;
		text-align: center;
		margin: 0 10px;
	}
	.bee_top_img{
		height:200px;
		background-image: url("../image/bee_img_sm.jpg");
		background-repeat: no-repeat;
	}
	
	.honey_top_img{
		height:200px;
		background-image: url("../image/honey_img_sm.jpg");
		background-repeat: no-repeat;
	}
	
	.bee_top_img p{
	padding-top:30px;
	padding-left: 5px;;
	font-size:40px;
	color: #fff;
}
	
	section{
		padding: 0 10px;
		text-align: center;
	}
	
	.bee_content, .honey_content{
	width: 100%;
	margin: 0 auto;
}
	
	.honey_intro{
		padding:0 5px;;
		background-image: none;
	}
	
	.honey_intro p{
		width: 100%;
		padding: 0;
		background-color: rgba(255,255,255,0);
	}
	
	.honey_le{
	float: none;
}

.honey_ri{
	float: none;
}
	
	.honey{
	width: 100%;
	text-align: center;
	margin-bottom: 80px;
}
	.honey h2{
		margin:5px;
		padding: 20px 0;
	}
	
	.honey p{
		padding: 0 5px;
	}
	
	.vitamin_img,.flour_img{
		padding-top: 40px;
	}
	
	.honey_make{
		padding: 5px;
	}
	
	.honey_intro h2,.honey_make h2{
		font-size: 24px;
	}
	
	.honey_make p{
		text-shadow: 0 0 3px #fff;
	}

	.honey2{
		width: 100%;
		height: 350px;
		background-position: right bottom;
		margin-bottom: 10px;
		padding: 0;
	}
	
	.text_area{
		width: 100%;
		text-align: left;
	}
	
	.honey2 h2{
		margin-left: 10px;
	}
	
	.honey2 .text_area{
		margin: 0;
		padding: 0;
	}

.make_honey{
	width: 100%;
	margin: 0 auto;
}

.acacia_text, .soba_text,.clover img, .renge img{
	float: none;
}
.clover_text, .renge_text,.acacia img, .soba img{
	float: none;
}

.acacia,.renge,.soba,.clover{
	margin:0;
	padding: 20px;
	text-align: center;
}

	.make_honey_text{
	width: 100%;
	background-color: rgba(255,255,255,0.5);
	padding:5px 0;
	margin:0;
	text-align: left;
}
	
	.make_honey img{
		margin-top:20px;
	}
	
	.bee_intro p{
		text-align: left;
	}
	
	.bee_intro{
	margin: 50px 0 10px;
	background-image: url("../image/bee_intro_text_back2.jpg");
	border-radius: 0;
}

.intro_bee1{
	width: 100px;
	height: auto;
	bottom: 10px;
	left: 10px;
}
.intro_bee2{
	width:80px;
	height: auto;
	top:70px;
	right: 10px;
}
	
	.bee{
		width: 100%;
		padding: 30px 0;
	}
	
	.bee img{
		margin-top:10px;
	}
	
	.bee_le{
	float: none;
	margin-right: 0;
}

.bee_ri{
	float:none;
}
	
	.shop{
	padding-top:170px;
}/*高さを調節*/
	
	.shop h3{
		text-align: left;
	}
	
	.item_img{
		width: 100%;
		height: auto;
		float: none;
		text-align: center;
	}
	
	.shop_title::before{
	content: '';/*何も入れない*/
  display: inline-block;/*忘れずに！*/
  width: 61px;/*画像の幅*/
  height: 100px;/*画像の高さ*/
  background-image: url("../image/shop1.gif");
  background-size: contain;
 background-repeat: no-repeat;
	background-position: right;
}
.shop_title::after{
content: '';/*何も入れない*/
  display: inline-block;/*忘れずに！*/
  width: 96px;/*画像の幅*/
  height: 100px;/*画像の高さ*/
  background-image: url("../image/bee_cart.gif");
  background-size: contain;
 background-repeat: no-repeat;
	background-position:left;
}

.shop_sb_title::after{
	content: "";
	padding-right: 20px;/*見出しの日本語部分の位置がずれるのを調節*/
}
	
	.honey_area, .sweet_area{
		justify-content: space-around;
	}
	
	.food_title{
		font-size: 24px;
	}
	
	.food_img{
		width: 100%;
		height: auto;
		margin: 0;
	}
	
	.material, .food_img{
	float: none;
}
	.material, .make{
		text-align: left;
	}
	
	.wrapper{
		width:380px;
		margin: 0 auto;
	}
	.recipi_sb_title {
	margin-bottom: 10px;
}
	
	.recipi{
		padding-top:210px;
	}
	
	.recipi_search{
	float: none;
	height: 50px;
	margin: 0;
		width: 100%;
}
	#search-result__list {
  margin-top: 5px;
}

	.recipi_area{
	width:100%;
	float:none;
	margin: 80px auto 0;
}
	
	.target-area{
		display: none;
	}

.recipi_list{
	display: flex;
	flex-wrap: wrap;
}
	
	.food_recipi{
		padding-top:180px;
	}
	
	.contact{
		width: 100%;
		padding-top:200px;
	}
	
	.contact_form{
	width:350px;
	float:none;
	margin: 30px auto;
	text-align: left;	
}
	
	.about{
		padding:0 10px;
	}

.tel_form{
	width:350px;
	float:none;
	margin: 30px auto;
	text-align: left;
	padding:0 10px;
}

	.mair_order tr{
		display: flex;
		flex-direction: column;
	}
	
	.mair_order th, .mair_order td {
		text-align: left;
	}
	
	.mair_order th{
		margin-top:5px;
	}
	
	/****************************/
		.bee_grop1 img, .bee_grop2 img{
		width: 50px;
		height: 50px;
	}
	/************footer************/
	footer{
	width: 100%;
	height: 690px;
	text-align: center;
		padding-bottom: 5px;
}

footer p{
	padding-top:50px;
	
}

.footer_box{
	width: 100%;
	margin: 0 auto;
	padding-top:10px;
}
.footer_info{
	width:100%;
	float: none;
}

.footer_info img{
	padding-bottom: 10px;
}

.footer_info_list{
	display: flex;
	flex-direction: column;
	padding: 0 5px;
}

.footer_info_list dt{
	padding: 5px 0;
	width: 30%;
	text-align: left;
}

.footer_info_list dd{
	padding: 5px 10px;
	width: 95%;
	text-align: left;
}

.map{
	padding-top:5px;
	width: 100%;
	overflow: hidden;
	float: none;
}

.copyright,.copyright_sb{
		padding: 0;
	font-size: 10px;
	line-height: normal;
	}
	/****************************/
}


@media screen and (min-width:668px) and (max-width:980px){
	
	.honey{
		padding: 0 10px;
		text-align: center;
	}
	
	.honey2{
		width: 100%;
	padding: 0 10px;
	}
	
.honey2 .text_area{
	width:650px;
	text-align: left;
}
	
	.honey_top_img p{
		font-size: 30px;
		padding: 20px;
	}
	
	.bee_content, .honey_content{
	width: 100%;
	margin: 0 auto;
}
	
	.honey_intro{
		padding:0 5px;
		background-image: none;
	}
	
	.honey_intro p{
		width: 100%;
		padding: 0;
		background-color: rgba(255,255,255,0);
	}
	
	.honey_le{
	float: none;
		margin: 0;
}

.honey_ri{
	float: none;
}
	.wrapper2{
		max-width: 970px;
		margin: 0 auto;
	}
	.honey{
	width: 100%;
	text-align: center;
	margin-bottom: 80px;
		padding: 0;
}
	.honey h2{
		margin:5px;
		padding: 20px 0;
	}
	
	.honey p{
		padding: 0 10px;
	}
	
	.vitamin_img,.flour_img{
		padding-top: 40px;
	}
	
	.honey_make{
		padding:30px 5px 0;

	}
	
	.honey_make p{
		text-shadow: 0 0 3px #fff;
	}

	.honey2{
		width: 100%;
		height: 350px;
		background-position: right bottom;
		margin-bottom: 10px;
		padding: 0;
	}
	
	.text_area{
		width: 100%;
		text-align: left;
	}
	
	.honey2 h2{
		margin-left: 10px;
	}
	
.intro_bee1{
	left: 10px;
	animation: bee 1.5s infinite 0.5s alternate;
}
.intro_bee2{
	top: 10px;
	right: 40px;
}
	
	.bee{
		width: 100%;
		padding: 30px 0;
	}
	
	.bee_le{
	float: none;
	margin-right: 0;
}

.bee_ri{
	float:none;
}
	
	.shop h3{
		text-align: left;
	}
	
	.wrapper{
		width:750px;
		margin: 0 auto;
	}
	
	.recipi{
		padding-top:210px;
	}
	
	.recipi_search{
	float: none;
	height: 50px;
		margin-top:10px;
		margin-left: 5px;
		width: 100%;
}
	
	.recipi_sb_title {
	margin-bottom: 10px;
}

	.recipi_area{
		width: 100%;
	float:none;
		margin: 30px auto 0;
}
	
	.target-area{
		display: none;
	}

.recipi_list{
	display: flex;
	flex-wrap: wrap;
}
	
	.contact{
		width: 100%;
	}
	
	.contact_form{
	width:600px;
	float:none;
		margin: 0 auto;
}

.tel_form{
	width: 600px;
	float:none;
	margin: 0 auto;
}
	
	/***********footer*************/
	footer{
	width: 100%;
	height: 570px;
	text-align: center;
	padding-bottom: 10px;
}

.copyright{
	padding-top:0;
	text-align: center;
}
	
	.copyright_sb{
		padding-top: 5px;
	}

.footer_box{
	width: 100%;
	padding-top:10px;
}
.footer_info{
	float: none;
	width: 600px;
	margin:  0 auto;
}

.footer_info img{
	padding-bottom: 10px;
}

.footer_info_list{
	display: flex;
	flex-wrap: wrap;
}

.footer_info_list dt{
	padding: 10px 0;
	width: 20%;
}

.footer_info_list dd{
	padding: 10px 0;
	width: 80%;
	text-align: left;
}
.map{
	padding-top:5px;
	width: 100%;
	height: 250px;
	overflow: hidden;
	float: none;
}
/****************************/
}

@media screen and (max-width:760px){
	#head_info{
		display: none;
	}
}

@media screen and (min-width:981px){
	
}



