@charset "UTF-8";

input,
textarea,
select {
	font-size: 100%;
	line-height: 1.6;
	outline: none;
}

input[type="text"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="email"],
input[type="search"] {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 50px;
	padding: 5px;
	border-radius: 5px;
	border: 2px solid #CCCCCC;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

textarea {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 100px;
	padding: 5px;
	border-radius: 5px;
	border: 2px solid #CCCCCC;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

select {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 50px;
	padding: 5px;
	border-radius: 5px;
	border: 2px solid #CCCCCC;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background: #b3b3b3;
	background: url(../img/form-img/arrow-select.png) no-repeat right center,
					  -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#b3b3b3)); /* Chrome,Safari4+ */
	background: url(../img/form-img/arrow-select.png) no-repeat right center,
					  -webkit-linear-gradient(top,  #ffffff 0%,#b3b3b3 100%); /* Chrome10+,Safari5.1+ */
	background: url(../img/form-img/arrow-select.png) no-repeat right center,
					  linear-gradient(to bottom,  #ffffff 0%,#b3b3b3 100%); /* W3C */
	background-size: 35px 50px;
}

input[type="button"],
input[type="submit"] {
	-webkit-appearance: none;
	appearance: none;
	font-size: 110%;
	font-weight: bold;
	width: 100%;
	height: 50px;
	border-radius: 5px;
	border: 2px solid #CCCCCC;
	background: #b3b3b3;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#b3b3b3)); /* Chrome,Safari4+ */
	background:-webkit-linear-gradient(top,  #ffffff 0%,#b3b3b3 100%); /* Chrome10+,Safari5.1+ */
	background:linear-gradient(to bottom,  #ffffff 0%,#b3b3b3 100%); /* W3C */
}

/* ラジオボタン（2択） */
ul.radios {
	line-height: 1.6;
    display: inline-block;
    margin: 0;
    padding: 0;
    clear: both;
}
ul.radios li {
    display: inline-block;
    position: relative;
    float: left;
    list-style: none;
    border: solid 1px #CCCCCC;
    border-right: none;
    overflow: hidden;
}
ul.radios li:first-child {
    border-radius: 5px 0 0 5px;
}
ul.radios li:last-child {
    border-right: solid 1px #CCCCCC;
    border-radius: 0 5px 5px 0;
}
ul.radios label {
    display: block;
    min-width: 3em;
    text-align: center;
    background: #b3b3b3;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#b3b3b3)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ffffff 0%,#b3b3b3 100%); /* Chrome10+,Safari5.1+ */
	background: linear-gradient(to bottom,  #ffffff 0%,#b3b3b3 100%); /* W3C */
    border: solid 1px #CCCCCC;
    padding: 10px;
}
ul.radios li:first-child label {
    border-radius: 4px 0 0 4px;
}
ul.radios li:last-child label {
    border-radius: 0 4px 4px 0;
}
ul.radios input[type=radio] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
}
ul.radios input[type=radio]:checked {
    cursor: auto;
}
ul.radios input[type=radio]:checked + label {
    color: #ffffff;
	background: #666666;
    background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#b3b3b3), color-stop(100%,#666666)); /* Chrome,Safari4+ */
	background:-webkit-linear-gradient(top,  #b3b3b3 0%,#666666 100%); /* Chrome10+,Safari5.1+ */
	background:linear-gradient(to bottom,  #b3b3b3 0%,#666666 100%); /* W3C */
}

/* ラジオボタンとチェックボックス（3択以上） */
.radio-check-list fieldset {
	line-height: 1.6;
    border: none;
}
.radio-check-list legend {
	font-weight: bold;
    padding: 5px 5px 0;
}
.radio-check-list ul {
    list-style: none;
    padding: 0;
    background: #FFFFFF;
    border-radius: 5px;
    border: 2px solid #CCCCCC;
	margin: 0 auto 25px;
}
.radio-check-list ul li {
    padding: 0;
    margin: 0;
    position: relative;
}
.radio-check-list input {
    position: absolute;
    top: -5px;
    width: 100%;
}
.radio-check-list input[type="radio"] {
    opacity : 0;  
    width: 100%;  
    height: 100%;  
    padding: 0;  
}
.radio-check-list input[type="radio"] + label {
    display: block;
    background: url(../img/form-img/radio-off.png) no-repeat 98% center;
    background-size: 35px;
    border-bottom: 1px dotted #CCCCCC;
    padding: 10px 20px 10px 10px;
    text-decoration: none;
}
.radio-check-list input[type="radio"]:checked + label {
    background: url(../img/form-img/radio-on.png) no-repeat 98% center;
    background-size: 35px;
}
.radio-check-list input[type="checkbox"] {
    opacity : 0;  
    width: 100%;  
    height: 100%;  
    padding: 0;  
}
.radio-check-list input[type="checkbox"] + label {
    display: block;
    background: url(../img/form-img/check-off.png) no-repeat 98% center;
    background-size: 35px;
    border-bottom: 1px dotted #CCCCCC;
    padding: 10px 20px 10px 10px;
    text-decoration: none;
}
.radio-check-list input[type="checkbox"]:checked + label {
    background: url(../img/form-img/check-on.png) no-repeat 98% center;
    background-size: 35px;
}
.radio-check-list li:last-child label {
    border-bottom:none;
}


/* ラジオボタンとチェックボックス2 */
.radio-check-style label {
	display: block;
	width: 50%;
	padding: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	float: left;
}
.radio-check-style input[type="radio"],
.radio-check-style input[type="checkbox"] {
    -webkit-transform-origin: center center;
	transform-origin: center center;
    -webkit-transform: scale( 2 , 2 );
	transform: scale(2 , 2);
}