<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ãƒ†ã‚­ã‚¹ãƒˆãƒœãƒƒã‚¯ã‚¹ */
input[type="text"],
input[type="email"],
input[type="tel"]{
	width:100%;
	font-size:16px;
	height:40px;
	padding:0 0.5em;
	background-color:#fff;
	border:1px solid #B35300;
	border-radius:5px;
	outline:none;
}

/* ã‚»ãƒ¬ã‚¯ãƒˆãƒœãƒƒã‚¯ã‚¹ */
select{
	max-width:320px;
	width:100%;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	height:50px;
	padding:0 40px 0 1em;
	color:#000;
	background:#fff url(select_arrow.png)no-repeat right 10px center;
	background-size:15px auto;
	border:2px solid #3e3a39;
	outline:none;
}
@media screen and (max-width:768px){
	select{
		height:40px;
		font-size:16px;
	}
}

select::-ms-expand {
    display: none;
}
select option,
select optgroup{
	background:#fff;
}


/* ãƒ©ã‚¸ã‚ªãƒœã‚¿ãƒ³ */
input[type="radio"] {
	opacity:0;
}
input[type="radio"]  + span{
	margin-left:-12px;
	padding-left:30px;
	display:inline-block;
	vertical-align:middle;
	position: relative;
}
input[type="radio"]  + span:before{
	content: "";
	display:inline-block;
	width:22px;
	height: 22px;
	margin-right:10px;
	background-color: #FFFFFF;
	border: 1px solid #3e3a39;
	border-radius:  50%;
	-webkit-box-shadow: inset 3px 3px 8px rgba(0,0,0,0.1);
	box-shadow: inset 3px 3px 8px rgba(0,0,0,0.1);
	cursor: pointer;
	outline : none;
	position:absolute;
	top:50%;
	left:0;
	transform:translateY(-50%);
}
input[type="radio"]:checked + span:after {
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	background: #444;
	position: absolute;
	top: 50%;
	left: 5px;
	transform:translateY(-50%);
	border-radius: 50%;
}


/* ãƒã‚§ãƒƒã‚¯ãƒœãƒƒã‚¯ã‚¹ */
input[type="checkbox"] {
	opacity:0;
}
input[type="checkbox"] + span{
	display:inline-block;
	vertical-align:middle;
	position: relative;
	margin-left:-15px;
	padding-left:30px;
}
input[type="checkbox"] + span:before{
	content:'';
	display:inline-block;
	width: 22px;
	height: 22px;
	margin-right:0px;
	background-color: #FFFFFF;
	border:1px solid #B35300;
	-webkit-box-shadow: inset 3px 3px 8px rgba(0,0,0,0.1);
	box-shadow: inset 3px 3px 8px rgba(0,0,0,0.1);
	vertical-align: middle;
	border-radius:2px;
	cursor: pointer;
	outline : none;
	position:absolute;
	top:50%;
	left:0;
	transform:translateY(-50%);
}
input[type="checkbox"]:checked + span:after {
	content:'';
	display: block;
	width: 8px;
	height: 14px;
	position: absolute;
	top: calc(50% - 9px);
	left: 7px;
	border-right: 3px solid #f00;
	border-bottom: 3px solid #f00;
	content: '' !impo3tant;
	-webkit-transform: rotate(45deg) !important;
	-ms-transform: rotate(45deg) !important;
	transform: rotate(45deg) !important;
}


/* ãƒ†ã‚­ã‚¹ãƒˆã‚¨ãƒªã‚¢ */
textarea{
	width:100%;
	min-height: 160px;
	font-size:18px;
	padding:0.5em;
	background-color:#fff;
	border:1px solid #B35300;
	border-radius:5px;
	vertical-align:bottom;
	outline:none;
}
@media screen and (max-width:768px){
	textarea{
		font-size:16px;
	}
}


/* ãƒœã‚¿ãƒ³ */
input[type="submit"],
input[type="button"],
button[type="submit"],
button[type="reset"],
button[type="button"]{
	display:block;
	margin:0.5em auto 0;
	cursor:pointer;
	transition : opacity 0.4s;
	-webkit-transition : opacity 0.4s;
}
input[type="submit"]:hover,
input[type="button"]:hover,
button[type="submit"]:hover,
button[type="reset"]:hover,
button[type="button"]:hover{
	opacity:0.7;
}




/* ãƒ—ãƒ¬ã‚¤ã‚¹ãƒ›ãƒ«ãƒ€ãƒ¼ */
input::placeholder,
textarea::placeholder{
  color:#C9CACA;
}
input:-ms-input-placeholder,
textarea::placeholder{
  color:#C9CACA;
}
input::-ms-input-placeholder,
textarea::placeholder{
  color:#C9CACA;
}


/* ã‚¨ãƒ©ãƒ¼ */
form label.error {
	margin:0 0 0;
	color: red !important;
	display:block;
	text-align:left;
	font-size:14px;
}
form #check_error + label.error {
	text-align:center;
}

</pre></body></html>