@charset "UTF-8";

/*--------------------------------------------------------------------
inquiry.html
inquiry.css
--------------------------------------------------------------------*/

/*------------Flow------------------------------------*/
#inquiry div.Flow {
	width: 90%;
	max-width: 830px;
	margin: 30px auto;
}
#inquiry div.Flow ol {
	width: 100%;
	list-style: none;
	overflow: hidden;
}
#inquiry div.Flow ol li {
	position: relative;
	width: 33.33%;
	float: left;
}
#inquiry div.Flow ol li:after {
	position: absolute;
	display: block;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 0 5px 10px;
	border-color: transparent transparent transparent var(--co-silv30);
	top: 50%;
	right: -0.25em;
	-webkit-transform: var(--tr-f-Y);
	    -ms-transform: var(--tr-f-Y);
	        transform: var(--tr-f-Y);
	z-index: 1;
}
#inquiry div.Flow ol li.this:after { border-color: transparent transparent transparent var(--co-orange); }
#inquiry div.Flow ol.error li.this:after {
	border-width: 5px 10px 5px 0;
	border-color: transparent var(--co-orange) transparent transparent;
}
#inquiry div.Flow ol li:nth-last-of-type(1):after { border: 0 none; }
#inquiry div.Flow ol li p {
	width: 85%;
	margin: 0 auto;
	color: var(--co-white);
}
#inquiry div.Flow ol li p span {
	display: block;
	padding: 0.5em 0;
	background-color: var(--co-silv30);
	text-align: center;
	font-size: 1em;
}
#inquiry div.Flow ol.error li.this p span { background-color: var(--co-silv30); }
#inquiry div.Flow ol li.error p span,
#inquiry div.Flow ol li.this p span {
	background-color: var(--co-orange);
	color: var(--co-white);
}

@media (max-width: 819px) {
	#inquiry div.Flow {
		width: 90%;
		margin: 30px auto;
	}
	#inquiry div.Flow ol {
		width: 100%;
		list-style: none;
		overflow: hidden;
	}
	#inquiry div.Flow ol li {
		position: relative;
		padding-bottom: 20px;
		width: 100%;
	}
	#inquiry div.Flow ol li:after {
		position: absolute;
		display: block;
		content: "";
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 10px 5px 0 5px;
		border-color: var(--co-silv30) transparent transparent transparent;
		top: 70%;
		left: 50%;
		-webkit-transform: var(--tr-f-X);
				-ms-transform: var(--tr-f-X);
						transform: var(--tr-f-X);
		z-index: 1;
	}
	#inquiry div.Flow ol li.this:after { border-color: var(--co-orange) transparent transparent transparent; }
	#inquiry div.Flow ol.error li.this:after {
		border-width: 0 5px 10px 5px;
		border-color: transparent transparent var(--co-orange) transparent;
	}
	#inquiry div.Flow ol li:nth-last-of-type(1):after { border: 0 none; }
	#inquiry div.Flow ol li p {
		width: 93%;
		margin: 0 auto;
		color: var(--co-white);
	}
	#inquiry div.Flow ol li p span {
		display: block;
		padding: 0.5em 0;
		background-color: var(--co-silv30);
		text-align: center;
		font-size: 1em;
	}
	#inquiry div.Flow ol.error li.this p span { background-color: var(--co-silv30); }
	#inquiry div.Flow ol li.error p span,
	#inquiry div.Flow ol li.this p span {
		background-color: var(--co-orange);
		color: var(--co-white);
	}
}

/*------------mail------------------------------------*/
#inquiry h3 span {
	display: inline-block;
	font-weight: bold;
}
#inquiry a { color: var(--co-navy); }
#inquiry ul#Note {
	width: 100%;
	margin-top: 1em;
	list-style: none;
}
#inquiry ul#Note li + li { margin-top: 0.25em; }
#inquiry ul#Note li {
	padding-left: 1.3em;
	text-indent: -1.3em;
}
#inquiry ul#Note li:before {
	padding-right: 0.3em;
	content: "〇";
}

#inquiry table tr th {
	width: 28%;
	overflow: hidden;
}
#inquiry table tr th span {
	display: inline-block;
	background-color: var(--co-red);
	padding: 0.2em 0.5em;
	font-size: 0.81em;
	font-weight: bold;
	color: var(--co-white);
	float: right;
}
#inquiry table tr td ul {
	display: flex;
	flex-flow: wrap;
	width: 100%;
	list-style: none;
	overflow: hidden;
}
#inquiry table tr td ul li { margin-right: 3em; }
#inquiry table tr td span {
	display: inline-block;
	margin-top: 0.15em;
	margin-left: 1em;
	font-size: 0.86em;
	color: #ff1d25;
}
#inquiry table.form tr td span {
	margin: 0;
	font-size: 1rem;
}
#inquiry table tr td .Inp01 { width: 100%; }
#inquiry table tr td .Inp02 { width: 45%; }
#inquiry table tr td .Inp03 { width: 20%; }
#inquiry table tr td input[type="text"],
#inquiry table tr td input[type="tel"],
#inquiry table tr td input[type="email"],
#inquiry table tr td textarea {
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
	        border-radius: 4px;
	padding: 0.4em;
	transition: 0.3s;
	border: 1px solid #5d83a4;
	outline: none;
}
#inquiry table tr td input[type="text"]:focus,
#inquiry table tr td input[type="tel"]:focus,
#inquiry table tr td input[type="email"]:focus,
#inquiry table tr td textarea:focus { border-color: #ab4d00; }
#inquiry table tr td textarea { height: 330px; }
#inquiry table table tr td textarea { height: 150px; }
#inquiry div#SubmitBtn {
	margin: 20px auto 0;
	text-align: center;
}
#inquiry div#SubmitBtn input {
	margin: 0 1em;
	cursor: pointer;
}

@media (max-width: 819px) {
	#inquiry table tr td ul { display: block; }
	#inquiry table tr td ul li { margin-right: 0; }
	#inquiry table tr td ul li + li { margin-top: 0.25em; }
	#inquiry table tr td .Inp01 { width: 100%; }
	#inquiry table tr td .Inp02 { width: 80%; }
	#inquiry table tr td .Inp03 { width: 40%; }
}

/*------------telephone------------------------------------*/
#telephone h3 span {
	display: inline-block;
	font-weight: bold;
}
#telephone p { text-align: center; }
#telephone #telNote {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	margin-top: 1em;
}
#telephone #telNote #number { width: 281px; }
#telephone #telNote #number dt { display: none; }
#telephone #telNote #number dd span,
#telephone #telNote #number dd a {
	display: block;
	padding-top: 9.608540925266904%;
	background: url("../../img/parts/tel.png") no-repeat left top / contain;
	overflow: hidden;
	line-height: 0;
	text-indent: -99999px;
	font-size: 0;
}
#telephone #telNote #note {
	width: 281px;
	padding: 5px 10px;
	background-color: var(--co-black);
	color: var(--co-white);
}
#telephone #telNote #note dl {
	display: flex;
	justify-content: center;
}
#telephone #telNote #note dl dt::after {
	margin: 0 0.25em;
	content: "／";
}

@media (max-width: 539px) {
	#telephone #telNote { display: block; }
	#telephone #telNote #number { margin: 0 auto; }
	#telephone #telNote #note { margin: 1em auto 0; }
}