﻿@charset "utf-8";

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: none;
  appearance: none;
  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;
}
/******************** form ********************/
input, textarea {
	padding: 5px 5px;
    margin: 5px 0;
    width: 90%;
}
select {
	padding: 8px 10px;
    margin: 5px 0;
    font-size: 18px;
    width: 90%;
}
input[type="submit"] {
	width: 100%!important;
	line-height: 60px;
	font-size: 20px;
	background: #d5003c;
	color: #fff;
	border: none;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: 1px 1px 3px #999;
	-moz-box-shadow: 1px 1px 3px #999;
	box-shadow: 1px 1px 3px #999;
    margin-top: 20px;
}
/********************/
dl.form {
	text-align: left;
    margin: 0 10px;
}
.form dt {
    color: #000;
    font-weight: normal;
    margin: 0;
}
.form dd {
    margin: 0 0 10px 10px;
}
.form input.zipcode {
	width: 7em!important;
}
.form .comment {
    font-size: 12px;
    color: #666;
    margin-left: 5px;
}
.required {
	background: #c00;
	color: #fff;
	font-size: 11px;
	text-align: center;
	line-height: 16px;
	width: 36px;
	display: inline-block;
	margin-left: 5px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
/******************** contact ********************/
.contact .explanation {
    font-size: 14px;
    margin: 10px 0 0;
    background: #eee;
    padding: 10px;
    text-align: left;
}
#tel_button {
    margin: 20px 15px;
}
button {
	width: 100%;
	font-size: 13px;
    padding: 10px 0;
	background: #00aad5;
	color: #fff;
	border: none;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: 1px 1px 3px #999;
	-moz-box-shadow: 1px 1px 3px #999;
	box-shadow: 1px 1px 3px #999;
}
button .tel {
    font-size: 24px;
    font-weight: bold;
    display: block;
    line-height: 30px;
}

.done {
    text-align: left;
    margin: 0 10px;
}




