
html {
	background: #fff;
	color: #2C3146;
}

body {
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	display: flex; /* フレックスボックスに有効に */
	flex-flow: column; /* 要素を縦に並べる */
	min-height: 97vh; /* 最小でも画面の高さ分のbodyの高さを担保する */
	background: #f1f1f1;
	margin: 0px;
 }

header {
	height: 70px;
}

.inner_header {
	width: 96%;
	height: 100%;
	background: #fff;
	border-radius:  0 0 20px 20px;
	margin: 0 auto;
	padding-left: 20px;
	display: flex;
	align-items: center;
}

main {
	flex: 1; /* mainエリアを伸縮させる */
}

.message {
	background: #fff;
	margin: 2em auto 200 auto;
	padding: 1em 2em;
	width: 75%;

}

h1 {
	font-size: 24px;
	margin-bottom: 20px;
	border-bottom: 1px solid #dadada;
}

footer
{
	position: sticky;
	background: #fff;
	font-size: 14px;
	margin-top: 20px;
}
.company
{
	margin-bottom: 60px;
	padding: 20px 10%;
}

.address
{
	margin-top: 30px;
	margin-bottom: 5px;
}

.copyright 
{
	float: right;
	font-size: 12px;
	margin-right: 10%;
	margin-bottom: 20px;
}

hr {
	background-color: #dadada;
	height: 1px;
	border: none;
}