@charset "UTF-8";
/* ===================================================================
format
=================================================================== */
/*	html
--------------------------------------------------------------------*/
html {
	/* font-size指定をremで設定するための処理　1.6rem = 16px */
	font-size: 62.5%;
}

/*	body
--------------------------------------------------------------------*/
body {
	font-family: "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, 'FontAwesome';
	font-size: 1.6rem;
	color: #333;
	line-height: 1.5;
	background: #fcfafa;
}

/*	a:link,a:visited,a:hover,a:active
--------------------------------------------------------------------*/
a:link, a:visited {
	color: #333;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a:active {
	color: #333;
}

/*	img
--------------------------------------------------------------------*/
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

/*	ul,ol
--------------------------------------------------------------------*/
ul,
ol {
	list-style: none;
}

/*	form
--------------------------------------------------------------------*/
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
select,
textarea {
	width: 100%;
	padding: .5em;
	font-size: 1.6rem;
	border: 1px solid #d9d9d9;
	border-radius: 3px;
	background: white;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
select {
	height: 40px;
}

input[type="radio"],
input[type="check"] {
	margin-right: .6em;
}

textarea {
	height: 200px;
}

button {
	display: block;
	max-width: 300px;
	width: 100%;
	margin: 0 auto;
	padding: 5px 10px;
	text-align: center;
	font-size: 1.4rem;
	border-radius: 4px;
}

button :hover {
	cursor: pointer;
	opacity: .7;
}

.btn_check {
	display: flex;
	justify-content: space-between;
}

.btn_check button {
	margin: 0;
}

/* ===================================================================
Layout-contents
=================================================================== */
/*	contents
--------------------------------------------------------------------*/
#contents {
	width: 100%;
	max-width: 860px;
	margin: 0 auto;
	background: white;
}

/*	main
--------------------------------------------------------------------*/
/*	footer
--------------------------------------------------------------------*/
