/* フォームデザイン */
/* テキストボックス */
#destxt {
	width: 90%;
	padding: 10px;
	border:1px solid #3e2a1f;
	border-radius: 5px;
	font-size: 1.2em;
}
#destxtarea {
	width: 90%;
	height: 150px;
	padding: 10px;
	border:1px solid #3e2a1f;
	border-radius: 5px;
	font-size: 1.2em;
}
#deschk {
	width: 20px;
	height: 20px;
}
#desbtn, #resbtn {
	width: 30%;
	padding: 10px;
	border:1px solid #3e2a1f;
	border-radius: 5px;
	background: white;
	font-size: 0.9em;
}
#desbtn:hover, #resbtn:hover {
	color: white;
	background-image: url('/rsc/bgimg/menu.jpg');
}
#desbtn[disabled]:hover {
	color: #880000;
	background-image: none;
	cursor:not-allowed; /* 禁止カーソル */
}
#desctn {
	width: 90%;
	padding: 10px;
	border: none;
	border-radius: 5px;
	background: #ffe0e0;
}

#trans {
	align: center;
	margin-left: auto;
	margin-right: auto;
	width: 90%;
	padding: 10px;
	border: none;
	border-radius: 5px;
	background: #e0e0ff;
}


/* -------------------------------------------------------------------- */
/* ▼タブレットや狭い画面のPC用デザインとして付け足すデザインだけを記述 */
/* -------------------------------------------------------------------- */
@media screen and (min-width: 768px) {

	/* フォームデザイン */
	/* テキストボックス */
	#desbtn, #resbtn {
		width: 20%;
		font-size: 1.2em;
	}

}