@charset "utf-8";


form#mail_form {
	padding: 110px 110px 45px 80px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	background-color: #fff;
}

form#mail_form dl {
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
}

form#mail_form dl dt {
	clear: both;
	width: 150px;
	float: left;
	padding: 15px 0;
	overflow: hidden;
	font-size: 14px;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
}

form#mail_form dl dd {
	/*width: 65%;*/
	width: calc(100% - 150px);
	float: right;
	padding: 10px 0 10px 5%;
}

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

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


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

form#mail_form dl dt span.required,
form#mail_form dl dt span.optional {
	display: inline-block;
	float: left;
	color: #ffffff;
	line-height: 1;
	padding: 8px 9px;
	border-radius: 3px;
}

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

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

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="tel"] {
	max-width: 100%;
	height: 45px;
	padding: 2px 2%;
	border: 1px solid #cccccc;
	border-radius: 5px;
	-webkit-appearance: none;
	font-size: 100%;
	font-family: inherit;
}
form#mail_form input[type="tel"] {
  max-width: 135px;
}

form#mail_form input[type="text"]:focus,
form#mail_form input[type="email"]: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 ul li input[type="radio"],
form#mail_form ul li input[type="checkbox"] {
	margin-right: 10px;
	margin-top: 7px;
}
form#mail_form ul li{
  padding-left: 40px;
}

form#mail_form ul li:first-child input[type="radio"],
form#mail_form ul li:first-child input[type="checkbox"] {
	margin-top: 0px;
}
form#mail_form ul li label{
  /*position: relative;*/
}
form#mail_form ul li{
  position: relative;
}
form#mail_form ul li input[type="checkbox"]{
  -webkit-appearance:none;
  -moz-appearance:none;
  appearance:none;
  
}
form#mail_form ul li label span{
  width: 0;
  height: 0;
}
form#mail_form ul li input[type="checkbox"] + span::before{
  content:"";
  display:block;
  width:25px;
  height:25px;
  border:solid 2px #a0a0a0;
  box-sizing:border-box;
  position:absolute;
  top:50%;
  transition:0.3s ease-in-out;
  border-radius: 5px;
  transform: translateY(-50%) translateX(-40px);
}
form#mail_form ul li input[type="checkbox"]:checked + span::before{
  background:#a0a0a0;
}

form#mail_form select {
	font-size: 16px;
	color: #717171;
    /* font-family: inherit; */
    /* margin-top: 10px; */
    outline: none;
    /* text-indent: 0.01px; */
    text-overflow: '';
    background-color: #dedede;
    /* vertical-align: middle; */
    /* font-size: inherit; */
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    width: 150px;
    height: 35px;
    border: none;
	border-radius: 5px;
}
form#mail_form .ddd {
  border-radius: 5px;
  position: relative;
  display: inline-block;
  height: 35px;
}
form#mail_form .ddd::before {
  content: "";
  position: absolute;
  width: 35px;
  height: 35px;
  right: 0;
  top: 0;
  background-color: #bfbfbf;
  border-radius:0px 5px 5px 0px;
}
form#mail_form .ddd::after {
    position: absolute;
    display: block;
    content: "";
    width: 10px;
    height: 10px;
    top: 50%;
    right: 11px;
    border: solid 3px #929292;
    border-left: 0;
    border-top: 0;
    transform: translateY(-70%) rotate(45deg);
	
}
form#mail_form select option{
  direction: rtl;
}

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


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

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


form#mail_form input#company {
	width: 60%;
}

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

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

form#mail_form input#postal+a {
	display: inline-block;
	padding: 9px 15px;
	vertical-align: middle;
	line-height: 1;
	background: #5bc0de;
	border: 1px solid #46b8da;
	border-radius: 3px;
	color: #ffffff;
	font-family: inherit;
	text-decoration: none;
	position: relative;
	top: -1px;
}

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

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


form#mail_form p#form_submit {
	width: 520px;
	height: 100px;
	margin: 50px auto 0;
	position: relative;
}
form#mail_form input[type="button"] {
	padding: 9px 15px;
	vertical-align: middle;
	line-height: 1;
	background: #f04400;
	border: 1px solid #fff;
	color: #ffffff;
	-webkit-appearance: none;
	font-size: 30px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: 400;
	position: relative;
	box-shadow:0px 0px 4px 2px #f8a685;
}

#form_submit span{
  width: 0;
  height: 0;
}
#form_submit span::after {
	content: "";
    position: absolute;
    width: 19px;
    height: 28px;
    background-image: url("../img/btn-af.png");
    background-repeat: no-repeat;
    background-size: cover;
    right: 30px;
    transform: translateY(-50%);
    top: 50%;
	
}
form#mail_form input[type="button"]:hover {
	cursor: pointer;
	opacity: .7;
}

form#mail_form input#form_submit_button {
	display: block;
	margin: 0 auto;
}








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

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

form#mail_form {
	width: 100%;
	padding: 35px 15px 50px;
}

form#mail_form dl {
	overflow: visible;
	flex-wrap: wrap;
}

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

form#mail_form dl dd {
	width: 100%;
	float: none;
	border-top: none;
	padding: 0 0 30px;;
}

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="tel"] {
	margin-top: 0px;
	height: 40px;
}
form#mail_form input[type="tel"]{
  max-width: 95px;
}

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

form#mail_form select {
	margin-top: 0;
	padding-left: 50px;
}

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

form#mail_form textarea{
  height: 195px;
}
form#mail_form input[type="checkbox"]{
      opacity: 0;
    -webkit-appearance: none;
}
form#mail_form p#form_submit{
  width: 100%;
  font-size: 23px;
  height: 75px;
  margin-top: 15px;
}
#form_submit span::after{
  width: 9px;
  height: 13px;
}
form#mail_form ul li input[type="checkbox"] + span::before{
  width: 20px;
  height: 20px;
  transform: translateY(-50%) translateX(-30px);
}
form#mail_form ul li{
  padding-left: 30px;
  font-size: 13px;
  text-indent: -15px;
  letter-spacing: -0.4px;
}

}
/* 1000pixel end */



.end_txt{
      text-align: center;
    font-size: 16px;
    font-family: "M PLUS Rounded 1c", sans-serif;
    margin-bottom: 30px;
    display: block;
    line-height: 1.5;
    margin: 70px 0 50px;
}