@charset "utf-8";


form#mail_form {
	width: 100%;
}

.boxGr {border: 1px solid #D9DBDD;width: calc(100% - 112px);padding: 55px}

@media print, screen and (max-width: 767px) {
.boxGr {border: 1px solid #D9DBDD;width: calc(100% - 32px);padding:15px}
}


form#mail_form dl {
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	border-bottom: 1px solid #cccccc;
}

form#mail_form dl dt {
	clear: both;
	width: 30%;
	float: left;
	border-top: 1px solid #cccccc;
	padding: 15px 0;
	overflow: hidden;
	font-weight: bold;
}

form#mail_form dl dd {
	width: 65%;
	float: right;
	border-top: 1px solid #cccccc;
	padding: 15px 0 15px 5%;
}


form#mail_form dl dt span {
	font-size: 85%;
	color:#FF0000;
}


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

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

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

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

form#mail_form dl dd span.error_blank,
form#mail_form dl dd span.error_format,
form#mail_form dl dd span.error_match {
	display: block;
	color: #ff0000;
	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 ここまで -------------------------------------------------------------------------------- */


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

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


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

form#mail_form textarea {
	display: block;
	width: calc(96% - 2px);
	max-width: calc(96% - 2px);
	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;
}


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

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

form#mail_form input#subject,
form#mail_form input#contents,
form#mail_form input#document,
form#mail_form input#name,
form#mail_form input#read,
form#mail_form input#mail_address,
form#mail_form input#company,
form#mail_form input#department,
form#mail_form input#address2,
form#mail_form input#phone,
form#mail_form input#fax {
	width: 96%;
}

form#mail_form #address1 {
margin: 1em 0;
}


form#mail_form input#zip1 {
	width: 25%;
}
form#mail_form input#zip2 {
	width: 30%;
}


form#mail_form p#form_submit {
	margin: 3em auto 0;
	/*padding: 15px 0;*/
	display: flex;
	justify-content: center;
}

/*
form#mail_form input[type="button"] {
	padding: 7px 20px;
	background: #00973D;
	font-size: 100%;
	color: #ffffff;
	font-family: inherit;
	-webkit-appearance: none;
	border: 1px solid #00973D;
}

form#mail_form input[type="button"]:hover {
	cursor: pointer;
	background: #449d44;
}

form#mail_form input#form_submit_button {
margin: 1em auto;
text-align: center;
}
*/




.bw-arrow {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color:#00973D;
	box-sizing: border-box;
	color: #FFFFFF;
	padding: 15px;
	font-size: 18px;
	text-align: center;
	max-width: 340px;
	font-weight: bold;
	-webkit-transition: 0.3s linear 0s;
	-o-transition: 0.3s linear 0s;
	transition: 0.3s linear 0s;
}

@media print, screen and (max-width: 767px) {
.bw-arrow  {max-width:280px;}
}

.bw-arrow > *:first-child {
	width: calc(100% - 10px * 3);
}

.bw-arrow::after {
	content: '';
	display: inline-block;
	padding: 0;
	width: 10px;
	height: 10px;
	border-top: solid 3px #FFFFFF;
	border-right: solid 3px #FFFFFF;
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
	-webkit-transform: rotate(45deg) translateX(-5px) translateY(5px);
	-ms-transform: rotate(45deg) translateX(-5px) translateY(5px);
	transform: rotate(45deg) translateX(-5px) translateY(5px);
	margin-left: 15px;
}

.bw-arrow:hover {
	opacity: 0.5;
}

a.bw-arrow:link, a.bw-arrow:active, a.bw-arrow:hover, a.bw-arrow:visited {
	color: #FFFFFF;
	text-decoration: none;
}

button.bw-arrow {
	border: none;
	cursor: pointer;
	width: 100%;
}

.bw-arrow span {
padding-left: 1.5em
}


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

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

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

form#mail_form dl {
	overflow: visible;
}

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

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

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


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

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


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

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

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


}
/* 1000pixel end */




