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

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

	/* タイトル */
	#header h1.title {
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
	}
	/* ヘッダ */
	#header .contact {
		position: fixed;
		top: 110px;
		right: 0;
		width: 60px;
		z-index: 9997;
	}
	#header .contact .txt {
		padding: 8px 0;
		background: #ebdee8;
		color: #9d5b8b;
		font-size: 15px;
		font-weight: bold;
		text-align: center;
		line-height: 1.3;
	}
	#header .contact .tel {
		border-bottom: 1px solid #fff;
	}
	#header .contact .tel a {
		display: flex;
		padding: 10px 0;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		gap: 10px;
	}
	#header .contact .tel a span {
		color: #fff;
		font-size: 20px;
		/* 縦書き */
		-ms-writing-mode: tb-rl;
		writing-mode: vertical-rl;
	}
	#header .contact .btn a {
		padding: 10px 0;
	}
	/* メニュー */
	#menu,
	#menu ul {
		height: 100%;
	}
	#menu ul {
		/* フレックス */
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	#menu li:nth-child(4) {
		margin-left: 360px;
	}
	#menu li a {
		position: relative;
		display: block;
		padding-top: 20px;
		color: #4d4d4d;
		font-size: 17px;
		text-align: center;
		text-decoration: none;
	}
	#menu li a::before {
		position: absolute;
		top: 0;
		left: 50%;
		display: block;
		width: 0;
		height: 0;
		background: #e1cddc;
		border-radius: 50%;
		transform: translateX(-50%);
		transition: all 0.3s ease-in-out;
		content: "";
	}
	#menu li.on a,
	#menu li a:hover {
		color: #9d5b8b;
		filter:alpha(opacity=100);
		-moz-opacity: 1;
		opacity: 1;
	}
	#menu li.on a::before,
	#menu li a:hover::before {
		width: 10px;
		height: 10px;
	}
	#menu ul li.dsp_tbs {
		display: none;
	}
	/* コンテナ */
	#wrap, #footer {
		min-width: 1150px;
	}
	#container {
		padding-bottom: 980px;
	}
	.main {
		width: 1100px;
		margin-left: auto;
		margin-right: auto;
	}
	/* フッター */
	#footer {
		position: relative;
		min-height: 980px;
		margin-top: -980px;
	}
	#footer .link {
		display: flex;
		align-items: flex-end;
	}
	#copyright {
		text-align: right;
		white-space: nowrap;
	}
	/*--------------------------------------------------
		トップページ
	--------------------------------------------------*/
	/* お知らせ */
	#top_info dl {
		display: flex;
	}
	#top_info dt {
		width: 7em;
	}
	#top_info dd {
		width: calc(100% - 7em);
	}
	/*------------------------------------------------*/
	/* 背景固定 */
	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 */ 
/*------------------------------------------------*/
}