@charset "utf-8";

#mail_form {
	width: 960px;
	margin: 50px auto;
	padding: 48px;
	background: #ffffff;
	border: 1px solid #cccccc;
	border-radius: 7px;
	box-shadow: 0 0 7px rgba( 0, 0, 0, 0.2 );
	font-size: 100%;
	line-height: 1.8;
}

#mail_form dl {
	/*width: 96%;*/
	margin: 0 auto;
	overflow: hidden;
}

#mail_form dl dt {
	clear: both;
	width: 25%;
	float: left;
	border-top: 1px solid #cccccc;
	padding: 30px 0;
	text-align: right;
	overflow: hidden;
	font-weight: bold;
	vertical-align: middle;
	color: #111;
	position: relative;
}

#mail_form dl dt .must {
	background: #d9534f;
    border: 1px solid #d43f3a;
	color: white;
	font-size: 12px;
	display: inline-block;
    float: left;
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 3px;
	margin-right: 20px;
}

#mail_form dl dt .no-must {
	background: #337ab7;
    border: 1px solid #2e6da4;
	color: white;
	font-size: 12px;
	display: inline-block;
    float: left;
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 3px;
	margin-right: 20px;
}

#mail_form dl dd {
	width: 70%;
	float: right;
	border-top: 1px solid #cccccc;
	padding: 20px 0 10px 5%;
	font-weight: normal;
}

#mail_form dl dd>div {
	padding-top: 10px;
	display: block;
	font-weight: 600;
}

#mail_form dl dd>p {
	font-weight: 400;
}

#mail_form dl dd label {
	padding-top: 10px;
}

#mail_form dl dd ul {
	margin: 0;
	padding: 0;
}

#mail_form dl dt:first-child,
#mail_form dl dt:first-child+dd {
	border: none;
}

#mail_form dl dt span {
	/*display: block;
	font-size: 85%;
	color: #3377ff;*/
}


/* -- for JavaScript ここから -------------------------------------------------------------------------------- */

#mail_form dl dt span.required,
#mail_form dl dt span.optional {
	display: inline-block;
	float: left;
	color: #ffffff;
	padding: 4px 10px;
	border-radius: 3px;
}

#mail_form dl dt span.required {
	background: #d9534f;
	border: 1px solid #d43f3a;
}

#mail_form dl dt span.optional {
	background: #337ab7;
	border: 1px solid #2e6da4;
}

#mail_form dl dd span.error_blank,
#mail_form dl dd span.error_format,
#mail_form dl dd span.error_match {
	display: block;
	color: #ff0000;
	font-weight: bold;
	margin-top: 3px;
}


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


/* -- for JavaScript ここまで -------------------------------------------------------------------------------- */


#mail_form input[type="text"],
#mail_form input[type="email"],
#mail_form input[type="number"],
#mail_form input[type="tel"] {
	max-width: 90%;
	padding: 7px 2%;
	border: 1px solid #cccccc;
	border-radius: 3px;
	background: #fafafa;
	-webkit-appearance: none;
	font-size: 100%;
	font-family: inherit;
	margin-top: 7px;
}

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

#mail_form ul li input[type="radio"],
#mail_form ul li input[type="checkbox"] {
	margin-right: 10px;
	/*margin-top: 10px;*/
	vertical-align: middle;
}

#mail_form ul li:first-child input[type="radio"],
#mail_form ul li:first-child input[type="checkbox"] {
	margin-top: 0px;
}

#mail_form select {
	font-size: 100%;
	font-family: inherit;
	margin-top: 10px;
}

#mail_form textarea {
	display: block;
	width: 90%;
	max-width: 90%;
	height: 200px;
	padding: 7px 2%;
	resize: vertical;
	border: 1px solid #cccccc;
	border-radius: 3px;
	background: #fafafa;
	-webkit-appearance: none;
	font-size: 100%;
	font-family: inherit;
}


#mail_form ul {
	list-style-type: none;
}

#mail_form ul li label:hover {
	cursor: pointer;
}

#mail_form input#name,
#mail_form input#company {
	width: 60%;
}

#mail_form input#name_1,
#mail_form input#name_2,
#mail_form input#read_1,
#mail_form input#read_2,
#mail_form input#postal,
#mail_form input#phone,
#mail_form input#schedule {
	width: 30%;
}

#mail_form input#mail_address,
#mail_form input#mail_address_confirm {
	width: 80%;
}

