@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 {
		width: 100%;
		height: auto;
		box-sizing: border-box;
		position: absolute;
		z-index: 1;
		padding: 0;
	}
	#header h1.title {
		width: 200px;
		height: 120px;
		display: flex;
		justify-content: center;
		align-items: center;
		background: #fff;
		box-shadow : 0px 0px 15px rgba(0, 0, 0, 0.2);
		border-radius: 0px 0px 20px 0px;
	}
	#header h1.title img {
		width: 120px;
	}
	#header .contact {
		position: absolute;
		width: 279px;
		right: 0;
		top: 0;
		background: #ff0000;
		line-height: 60px;
		box-shadow : 0px 0px 15px rgba(0, 0, 0, 0.1);
	}
	#header .contact .tel a {
		display: block;
		color: #fff;
		font-size: 20px;
		padding-left: 20px;
	}
	#header .contact .tel img {
		position: relative;
		top: -2px;
		width: 25px;
		margin-right: 10px;
	}
	#header .contact .btn {
		width: 60px;
	}
	#header .contact .btn a {
		display: block;
		border-left: 1px solid #fff;
		text-align: center;
	}
	#header .contact .btn img {
		width: 24px;
	}
	/* メニュー */
	#menu {
		position: absolute;
		top: 0;
		right: 279px;
		background: #fff;
		box-shadow : 0px 0px 15px rgba(0, 0, 0, 0.1);
		border-bottom-left-radius: 20px;
	}
	#menu li {
		display: inline-block;
	}
	#menu li a {
		display: block;
		padding: 16px 38px;
		color: #333333;
		font-size: 16px;
		line-height: 28px;
		text-align: center;
		text-decoration: none;
	}
	
	#menu li:not(:nth-last-of-type(-n+2)) a {
		padding-right: 0;
	}
	#menu li.on a,
	#menu li a:hover {
		filter:alpha(opacity=100);
		-moz-opacity: 1;
		opacity: 1;
		color: #0c66d7;
	}
	#menu ul li.dsp_tbs {
		display: none;
	}
	/* コンテナ */
	#wrap, #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;
	}
	/*--------------------------------------------------
		トップページ
	--------------------------------------------------*/
	/* お知らせ */
	#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 */ 
/*------------------------------------------------*/
}