h1{
	background:url(../images/title.gif) left top no-repeat;
}


/* ■ メールフォーム
----------------------------------------------- */

.formStyle dt {
	margin-top: 32px;
	font-weight: bold;
}

.formStyle dd {
	margin: 4px 0 0 0;
}

/* 基本スタイル */
.formStyle input,
.formStyle select,
.formStyle textarea {
	font-size: 16px;
	appearance: none;
    -webkit-appearance: none;
	-moz-appearance: none;
	border-radius: 4px;
	box-sizing: border-box;
}
.formStyle input {
	border: 1px solid #ccc;
}
.formStyle select,
.formStyle textarea {
	box-shadow: 0 0 0 1px #ccc inset;
}

/* テキスト入力 */
.formStyle .formText {
    width: 100%;
    padding: 10px;
	box-sizing: border-box;
}
.formStyle .inputS { width: 180px; }
.formStyle .inputM { width: 280px; }
.formStyle .formText:focus {
    outline: 0;
    box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}

/* セレクトボックスグループ（年月日） */
.formStyle .selectGroup {
	display: flex;
	align-items: center;
}
.formStyle .selectGroup >* {
	margin-right: 8px;
}

.formStyle .formSelect {
    position: relative;
}

.formStyle .formSelect select {
    height: 2.4em;
    width: 200px;
    padding: 0 8px;
    border: none;
    cursor: pointer;
}
.formStyle .formSelect select.selectS { width: 80px; }

.formStyle .formSelect:before {
    content: "";
    position: absolute;
	z-index: 2;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 12px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    transform: rotate(135deg);
    pointer-events: none;
}
.formStyle .formSelect select::-ms-expand { display: none; }
.formStyle .formSelect select:focus {
    outline: 0;
    box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}


/* テキストボックス */
.formStyle .formTextarea {
    display: block;
    width: 100%;
	height: 120px;
    padding: 10px;
    border: none;
    resize: none;
}

.formStyle .formTextarea:focus {
    outline: 0;
    box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}


/* 送信ボタン */
.formSubmit {
    display: block;
    width: 60%;
	margin: 30px auto 50px;
    padding: 8px;
	font-size: 16px;
    border: none;
    border-radius: 4px;
    background-color: #990002;
    color: #fff;
    font-weight: bold;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    border: 2px solid transparent;
}

.formSubmit:hover {
    background-color: #343434;
}

.formSubmit:focus {
    outline: 0;
    background-color: #343434;
    border: 2px solid rgb(33, 150, 243);
}


/* 文字スタイル */
.formStyle .required {
	display: inline-block;
	margin-left: 10px;
	padding: 2px 4px;
	font-size: 12px;
	line-height: 1.4;
	font-weight: normal;
	color: #FFF;
	background-color:#FF0000;
}

.formStyle .exText {
	display: block;
	margin-top: 4px;
	font-size: 14px;
	color: #666;
}

.formStyle .notes {
	display: inline-block;
	margin-top: 4px;
	font-size: 12px;
	font-weight: normal;
}

.formStyle .txtRed {
    color: #FF0000;
}


.is-error-box {
	margin: 4px 0 0;
}
.is-error {
	color: #FF0000;
}
input.is-error,
select.is-error {
	color: #000;
	background-color: #ffe1e1;
}



.formSend strong,
.formError strong {
	display: block;
	font-size: 18px;
	margin-bottom: 20px;
	font-weight: bold;
}
.formSend strong { color: #05913c; }
.formError strong { color: #FF0000; }