@charset "utf-8";

/* トップ「コンセプト」スタイル */

#top-content1 {
	background-image: url('images/top-content1/bg_concept.jpg');
	background-repeat: repeat;
	padding:100px 0 100px;
	color:#d8dae3;
}
#top-content1 p {
	font-size:125%;
	line-height:2;
}

#top-content1 .m-title {
	margin-bottom: 20px;
}

/* **************************************************** */
/* メディアクエリ
/* **************************************************** */

@media screen and (max-width: 979px) {
	/* 979px以下用（タブレット用）の記述 */
#top-content1 {
	padding:47px 0 70px;
}
#top-content1 p {
	line-height:1.5;
}
}
@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用（タブレット／スマートフォン用）の記述 */
}