body {
	position: relative;
	margin: 0;
	padding: 0;
	color: #111;
	font-size: 14px;
	line-height: 1.5;
	font-weight: normal;
	font-family: 'Noto Sans JP', "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.sp_off {
	display: none;
}
ul, li {
	list-style: none;
	margin: 0;
	padding: 0;
}
a {
	text-decoration: none;
}
p {
	margin: 0;
}
img {
	vertical-align: bottom;
}
img.of_js {
	object-fit: cover;
	font-family: 'object-fit: cover;';
}
@font-face {
	font-family: 'Noto Sans JP';
	font-style: normal;
	font-weight: 400;
	src: local("Noto Sans CJK JP Regular"),
		url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff2) format('woff2'),
		url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff) format('woff'),
		url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.otf) format('opentype');
}
/* nomal */
@font-face {
	font-family: "Century Gothic";
	src: url('/channel_setting/font/GOTHIC_0.woff2') format('woff'),
		url('/channel_setting/font/GOTHIC_0.TTF') format('truetype');
	font-weight: normal;
	font-style: normal;
}
/* bold */
@font-face {
	font-family: "Century Gothic";
	src: url('/channel_setting/font/GOTHICB_0.woff2') format('woff'),
		url('/channel_setting/font/GOTHICB_0.TTF') format('truetype');
	font-weight: bold;
	font-style: normal;
}
h1 {
	width: 100%;
	text-align: center;
	color: #666;
	font-size: 10px;
	line-height: 16px;
	padding: 5px 2px 3px 2px;
	z-index: 11;
	background: #eee;
	position: absolute;
	top: 50px;
	left: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
/* ----------------------------------------
	header
	---------------------------------------- */
.h_wrap {
	width: 100%;
	height: 50px;
	text-align: center;
}
.header {}
.h_logo {
	padding: 5px 0;
	z-index: 100;
	background-color: #ffffff;
	position: fixed;
	width: 100%;
	box-shadow: 0 2px 2px 0 #ccc;
	height: 50px;
	box-sizing: border-box;
}
.h_logo a {
	display: block;
	width: 50%;
	margin: 0 auto;
}
.h_logo img {
	max-height: 40px;
	margin: 0 auto;
}
/*ナビメニューのスタイルを指定*/
nav.NavMenu {
	position: fixed;
	/*表示位置を固定*/
	z-index: 20;
	/*重ね順を変更*/
	top: 50px;
	/*表示位置を指定*/
	left: 0;
	/*表示位置を指定*/
	background: #fff;
	/*背景を白にする*/
	color: #000;
	/*文字色を黒にする*/
	text-align: center;
	/*テキストを中央揃え*/
	width: 100%;
	/*全幅表示*/
	transform: translateY(-100%);
	/*ナビを上に隠す*/
	transition: all 0.6s;
	/*アニメーションの時間を指定*/
}
nav.NavMenu ul.menu_list {
	background: #111;
	/*背景*/
	width: 100%;
	margin: 0 auto;
	padding: 0;
}
nav.NavMenu ul.menu_list li {
	font-size: 1.1em;
	list-style-type: none;
	padding: 0;
	width: 100%;
	border-bottom: 1px solid #fff;
}
nav.NavMenu ul.menu_list li:last-child {
	padding-bottom: 0;
	border-bottom: none;
	/*最後のメニュー項目のみ下線を消す*/
}
nav.NavMenu ul.menu_list li a {
	display: block;
	/*クリックできる領域を広げる*/
	font-size: 0.9em;
	font-weight: normal;
	color: #fff;
	padding: 8px 0;
	text-decoration: none;
	text-align: left;
	text-indent: 1em;
	line-height: 2em;
}
nav.NavMenu ul.menu_list li a::after {
	content: '\f105';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	float: right;
	margin: 0 2em 0 0;
}
nav.NavMenu.active {
	transform: translateY(0%);
	border-bottom: 1px solid #cccccc;
}
.Toggle {
	display: block;
	position: fixed;
	/* bodyに対しての絶対位置指定 */
	right: 15px;
	top: 10px;
	width: 30px;
	height: 30px;
	cursor: pointer;
	z-index: 120;
}
.Toggle span {
	display: block;
	position: absolute;
	width: 30px;
	border-bottom: solid 2px #000;
	-webkit-transition: .35s ease-in-out;
	/*変化の速度を指定*/
	-moz-transition: .35s ease-in-out;
	/*変化の速度を指定*/
	transition: .35s ease-in-out;
	/*変化の速度を指定*/
}
.Toggle span:nth-child(1) {
	top: 7px;
}
.Toggle span:nth-child(2) {
	top: 16px;
}
.Toggle span:nth-child(3) {
	top: 25px;
}
/* 最初のspanをマイナス45度に */
.Toggle.active span:nth-child(1) {
	top: 16px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
	top: 16px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}
.other_links {
	margin: 20px 10%;
	width: 80%;
}
.other_links li a {
	font-size: 14px;
	font-weight: bold;
	display: block;
	line-height: 24px;
	text-align: center;
	text-decoration: none;
	margin: 0 auto;
}
.other_links li.other_li_site a {
	border-radius: 4em;
	color: #111;
	background-color: #ccc;
	padding: 15px 10px;
}
.other_links li.other_li_inq {}
.other_links li.other_li_inq a {
	color: #d22b2c;
	border: 2px solid #d22b2c;
	padding: 10px;
	background: #fae9e9;
}
.other_links li:not(:last-child) {
	margin-bottom: 15px;
}
/* ----------------------------------------
	pankuzu
	---------------------------------------- */
.pan {
	display: block;
	margin-top: 22px;
}
.pan ul {
	color: #111;
	position: relative;
	padding: 3px 1%;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	white-space: nowrap;
	line-height: 17px;
	font-size: 11px;
}
.pan li {
	display: inline-block;
	font-size: 0.8em;
}
.pan li a {
	text-decoration: none;
	color: #111111;
}
.pan li::after {
	content: ">";
	margin: 0 15px;
}
.pan li:last-child {
	color: #d22b2c;
}
.pan li:last-child::after {
	content: "";
	margin: 0 15px;
}
/* ----------------------------------------
footer
---------------------------------------- */
footer {
	background: #e3e1dd;
	width: 100%;
	position: relative;
	margin-top: 50px;
}
.f_box {
	display: flex;
}
.f_logo {
	width: 100%;
	background: #fff;
	border-top: 1px dashed #111;
}
.f_img {
	width: 30%;
	margin: 0 auto;
	padding: 15px 0;
}
.f_wrap {
	width: 100%;
	padding: 15px;
	box-sizing: border-box;
}
.f_menu li a {
	color: #333;
	font-size: 13px;
	margin-bottom: 5px;
	display: block;
}
.f_menu li a:hover {
	text-decoration: underline;
}
.f_menu_sub {
	padding-left: 15px;
	display: flex;
	flex-wrap: wrap;
}
.f_menu_sub li,
.f_menu_company li {
	display: flex;
}
.f_menu_sub li:not(:last-child):after,
.f_menu_company li:not(:last-child):after {
	content: "/";
	padding: 0 5px;
	color: #555;
}
.f_menu_company {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
}
.contact {
	padding-top: 20px;
	text-align: center;
}
.contact span {
	color: #333;
	font-size: 12px;
}
.contact .tel {
	font-size: 30px;
	height: 60px;
	width: 80%;
	margin: 0 auto;
	border: 1px solid #333;
	display: flex;
	align-items: center;
	justify-content: center;
}
.company, .adress {
	font-size: 15px;
	color: #333;
	line-height: 1.8;
}
.company {
	margin-top: 35px;
}
.copy {
	text-align: center;
	color: #333;
	font-size: 11px;
	margin-top: 20px;
}
/* ----------------------------------------
pagettl
---------------------------------------- */
.pagettl {
	background: url(/musasino/f_residence/img/common/pagettl_bg.webp) no-repeat 50% 0;
	background-size: cover;
	height: 80px;
	width: 100%;
}
.pagettl p {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pagettl p img {
	height: 50px;
}