@charset "utf-8";

/* -- form, dl, dt, dd -------------------------------------------------------------------------------- */

.thanks {
	/* max-width: 400px; */
	/* margin: 0 3%; */
	margin: auto;
	background: #ffffff;
	/* border: 1px solid #cccccc; */
	border-radius: 7px;
	line-height: 1.8;
	padding-bottom: 20px;
}
.thanks h4 {
	padding: 16px;
}

form * {
	/* margin: 0;
	padding: 0; */
	box-sizing: content-box;
}

form {
	/* max-width: 400px; */
	/* margin: 0 3%; */
	margin: auto;
	background: #ffffff;
	/* border: 1px solid #cccccc; */
	border-radius: 7px;
	line-height: 1.8;
	padding-bottom: 20px;
}

form dl {
	width: 90%;
	margin: 0 auto;
	/* border-bottom: 1px solid #cccccc; */
	font-size: 13px;
}

form dl:after,
form dl dt:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

form dl dt {
	width: 30%;
	float: left;
	padding: 5px 0;
	text-align: right;
}

form dl dd {
	width: 65%;
	float: right;
	padding: 5px 0 5px 2%;
}

form dl dt i {
	float: left;
	position: relative;
	top: -2px;
	margin-right: 10px;
}

.btn-area {
	margin-top: 20px;
}


/* -- span.required, span.optional -------------------------------------------------------------------------------- */

form dl dt span.required,
form dl dt span.optional {
	display: inline-block;
	font-size: 85%;
	color: #ffffff;
	padding: 4px 6px;
	border-radius: 3px;
}

form dl dt span.required {
	background: var(--sub-color01);
	border: 1px solid var(--sub-color02);
	font-size: 10px;
}

form dl dt span.optional {
	background: #337ab7;
	border: 1px solid #2e6da4;
	font-size: 10px;
}




/* -- error message -------------------------------------------------------------------------------- */

form dl dd span.error_blank,
form dl dd span.error_format,
form dl dd span.error_match {
	display: block;
	color: #ff0000;
	margin-top: 5px;
}




/* -- loading -------------------------------------------------------------------------------- */

div.loading-layer {
	width: 100vw;
	height: 100vh;
	background: rgba( 0, 0, 0, 0.7 );
	position: fixed;
	left: 0px;
	top: 0px;
	z-index: 10000;
}

span.loading {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border-top: 5px solid rgba( 255, 255, 255, 0.2 );
	border-right: 5px solid rgba( 255, 255, 255, 0.2 );
	border-bottom: 5px solid rgba( 255, 255, 255, 0.2 );
	border-left: 5px solid #ffffff;
	-webkit-transform: translateZ( 0 );
	-ms-transform: translateZ( 0 );
	transform: translateZ( 0 );
	-webkit-animation: load-circle 1.0s linear infinite;
	animation: load-circle 1.0s linear infinite;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -30px;
	margin-left: -30px;
}

@-webkit-keyframes load-circle {
	0% {
		-webkit-transform: rotate( 0deg );
		transform: rotate( 0deg );
	}
	100% {
		-webkit-transform: rotate( 360deg );
		transform: rotate( 360deg );
	}
}

@keyframes load-circle {
	0% {
		-webkit-transform: rotate( 0deg );
		transform: rotate( 0deg );
	}
	100% {
		-webkit-transform: rotate( 360deg );
		transform: rotate( 360deg );
	}
}




/* -- input, select, textarea -------------------------------------------------------------------------------- */

form input[type="text"],
form input[type="email"],
form input[type="tel"] {
	width: calc( 100% - 4% - 2px );
	padding: 5px 2%;
	border: 1px solid #cccccc;
	border-radius: 3px;
	/* background: #fafafa; */
	background: var(--sub-color03);
	-webkit-appearance: none;
	font-size: 14px;
	font-family: inherit;
	line-height: normal;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="tel"]:focus,
form textarea:focus {
	box-shadow: 0px 0px 5px #55ccff;
	border: 1px solid #55ccff;
	background: #ffffff;
}

