@charset "utf-8";
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}
body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
ol,
ul {
  list-style: none;
  list-style-type: none;
}
table,
tr,
th,
td {
  border-collapse: collapse;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 0;
  padding: 0;
}

/* フォーム周りのリセット */
label{
	cursor: pointer;
	}
/* ラジオボタン */
input[type="radio"] {
	height: 16px;
	width: 16px;
	margin:0;
	margin-right:8px;
	vertical-align: middle;
}
input[type="radio"]:checked + label {
	background: #ff0000;
}
/* チェックボックス */
input[type="checkbox"] {
	height: 16px;
	width: 16px;
	margin:0;
	margin-right:8px;
	vertical-align: middle;
}
input[type="checkbox"]:checked + label {
	background: #ff0000;
}
/* テキスト */
input[type="text"] {
	border-radius: 4px;
	padding: 8px;
	border: 1px solid #ddd;
	outline: none;
	background-color: #fff;
  color: inherit;
  font-family: inherit;
	font-weight:500;
	}
	input[type="text"]:focus{
		border: 1px solid #ccc;
		}
/* セレクトボックス */
select {
	border-radius: 4px;
	padding: 8px;
	border: 1px solid #ddd;
	outline: none;
	background-color: #fff;  
  color: inherit;
  font-family: inherit;
	font-weight:500;
	}
	select:focus{
		border: 1px solid #ccc;
		}
/* テキストエリア */
textarea {
	border-radius: 4px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	resize: none;
	padding: 8px;
	border: 1px solid #ddd;
	outline: none;
	background-color: #fff; 
  color: inherit;
  font-family: inherit;
	font-weight:500;
	height:200px;
	}
	textarea:focus{
		border: 1px solid #ccc;
		}
/* ボタン */
button,
input[type="submit"],
input[type="reset"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	outline: none;
	/*padding: 0;
	background: transparent;*/
}
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  /*border-radius: 0;*/
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}
/* --- ラベル */
.formLabel {
  display: inline-block;
  padding: 8px;
  background-color: #f5f5f5;
  margin-bottom: 8px;
	border-radius: 4px;
}
/* --- ラジオボタン/チェックボックス */
.formRadio,
.formCheck {
  display: none;
	}
	.formRadio+span,
	.formCheck+span {
		cursor: pointer;
		display: inline-block;
		padding: 0 0 0 24px;
		position: relative;
		line-height: 1em;
		}
		.formRadio+span::before,
		.formCheck+span::before {
			-webkit-transform: translateY(-50%);
			background: #fff;
			border:1px solid #ddd;
			content: "";
			left: 0;
			position: absolute;
			top: 50%;
			-ms-transform: translateY(-50%);
			transform: translateY(-50%);
			display: block;
			height: 16px;
			width: 16px;
			}
			.formRadio+span::before {
				border-radius: 50%;
				}
			.formCheck+span::before {
				border-radius: 0px;
				}
		.formRadio+span::after,
		.formCheck+span::after {
			opacity: 0;
			position: absolute;
			top: 50%;
			-webkit-transition: all 0.3s ease 0s;
			-o-transition: all 0.3s ease 0s;
			transition: all 0.3s ease 0s;
			content: "";
			}
		.formRadio:checked+span::after,
		.formCheck:checked+span::after {
			opacity: 1;
			}
			.formRadio+span::after {
				-webkit-transform: translateY(-50%);
				background: rgba(0, 0, 0, 0.5);
				border: 1px solid transparent;
				border-radius: 50%;
				height: 8px;
				left: 4px;
				-ms-transform: translateY(-50%);
				transform: translateY(-50%);
				width: 8px;
				}
			.formCheck+span::after {
				-webkit-transform: translateY(-50%) rotate(-45deg);
				border-bottom: 2px solid rgba(0, 0, 0, 0.5);
				border-left: 2px solid rgba(0, 0, 0, 0.5);
				display: block;
				left: 4px;
				-ms-transform: translateY(-50%) rotate(-45deg);
				transform: translateY(-50%) rotate(-45deg);
				width: 0.8em;
				height: 0.4em;
				margin-top: -2px;
				}
/* --- ボタン */
.formButton {
	border: 0;
  width: 100%;
  max-width: 440px;
  text-align: center;
  margin: 0 auto;
  background-image: none;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 1.8rem;
  padding: 16px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}
.formButton:hover,
.formButton:focus {
  outline: none;
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.formButton::-moz-foucus-inner {
  border: none;
  padding: 0;
}
.formButton--reset {
  background-color: #ccc;
}
.formButton--submit {
	background-color: #ff7d00;
}



