@charset "utf-8";
/* CSS Document */

* {
   box-sizing: border-box;
}
html,body{
	margin: 0;
	padding: 0;
}
body{
	background-color: #fff;
	color: #202020;
	font-size: 0.8em;
	font-family: 'Meiryo UI','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
}
a{
	text-decoration: none;
	color: #579535;
}
p{
	line-height: 180%;
}
h4{
	border-bottom: dotted 1px #000;
	padding-bottom: 5px;
	margin-bottom: 5px;
	font-size: 1.2em;
	margin-top: 30px;
}
h4 i{
	font-size: 1.2em;
	margin-right: 5px;
	color: #90ad66;
}
.wrapper{
	min-height: 100vh;
    position: relative;/*←相対位置*/
    padding-bottom: 60px;/*←footerの高さ*/
    box-sizing: border-box;/*←全て含めてmin-height:100vhに*/
	background-color: #f5f5f5;
}
#base{
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
	padding: 120px 20px 10px 20px;
	background-color: #fff;
}
#base-top{
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
	padding: 100px 0px;
}

section{
	margin-bottom: 30px;
}

.subtitle {
	letter-spacing: 1px;
	border-bottom: solid 2px #579535;
	padding-bottom: 3px;
}

footer{
    position: absolute;/*←絶対位置*/
    bottom: 0; /*下に固定*/
	text-align: center;
	width: 100%;
	padding: 20px 0;
	
	margin-top: auto;
}
footer a{
	color: #579535;
}

.contents_inner {
    padding-top: 120px;
    margin-top:-120px;
}