html {
	scroll-behavior: smooth;
	scroll-padding-top: 65px;
}

main {
	width: 100%;
	margin: 0;
	padding: 55px 0 0 0;
	font-size: 15px;
	line-height: 1.8;
}

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

/* Loading背景画面設定 */
#loading {
	/*fixedで全面に固定*/
		position: fixed;
		width: 100%;
		height: 100%;
		z-index: 999;
		background: #726356;
		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;
	}
	


/*=============== header ===============*/

header {
	display: block;
	position: fixed;
	width: 100%;
	height: 55px;
	top: 0;
	left: 0;
	z-index: 100;
	background: #726356;
	padding: 20px;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-ms-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}
header.sp {
	background: rgba(255, 255, 255, 0.6);
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-ms-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}

h1#h-logo {
	margin: 0;
	padding: 0;
}
h1#h-logo::after {
	display: none;
}
#h-logo a {
	display: block;
	width: 100px;
	height: 15px;
	background: url("../img/logo.png") no-repeat;
	background-size: 100% auto;
	text-indent: -500px;
}
#h-logo.sp a {
	opacity: 0.5;
}
#h-logo.sp a:hover {
	opacity: 1;
}

#catch {
	display: none;
}



/*=============== contents ===============*/

.contents {
	width: 100%;
	margin: 0;
	padding: 0;
	text-align: center;
	background: #fff;
}

.cont_tx {
	width: 100%;
	padding: 0 20px 10px 20px;
}




/*=============== footer ===============*/

footer {
	width: 100%;
	padding: 12px 20px;
	margin: 0;
}

/* copyright */

small {
	text-align: left;
	font-size: 14px;
	line-height: 1;
}

/* page-top */

#page-top {
	position: fixed;
	bottom: 8px;
	right: 8px;
	z-index: 3;
}
#page-top a {
	background: rgba(160,122,81,0.5);
	text-decoration: none;
	width: 36px;
	height: 36px;
	display: block;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}
#page-top a::after {
	position: absolute;
	content: '';
	top: 14px;
	left: 12px;
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
#page-top a:hover {
	background: #A07A51;
}






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

	@media only screen and (min-width: 750px) {
	
	html {
		scroll-padding-top: 81px;
	}
		
	main {
		width: 100%;
		margin: 0;
		padding: 61px 0 0 0;
		font-size: 16px;
	}

		
	/*=============== header ===============*/

	header {
		height: 61px;
		padding: 22px 30px;
		border-top: none;
		background: #726356;
	}

	#h-logo a {
		width: 120px;
		height: 17px;
	}

	#catch {
		display: block;
		position: fixed;
		left: 175px;
		top: 27px;
		font-size: 13px;
		line-height: 1;
		color: #C0B7AD;
	}
	#catch.sp {
		opacity: 0;
		-webkit-transition: all .5s ease-in-out;
		-moz-transition: all .5s ease-in-out;
		-ms-transition: all .5s ease-in-out;
		-o-transition: all .5s ease-in-out;
		transition: all .5s ease-in-out;
	}
	


	/*=============== contents ===============*/

	.cont_tx {
		width: 100%;
		padding: 0 50px 30px 50px;
	}


	/*=============== footer ===============*/

	footer {
		padding: 20px 30px;
	}

	small {
		font-size: 16px;
	}

	/* page-top */

	#page-top {
		bottom: 2px;
		right: 2px;
	}
	#page-top a {
		width: 70px;
		height: 70px;
	}
	#page-top a::after {
		top: 30px;
		left: 26px;
		width: 18px;
		height: 18px;
		border-top: 2px solid #fff;
		border-left: 2px solid #fff;
	}
	
	}








		/*################################ 1160px 以上 ################################*/

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

		html {
			scroll-padding-top: 100px;
		}
		
		main {
			padding: 70px 0 0 0;
			border-left: 40px solid #726356;
			border-right: 40px solid #726356;
			background: #fff;
		}


		/*=============== header ===============*/

		header {
			height: 70px;
			padding: 25px 40px;
			border-top: none;
			background: #726356;
		}
		header.sp {
			background: #726356;
		}
		#h-logo a {
			width: 148px;
			height: 20px;
		}
		#catch {
			top: 33px;
			left: 218px;
			font-size: 14px;
		}
		#h-logo.sp a, #catch.sp {
			opacity: 1;
		}
		


		/*=============== contents ===============*/

		.contents {
			width: 1020px;
			margin: 0 auto;
		}
		.cont_tx {
			padding: 0 50px 50px 50px;
		}



		/*=============== footer ===============*/

		footer {
			padding: 25px 0;
			background: #726356;
		}

		/* page-top */

		#page-top {
			bottom: 0;
			right: 40px;
		}


		
		}
