
form dl{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
/* ボタンだけに指定する場合は以下 */
input[type="button"],input[type="submit"]{
    -webkit-appearance: none;
}
input[type="date"]{
    padding-right: 20px;
}
form dl{
	display: flex;
	width: 80%;
	margin: 30px auto;
}
form dt{
	width: 35%;
	line-height: 40px;
}
form dd {
	width: 65%;
	position: relative;
}
form dd label{
	margin-left: 1rem;
}
form input,form select,form textarea{
	padding: 10px 15px;
	border-radius: 5px;
	border:1px solid #aaa;

}
form input[type="text"]{
	width: 70%;
}
form textarea {
	width: 100%;
	height: 7rem;
}
form .btn{

    background-color: #ffccde;
    text-align: center;
    border-radius: 10px;
    position: relative;
	border: none;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1;
	letter-spacing: 0.3rem;
	padding: 20px 30px;
    margin: 15px;
	cursor: pointer;
}
form .btn:hover{
    background-color: #e29cb5;
}
form .btn2{

    background-color: #cacaca;
    text-align: center;
    border-radius: 10px;
    position: relative;
	border: none;
    display: block;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1;
	letter-spacing: 0.3rem;
	padding: 20px 30px;
    margin: 15px;
	cursor: pointer;
}
form .btn2:hover{
    background-color: #7eacc2;
}
.requid::after {
	background-color: rgb(139, 0, 65);
	color: white;
	content: "必 須";
	border-radius: 15px;

	font-size: 10px;
	padding: 5px 10px;
	margin-left: 10px;
}
.flex {
    display: flex;
    justify-content: space-around;
}
.error {
	color:red;
	font-weight: bold;
	font-size: 11px;
	margin-left: 15px;
	display: inline-block;
	border: 1px solid red;
	border-radius: 5px;
	padding: 3px 6px;

}
@media (max-width:960px){
	form dl {
		display: block;
		width: 90%;
		margin: 30px auto;
	}
	form dt {
		width: 100%;

	}
	form dd {
		width: 100%;
		position: relative;
		margin: 0;
	}
	form textarea {
		width: 90%;
		margin: 0 auto;
	}

}