/* CSS Document */
section#EntryForm {
	width:1000px;
	margin: 1em auto;
	background: rgba(255,255,255,0.9);
	border-radius: 1em;
	padding: 1em;
	box-sizing: border-box;
	line-height: 2;
}

section#EntryForm h1 {
	text-align: center;
	font-size: 2em;
	border-bottom: 2px solid #000;
}

section#EntryForm h2 {
	background-color: rgba(17,17,17,1.00);
	color: #fff;
	text-align: center;
	font-size: 1.6em;
}

section#EntryForm p.back,
section#EntryForm p.text-center {
	text-align: center;
}

main dl dd {
	margin-bottom: 5px;
	padding-left: 1em;
}

main form {
	width:96%;
	margin: 0 auto;
}

main ul {
	margin: 1em 3em;
}
section#Navigator {
	margin-bottom:2em;
}

main small {
	font-size: 0.875em;
}

main dt small {
	font-weight: 400;
}

/* 注意事項確認 */
section#Navigator ol {
	display: flex;
	justify-content: space-between;
	list-style-position: inside;
	align-items: center;
}

section#Navigator ol li {
	display: inline-block;
	padding: 1em 1em;
	background:rgba(34,151,51,1.00);
	color: rgba(255,255,255,1.00);
	border-radius: 0.5em;
	text-align: center;
	position: relative;
	width:calc(100% / 5.5);
}

section#Navigator ol li.select {
	background: rgba(255,194,195,1.00);
	color: #A00;
}

section#Navigator ol li.end {
	background: rgb(150,150,150);
	color: #000;
}

section#Navigator ol li::after {
	content: "▶";
	display: block;
	position: absolute;
	right: -1.25em;
	top:25%;
	color: rgba(34,151,51,1.00);
}

section#Navigator ol li.end::after {
	color: #333;
}

section#Navigator ol li:last-child::after {
	content: "";
}

main article div#Agreement {
	width:98%;
	margin: 1em auto;
	padding: 1em;
	text-align: center;
	border: 1px solid #F00;
	background: rgba(245,222,222,1.00);
	font-size: 1.8rem;
	font-weight: 500;
}

main article div#Agreement label {
	font-size: 2.4rem;
}

main form dl dt em {
	color: #fff;
	background: #F00;
	border-radius: 0.2em;
	display: inline-block;
	font-size: 0.85em;
	padding:0em 0.5em;
	margin: 0 0.5em;
	font-weight: 700;
	font-style: normal;
}

main form dl dt small  {
	margin-left: 0.25em;
}

/* 入力フォーム */
input, button, textarea, select {
	margin: 0;
	padding: 0;
	background:#FFF;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

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

form dt strong {
	color: #f00;
	padding-left: 1em
}

dd strong.date1 {
	font-size: 2rem;
}

dd strong.date1 span {
	padding-right: 1em;
}

h2 {
}

 h3,
 main dl {
	text-align:justify;
	margin:0 auto;
	background:#FFF;
}

 main dl dt {
	clear:left;
	background:#EEE;
	border-bottom:1px dotted #000;
	border-top:1px dotted #000;
	padding:2px 5px;
	margin-top:2px;
	color: #000;
}

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

/*Checkboxes styles*/
main input[type="checkbox"] { display: none; }

main input[type="checkbox"] + label {
  display: inline-block;
  position: relative;
  padding:0 2em;
  margin: 0.25em 0;
  color: #000;
	font-size: 2rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

main input[type="checkbox"] + label:last-child { margin-bottom: 0; }

main input[type="checkbox"] + label:before {
  content: '';
  display: inline-block;
  width: 1.35em;
  height: 1.35em;
  border: 2px solid rgba(69,5,6,1.00);
  position: absolute;
	background: #fff;
  left: 0;
  top: .15em;
  opacity: .6;
  -webkit-transition: all .12s, border-color .08s;
  transition: all .12s, border-color .08s;
}

input[type="checkbox"]:checked + label {
	 color: #d01137;
	font-weight: 600;
}
input[type="checkbox"]:checked + label:before {
  width: 0.85em;
  top: -0.25em;
  left: 5px;
  border-radius: 0;
  opacity: 1;
	background:none;
	border:3px solid #f00;;
	border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

main input#passwordCheck { 
	-moz-appearance: checkbox;
	-webkit-appearance: checkbox;
	appearance:checkbox;
	display: inline;
}


input[type="radio"] { 
	-moz-appearance: checkbox;
	-webkit-appearance: checkbox;
	appearance:checkbox; 
}

input[type="radio"] {
  display: none;
}

input[type="radio"] + label{
	padding:0 1.5em;
	position:relative;
	margin-right: 1.2em;
	display: inline-block;
	font-size:2rem;
	line-height: 2;
}

input[type="radio"] + label::before{
  content: "";
  display: block;
  position: absolute;
  top: 0.5em;
  left: 0.1em;
  width: 1em;
  height: 1em;
  border: 2px solid #aaa;
  border-radius: 50%;
}

input[type="radio"]:checked + label{
  color: #d01137;
	font-weight: 600;}

input[type="radio"]:checked + label::after{
  content: "";
  display: block;
  position: absolute;
  top: 0.63em;
	left: 0.22em;
  width: 0.75em;
  height: 0.75em;
  background: #d01137;
  border-radius: 50%;
}

input[type="radio"]:disabled + label{
  color: #cccccc;
}

input[type="password"],
input[type="text"],
input[type="number"],
input[type="tel"],
input[type="email"],
textarea {
	width:30em;
	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:16px;
	margin: 5px 0;
}

input[type="password"],
input[type="text"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
textarea:focus {
	box-shadow: 0 0 7px #e56c69;
	border: 1px solid #e56c69;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
    -moz-appearance:textfield;
}

input[type="checkbox"].sameaddress + label + dl#Applicate1_Address {
	display: none;
}

input[type="checkbox"].sameaddress:checked + label + dl#Applicate1_Address {
	display: block;
}

div#Applicant2 input[type="checkbox"].sameaddress:checked + label + dl#Applicate2_Address {
	display: none;
}

