@charset "UTF-8";

/*--------------------------------------------------------------------
inquiry.html
inquiry.css
--------------------------------------------------------------------*/

/*------------sbuT------------------------------------*/
#sbuT ul li {
	padding-left: 1em;
	text-indent: -1em;
}
#sbuT ul li::before { content: "※"; }


/*------------mail---------------------------------------------------------------*/
#mail section { font-size: 0.875em; }
#mail strong { color: var(--co-red); }
#mail p + table { margin-top: 1em; }
#mail table tr th,
#mail table tr td {
	padding: 0;
	border: 0 none;
}
#mail table tr:not(:first-of-type) th,
#mail table tr:not(:first-of-type) td { padding-top: 60px; }
#mail table tr th { width: 29%; }
#mail table tr td ul li input { vertical-align: -0.05em; }
#mail table tr td .Inp01 { width: 100%; }
#mail table tr td .Inp05 { height: 200px; }
#mail table tr td textarea { height: 60px; }
#mail table tr td input[type="text"],
#mail table tr td input[type="email"],
#mail table tr td input[type="tel"],
#mail table tr td input[type="date"],
#mail table tr td select,
#mail table tr td textarea {
	height: 60px;
	border-radius: 4px;
	padding: 0.4em;
	transition: 0.3s;
	resize: none;
	border: 1px solid #5d83a4;
	outline: none;
	font-size: 0.8rem;
}
#mail table tr td input[type="text"]:focus,
#mail table tr td input[type="email"]:focus,
#mail table tr td input[type="tel"]:focus,
#mail table tr td input[type="date"]:focus,
#mail table tr td select:focus,
#mail table tr td textarea:focus { border-color: var(--co-red); }

#mail #policy {
	margin: 20px auto 0;
	text-align: center;
}
#mail #policy p { margin-bottom: 1em; }
#mail #policy a { color: var(--co-hover); }

#mail #SubmitBtn {
	margin: 20px auto 0;
	text-align: center;
}
#mail #SubmitBtn span {
	position: relative;
	display: inline-block;
	transition: .5s;
}
#mail #SubmitBtn span::after {
	position: absolute;
	display: inline-block;
	content: "";
	width: 10px;
	height: 12px;
	background-color: var(--co-btn01);
	clip-path: polygon(100% 50%, 0 0, 0 100%);
	top: 50%;
	right: 2em;
	transform: var(--transformY);
	z-index: 1;
	transition: .5s;
}
#mail #SubmitBtn input {
	margin: 0 1em;
	padding: 1em 2.5em;
	background-color: var(--co-white);
	border: 1px solid var(--co-btn01);
	border-radius: 9999px;
	cursor: pointer;
	color: var(--co-btn01);
	transition: .5s;
}
#mail #SubmitBtn span:hover::after { background-color: var(--co-white); }
#mail #SubmitBtn input:hover {
	background-color: var(--co-btn01);
	border: 1px solid var(--co-white);
	color: var(--co-white);
}

#mail .msg {
	color: var(--co-btn02);
}

@media (max-width: 480px) {
	article table { border-top: 0 none; }
	#mail table tr th {
		width: auto;
	}
}