@charset "UTF-8";


/* 
基本ユニット
リード・注釈等
エラーチップ
アクションボタン
入力欄のスタイル
入力欄のサイズ
セレクトボックス装飾
ラジオボタン・チェックボックス装飾
完了画面

カラー設定
*/


/* 基本ユニット --------------------------------------------------- */

/* border色（カラー設定） */
.FormUnitWrap {
margin-bottom: 30px;
border-left: solid 1px #d9d9d9;
border-top: solid 1px #d9d9d9;
}

.FormUnit {
margin-bottom: 30px;
}

.FormUnit dt,
.FormUnit dd {
border-right: solid 1px #d9d9d9;
border-bottom: solid 1px #d9d9d9;
}

/* 項目欄の背景色（カラー設定） */
.FormUnit dt {
background: #f3f3f3;
}

/* レイアウト設定 */
.FormUnit dl {
display: table;
width: 100%;
}

.FormUnit dt,
.FormUnit dd {
display: table-cell;
padding: 15px;
font-size: 14px;
vertical-align: middle;
}

.FormUnit dt {
width: 30%;
font-weight: bold;
}

.FormUnit dd {
width: 70%;
}

/* 必須アイコン */
.FormUnit dt span {
display: block;
position: relative;
}

.FormUnit dt span:before {
position: absolute;
right: 0;
top: 0;
padding: 5px 8px;
font-size: 11px;
line-height: 1.0em;
letter-spacing: 0.15em;
text-align: center;
color: #fff;
background: #cc0000;
content: "必須";
}


/* リード・注釈等  --------------------------------------------------- */

/* リード */
.FormUnit .Lead {
margin-bottom: 40px;
}

.FormUnit .LeadMain {
margin-bottom: 10px;
font-size: 14px;
}

.FormUnit .LeadSub {
}

/* 単位 */
.FormUnit .NoteUnit {
margin-left: 6px;
vertical-align: middle;
}

/* 注釈 */
.FormUnit .NoteUpper {
margin-bottom: 5px;
font-size: 86%;
line-height: 1.5em;
}

.FormUnit .NoteMiddle {
margin-top: 10px;
margin-bottom: 10px;
font-size: 86%;
line-height: 1.5em;
}

.FormUnit .NoteLower {
margin-top: 8px;
font-size: 86%;
line-height: 1.0em;
color: #808080;
}

.FormUnit .NoteSide {
margin-left: 5px;
font-size: 86%;
color: #808080;
}

/* フッターNote  */
.FormUnit .FootNote {
margin-top: 10px;
margin-bottom: 30px;
}

.FormUnit .FootNote li {
font-size: 86%;
line-height: 1.5em;
}


/* エラーチップ（カラー設定）  --------------------------------------------------- */

.FormUnit .ErrTip  {
display: inline-block;
position: relative;
margin-bottom: 20px;
padding: 6px 15px 6px 15px;
line-height: 1.6em !important;
color: #ffffff;
background: #cc0000;
}

.FormUnit .ErrTip:after {
position: absolute;
top: 92%;
left: 12%;
width: 0;
height: 0;
border: 10px solid transparent;
border-top: 10px solid #cc0000;
margin-left: -10px;
content: "";
}


/* アクションボタン  --------------------------------------------------- */

.FormUnit .FormAction {
width: 400px;
margin: 30px auto 0 auto;
text-align: center;
}

.FormUnit .FormAction input {
appearance: none;
-moz-appearance: none;
-webkit-appearance: none;
margin: 0 10px;
border-style: none;
cursor: pointer;
-webkit-transition: all 0.3s ease 0.1s;
transition: all 0.3s ease 0.1s;
}

/*
.FormUnit .FormAction input:hover {
opacity: 0.9;
-webkit-transition: all 0.05s cubic-bezier(.17,.67,.83,.67) 0s;
transition: all 0.05s cubic-bezier(.17,.67,.83,.67) 0s;
}
*/

.FormUnit .FormAction .BtnLeft {
float: left;
}

.FormUnit .FormAction .BtnRight {
float: right;
}

/* ボタン：通常（他のページ、次のページに移動など） */
.FormUnit .FormAction .BtnNext {
width: 240px;
padding: 20px 0;
}

