﻿@charset "utf-8";

.setBlock{
	margin-bottom:10px;
}
#passLabel{
	font-size:13px;
	position:relative;
	top:-5px;
	line-height:1em;
}
/* ラジオボタン
======================================= */
input[type="radio"] {
    -webkit-appearance:none;
    position:relative;
    margin-right:5px;
    border-radius:14px;
	-webkit-border-radius:14px;  
	-moz-border-radius:14px;
	
    border:2px solid #29ABE2;
    -webkit-box-sizing border-box;
    width:28px;
    height:28px;
    vertical-align:middle;
}
/* チェック時は背景色を変更 */
input[type="radio"]:checked {
	background-color:#fff;
}
/* チェックの印を:before疑似要素を使って作成 */
input[type="radio"]:checked:before {
    position:absolute;
    left:50%;
    top:50%;
    display:block;
    margin:-5px 0 0 -5px;
    content:"";
    border-radius:5px;
	-webkit-border-radius:5px;  
	-moz-border-radius:5px;
    width:10px;
    height:10px;
	background-color:#29ABE2;
}


/* チェックボックス
======================================= */
input[type=checkbox]{
    -webkit-appearance:none;
    position:relative;
	left:-4px;
    margin-right:5px;
    border:solid 1px #362102;
    -webkit-box-sizing border-box;
    width:28px;
    height:28px;
}
/* チェック時は背景色を変更 */
input[type="checkbox"]:checked {
	background-color:#fff;

}
/* チェックの印を:before疑似要素と:after疑似要素を使って作成 */
input[type="checkbox"]:checked:before {
    position:absolute;
    left:1px;
    top:17px;
    display:block;
    content: "";
    width:10px;
    height:4px;
    background:#29ABE2;
    -webkit-transform:rotate(45deg);
    -webkit-transform-origin: right center;
}

input[type="checkbox"]:checked:after {
    display:block;
    position:absolute;
    left:9px;
    top:17px;
    content: "";
    width:19px;
    height:4px;
    background:#29ABE2;
    -webkit-transform:rotate(-53deg);
    -webkit-transform-origin:left center;
}



/* インプットエリア
======================================= */
input[type=text],input[type=email],input[type=tel],input[type=password]{
	width:100%;
	box-sizing:border-box;
	padding:7px 7px;	
	font-size:16px;
	border:solid 1px #362102;
	-webkit-appearance:none;

    border-radius:0px;
	-webkit-border-radius:0px;  
	-moz-border-radius:0px;
}
/* セレクト
======================================= */
/*
select{
	color:#323232;
	width:97%;
	padding:5px 3px;	
	font-size:16px;
	border:solid 2px #29ABE2;
	-webkit-appearance:none;
    border-radius:0px;
	-webkit-border-radius:0px;  
	-moz-border-radius:0px;
}
*/

/* テキストエリア
======================================= */
textarea{
	width:100%;
	box-sizing:border-box;
	padding:7px 7px;	
	font-size:16px;
	border:solid 1px #362102;
	resize: none;
	-webkit-appearance:none;

    border-radius:0px;
	-webkit-border-radius:0px;  
	-moz-border-radius:0px;
}

/* サブミットボタン
======================================= */
#form_submit{
	position:absolute;
	left:-9999px;
}
.btnBlue{
	background-color:#29ABE2;
	color:#fff;
	margin:15px auto 15px  auto;
	padding:10px;
	font-size:16px;
	text-align:center;
	border-bottom:solid 2px #00558D;
}

#form_top{
	position:absolute;
	left:-9999px;
}


/* 戻るボタン（リセット）
================================================== */	
section#contents #base_reset_btn{
	text-align:center;
	width:94.5%;
	margin:10px auto 0px auto;
	background-color:#E6E6E6;
	border:solid 2px #ccc;
	height:34px;
	font-weight:bold;
	font-size:14px;
	line-height:34px;
	
	border-radius: 6px;
	-webkit-border-radius: 6px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 6px;   /* Firefox用 */ 
}
section#contents #base_reset_btn img{
	position:relative;
	top:4px;
}

/* 編集画面（画像変更周り）
================================================== */	
.fileList{
	border-collapse: collapse;
}
.fileList td,.fileList th{
	border:solid 1px #ccc;
	border-collapse: collapse;
	padding:3px;
}
.fileList td input[type=checkbox]:first-child {
	position:relative;
	left:0px;
}
.fileList th{
	color:#fff;
	background-color:#4D80A1;
}
.fileChange{
	background-color:#29ABE2;
	color:#fff;
	display:block;
	padding:7px;
	background-image:url(../image/nav/change_file.png);
	background-repeat:no-repeat;
	background-repeat:no-repeat;
	background-position:center center;
	-webkit-background-size: 57px 27px;
	border-bottom:solid 2px #00558D;
}

#file_01,#file_02,#file_03,#file_04{
	display:none;
}

#mask_file_01,#mask_file_02,#mask_file_03,#mask_file_04{
	display:none;
}



.file_mask span{
/*	display:block;
	background-image:url(images/btn_upload.png);
	background-position:left top;
	height:81px;
	width:354px;
	cursor:pointer;
*/
	background-color:#29ABE2;
	color:#fff;
	display:block;
	padding:0px 17px 0px 27px;
	background-image:url(../image/nav/change_file.png);
	background-repeat:no-repeat;
	background-repeat:no-repeat;
	background-position:center center;
	-webkit-background-size: 57px 27px;
	border-bottom:solid 2px #00558D;
	height:40px;
}
.file_mask span:hover{
//	background-position:left bottom;
}

