@charset "utf-8";
/*==================================================
	パソコンのみ適応
==================================================*/
@media print, screen and (min-width:769px){
	.dsp_tbs, .dsp_smt { display: none; }
	.cen_pc { text-align: center; }

	.fl { float: left; }	/* 左寄せ（float） */
	.fr { float: right; }	/* 右寄せ（float） */

	/* ヘッダ */
	#header {
		position: relative;
	}
	/* メニュー */
	#menu {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		padding: 30px 10px 0;
		box-sizing: border-box;
		z-index: 3;
	}
	#menu ul {
		display: flex;
		justify-content: center;
		column-gap: 10px;
	}
	#menu li a {
		position: relative;
		display: block;
		padding: 10px 20px;
		background: #fff;
		border: 2px solid #b4c63b;
		border-radius: 999px;
		color: #8c5931;
		font-size: 16px;
		line-height: 1.4;
		text-align: center;
		text-decoration: none;
	}
	#menu li a img {
		position: absolute;
		top: -22px;
		left: 50%;
		transform: translateX(-50%);
	}
	#menu li.on a,
	#menu li a:hover {
		background: #b4c63b;
		border-color: #fff;
		color: #fff;
		filter:alpha(opacity=100);
		-moz-opacity: 1;
		opacity: 1;
	}
	#menu ul li.dsp_tbs {
		display: none;
	}
	/* コンテナ */
	#wrap, #footer {
		min-width: 1150px;
	}
	#container {
		padding-bottom: 70px;
	}
	.main {
		width: 1100px;
		margin-left: auto;
		margin-right: auto;
	}
	/* フッター */
	#footer {
		position: relative;
		min-height: 70px;
		margin-top: -70px;
	}
	/*--------------------------------------------------
		トップページ
	--------------------------------------------------*/
	/* お知らせ */
	#top_info dl {
		display: flex;
	}
	#top_info dt {
		width: 100px;
	}
	#top_info dd {
		width: calc(100% - 100px);
	}
	/*------------------------------------------------*/
	/* 背景固定 */
	html, body, #wrap {
		height: 100%;
	}
	body > #wrap {
		height: auto;
		min-height: 100%;
	}
	/* Hides from IE-mac \*/
	* html .cf {
		height: 1%;
	}
	.cf {
		display: block;
	}
	/* End hide from IE-mac */ 
	/*--------------------------------------------------
		お問い合せ
	--------------------------------------------------*/
	#contact h2.waku {
		margin-bottom: 50px;
	}
	#mailform .tbl th,
	#mailform02 .tbl th {
		width: 200px;
	}
}