@charset "utf-8";

body {
	background-color: #e5e4e5;
}
.as-header {
	width: 100%;
	max-width: 430px;
	height: 40px;
	margin: 0 auto;
    position: relative;
    z-index: 99;
}
.as-header_logo {
	width: 18.6%;
	min-width: 72px;
	padding-top: 3.8%;
	position: absolute;
	right: 5.2%;
}
.as-header_link {
	width: 100%;
	display: inline-block;
}
.as-header_link img {
	width: 100%;
}
.as-formtitle {
	width: 89.8%;
	max-width: 430px;
	margin: max(40px, 6%) auto 0;
}
.as-formtitle_title{
	position: relative;
	font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    color: #ee86a8;
    line-height: 1.5;
}
.as-formtitle_title::after {
	content: "";
	width: 91.5%;
	height: 1px;
	background-color: #fff;
	position: absolute;
	bottom: -30%;
	left: 50%;
	transform: translateX(-50%);
}
.as-formtitle_text {
	margin-top: max(30px, 6%);
	color: #433c41;
	text-align: center;
	line-height: 1.5;
}
.as-form_button {
	width: 89.9%;
	max-width: 430px;
	min-width: 320px;
	margin: min(60px, 15%) auto 0;
	padding-bottom: min(130px, 26%);
}
.as-form_link {
	width: 63.5%;
	width: 55%;
	margin: 0 auto;
	padding: 10px 10px 11px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #A4A1A3;
	border-radius: 50px;
	color: white;
	text-decoration: none;
}
.as-form_link:hover {
	opacity: .7;
}
::placeholder {
	color: #433c41;
	opacity: .5;
	line-height: 1.5;
}
/* 旧Edge対応 */
::-ms-input-placeholder {
	color: #433c41;
	opacity: .5;
}
/* IE対応 */
:-ms-input-placeholder {
	color: #433c41;
	opacity: .5;
}

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

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

form#mail_form {
	width: 89.8%;
	max-width: 430px;
	min-width: 320px;
    margin: max(40px, 3%) auto 0;
	line-height: 1.8;
}

form#mail_form dl {
	width: 100%;
	margin-top: max(40px, 4%);
}


form#mail_form dl dt {
	display: flex;
	align-items: center;
	text-align: right;
	color: #433c41;
}

form#mail_form dl dd {
	margin-top: max(10px, 1%);
}

form#mail_form dl dd label {
	display: flex;
	align-items: center;
	color: #433c41;
}

form#mail_form dl dd input[type="checkbox"] {
	width: 25px;
	height: 25px;
	margin-right: 10px;
}

form#mail_form dl dd label:hover {
	cursor: pointer;
}

form#mail_form dl dd.as-form_note {
	padding-left: 1em;
	text-indent: -1em;
	font-size: 1.4rem;
	color: #433c41;
}

form#mail_form dl dt i {
	position: relative;
	top: -2px;
}

form#mail_form dl dd div {
	max-width: 340px;
	min-width: 280px;
	margin: 0 auto;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
form#mail_form dl dd a {
	width: 52%;
	margin: max(10px, 2%) auto 0;
	padding-bottom: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	color: #433c41;
	font-size: 1.6rem;
	text-decoration: none;
	text-align: center;
}
form#mail_form dl dd a::before {
	content: "";
	width: 100%;
	height: 1px;
	display: inline-block;
	background-color: #433c41;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
}
form#mail_form dl dd img {
	width: 3%;
	min-width: 18px;
	margin-left: 2%;
}

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

form#mail_form dl dt span.required {
	display: inline-block;
	margin-left: 10px;
	padding: 2px 10px 3px;
	border-radius: 50px;
	background: #ee86a8;
	border: 1px solid #ee86a8;
	color: #433c41;
	line-height: 1;
}




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

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: 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: calc( 100% - 5% - 5px );
	padding: 16px 3%;
	border: 1px solid #433c41;
	border-radius: 10px;
	-webkit-appearance: none;
	font-size: 16px;
	font-family: inherit;
	line-height: normal;
}

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 {
	background: #ffffff;
}

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

form#mail_form select {
	padding: 7px 2%;
	border: 1px solid #433c41;
	border-radius: 3px;
	font-size: 16px;
	font-family: inherit;
	line-height: normal;
}

form#mail_form textarea {
	display: block;
	width: calc( 100% - 4% - 2px );
	height: 200px;
	padding: 11px 3%;
	resize: vertical;
	border: 1px solid #cccccc;
	border: 1px solid #433c41;
	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;
}




/* -- input design -------------------------------------------------------------------------------- */

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

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




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

form#mail_form p#form_submit {
	width: 100%;
	margin: max(7%, 40px) auto 0;
	padding-top: max(50px, 11%);
	text-align: center;
}

form#mail_form input[type="button"] {
	width: 63%;
	padding: 15px 20px 16px;
	border: 1px solid #ee86a8;
	border-radius: 50px;
	background: #ee86a8;
	font-size: 2rem;
	font-weight: 700;
	color: #433c41;
	font-family: inherit;
	-webkit-appearance: none;
	letter-spacing: .05em;
}

form#mail_form input[type="button"]:hover {
	cursor: pointer;
	opacity: .7;
}






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

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


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

form#mail_form {
	width: 89.8%;
}

form#mail_form dl dt {
	width: auto;
	text-align: left;
	font-weight: bold;
}

form#mail_form dl dt i {
	position: static;
	font-weight: normal;
}



}
/* 1000pixel end */








