@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 .contact {
		column-gap: 10px;
	}
	#header .contact .sns {
		margin-left: 15px;
	}
	/* メニュー */
	#menu {
		margin-left: auto;
		margin-right: 50px;
	}
	#menu ul {
		/* フレックス */
		display: flex;
		column-gap: 50px;
	}
	#menu li a {
		display: block;
		padding-top: 20px;
		background: no-repeat center top;
		color: #534741;
		font-size: 18px;
		font-weight: 500;
		line-height: 28px;
		text-align: center;
		text-decoration: none;
		text-shadow: 1px 1px 0 rgba(255,255,255,0.9);
	}
	#menu li.on a,
	#menu li a:hover {
		background: url("../img/menu.png") no-repeat center top;
		color: #f9bb00;
		filter:alpha(opacity=100);
		-moz-opacity: 1;
		opacity: 1;
	}
	#menu ul li.dsp_tbs {
		display: none;
	}
	/* コンテナ */
	#wrap, #header, #footer {
		min-width: 1150px;
	}
	#container {
		padding-bottom: 567px;
	}
	.main {
		width: 1100px;
		margin-left: auto;
		margin-right: auto;
	}
	/* フッター */
	#footer {
		position: relative;
		min-height: 567px;
		margin-top: -567px;
	}
	#footer .box,
	#footer .contact {
		height: 310px;
		box-sizing: border-box;
		/* 縦方向中央揃え */
		display: flex;
		align-items: center;
		justify-content: center;
	}
	#footer .contact {
		height: 120px;
		margin: auto;
	}
	#footer .contact .btn {
		float: right;
	}

	/*--------------------------------------------------
		トップページ
	--------------------------------------------------*/
	/* お知らせ */
	#top_info dl {
		display: flex;
	}
	#top_info dt {
		width: 100px;
	}
	#top_info dd {
		width: calc(100% - 100px);
	}
	/*--------------------------------------------------
		サービス案内
	--------------------------------------------------*/
	#service .about {
		/* フレックス */
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		column-gap: 4%;
		row-gap: 80px;
	}
	#service .about dl {
		width: 48%;
	}
	/*------------------------------------------------*/
	/* 背景固定 */
	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 */ 
/*------------------------------------------------*/
}