@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;
		flex-direction: column;
		padding: 0;
		width: 100%;
		margin: 0 auto;
		height: auto;
	}
	#header h1.title {
		margin: 15px 0 15px;
		padding-bottom: 5px;
		position: relative;
		width: 100%;
	}
	#header h1.title::before {
		content: "";
		position: absolute;
		width: 1100px;
		height: 1px;
		background: #000;
		bottom: -20px;
		left: 50%;
		transform: translateX(-50%);
	}
	#header .contact a {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 63px;
		height: 63px;
		background: #f2f2f2;
		position: absolute;
		top: 0;
		right: 0;
	}
	#header .contact a img {
		width: 28px;
	}
	/* メニュー */
	#menu {
		margin: 30px 0 40px;
	}
	#menu li {
		display: inline-block;
	}
	#menu li a {
		display: block;
		padding: 0 25px;
		color: #333333;
		font-size: 16px;
		line-height: 28px;
		text-align: center;
		text-decoration: none;
	}
	#menu li.on a,
	#menu li a:hover {
		filter:alpha(opacity=100);
		-moz-opacity: 1;
		opacity: 1;
		color : #666;
	}
	#menu ul li.dsp_tbs {
		display: none;
	}
	/* コンテナ */
	#wrap, #footer {
		min-width: 1150px;
	}
	#container {
		padding-bottom: 130px;
	}
	.main {
		width: 1100px;
		margin-left: auto;
		margin-right: auto;
	}
	/* フッター */
	#footer {
		position: relative;
		min-height: 130px;
		margin-top: -130px;
	}
	#footer .box {
		width: 1100px;
		margin: 0 auto;
		height: 88px;
		box-sizing: border-box;
		/* 縦方向中央揃え */
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
	}

	/*--------------------------------------------------
		トップページ
	--------------------------------------------------*/
	/* お知らせ */
	#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 */ 
/*------------------------------------------------*/
}