@charset "utf-8";
html {
	min-height:auto;
}
/*-----------------------------*
 * contact_box
 *-----------------------------*/
.contact_box {
	
}
.contact_box dl{
	width:100%;
	max-width:800px;
	margin-bottom:50px;
}
.contact_box dl dt{
	margin-top:30px;
}
.contact_box dl dd{
}
.textinput01,
.select01,
.textarea01{
	font-size:16px;
}
/*-----------------------------*
 * contactconf_box
 *-----------------------------*/
.contactconf_box dl{
	width:100%;
	max-width:800px;
	margin-bottom:50px;
}
.contactconf_box dl dt{
	padding-top: 10px;
	margin-top:30px;
	border-top: 1px solid #474747;
}
.contactconf_box dl dd{
	margin-left:20px;
}
/*-----------------------------*
 * textinput01
 *-----------------------------*/
.textinput01-wrapper {
	position: relative;
	width: 100%;
}
.textinput01 {
	line-height: 30px;
	box-sizing: border-box;
	background: rgba(0, 0, 0, 0.6);
	border: 2px solid #00f0ff;
	border-radius: 30px;
	padding: 6px 16px;
	color: #fff;
	outline: none;
	transition: all 0.3s ease;
	box-shadow: inset 0 0 8px rgba(0, 240, 255, 0.2);
}
.textinput01:focus {
	background: rgba(0, 0, 0, 0.6) !important;
	border-color: #ff00ff !important;
	box-shadow: 0 0 15px rgba(255, 0, 255, 0.6), inset 0 0 8px rgba(255, 0, 255, 0.2);
}
/*-----------------------------*
 * select01
 *-----------------------------*/
.select01-wrapper {
	position: relative;
	width: 100%;
}
.select01 {
	line-height: 30px;
	width: 100%;
	appearance: none;
	-webkit-appearance: none;
	background-color: #000000 !important; 
	border: 2px solid #00f0ff;
	border-radius: 30px;
	padding: 6px 16px;
	color: #ffffff !important;
	outline: none;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: inset 0 0 8px rgba(0, 240, 255, 0.2);
}
.select01-wrapper::after {
	content: '>';
	color: #00f0ff;
	position: absolute;
	right: 24px;
	top: 50%;
	transform: translateY(-50%) rotate(0deg); 
	pointer-events: none;
	transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
	text-shadow: 0 0 5px rgba(0, 240, 255, 0.8);
}
.select01:focus {
	border-color: #ff00ff;
	box-shadow: 0 0 15px rgba(255, 0, 255, 0.6);
}
.select01:focus + ::after,
.select01-wrapper:focus-within::after {
	color: #ff00ff;
	transform: translateY(-50%) rotate(90deg);
	text-shadow: 0 0 5px rgba(255, 0, 255, 0.8);
}
.select01 option {
	background-color: #101622;
	color: #fff;
}
/*-----------------------------*
 * textarea01
 *-----------------------------*/
.textarea01-wrapper {
	width: 100%;
}
.textarea01 {
	line-height: 30px;
	width: 100%;
	min-height:200px;
	line-height:20px;
	box-sizing: border-box;
	background: rgba(0, 0, 0, 0.6);
	border: 2px solid #00f0ff;
	border-radius: 30px;
	padding: 14px 16px;
	color: #fff;
	outline: none;
	transition: all 0.3s ease;
	box-shadow: inset 0 0 8px rgba(0, 240, 255, 0.2);
}
.textarea01:focus {
	background: rgba(0, 0, 0, 0.6);
	border-color: #ff00ff;
	box-shadow: 0 0 15px rgba(255, 0, 255, 0.6), inset 0 0 8px rgba(255, 0, 255, 0.2);
}
/*-----------------------------*
 * button01
 *-----------------------------*/
.button01-wrapper {
	margin-top:40px;
	width: 100%;
	display:flex;
	justify-content:center;
	gap:10px;
}
.button01 {
	width: 100%;
	box-sizing: border-box;
	background: rgba(0, 0, 0, 0.6);
	border: 2px solid #00f0ff;
	border-radius: 30px;
	padding: 6px 12px;
	color: #00f0ff;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 0.05em;
	outline: none;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: inset 0 0 8px rgba(0, 240, 255, 0.2), 0 0 5px rgba(0, 240, 255, 0.2);
	text-shadow: 0 0 5px rgba(0, 240, 255, 0.6);
}
.button01:hover {
	color: #ff00ff;
	border-color: #ff00ff;
	box-shadow: 0 0 15px rgba(255, 0, 255, 0.6), inset 0 0 8px rgba(255, 0, 255, 0.2);
	text-shadow: 0 0 5px rgba(255, 0, 255, 0.8);
}
.button01:active {
	background: #ff00ff;
	color: #000000;
	box-shadow: 0 0 25px rgba(255, 0, 255, 0.8);
	text-shadow: none;
}
.button01:focus {
	border-color: #ff00ff;
	box-shadow: 0 0 15px rgba(255, 0, 255, 0.6);
}

/*-----------------------------*
 * utility
 *-----------------------------*/
.tright {
	text-align:right;
}
.tcenter {
	text-align:center;
}
.mt20 {
	margin-top:20px;
}
.w300 {
	width:300px;
}	

.g-recaptcha {
	margin: auto; 
	margin-top: 30px; 
	width: fit-content;
}
.error {
	color:#ff00ff;
}
.error_box {
	margin-left:30px;
	list-style-type:disc;
	color:#ff00ff;
}
@media screen and (max-width: 768px) {
	.textinput01,
	.textarea01{
		width:100%;
	}
}
