body {
	background: #e4e7ec;
	color: #142434;
}


/* header */

header {
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
}
header section {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 110px;
	background: rgba(255, 255, 255, 0.7);
	z-index: 10;
}
header #logo a {
	position: fixed;
	display: block;
	width: 120px;
	height: 48px;
	left: 30px;
	top: 34px;
	background: url(../img/southerly_logo.png) left top no-repeat;
	background-size: 100% auto;
	z-index: 999;
	overflow: hidden;
	text-indent: 200%;
	white-space: nowrap;
}

header #sp_name a {
	position: fixed;
	display: block;
	width: 120px;
	height: 50px;
	top: 30px;
	right: 80px;
	z-index: 9999;
	background: #52aed0;
	color: #fff;
	font-weight: bold;
	padding: 0 5px;
	border-radius: 25px;
	text-align: center;
	font-size: 13px;
	letter-spacing: 0.06em;
	line-height: 50px;
	text-decoration: none;
}
header #sp_name.name_active a {
	background: #fff;
	color: #52aed0;
}


/* main */

main {
	width: 100%;
	background: #fff;
	padding-top: 110px;
}
.contents {
	position: relative;
	width: 100%;
	padding: 0 0 50px 0;
}


/* footer */

footer {
	width: 100%;
	text-align: center;
	padding: 20px;
}

small {
	font-size: 11px;
	letter-spacing: 0.1em;
	margin: 0 auto;
	font-family: "Baskervville", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
}


/*---------- ローディング ----------*/

/* Loading背景画面設定　*/
#loading {
/*fixedで全面に固定*/
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 999;
	background: #fff;
	text-align: center;
}
/* Loading画像中央配置　*/
#loading_img {
	position: absolute;
	top: calc(50% - 60px);
	left: calc(50% - 60px);
	width: 120px;
	height: 120px;
	background: url(../img/loading.gif) no-repeat;
	background-size: 100% 100%;
}
/* fadeUpをするアイコンの動き */
.fadeUp{
	animation-name: fadeUpAnime;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
	opacity: 0;
}
@keyframes fadeUpAnime{
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/* ローディング終了後 */
.loaded {
	opacity: 0;
	visibility: hidden;
}




	/*#################### 750px 以上 ####################*/

	@media only screen and (min-width: 750px) {
	
	/* header */

	header section {
		height: 150px;
		background: none;
	}
	header #logo a {
		width: 190px;
		height: 68px;
		left: 50px;
		top: 36px;
	}
	
	header #sp_name a {
		width: 150px;
		top: 50px;
		right: 120px;
		font-size: 14px;
		letter-spacing: 0.1em;
	}


	/* main */

	main {
		padding-top: 150px;
	}
	.contents {
		padding: 0 0 80px 0;
	}

	/* footer */

	footer {
		padding: 30px;
	}
	small {
		font-size: 12px;
	}

	}

	





		/*#################### 1000px 以上 ####################*/

		@media only screen and (min-width: 1000px) {

		/* main */

		.contents {
			width: 1000px;
			margin: 0 auto;
		}
	
		/* footer */

		footer {
			padding: 50px;
		}
		small {
			font-size: 13px;
		}


		}
