/* 各ページ共通のボタン */
.top-titie {
	padding: 25px 0 15px 0;
}

.m-title {
	width:100%;
/*	margin:0 auto;*/
	font-size: 134%;
	color:#d8dae3;
	text-align:center;
	text-transform:uppercase;
	margin-top: 30px;
	overflow: hidden;
}

.m-title {
	margin-top: 0px;
	font-size:275%;
}
@media screen and (max-width: 768px) {
	.m-title {
		font-size:184%;
	}
}

.m-title-inner {
	position: relative;
	display: inline-block;
	padding: 0 15px;
}
.m-title-inner::before,
.m-title-inner::after {
	position: absolute;
	top: 50%;
	width: 75px;
	height: 1px;
	content: '';
	background-color: #d8dae3;
}
.m-title-inner::before {
	right: 100%;
}
.m-title-inner::after {
	left: 100%;
}

/* 下層ページのサブタイトル */
.subttl {
	font-size: 134%;
	border-top: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
	padding: 7px 0;
	text-align: center;
	margin-bottom: 20px;
	color: #FFF;
}



/* **************************************************** */
/* メディアクエリ
/* **************************************************** */

@media screen and (max-width: 979px) {
	/* 979px以下用（タブレット用）の記述 */
}
@media screen and (max-width: 767px) {
	/* 767px以下用（タブレット／スマートフォン用）の記述 */
}
@media screen and (max-width: 479px) {
	/* 479px以下用（スマートフォン用）の記述 */
}

	/* デフォルト：479px以下用（スマートフォン用）の記述 */
@media screen and (min-width: 480px) {
	/* 480px以上用（タブレット／スマートフォン用）の記述 */
}
@media screen and (min-width: 768px) {
	/* 768px以上用（タブレット用）の記述 */
}
@media screen and (min-width: 980px) {
	/* 980px以上用（PC用）の記述 */
}

@media screen and (min-width: 768px) and (max-width: 979px) {
	/* 768px - 979px用（タブレット用）の記述 */
}
@media screen and (min-width: 480px) and (max-width: 767px)  {
	/* 480px - 767px用（タブレット／スマートフォン用）の記述 */
}