@charset "utf-8";
/* CSS Document */

*{
	margin:0;
	padding:0;
}

a{
	text-decoration:none;
	outline:none;
}
a:link{color:#0044cc;}
a:visited{color:#00b050;}
a:hover{color:#ff3300;}

ul,ol{list-style:none;}
img{
	vertical-align:middle;
}
.cf::after{			/*クリアフィックスを使うシーンが必ず出てくるので、あらかじめいれておく*/
	content:"";
	display:block;
	clear:both;
}
/*スマホ版の時に表示しないものにつけるクラス*/
.none{
	display:none;
}
/*スマホ版の時に表示しないものにつけるクラス終わり*/




img{max-width:100%;}		/*画像サイズを変えても、100％までであれば拡大・縮小を画面に合わせて設定し直してくれる*/

.margin{
	margin:10px 10px;
}

/*--------------------------------------------フォントファミリー*/
@font-face {
	font-family: "YuGothic-M";
	font-weight: normal;
	 src: local("YuGothic-Medium"),
		  local("Yu Gothic Medium"),
		  local("YuGothic-Regular");
}

@font-face {
	font-family: "YuGothic-M";
	font-weight: bold;
	 src: local("YoGothic-Bold"),
		  local("Yu Gothic");
}

html {
	font-size: 62.5%;/* 16px x 0.625 = 10px(=1rem) */
}

body {
	font-size: 1.6rem;/* 16px */
	font-family: -apple-system, blinkMacSystemFont, YuGothic-M, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt";
	color:#4a4a4a;
	line-height:1.5;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
	::i-block-chrome, body {
		font-feature-settings: "pkna";
	}
}
/*---------------------------------フォントファミリー終わり*/


/*ユウサンファームの表記*/
.farmname{
	font-size:0.7em;
}

/*スクロールトップ*/
#pageTop{
/*	display:none;*/
	position:fixed;
	bottom:60px;
	right:10px;
}
#pageTop a{
	display:block;
	background-color:#ffc000;
	text-align:center;
	color:#4a4a4a;
	font-size:12px;
	padding:15px 10px;
	border-radius:20px;
}
/*-------------------------------------------ｐｃで操作するときのみ必要！

#pageTop a:hover{
	color:#fff;
	background:#00b050;
}*/



/*ヘッダー*/
header{
	width:100%;
}
.logo{
	width:320px;
	height:80px;
	margin:5px auto;
}
.hover1:hover{
	opacity:0.5;
}
		

/*パンくず*/
.breadcrumb{
	margin-left:10px;
}
.breadcrumb li{
	float:left;
	font-size:0.7em;
/*	padding-left:10px;
*/}
.breadcrumb li img{
	padding:0 10px;
}

/*挨拶・概要*/
h3{
	margin:20px 10px;
}
.bold{
	font-weight:bold;
}


/*お知らせ欄*/
h2{
	font-size:24px;
	font-weight:bold;
	text-align:center;
	margin:10px auto 20px;
}
.osirase{
	border-radius: 10px;
	background:rgba(214,253,127,0.7);
	padding:5px 10px;
}
.osirase2{
	border-radius: 10px;
	background:rgba(214,253,127,0.7);
	padding:5px 10px;
}
.motto{
	display:inline-block;
	padding:5px 0;
	text-align:right;
}

/*フェイスブック掲載欄*/
.facebook{
	display:block;
	margin:20px auto;
}
	
/*お問い合わせフォーム*/
.toiawase{
	font-size:24px;
	font-weight:bold;
	text-align:center;
	color:#00b050;
	margin-bottom:20px;
}
table {
	margin:5px;
}
/*div label span {
    color: #fff;
    background: #fb3b6f;
    display: inline-block;
    padding: 2px 5px;
    font-size: 10px;
    font-size: 1rem;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    position: absolute;
    right: 16px;
    top: 19px;
}*/
form{
	margin:20px;
}


/*フッター*/
footer{
	width:100%;
	height:80px;
	background:#d6fd7f;
	margin:0;
	padding:5px 0;
}
footer p{
	text-align:center;
	font-size:0.8em;
	margin:5px 0;
}
.inquiry{
	margin:0 0 60px 0;
}

/*タブメニュー*/
#footerFloatingMenu {
    display: block;
    width: 100%;
    background-color: #ffc000;
    position: fixed;
    left: 0px;
    bottom: 0px;
    z-index: 9999;
    text-align: center;
	outline:none;
}

/* FC2広告 */
div#fc2_bottom_bnr{position:static!important;}



/*メディアクエリ*/
/*751ｐｘ以上*/
@media screen and (min-width:751px){			/*andのあとにスペースを空けるのを忘れないこと！！！*/
/*ここに751ｐｘ以上のｃｓｓを記述する*/

/*スマホ版で表示させないが、PC版では表示するものにclassのnoneをつけておく！*/
.none{
	display:block;
}
/*スマホ版では表示させるが、ｐｃ版では表示しないものにはclassのmobileをつけておく*/
.mobile{
	display:none;
}

/*ヘッダー*/
header{
	width:100%;
	
}
header .logo{
	width:320px;
	height:80px;
	text-align:left;
	margin:10px 30px;
}
nav ul{
	float:right;
	margin-top:10px;
	/*margin-right:10px;*/
}

nav ul li{
	float:right;
	margin-right:5px;
}
nav ul li:first-child{
	margin-right:50px;
}
nav ul li:nth-child(2){
	margin-right:10px;
}
.father{
	float:right;
}

/*パンくず*/
.breadcrumb{
	margin-left:30px;
}



/*挨拶・概要*/
.h2{
	text-align:center;
}
h3{
	padding:0 30px;
	margin:20px 10px;
}
.textpc{
	text-align:center;
	line-height:1.8;
}

/*お知らせ欄とフェイスブック欄の2カラム化*/
.osirase{
	float:left;
	margin:0 0 0 50px; 
	border-radius: 10px;
	padding:10px 30px;
}

.osirase2{
	margin:0 50px 0 50px; 
	border-radius: 10px;
	padding:10px 30px;
}


/*スクロールトップ*/
#pageTop a{
	padding:20px;
	border-radius:5px;
}
#pageTop{
/*	display:none;*/
	position:fixed;
	right:30px;
}

#pageTop a:hover{
	color:#fff;
	background:#00b050;
}

/*フッター*/
#footerFloatingMenu {
    display:none;
}
footer{
	height:60px;
}
.inquiry{
	margin:0;
}


}


