@charset "utf-8";

section.contact-section {
    border-bottom: 1px solid #000;
}
section.contact-section .contact {}
section.contact-section .contact p {
    text-align: center;
}

form#mail_form * {
	margin: 0;
	padding: 0;
}

form#mail_form input[type="checkbox" i] {
    opacity: 0;
    left: 3px;
    position: absolute;
    top: 38px;
    z-index: 999;
    cursor: pointer;
}

form#mail_form {
	padding: 0;
	margin-top: 80px;
	border-top: 1px solid #CCC;
	padding-top: 16px;
}

form#mail_form dl {
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	border: none;
	display: flex;
	flex-wrap: wrap;
}

form#mail_form dl dt,
form#mail_form dl dd {
    border-bottom: 1px solid #CCC;
    padding-top: 32px;
    padding-bottom: 50px;
    margin-bottom: 16px;
}

form#mail_form dl dt {
	clear: both;
	width: 30%;
	/* float: left; */
	text-align: left;
	overflow: hidden;
	/* margin-bottom: 10px; */
	position: relative;
}

form#mail_form dl dd {
	width: 70%;
	/* float: right; */
	padding-left: 0px;
	position: relative;
}

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

form#mail_form dl dd.last-check {
    border: none;
    width: auto;
    margin: 0 auto;
}

form#mail_form dl dt span {
	display: initial;
	font-size: 85%;
	color: #2BAEE2;
	margin-left: 2px;
	position: relative;
	top: -3px;
}

input[type=checkbox] {
    /* display:none; */
}
form#mail_form .custom-style{
  position:relative;
  padding: 0px 35px;
  cursor:pointer;
}
form#mail_form .custom-style:before{
   width: 17px; /* チェックボックスの幅 */
   height: 17px; /* チェックボックスの高さ */
   left: 0px;
   border: 1px solid #DCDCDC; /* チェックボックスの枠 */
   margin-top: -9px;
}
form#mail_form .custom-style:after,
form#mail_form .custom-style:before{
  position:absolute;
  content:"";
  top: 50%;
}

form#mail_form .custom-style::after {
  position: absolute;
  width: 5px;
  height: 9px;
  top: 50%;
  left: 6px;
  border-right: 2px solid #000; /* チェックマークの色 */
  border-bottom: 3px solid #000; /* チェックマークの色 */
  content: '';
  margin-top: -7px;
  opacity: 0;
  transform: rotate(45deg);
}

form#mail_form input[type=checkbox]:checked { display:block; }

form#mail_form input[type=checkbox]:checked + .custom-style::after {
  opacity: 1;
}

form#mail_form .custom-style a {
    letter-spacing: 0.6px;
    text-decoration: underline;
}

/* -- 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;
	position: absolute;
	right: 15%;
	top: 32px;
}

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

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;
	position: absolute;
	bottom: 20px;
	font-size: 15px;
}


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"] {
	width: 95%;
	padding: 11px 2%;
	border: 1px solid #DCDCDC;
	background: #F5F5F5;
	-webkit-appearance: none;
	font-size: 100%;
	font-family: inherit;
}

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 {
	background: #F5F5F5;
	border: 1px solid #cccccc;
}

form#mail_form ul li input[type="radio"],
form#mail_form ul li input[type="checkbox"] {
	margin-right: 10px;
	margin-top: 10px;
}

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 select {
	font-size: 100%;
	font-family: inherit;
	margin-top: 10px;
}

form#mail_form textarea {
	display: block;
	height: 200px;
	padding: 7px 2%;
	resize: vertical;
	border: 1px solid #DCDCDC;
	background: #F5F5F5;
	-webkit-appearance: none;
	font-size: 100%;
	font-family: inherit;
	width: 95%;
}


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

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


form#mail_form input#company {
}

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

form#mail_form input#mail_address,
form#mail_form input#mail_address_confirm {
}

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

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: 90%; */
	margin: 0 auto;
}

form#mail_form input[type="button"] {
	padding: 17px 0px;
	background: #000;
	font-size: 16px;
	color: #ffffff;
	font-family: inherit;
	-webkit-appearance: none;
	border: none;
	cursor: pointer;
	text-decoration: none;
	transition-property: all;
	transition: 0.3s linear;
	width: 600px;
	margin-top: 15px;
}

form#mail_form input[type="button"]:hover {
opacity:0.8;
}

form#mail_form input#form_submit_button {
}








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

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

form#mail_form {
	width: 100%;
	font-size: 100%;
	margin-left: 0px;
	margin-bottom: 10vw;
	margin-top: 10vw;
	padding-top: 5vw;
}

form#mail_form dl {
	overflow: visible;
	display: block;
}
form#mail_form p#form_submit {
    margin-top: 0vw;
}
form#mail_form dl dt {
	width: auto;
	float: none;
	text-align: left;
	padding: 15px 0 5px;
	font-weight: normal;
	font-size: 4vw;
	padding: 0px;
	margin-bottom: 3vw;
	padding-bottom: 3vw;
	border: none;
}

form#mail_form dl dd.last-check {
    width: 62vw;
}

form#mail_form dl dd {
	width: auto;
	float: none;
	border-top: none;
	padding: 0px;
	margin-bottom: 5vw;
	padding-bottom: 10vw;
}

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;
	top: 0;
	right: 0;
}


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

form#mail_form input[type="text"],
form#mail_form input[type="email"],
form#mail_form input[type="tel"] {
	margin-top: 0px;
	padding: 2.4vw 2%;
	font-size: 4vw;
}

form#mail_form dl dd span.error_blank, form#mail_form dl dd span.error_format, form#mail_form dl dd span.error_match {
    bottom: 3vw;
    font-size: 3.5vw;
}

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

form#mail_form input#form_submit_button {
	margin-left: 0;
}
form#mail_form input[type="button"] {
    width: 100%;
    font-size: 4vw;
    padding: 3.47vw 0;
}
form#mail_form select {
	font-size: 16px;
	margin-top: 0;
}

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

form#mail_form input[type="checkbox" i] {
    top: 1.5vw;
    /* opacity: 1; */
}
form#mail_form .custom-style {
    padding: 0 8vw;
    padding-right: 0px;
}

form#mail_form .custom-style:after, form#mail_form .custom-style:before {
    top: 0vw;
    width: 4.535vw;
    height: 4.535vw;
    margin-top: initial;
}
form#mail_form .custom-style::after {
    width: 1vw;
    height: 2.5vw;
    border-right: 0.8vw solid #000;
    border-bottom: 1vw solid #000;
    margin-top: initial;
    left: 1.5vw;
    top: 50%;
    margin-top: -1.5vw;
}
}
/* 768pixel end */


