@charset 'utf-8';
/*----------------------------------------------------デフォルトCSS*/
/*------------------------------------global*/
* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-size: 14px;

}
body {
	background: #fff;
	font-family: "メイリオ","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Meiryo,Osaka,"MS P ゴシック","MS P Gothic",Verdana,sans-serif;
	color: #222;
}
h1,h2,h3,h4,h5,h6,p {
	font-weight: normal;
}
img {
	width: auto;
	max-width: 100%;
	vertical-align: middle;
	border: none;
}
ol,ul,dl,dt,dd,li {
	list-style: none;
}
a {
	text-decoration: none;
	color: #222;
	outline: none;
}
a:hover {
	text-decoration: underline;
}
object {
	outline: none;
}
.underconstruction {
	text-align: center;
	padding: 1rem;
}
/*------------------------------------table*/
table {
	border-spacing: 0;
	border-collapse: collapse;
}
table,tr,td,th{
	border-width: 1px;
	border-style: solid;
	border-color: #555;
}
/*------------------------------------form*/
form {
	text-align: center;
	margin: 0 auto;
}
form,fieldset {
	border: none;
}
textarea {
	overflow: auto;
}
button,
input[type=button],
input[type=submit],
input[type=text],
input[type=email],
input[type=url],
textarea,
select {
	-webkit-appearance: none;
	border: 1px solid rgba(0,0,0,0.1);
	border-radius: 0.3rem;
	padding: 0.5rem 0.8rem;
}
select {
	background: #fff;
}

button,
input[type=button],
input[type=submit] {
	-webkit-appearance: none;
	background: #FF9900;
	min-width: 180px;
	color: #fff;
	cursor: pointer;
	font-weight: bold;
}
label {
	font-size: 1rem;
	margin: 0.3rem;
}

form fieldset dl {
	width: 640px;
	text-align: left;
	border: 1px solid #ccc;
	margin: 2rem auto;
	padding: 1rem 1.5rem;
}
form fieldset dl dt {
	background: #f5f5f5;
	padding: 0.3rem 0.5rem;
}
form fieldset dl dd {
	margin-bottom: 0.5rem;
	padding: 0.3rem;
	text-align: center;
	font-size: 1.2rem;
}
form fieldset dl dd label {
	font-size: 1.2rem;
}
form dd.blank::after {
	content: '※この項目は必須入力です';
	display: block;
	padding: 0.3rem;
	font-weight: bold;
	font-size: 1rem;
	color: #c00;
}
form dd.retry:last-child::after {
	content: '※未入力項目があります';
	display: block;
	padding: 0.3rem;
	font-weight: bold;
	font-size: 1rem;
	color: #c00;
}


/*------------------------------------header*/
header {
	padding: 2rem 0.3rem;
	background: url(../img/header.png) repeat-x center bottom;
}
header h1 {
	max-width: 1000px;
	margin: 0 auto;
	text-align: right;
}

/*------------------------------------section*/
section {
	max-width: 1000px;
	margin: 0 auto;
}
section h2 {
	font-size: 1.3rem;
	text-align: center;
	margin: 1rem auto;
}
section h3 {
	font-weight: bold;
	margin-bottom: 0.5rem;
	text-align: center;
	font-size: 1.2rem;
}


/*------------------------------------.note*/
.note {
	max-width: 800px;
	margin: 1rem auto;

}
.note.report {
	font-weight: bold;
	border: 1px dotted #ccc;
	padding: 2rem;
	text-align: center;
}
.note.report p a {
	display: inline-block;
	margin: 2rem auto;
	border: 1px solid rgba(0,0,0,0.1);
	border-radius: 0.3rem;
	padding: 0.5rem 0.8rem;
	background: #FF9900;
	min-width: 180px;
	color: #fff;
	cursor: pointer;
	font-weight: bold;

}

/*------------------------------------footer*/
footer {
	padding: 2rem 0;
	text-align: center;
	border-top: 1px solid #ccc;
}
footer address {
	font-style: normal;
	font-size: 0.8rem;
	color: #999;
	letter-spacing: 0.3rem;
}

@media (max-width: 640px) {
	* {
		font-size: 16px;
	}
	section {
		max-width: unset;
	}
	form {
		padding: 0.5rem;
	}
	form fieldset > p {
		display: inline-block;
		text-align: left;
	}
	form fieldset dl {
		display: inline-block;
		text-align: left;
		border: 1px solid #ccc;
		margin: 0.3rem auto;
		padding: 0.5rem;
		width: 100%;
	}
	form fieldset dl dt {
		padding: 0.2rem;
		background: #eee;
	}
	form fieldset dl dd {
		margin-bottom: 0.5rem;
		padding: 0.3rem;
		text-align: center;
		font-size: 1.2rem;
	}
	form fieldset dl dd label {
		font-size: 1.3rem;
	}
	form fieldset dl dd label:first-child {
		display: block;
	}
	form fieldset dl dd label input[type=radio] {
		margin-right: 0.3rem;
	}
	form fieldset dl dd input[type=url],
	form fieldset dl dd input[type=email],
	form fieldset dl dd input[type=text] {
		width: 100%;
	}
	form fieldset dl dd input[type=submit] {
		font-size: 1.3rem;
		margin-top: 2rem;
		padding: 0.5rem 0.8rem;
	}
	.note {
		width: 96%;
	}
	.note.report {
		padding: 0.5rem;
	}
	.note.report p {
		display: inline-block;
		text-align: left;
		font-size: 0.9rem;
	}

	footer address {
		font-size: 0.5rem;
		letter-spacing: unset;
	}

}