@charset "UTF-8";


/* ▼768px以上の場合に適用
--------------------------------------------------------------------- */
@media only screen and (min-width: 769px) {



}


/* ▼768px以下の場合に適用（iPad portrait以下）
---------------------------------------------------------------------- */
@media only screen and (max-width: 768px) {

*{font-size:14px;}
	
/* !汎用コンテンツ
---------------------------------------------------------- */
.header{display:none;}
.headerbox{
	width:100%;
}
/* ナビゲーション */
.header_sp{display:block; height:60px;}
.header_sp .headerbox .header_logo{
	width:200px;
	height:25px;
	margin:18px 0 0 10px;
}
#ham-menu {
    background-color: #fff; /*メニュー背景色*/
    box-sizing: border-box;
    height: 100%;
    padding: 10px 20px; /*メニュー内左右上下余白*/
    position: fixed;
    right: -240px; /*メニュー横幅 width と合わせる*/
    top: 0;
    transition: transform 0.3s linear 0s; /*0.3s はアニメーションにかかる時間*/
    width: 240px; /*メニュー横幅*/
    z-index: 1000;
}
#menu-background {
    background-color: #333; /*黒背景*/
    display: block;
    height: 100%;
    opacity: 0;
    position: fixed;
    right: 0;
    top: 0;
    transition: all 0.3s linear 0s; /*0.3s はアニメーションにかかる時間*/
    width: 100%;
    z-index: -1;
}
#menu-icon {
    background-color: #0fbd44; /*アイコン部分背景色*/
    border-radius: 0 0 0 10px; /*左下角丸*/
    color: #fff; /*アイコン（フォント）色*/
    cursor: pointer;
    display: block;
    font-size: 50px; /*アイコン（フォント）サイズ*/
    height: 50px; /*アイコン縦高さ*/
    line-height: 50px; /*縦位置中央化*/
    position: fixed;
    right: 0;
    text-align: center;
    top: 0;
    width: 50px; /*アイコン横幅*/
    transition: all 0.3s linear 0s; /*0.3s はアニメーションにかかる時間*/
    z-index: 1000;
}
#menu-cb {
    display: none; /*チェックボックス本体は消しておく*/
}
#menu-cb:checked ~ #ham-menu,
#menu-cb:checked ~ #menu-icon {
    transform: translate(-240px); /*メニュー本体横幅 width と合わせる*/
}
#menu-cb:checked ~ #menu-background {
    opacity: 0.5;
    z-index: 999;
}
#ham-menu ul{}
#ham-menu li{
	border-bottom:dotted 1px #282828;
}
#ham-menu li a{
	color: #282828;
	text-decoration:none;
	transition:.2s;
	display:block;
	padding:10px 0;
}
#ham-menu li a:hover{
	color:#0fbd44;
}
#ham-menu li a:before{
	content: '> ';
	color:#0fbd44;
}

/* フッター */
.footer_btn{
	width:80%;
	margin:40px auto 0;
	display:block;
}
.footer_btn li{
	display:block;
	padding:10px;
}

.footer_btn02{
	width:80%;
	font-size:18px;
	line-height:40px;
}

.footer_nav{display:none;}

/* トップに戻る */
.back a{
	display:block;
	width:96%;
	height:48px;
	background-size:36px;
	background-posiion:center 50%;
}
.back a:hover{opacity:.8;}

.footer_bottom{
	width:100%;
	background:#99cc66;
	padding:40px 0;
}
.footer_bottombox{
	width:96%;
}
.footer_logo{width:240px;}
.footer_bottombox p{
	color:#fff;
	text-align:center;
	padding:20px 0 0;
}
.copy{font-size:13px;}

/* トップページ
---------------------------------------------------------- */
.main_image{
	width: 100%;
	height: 240px;
	padding:80px 0 0;
	background-size:cover;
	background-position:center;
}
/*
.main_catch{
	width:846px;
	height:140px;
	margin:0 auto;
}
*/
.top_contents01{
	position:relative;
	width:100%;
	min-height:auto;
	background:#fcf4db;
}
.top_wrapper01{
	width:100%;
	position:relative;
	top:auto;
	left:auto;
	margin-left:0;
	padding-top:20px;
}

/* お知らせ */
.top_news{
	width:96%;
	height:250px;
	margin:0 auto;
}
.news_title{
	width:100%;
	height:90px;
	float:none;
	background:#f9c2c2;
	padding:10px 0; 
	text-align:center;
}
.news_title img{height:70px; width:auto;}
.news_list{
	width:100%;
	height:90px;
	padding:20px;
	float:right;
}
.news_list ul{
	height:90px;
}
.news_list ul li{
	padding-bottom:5px;
}
.news_list iframe{
	width:100%;
	height:90px;
	padding:0;
	margin:0;
}

/* たんぽぽ農園について */
.top_about{
	margin:40px auto 0;
	width:96%;
	padding-bottom:40px;
}
.top_about p{
	font-size:16px;
}
.top_about a{
	width:90%;
	font-size:16px;
	line-height:40px;
	padding-top:2px;
}

/* 運営施設 */
.top_contents02{
	padding-top:40px;
}
.facility_title{
	width:96%;
}
.facility_title img{
	display:block;
	width:90%;
}
.top_facility{
	margin:-30px 0 0 0;
	padding:60px 0 20px;
}
.top_facility ul{
	width:90%;
	margin:0 auto;
	display:block;
}
.top_facility ul li{
	display:block;
	padding:0 10px 30px;
}
.top_facility ul li p{
	padding:4px 0 8px;
}
.top_facility ul li a{
	display:block;
	text-decoration:none;
	border-radius:6px;
	background:#0ba974;
	text-align:center;
	color:#fff;
	line-height:36px;
	padding-top:4px;
	border:solid 2px #0ba974;
	transition:.3s;
}
.top_facility ul li a:hover{
	background:#fff;
	color:#0ba974;
}
.top_map{width:100%; height:480px;}

/* 第二階層 */
.cover{
	height:120px;
}
.cover .page_title{
	width:100%;
	height:120px;
}
.cover .page_title h1{
	height:120px;
	font-size:25px;
}

}