form ul li input[type="radio"],
form ul li input[type="checkbox"] {
	margin: 0 10px 0 0;
}

form select {
	padding: 7px 2%;
	border: 1px solid #cccccc;
	font-size: 16px;
	font-family: inherit;
	line-height: normal;
}

form textarea {

	display: block;
	width: calc( 100% - 4% - 2px );
	/* height: 200px; */
	padding: 7px 2%;
	resize: vertical;
	border: 1px solid #cccccc;
	border-radius: 3px;
	/* background: #fafafa; */
	background: var(--sub-color03);
	-webkit-appearance: none;
	font-size: 16px;
	font-family: inherit;
	line-height: normal;
}


/* -- ul, li -------------------------------------------------------------------------------- */

form ul {
	list-style-type: none;
}

form ul li label {
	display: block;
	margin-top: 10px;
	padding: 7px 2%;
	border-radius: 3px;
	background: #f0f0f0;
}

form ul li:first-child label {
	margin-top: 0px;
}

form ul li label:hover {
	cursor: pointer;
	background: #e0e0e0;
}




/* -- input design -------------------------------------------------------------------------------- */

form input[name="company"],
form input[name="name"],
form input[name="phone"] {
	width: 96%;
	background: var(--sub-color03);
}

form input[name="name_1"],
form input[name="name_2"],
form input[name="read_1"],
form input[name="read_2"],
form input[name="postal"],
form input[name="schedule"] {
	width: 40%;
	background: var(--sub-color03);
}

form input[name="mail_address"],
form input[name="mail_address_confirm"] {
	width: 96%;
	background: var(--sub-color03);
}

form input[name="postal"] + a {
	display: inline-block;
	padding: 7px 20px;
	border: 1px solid #46b8da;
	border-radius: 3px;
	background: #5bc0de;
	font-size: 16px;
	line-height: normal;
	color: #ffffff;
	text-decoration: none;
}

form input[name="postal"] + a:hover {
	cursor: pointer;
	background: #31b0d5;
	border: 1px solid #269abc;
}




/* -- button -------------------------------------------------------------------------------- */

form p#form_submit {
	width: 90%;
	margin: 0 auto;
	/* padding: 10px 0; */
	text-align: center;
}

form input[type="button"], form input[type="submit"] {
	padding: 10px 20px;
	border: none;
	border-radius: 40px;
	background: var(--main-color);
	font-size: 16px;
	color: #ffffff;
	font-family: inherit;
	-webkit-appearance: none;
	width: 60%;
}

form input[type="button"]:hover, form input[type="submit"]:hover {
	cursor: pointer;
	background: var(--sub-color02);
	/* border: 1px solid #e35555; */
}

form input[type="button"] {
	margin: 0 auto;
}


#agree_check {
	font-size: 12px;	
}
#agree_check a {
	color: blue;
}


/* -- responsive ----------------------------------------------------------------------------------------------------------------------- */

/* 1000pixel start */
@media screen and ( max-width: 1000px ) {


/* -- form, dl, dt, dd -------------------------------------------------------------------------------- */

.l-main {
	padding-top: 0;
}
form {
	width: 95%;
	font-size: 100%;
	padding: 0 0 10% 0;
}

form dl dt {
	width: auto;
	float: none;
	padding: 6% 0 1%;
	text-align: left;
	font-weight: bold;
}

form dl dd {
	width: auto;
	float: none;
	padding: 0px;
}

form dl dt i {
	float: none;
	position: static;
	font-weight: normal;
}




/* -- span.required, span.optional -------------------------------------------------------------------------------- */

form dl dt span.required,
form dl dt span.optional {
	margin: 0 15px 0 0;
}




/* -- input design -------------------------------------------------------------------------------- */

form input[name="phone"],
form input[name="schedule"] {
	width: 60%;
}




/* -- button -------------------------------------------------------------------------------- */

form p#form_submit {
	padding: 0;
}

form input[type="button"] {
	margin-left: 0;
}


}
/* 1000pixel end */







