/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
	outline-offset: -2px;
}
/* ⬆︎ iOSでのデフォルトスタイルをリセット ⬆︎ */

* {
    box-sizing: border-box;
}
html {
	font-size: 62.5%;
}
body {
	background-color: #eee;
    font-size: 1.6rem;   
}
.clearfix::before {
	content: ''; 
	display: block;
	clear: both;
}
#formWrap {
    background-color: #fff;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    color: #555;
    line-height: 120%;
    max-width: 640px;
    margin: 0 auto;
    padding: 0 20px;
}
#formWrap h1 img {
    margin: 30px 0;
    width:40%;
}
#formWrap h2 img {
	width: 100%;
}
#formWrap input {
    font-size: 1.8rem;
}
#formWrap .serial_number_box dt {
    font-size: 2.0rem;
    text-align: center;
    line-height: 1.4;
}
dl.formTable .serial_number_box dd input {
    font-size: 1.8rem;
}
dl.formTable{
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
}
dl.formTable dt{
    width: 100%;
    font-weight: normal;
    text-align: left;
    margin: 20px 0 0 ;
}
dl.formTable dd {
    margin: 0;
}
dl.formTable input[type="text"] {
	font-size: 1.8rem;
    border: 1px solid #333;
    border-radius: 0;
	padding: 4px;
    width: 100%;	    
}
table.products th {
    width: 24%;
}
table.products th img {
	width: 100%;
}
table.products td.radio_button {
	width: 10px;
	padding-right: 6px;
}
table.products td {
	vertical-align: middle;
}
#formWrap select {
    width: 100%;
	font-size: 1.8rem;
	padding: 8px;
}
#formWrap .radio {
    padding-left: 30px;
}
.user_voice_dt {
	margin-bottom: 10px !important;
    line-height: 1.2;
}
.user_voice_dd input:not(:first-child) {
	margin-left: 20px;
}
.button {
	background-color: #ddd;
}
.button_showly {
    margin: 40px 0;
    font-size: 2.0rem;
    background-color: #07390C;
    color: #fff;
    width: 80%;
    height: 50px;
}
#footer {
    background-color: #fff;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-top: 2px solid #07390C;
	text-align: center;
	margin: 0 auto;
	padding-bottom: 40px;
    max-width: 640px;
}
#footer .copyright {
    font-size: 1.6rem;
    color: #999;
    margin-top: 14px;
}
p.error_messe{
	margin:5px 0;
	color:red;
}

dl.formTable textarea {
    font-size: 1.8rem;
    border: 1px solid #333;
    border-radius: 0;
    padding: 4px;
    width: 100%;
}