/* ボタン：確定系（送信・申し込み・購入など） */
.FormUnit .FormAction .BtnSend {
width: 240px;
padding: 20px 0;
}

/* ボタン：戻る系 */
.FormUnit .FormAction .BtnBack {
width: 120px;
padding: 12px 40px !important;
border-radius: 24px;
font-size: 15px !important;
line-height: 1.0em;
font-weight: 700 !important;
text-align: center;
text-decoration: none !important;
color: #535353 !important;
background: #f3f3f3;
}


/* 入力欄のスタイル  --------------------------------------------------- */

/*  border色とシャドー（カラー設定） */
.FormUnit input[type=text],
.FormUnit input[type=email],
.FormUnit input[type=tel],
.FormUnit input[type=password],
.FormUnit textarea {
border: 1px solid #bbb;
box-shadow: inset 1px 1px 1px 0px #d5d5d5;
-webkit-transition: all 0.1s cubic-bezier(.17,.67,.83,.67) 0.1s;
transition: all 0.1s cubic-bezier(.17,.67,.83,.67) 0.1s;
}

	/* Disabled用設定 */
	.FormUnit input[type=text][disabled],
	.FormUnit input[type=email][disabled],
	.FormUnit input[type=tel][disabled],
	.FormUnit input[type=password][disabled],
	.FormUnit textarea {
	opacity: 0.3;
	}

.FormUnit input[type=text],
.FormUnit input[type=email],
.FormUnit input[type=tel],
.FormUnit input[type=password],
.FormUnit textarea {
height: 2.4em;
padding: 0 10px;
border-radius: 0;
box-sizing: border-box;
line-height: 2.4em;
vertical-align: middle;
background: #fff;
}

.FormUnit textarea {
padding: 8px;
line-height: 1.4em;
}

.FormUnit input[type=image] {
vertical-align: middle;
}

/* フォーカス時のスタイル（カラー設定）  */
.FormUnit input[type=text]:focus,
.FormUnit textarea:focus {
background: #f7f7f7;
-webkit-transition: all 0.1s cubic-bezier(.17,.67,.83,.67) 0.1s;
transition: all 0.1s cubic-bezier(.17,.67,.83,.67) 0.1s;
}

/* labelの余白 */
.FormUnit label {
margin: 0 20px 0 5px;
}

/* 住所入入力 */
.FormUnit .AddressUnit .EachUnit {
margin-bottom: 20px;
}

.FormUnit .AddressUnit .EachUnit:last-child {
margin-bottom: 0;
}

.FormUnit .AddressUnit label {
display: block;
margin-left: 0;
margin-bottom: 10px;
line-height: 1.0em;
font-weight: bold;
}

.FormUnit .AddressUnit p {
line-height: 1.2em;
}

/* ラジオボタン・セレクトボックス */
.FormUnit .RadioCheckboxUnit p {
margin-bottom: 3px;
}

.FormUnit .RadioCheckboxUnit p:last-child {
margin-bottom: 0;
}


/* 入力欄のサイズ --------------------------------------------------- */

/*
.FormUnit .InputName {
width: 300px;
}

.FormUnit .InputMail {
width: 400px;
}

.FormUnit .InputZipCode {
width: 150px;
}

.InputAddress1 {
}

.FormUnit .InputAddress2,
.FormUnit .InputAddress3 {
width: 400px;
}

.FormUnit .InputTel {
width: 150px;
}

.FormUnit .InputAge {
width: 50px;
}
*/

.FormUnit .InputComment {
width: 500px;
height: 10em;
}


/* セレクトボックス装飾 --------------------------------------------------- */

/* border色（カラー設定） */
.FormUnit select {
border: 1px solid #bbb;
}

.FormUnit select {
height: 2.4em;
appearance: none;
-moz-appearance: none;
-webkit-appearance: none;
padding-left: 10px;
padding-left: 6px\9; /* IE10以下調整 */
padding-right: 40px;
padding-right: 0\9; /* IE10以下調整 */
border-radius: 2px;
box-sizing: border-box;
background: #fff url(/img/common/form/Icon_SelectBox.png) no-repeat center right;
background: #fff\9; /* IE10以下調整 */
background-size: 25px 40px;
}

