@charset "utf-8";
/* contents name
----------------------------------------------------------- */
*{
	box-sizing: border-box;
}

html{
	font-size: 62.5%;
}

body{
	font-size: 1.5rem;
}

#main {
	width: 800px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}

#header {
	width: 100%;
	display: flex;
	border-bottom: solid 5px #67b82b;
	padding-top: 20px;
	padding-bottom: 20px;
	margin-bottom: 30px;
}
#header div{
	display: flex;
	align-items: center;
}

#logo{
	margin-left: auto;
}

.content{
	margin-bottom: 35px;
}

h2{
	color: #fff;
	background-color: #67b82b;
	width: 100%;
	font-size: 1.8rem;
	text-indent: 1.8rem;
	vertical-align: middle;
	margin-bottom: 30px;
	padding-top: 0.8rem;
	padding-bottom: 0.8rem;
	line-height: 1.8rem;

}

span.blue{
	color: #0f278c;
}
span.red{
	color: #951212;
}
span.hissu{
	color: #b81c22;
}

input, textarea{
	width: 100%;
	box-sizing: border-box;
}


.row{
	display: flex;
	display: -ms-flexbox; /* IE10 */
	display: -webkit-box; /* Android4.3以下、Safari3.1〜6.0 */
	display: -webkit-flex; 
	margin-top: 25px;
	padding-bottom: 20px;
	border-bottom: solid 1px #bfbfbf;
}

.row:last-child{
	border-bottom: none;
}

.col-h{
	width: 250px;
}
.col{
	width: 550px;

}


button{
	display: block;
	width: 200px;
	padding: 0.8em;
	text-align: center;
	text-decoration: none;
	color: #fff;
	background-color: #28480c;
	border: 2px solid #28480c;
	border-radius: 3px;
	transition: .4s;
	margin: 0px auto;
}
button:hover{
	background: #fff;
	color: #28480c;
}

.flex{
	display: flex;
}
.f-mid{
	align-items: center;
}

.bold{
	font-weight: bold;
}

.fz-18{
	font-size: 1.8rem;
}
.fz-29{
	font-size: 2.9rem;
}

.err-text{
	color: red;
	font-weight: bold;
}

@media screen and (max-width: 680px) {
	#main{
		max-width: 100vw;
	}

	.content{
		max-width: 90vw;
		margin-left: auto;
		margin-right: auto;
	}

	.col-h, .col{
		width: 90vw;
	}

	input, textarea{
		width: 90vw;
	}

	#header, .chara{
		flex-direction: column-reverse;
	}

	#header div, .chara img{
		margin-left: auto;
		margin-right: auto;
	}

	#logo, .chara img{
		margin-bottom: 15px;
	}

	.row{
		flex-direction: column;
	}

	h2{
		padding-top: 1.4rem;
		padding-bottom: 1.4rem;
	}

	.button_area{
		flex-direction: column;
	}

	.button_area button{
		margin-bottom: 20px;
	}
}
