@charset  "utf-8";

/* --------------------------------------------------------------
  formbox
 -------------------------------------------------------------- */
.formbox .field,
.formbox .fields{
	width: 550px;
	margin:0 auto 20px;
	padding: 20px 15px;
}

.formbox .field.no-border{
	border-bottom: none;
}


.formbox table{
	width: 100%;
}

.formbox tr{
	display: block;
	width: 770px;
	margin: -1px auto 0;
	border: 1px solid #b0b0b0;
}

.formbox th,
.formbox td {
	text-align: left;
}

.formbox th{
	margin-bottom: 15px;
	background-color: #ddd;
	padding: 10px;
	font-size: 16px;
	width: 180px;
	text-align: center;
	line-height: 1;
}
/* ------ 入力欄 共通スタイル ------ */

.formbox input{
	font-size: 16px;
}

.formbox input[type="text"],
.formbox input[type="number"],
.formbox input[type="tel"],
.formbox input[type="email"],
.formbox select,
.formbox textarea{
	font-size: 16px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	padding: 5px;
	border: 1px solid #CCC;
	-webkit-border-radius: 2px;
	        border-radius: 2px;
	vertical-align: middle;
	line-height: 1.2;
}

/* ------ セレクトボックス スタイル ------ */
.formbox select{
	background-image: url('/common/images/form_selectbox_arrow.png');
	background-image: none\9; /* IE8 */
	background-position: center right 5px;
	background-repeat: no-repeat;
}

/* ------ テキストエリア スタイル ------ */

.formbox textarea{
	resize: vertical;
}

/* ------ テキストボックスサイズ ------ */

.formbox .w100p{
	width: 100%;
}

.formbox .small{
	width: 50%;
}

.formbox .xsmall{
	width: 30%;
}

.formbox .xxsmall{
	width: 20%;
}

.formbox .s_6em{
	width: 7em;
}

.formbox .s_4em{
	width: 5em;
}

.formbox .s_2em{
	width: 3em;
}

/* ------ アンダーライン ------ */
.underline {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

/* ------ 入力欄の前後にマージン ------ */
.formbox .fieldMargin input[type="text"],
.formbox .fieldMargin input[type="number"],
.formbox .fieldMargin input[type="tel"],
.formbox .fieldMargin input[type="email"],
.formbox .fieldMargin select{
	margin: 0 5px;
}

/* ------ li要素 並列 ------ */

.formbox .parallel li{
	display: inline-block;
}

/* ------ 必須アイコン ------ */

.formbox .reqIcon{
	margin-left: 5px;
	padding: 0 5px;
	color: #FFF;
	font-weight: bold;
	font-size: 12px;
	background-color: red;
}

/* ------ 必須 入力欄 ------ */
.formbox .required_ng{
	background-color: #ffebeb;
}

.formbox .required_ok{
	background-color: #fff;
}

/* ------ .attention ------ */

.attention{
	background-color: #eee;
	margin: 20px 0;
	padding: 30px 40px;
}

.attention h2{
	border-bottom: 1px solid #fff;
	font-size: 25px; 
	font-weight: bold;
	padding: 0 15px;
	margin-bottom: 10px;
}

.attention p{
	margin: 0 15px;
}

/* ------ 文字強調 ------ */
.formbox .red{
	color: red;
	font-size: 13px;
	font-weight: normal;
}

/* --------------------------------------------------------------
  確認ボタン
 -------------------------------------------------------------- */

.formbox .btnbox {
	text-align: center;
	margin: 20px 0;
}
.formbox .submit_btn,
.formbox .correction_btn {
	display:inline-block;
	vertical-align: middle;
	height: 2.6em;
	width: 300px;
	color: #fff;
	font-family: "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
	font-size: 25px;
	letter-spacing: .1em;
	border-style: none;
	background-color: #00345b;
}

.formbox .submit_btn:hover{
	opacity: .7;
	  filter: alpha(opacity=70);
	  -ms-filter: "alpha(opacity=70)";
	  -webkit-transition: 0.1s ease-in-out;
	  -moz-transition: 0.1s ease-in-out;
	  -o-transition: 0.1s ease-in-out;
	  transition: 0.1s ease-in-out;
	  cursor:pointer;
}


.formbox .correction_btn {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	padding: 12px;
}

.confirmbutton a:first-child{
	margin-right:2%;
}

/* --------------------------------------------------------------
  同意箇所
 -------------------------------------------------------------- */
.agree_box {
	margin-top: 50px;
}
.agree_box textarea{
	width: 100%;
	height: 130px;
}

.agree_box .okBtn{
	text-align: center;
	margin-top: 18px;
}
.agree_box .okBtn p{
	display: inline-block;
	font-weight: 700;
	font-size: 18px;
}
.agree_box .okBtn input{
	cursor: pointer;
}
.agree_box .okBtn label{
	cursor: pointer;
	padding: 10px;
	display: inline-block;
	vertical-align: middle;
}

/* --------------------------------------------------------------
  完了画面
 -------------------------------------------------------------- */
.finishbox{
	text-align: center;
	padding: 50px 30px;
}

.finishbox h2{
	font-size: 25px;
	margin-bottom: 30px;
	color: #00A0E9;
}

.finishbox p{margin-bottom: 30px;}

.finishbox a{
	color: #00A0E9;
	text-decoration: underline;
}