#mail_form input#postal+a {
	display: inline-block;
	padding: 5px 15px;
	border: 1px solid #46b8da;
	border-radius: 3px;
	background: #5bc0de;
	font-size: 100%;
	color: #ffffff;
	text-decoration: none;
}

#mail_form input#postal+a:hover {
	cursor: pointer;
	background: #31b0d5;
	border: 1px solid #269abc;
}

#mail_form input#address {
	width: 90%;
}


/*#mail_form p#form_submit {
	width: 90%;
	margin: 0 auto;
	padding: 15px 0;
	border-top: 1px solid #cccccc;
}*/

/*#mail_form input[type="button"] {
	padding: 7px 20px;
	border: 1px solid #4cae4c;
	border-radius: 3px;
	background: #5cb85c;
	font-size: 100%;
	color: #ffffff;
	font-family: inherit;
	-webkit-appearance: none;
}

#mail_form input[type="button"]:hover {
	cursor: pointer;
	background: #449d44;
	border: 1px solid #398439;
}

#mail_form input#form_submit_button {
	margin-left: 35%;
}
*/







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

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

	#mail_form {
		width: 95%;
		font-size: 100%;
	}

	#mail_form dl {
		overflow: visible;
	}

	#mail_form dl dt {
		width: auto;
		float: none;
		text-align: left;
		padding: 15px 0 5px;
		font-weight: bold;
	}

	#mail_form dl dd {
		width: auto;
		float: none;
		border-top: none;
		padding: 0px 0 20px 0px;
	}

	#mail_form dl dt span {
		font-weight: normal;
	}


	/* -- for JavaScript ここから -------------------------------------------------------------------------------- */

	#mail_form dl dt span.required,
	#mail_form dl dt span.optional {
		margin-right: 1em;
		margin-bottom: 2em;
	}


	/* -- for JavaScript ここまで -------------------------------------------------------------------------------- */

	#mail_form input[type="text"],
	#mail_form input[type="email"],
	#mail_form input[type="tel"] {
		margin-top: 0px;
	}

	#mail_form input#postal+a {
		padding: 6px 15px 5px;
	}

	/*#mail_form input#form_submit_button {
	margin-left: 0;
}*/

	#mail_form select {
		font-size: 16px;
		margin-top: 0;
	}

	#mail_form input#phone,
	#mail_form input#schedule {
		width: 50%;
	}

}

/* 1000pixel end */


input::placeholder,
textarea::placeholder {
	color: #ccc;
	font-size: 80%;
}

.button_n {
	display: inline-block;
	min-width: 220px;
	text-align: center;
	padding: 16px 28px;
	font-weight: 700;
	color: #fff !important;
	text-decoration: none;
	background: #f18d0c;
	border: 1px solid #f18d0c;
	border-radius: 30px;
	letter-spacing: 3px
}

.button_n:after {
	content: "";
	position: relative;
	top: -3px;
	left: 4px;
	display: inline-block;
	width: 25px;
	height: 8px;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	transform: skewX(45deg)
}

.button_n:hover {
	color: #f18d0c !important;
	background: #fff;
	text-decoration: none;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s
}

.button_n:hover:after {
	border-right: 1px solid #f18d0c;
	border-bottom: 1px solid #f18d0c;
	left: 10px;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s
}

.button_n2 {
	display: inline-block;
	min-width: 220px;
	text-align: center;
	padding: 16px 28px;
	font-weight: 700;
	color: #06518a !important;
	text-decoration: none;
	background: #fff;
	border: 1px solid #06518a;
	border-radius: 30px;
	letter-spacing: 3px
}

.button_n2:after {
	content: "";
	position: relative;
	top: -3px;
	left: 4px;
	display: inline-block;
	width: 25px;
	height: 8px;
	border-right: 1px solid #06518a;
	border-bottom: 1px solid #06518a;
	transform: skewX(45deg)
}

.button_n2:hover {
	color: #fff !important;
	background: #06518a;
	text-decoration: none;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s
}

.button_n2:hover:after {
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	left: 10px;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s
}

.normalmini {
	font-size: 80%;
	font-weight: normal;
}




.c-cta {
	position: fixed;
	bottom: 40px;
	right: 100px;
	z-index: 9999;
	box-sizing: border-box;
}

.c-cta a {
	border: 3px solid rgba(120, 134, 153, .4);
	background: #fff;
	color: #222;
	font-weight: 600;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	width: 180px;
	height: 44px;
	text-decoration: none;
	border-radius: 12px;
	transition: all .3s;
}

.c-cta a:hover {
	border: 3px solid rgba(120, 134, 153, 1);
}