@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 a {
		width: 85px;
		height: 85px;
	}
	#header .contact a img {
		width: 25px;
	}
	#header .contact p+p {
		margin-left: 1px;
	}
	/* メニュー */
	#menu {
		height: 100%;
		margin-left: auto;
		margin-right: 45px;
	}
	#menu ul {
		height: 100%;
		/* フレックス */
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		column-gap: 50px;
	}
	#menu > ul > li {
		position: relative;
		padding-bottom: 5px;
	}
	#menu > ul > li a {
		display: block;
		color: #333;
		font-size: 15px;
		text-align: center;
		text-decoration: none;
	}
	#menu ul li.on span,
	#menu ul li:hover span,
	#menu > ul > li.on > a,
	#menu > ul > li > a:hover {
		color: #db0000;
		filter:alpha(opacity=100);
		-moz-opacity: 1;
		opacity: 1;
	}
	#menu ul li.dsp_tbs {
		display: none;
	}
	#menu ul li ul {
		display: none;
		position: absolute;
		top: 100%;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		background-color: #444;
		min-width: 180px;
		z-index: 1000;
	}
	#menu ul li ul li {
		border-bottom: 1px solid #fff;
		display: block;
	}
	#menu ul li ul li:last-of-type {
		border-bottom: none;
	}
	#menu ul li ul li a {
		padding: 10px;
		display: block;
		color: #333;
		text-decoration: none;
		background-color: #f7f7f7;
		font-size: 15px;
		font-weight: 500;
	}
	#menu ul li ul li a:hover {
		color: #db0000;
		filter:alpha(opacity=100);
		-moz-opacity: 1;
		opacity: 1;
	}
	/* ホバーで表示 */
	#menu ul li span {
		display: block;
	}
	#menu ul li:hover span {
		cursor: pointer;
	}
	#menu ul li:hover ul {
		display: block;
	}
	/* コンテナ */
	#wrap, #footer {
		min-width: 1150px;
	}
	#container {
		padding-bottom: 552px;
	}
	.main {
		width: 1100px;
		margin-left: auto;
		margin-right: auto;
	}
	/* フッター */
	#footer {
		position: relative;
		min-height: 552px;
		margin-top: -552px;
	}
	/*--------------------------------------------------
		トップページ
	--------------------------------------------------*/
	/* お知らせ */
	#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 */ 
/*------------------------------------------------*/
}