@charset "utf-8";
/* CSS Document */
html {
	font-size: 62.5%;/* 16px x 0.625 = 10px(=1rem) */
}
body {
	font-size:1.4em;
	font-family:"メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
a:hover{
	text-decoration: none;
}
img{
	width: 100%;
	height: auto;
	-webkit-backface-visibility: hidden;/*GoogleChrome対策*/
}
p{
	font-size: 1.6rem;
	line-height: 1.8em;
	text-align: left;
}
span{
	display: inline-block;
}
.wrapper{
	overflow: hidden;
	
}
section{
	margin: 2em 1em;
}

h1{
	color: #3e3a39;
	font-size: 1.6rem;
	line-height: 1.8em;
}
/*ヘッダ*/
header{
	display: flex;
	flex-direction: column-reverse;
}
/*フッター*/
footer{
	
	background: linear-gradient(to bottom, #AA8546 0%, #FFE893 80%);
	color: white;
	padding: 3em 5em;
}
.footer_menu{
	display: none;
}
/*PageTop*/
.btn-page-top{
	text-align: right;
	margin-bottom: 0;
}
a.page-top{
	background-color: #AA8546;
	width: 110px;
	text-align: center;
	display: inline-block;
	padding: 0.5em;
	color: white;
	font-size: 1.6rem;
}
a.page-top:hover{
	background: -moz-linear-gradient(45deg, #757575 0%, #9E9E9E 45%, #E8E8E8 70%, #9E9E9E 85%, #757575 90% 100%);
	background: -webkit-linear-gradient(45deg, #757575 0%, #9E9E9E 45%, #E8E8E8 70%, #9E9E9E 85%, #757575 90% 100%);
	background: linear-gradient(45deg, #757575 0%, #9E9E9E 45%, #E8E8E8 70%, #9E9E9E 85%, #757575 90% 100%); 
}
/*コピーライト*/
.copyright{
	margin-top: 2em;
	text-align: center;
	font-size: 1.4rem;
	text-shadow: 1px 1px #bbb;
}
/*マージン設定*/
.ml-1{
	margin-left: 1rem;
}
.main-image{
	display: none;
}
hr{
	border: dashed 1px #601986;
}
/*タブレット表示設定*/
@media (min-width: 600px){
	/*ヘッダ*/
	header{
		flex-direction: column;
	}
	section{
		text-align: center;
	}
	
	p{
		font-size: 1.4rem;
		line-height: 1.2em;
	}
	/*フッターメニュー*/
	.footer_menu{
		display: block;
		margin-top: 1.2em;
		border-top: solid 1px white;
		border-bottom: solid 1px white;
	}
	.footer_menu a{
		color: white;
	}
	.footer_menu ul{
		display: flex;
		padding: 1em 0 0;
	}
	.footer_menu li{
		display: inline-block;
		padding: 0 2em;
	}
	.footer_menu li:hover{
		color: #601986;
		background: -moz-linear-gradient(45deg, #757575 0%, #9E9E9E 45%, #E8E8E8 70%, #9E9E9E 85%, #757575 90% 100%);
		background: -webkit-linear-gradient(45deg, #757575 0%, #9E9E9E 45%, #E8E8E8 70%, #9E9E9E 85%, #757575 90% 100%);
		background: linear-gradient(45deg, #757575 0%, #9E9E9E 45%, #E8E8E8 70%, #9E9E9E 85%, #757575 90% 100%); 
	}
	.footer_menu li+li{
		border-left: solid 1px white;
	}
	
	/*PageTop*/
	.btn-page-top{
		margin-right: 80px;
	}
	/*コピーライト*/
	.copyright{
		text-align: right;
		
	}
	.main-image{
		display: block;
	}	
}
/*PC表示設定*/
@media (min-width: 1025px){
	p{
		font-size: 1.6rem;
		line-height: 1.8em;
	}
	
}