/* Firefox用調整 */
@-moz-document url-prefix() {
	.FormUnit select {
	padding-left: 6px;	
	}
}

/* IE11用調整 */
@media all and (-ms-high-contrast:none){
	*::-ms-backdrop, .FormUnit select {
	padding-left: 6px;
	padding-right: 0;
	background: #fff;
	}
}

.SelectBoxS select {
height: 2.0em;
font-size: 93%;
}



/* ラジオボタン・チェックボックス装飾 --------------------------------------------------- */

.FormUnit input[type=radio],
.FormUnit input[type=checkbox] {
margin-right: 6px;
-webkit-transition: all 0.1s cubic-bezier(.17,.67,.83,.67) 0.1s;
transition: all 0.1s cubic-bezier(.17,.67,.83,.67) 0.1s;
}

.FormUnit input[type=radio] + label,
.FormUnit input[type=checkbox] + label {
position: relative;
margin-right: 12px;
font-size: 14px;
line-height: 1.7em;
cursor: pointer;
}

@media (min-width: 1px) /* IE8以下対策 */ {

	.FormUnit input[type=radio],
	.FormUnit input[type=checkbox] {
	display: none;
	margin: 0 0 0 -10px;
	}
	
	.FormUnit input[type=radio] + label,
	.FormUnit input[type=checkbox] + label {
	display: inline-block;
	padding: 0 0 0 24px;
	}

		/* Disabled用設定 */
		.FormUnit input[type=radio][disabled] + label,
		.FormUnit input[type=checkbox][disabled] + label {
		cursor: default;
		}
	
	.FormUnit input[type=radio] + label::before,
	.FormUnit input[type=checkbox] + label::before {
	display: block;
	position: absolute;
	top: 11px;
	left: 0;
	width: 18px;
	height: 18px;
	margin-top: -9px;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #fff;
	content: "";
	}

	/* border色とシャドー（カラー設定） */
	.FormUnit input[type=radio] + label::before,
	.FormUnit input[type=checkbox] + label::before {
	border: 1px solid #bbb;
	box-shadow: inset 1px 1px 1px 0px #d5d5d5;
	-webkit-transition: all 0.1s cubic-bezier(.17,.67,.83,.67) 0.1s;
	transition: all 0.1s cubic-bezier(.17,.67,.83,.67) 0.1s;
	}
	
	.FormUnit input[type=radio] + label::before {
	border-radius: 30px;
	}
	
	.FormUnit input[type=checkbox] + label::before {
	border-radius: 2px;
	}

		/* Disabled用設定 */
		.FormUnit input[type=radio][disabled] + label::before,
		.FormUnit input[type=checkbox][disabled] + label::before {
		opacity: 0.3;
		}

	/* 選択時の背景色（カラー設定） */	
	.FormUnit input[type=radio]:checked + label::before,
	.FormUnit input[type=checkbox]:checked + label::before {
	background: #2b849b;
	}

	.FormUnit input[type=radio]:checked + label::before,
	.FormUnit input[type=checkbox]:checked + label::before {
	border: none;
	box-shadow: none;
	}
	
	.FormUnit input[type=radio]:checked + label::after,
	.FormUnit input[type=checkbox]:checked + label::after {
	content: "";
	display: block;
	position: absolute;
	top: 12px;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	}
	
	/* ラジオボタン選択時の中央ドットのサイズ・位置 */
	.FormUnit input[type=radio]:checked + label::after {
	left: 5px;
	width: 8px;
	height: 8px;
	margin-top: -5px;
	border-radius: 8px;
	background: #fff;
	}
	
	/* チェックボックス選択時のチェックマークのサイズ・位置 */
	.FormUnit input[type=checkbox]:checked + label::after {
	left: 4px;
	width: 12px;
	height: 7px;
	margin-top: -6px;
	border-left: 3px solid #fff;
	border-bottom: 3px solid #fff;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	}

}


/* 完了画面 --------------------------------------------------- */

.FormUnit .BtnHome {
text-align: center;
}

/* ボタン：通常（他のページ、次のページに移動など） */
.FormUnit .BtnHome .BtnNext {
width: 240px;
padding: 20px 0;
}


