<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

input[type="text"] {
	property: value;
}

input[type="password"] {
	property: value;
}

/* input type="radio" のみ */
input[type="radio"] {
	property: value;
} 

/* input type="checkbox" のみ */
input[type="checkbox"] {
	property: value;
}


/* input type="reset" のみ */
input[type="reset"] {
	property: value;
}

/* input type="submit" のみ */
input[type="submit"] {
	property: value;
}

input[type="password"],
textarea {
	outline: none;
	border: 1px solid #aaa;
	-webkit-transition: all .3s;
	transition: all .3s;
}

input[type="password"]:focus,
textarea:focus {
	box-shadow: 0 0 3px #1abc9c;
	border: 1px solid #1abc9c;
}

input[type="button"],
input[type="submit"] {
	border: solid 2px whitesmoke;
	background-color:#f88ba5;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	color:#fff;
	padding: 8.5px 18px;
	font-size: 1.2em;
	text-decoration: none;
	vertical-align: middle;
	cursor: pointer;
}

.ss {
	border-radius: 4px;
	/* CSS3草案 */
	-webkit-border-radius: 4px;
	/* Safari,Google Chrome用 */
	-moz-border-radius: 4px;
	/* Firefox用 */
	padding: 2px 5px;
	width: 150px;
}

.mm {
	border-radius: 4px;
	/* CSS3草案 */
	-webkit-border-radius: 4px;
	/* Safari,Google Chrome用 */
	-moz-border-radius: 4px;
	/* Firefox用 */
	padding: 2px 5px;
	width: 250px;
}

.ll {
	border-radius: 4px;
	/* CSS3草案 */
	-webkit-border-radius: 4px;
	/* Safari,Google Chrome用 */
	-moz-border-radius: 4px;
	/* Firefox用 */
	padding: 2px 5px;
	width: 500px;
}

.tt_text {
	border-radius: 4px;
	/* CSS3草案 */
	-webkit-border-radius: 4px;
	/* Safari,Google Chrome用 */
	-moz-border-radius: 4px;
	/* Firefox用 */
	padding: 2px 5px;
	width: 500px;
	font-size: 13px;
}

.w2 {
	border-radius: 4px;
	/* CSS3草案 */
	-webkit-border-radius: 4px;
	/* Safari,Google Chrome用 */
	-moz-border-radius: 4px;
	/* Firefox用 */
	padding: 2px 5px;
	/*xwidth: 500px;*/
	font-size: 13px;
	border: 1px solid #aaa;
}

.tt_box {
	text-align: center;
	margin: 25px 0 80px;
}

.ptt_text {
	text-align: center;
	font-size: 13px;
	color: #b80007;
}</pre></body></html>