@charset "utf-8";


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

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

form#mail_form {
}

form#mail_form dl {
	margin-bottom: 16px;
}

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

form#mail_form dl dt {
}

form#mail_form dl dd {
}

form#mail_form dl dt i {
}




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

form#mail_form dl dt span.required,
form#mail_form dl dt span.optional {
	display: inline-block;
	font-size: 1.3rem;
	color: #ffffff;
	padding: 2px 10px;
	border-radius: 3px;
}

form#mail_form dl dt {
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-bottom: 4px;
	padding: 3px 0;
}
form#mail_form dl dt span.required {
	background: #FF9845;
}

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




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

form#mail_form .alert-message {
	display: block;
	color: #ca3d3d;
	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#mail_form input[type="text"],
form#mail_form input[type="email"],
form#mail_form input[type="tel"] {
	width: 100%;
	padding: 16px 24px;
	box-sizing: border-box;
	border: 1px solid #cccccc;
	border-radius:4px;
	background: #fafafa;
	-webkit-appearance: none;
	font-size: 16px;
	font-family: inherit;
	line-height: normal;
}

form#mail_form input[type="text"]::placeholder,
form#mail_form input[type="email"]::placeholder,
form#mail_form input[type="tel"]::placeholder {
	color: #999;
	opacity: 1;
}

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

form#mail_form ul li {
	display: inline-block;
	margin-right: 16px;
}
form#mail_form ul li input[type="radio"],
form#mail_form ul li input[type="checkbox"] {
	margin: 0 10px 0 0;
}

form#mail_form select {
	width: 100%;
	padding: 16px 24px;
	box-sizing: border-box;
	border: 1px solid #cccccc;
	border-radius: 3px;
	background: #f0f0f0;
	font-size: 16px;
	font-family: inherit;
	line-height: normal;
	color: inherit;
}

form#mail_form select:hover {
	cursor: pointer;
}

form#mail_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;
	-webkit-appearance: none;
	font-size: 16px;
	font-family: inherit;
	line-height: normal;
}




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

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

form#mail_form ul li label {
	margin-top: 10px;
	padding: 7px 2%;
	display: contents;
}

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

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




/* -- input design ( advanced ) -------------------------------------------------------------------------------- */

form#mail_form a.postal_search_button {
	display: inline-block;
	margin: 0 0 0 10px;
	padding: 7px 20px;
	border: 1px solid #46b8da;
	border-radius: 3px;
	background: #5bc0de;
	font-size: 16px;
	line-height: normal;
	color: #ffffff;
	text-decoration: none;
}

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




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

form#mail_form p#form_submit {
	margin: 0 auto;
	padding: 24px 0 32px;
	display: flex;
	justify-content: center;
	gap: 8px;
}


form#mail_form input.btn {
	display: block;
	width: 100%;
	max-width: 400px;
	margin: auto;
	text-align: center;
	padding: 14px 0;
	border: 1px solid #005BAC;
	border-radius: 4px;
	background: #005BAC;
	font-size: 1.6rem;
	font-weight: 600;
	color: #ffffff;
	-webkit-appearance: none;
}

form#mail_form input.btn.btn-secondary {
	cursor: pointer;
	background: #818c95;
	border: 1px solid #818c95;
}

form#mail_form input.btn:hover {
	cursor: pointer;
	background: #1b67aa;
	border: 1px solid #005BAC;
}

form#mail_form input.btn.btn-secondary:hover {
	cursor: pointer;
	background: #a6aeb4;
	border: 1px solid #a6aeb4;
}

form#mail_form input[type="button"] {
}


form#mail_form input[type="button"]:disabled {
	background: #999999;
	border: 1px solid #999999;
}

form#mail_form input[type="button"]:disabled:hover {
	cursor: not-allowed;
}








/* -- responsive ( SmartPhone or Tablet ) ----------------------------------------------------------------------------------------------------------------------- */

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


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


}
/* 1000pixel end */