div#Applicant3 input[type="checkbox"].sameaddress:checked + label + dl#Applicate3_Address {
	display: none;
}

select.num ,
input.num {
	width:4em;
}

input.name {
	width:6em;
}

 input#no {
	width:8em;
}

 ul#zip li ,
 ul#tel li {
	float:left;
	
}

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

 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;
}

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

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

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

 select {
	font-size:1.6rem;
	padding:2px 10px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid #999;
	background: #eee;
	background: -webkit-linear-gradient(top, #fff 0%,#fcc 100%);
	background: linear-gradient(to bottom, #fff 0%,#fcc 100%);
}

select::-ms-expand {
  display: none;
}

 ul li em {
	color:#F00;
}

dd span {
	margin-right: 1em;
}

dd.select span {
	margin-right: 0;
}

dd.select span::after {
	content: "";
}

dd.select label {
	margin-right: 1em;
}
	
 input[type="button"] {
	font-size:2rem;
	width: auto;
	padding:2px 10px;
	margin:0px auto;
	text-align:center;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius:3px;
	background:rgba(204,53,55,1.00);
	color:#FFF;
	cursor:pointer;
}

input[type="submit"] {
	font-size:2.4rem;
	width: 50%;
	padding:2px 10px;
	margin:10px auto;
	text-align:center;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius:3px;
	background:rgba(204,53,55,1.00);
	color:#FFF;
	cursor:pointer;
}

 input[type="submit"]:hover {
	 background:rgba(248,182,183,1.00);
	 color: rgba(204,53,55,1.00);
	 transition: 0.3s;
}

 button.submit {
	font-size:2.4rem;
	width: 50%;
	padding:2px 10px;
	margin:10px auto;
	text-align:center;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius:3px;
	background:#e56c69;
	color:#FFF;
	cursor:pointer;
}

 textarea {
	width:98%;
	height:10em;
}

.postcard {
	float: right;
}

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

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

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


@media only screen and (max-width : 999px){
	section#EntryForm {
		width:96%;
	}
	/* 注意事項確認 */
	section#Navigator ol {
		display: inherit;
	}

	section#Navigator ol li {
		display: none;
	}

	section#Navigator ol li::after {
		content: none;
	}
	
	main article ol.attention {
		width:80%;
		margin: 0 auto;
	}

	main article div#Agreement {
		width:auto;
		margin: 0;
	}

	#FormBox {
		width:99%;
		margin:0 auto;
	}
	
	fieldset {
		width:100%;
		margin: 0;
		padding: 0;
	}
	main h3 {
		padding: 3px;
	}
	main dl dt {
		padding: 3px;
	}
	dl dd {
		margin:5px 0 ;
		min-height: 27px;
	}
	dd.select span {
		display: block;
		margin-right: 0;
	}

	dd.select span::after {
		content: "";
	}

	dd.select label {
		display: block;
		margin-right: 0em;
	}
	
	dd.select label select {
		width:100%;
	}

	 input[type="password"],
	 input[type="text"],
	 input[type="number"],
	 input[type="tel"],
	 input[type="email"],
	 textarea {
		width:96%;
	}
	
	div.formnote img {
		width:99%;
		height: auto;
	}
	.attention {
		text-align:justify;
		padding:10px;
		margin:1em 1em;
	}
	div#form {
		padding:0px;
	}

	input[type="submit"] ,
	button.submit {
		width:90%;
		font-size: 2rem;
	}
	dd.address span {
		display: block;
	}

	input.num {
		width:4em;
	}

	input.name {
		width:5em;
	}
	
	input[type="checkbox"].date + label {
		width:35%;
		float: left;
		display: block;
		padding-left:2em ; 
		padding-right: 0
	}
	h2 {
		clear: both;
	}
		
	main article ol.attention {
		width:96%;
		margin: 0 auto;
	}

	main ul {
		margin: 1em;
	}
	main dt strong {
		font-size: 1.6rem;
		font-weight: 700;
	}

}

