/* CSS Document */
input, button, textarea, select {
	margin: 0;
	padding: 0;
	background:#FFF;
	border: none;
	border-radius: 0;
}

fieldset {
	border:none;
	margin: 0 auto;
}

.formnote {
	width:95%;
	margin: 10px auto;
	padding: 10px 0;
}

#Form {
	box-sizing: border-box;
	text-align: justify;
}

#Form div#confirm {
	border-top:none;
}

#Form em {
	color:#F00;
}

legend {
	font-size:1.5rem; 
}

#Form dl {
	text-align:justify;
	margin:0 auto;
}

#Form dl dt {
	clear:right;
	width:15%;
	padding:6px 5px;
	float: left;
	box-sizing: border-box;
	margin-top: 10px;
	min-height: 3em;
}

#Form dl dd {
	padding:5px;
	float: right;
	width:80%;
	margin-top: 10px;
	box-sizing: border-box;
	min-height: 3em;
}

#Form dl dt span {
	font-size: 1.4rem;
	color: #666; 
}

#Form dl dd input[type="text"],
#Form dl dd input[type="number"],
#Form dl dd input[type="tel"],
#Form dl dd input[type="email"],
#Form dl dd textarea {
	width:80%;
	padding:3px 6px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	outline: none;
	border: 1px solid #aaa;
	-webkit-transition: all .3s;
	transition: all .3s;
	font-size:1.6rem;
}


#Form dl dd input[type="text"]:focus,
#Form dl dd input[type="number"]:focus,
#Form dl dd input[type="tel"]:focus,
#Form dl dd input[type="email"]:focus,
#Form dl dd textarea:focus {
	box-shadow: 0 0 7px #4E98FF;
	border: 1px solid #4E98FF;
}

#Form dl dd input#no {
	width:8em;
}

#Form dl dd input.addr {
	width:80%;
}

#Form dl dd ul#zip  ,
#Form dl dd ul#tel  {
	margin: 0	
}
#Form dl dd ul#zip li ,
#Form dl dd ul#tel li {
	float:left;
	
}

#Form dl dd ul#zip li::before ,
#Form dl dd ul#tel li::before {
	content:"-";
}
	
#Form dl dd ul#zip li.zipadd::before, 
#Form dl dd ul#zip li:first-child::before ,
#Form dl dd ul#tel li:first-child::before {
	content:"";
}

#Form dl dd ul#zip li.zipadd input  {
	font-size:14px;
	width: 6em;
	padding:2px 10px;
	margin-left:1em;
	text-align:center;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius:3px;
	background:#e56c69;
	color:#FFF;
	cursor:pointer;
}

#Form dl dd ul#zip li input ,
#Form dl dd ul#tel li input {
	width:4em;
}

#Form dl dd ul#campaign li ,
#Form dl dd ul#present li {
	margin:5px;
}

#Form dl dd ul.note li {
	font-size:1.4rem;
	text-indent:-1em;
	margin-left:1em;
}

#Form dl dd select {
	font-size:1.4rem;
	width: 8em;
	padding:2px 10px;
}

#Form dl dd ul li em {
	color:#F00;
}
	
#Form input[type="submit"] {
	font-size:1.8rem;
	width: 50%;
	padding:10px;
	margin:10px auto;
	text-align:center;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius:1em;
	background:#000;
	color:#FFF;
	cursor:pointer;
}

#Form button.submit {
	font-size:1.8rem;
	width: 50%;
	padding:10px;
	margin:10px auto;
	text-align:center;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius:1em;
	background:#000;
	color:#FFF;
	cursor:pointer;
}

#Form dl dd textarea {
	width:98%;
	height:10em;
}

.postcard {
	float: right;
}

.attention {
	text-align:justify;
	padding:10px;
	margin:1em 5em;
}

.center ,
.textcenter {
	text-align: center;
}

main p.top a {
	color: #ffffff;
}

main p a.entrybtn {
	font-size: 2.4rem;
	padding: 15px;
	display: block;
	width:50%;
	margin: 10px auto;
	box-sizing: border-box;
	background: #f9cb4d; /* Old browsers */
	background: -moz-linear-gradient(top,  #f9cb4d 0%, #fff7a0 32%, #ffe97c 60%, #e5c004 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  #f9cb4d 0%,#fff7a0 32%,#ffe97c 60%,#e5c004 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  #f9cb4d 0%,#fff7a0 32%,#ffe97c 60%,#e5c004 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9cb4d', endColorstr='#e5c004',GradientType=0 ); /* IE6-9 */
	color: #5F2900;
	border: 1px solid #5F2900;
	text-decoration: none;
	border-radius: 1em;
	font-weight: bold;
}

main p a.entrybtn:hover {
	background:#F9C284;
	color:#5F2900;
	border: 1px solid #5F2900;
	transition: 0.3s;
}
@media only screen and (max-width : 959px){
	#Form{
		width:99%;
		margin:0 auto;
	}
	#Form h3,
	#Form dl dt {
		width:100%;
		float: none;
		padding: 0;
		min-height: 1em;
	}

		#Form dl dt br {
			display: none;
	}

	#Form dl dd {
		margin: 0;
		float: none;
		margin-left: 1em;
		width: 99%;
	}
	
	#Form dl dd input[type="text"],
	#Form dl dd input[type="number"],
	#Form dl dd input[type="tel"],
	#Form dl dd input[type="email"],
	#Form dl dd textarea {
		width:90%;;
	}
	div.formnote img {
		width:99%;
		height: auto;
	}
	.attention {
		text-align:justify;
		padding:10px;
		margin:1em 1em;
	}

}

