/*----- 翻訳フォーム -----*/
#translation {
	width: 960px;
	height: 330px;
	margin: 50px auto;
}
textarea {
	width: 460px;
	height: 330px;
	box-sizing: border-box;
	margin: 10px;
	padding: 15px;
	border: 2px solid #D7D7D7;
	overflow-y: scroll;
	display: block;
	float: left;
}
textarea:focus {
	outline: none;
}
#control {
	width: 500px;
	display: block;
	overflow: hidden;
	margin: 0 auto;
}
.lang_box {
	float: left;
	background-color: #D17298;
	width: 70px;
	height: 40px;
	box-sizing: border-box;
	border-radius: 3px;
	margin: 0 5px;
	color: #FFF;
	font-size: 16px;
	font-weight: bold;
	line-height: 40px;
	text-align: center;
	cursor: pointer;
}
#en_index .lang_box {
	font-size: 14px;
}
input[type="checkbox"] {
	float: left;
	display: none;
	position: relative;
}
#switch_label {
	width: 80px;
	height: 40px;
	float: left;
	margin: 0 5px;
	background-image: url(../img/switch_arrow.png);
	cursor: pointer;
}

input[type="submit"], input[type="reset"] {
	float: left;
	margin: 0 5px;
	cursor: pointer;
	display: block;
	border: none;
	background-color: rgba(255, 255, 255, 0);
}
input[type="submit"] {
	width: 182px;
	height: 44px;
	background-image: url(../img/translation_btn.png);
	background-repeat: no-repeat;
	color: #D13672;
	font-size: 22px;
	font-weight: bold;
}

input[type="submit"]:hover {
	background-image: url(../img/translation_btn2.png);
	color: #FFF;
}
input[type="submit"]:active {
	background-image: url(../img/translation_btn3.png);
	color: #D13672;
}
input[type="reset"] {
	width: 44px;
	height: 44px;
	background-image: url(../img/reset_btn.png);
	background-repeat: no-repeat;
}
input[type="reset"]:hover {
	background-image: url(../img/reset_btn2.png);
}
input[type="reset"]:active {
	background-image: url(../img/reset_btn3.png);
}
input[type="submit"]:focus, input[type="reset"]:focus {
	outline: none;
}

/*----- タブメニュー -----*/
#main_menu {
	width: 750px;
	height: 350px;
	margin: 0 auto;
	list-style: none;
}
#main_menu li {
	float: left;
	text-align: center;
	color: #666;
	font-size: 16px;
	margin-bottom: 80px;
}
.btn {
	width: 120px;
	height: 121px;
	border-radius: 50%;
	display: block;
	margin: 30px 65px;
	margin-top: 70px;
}
#main_menu li:first-child .btn {
	background-image: url(../img/tab1.png);
}
#main_menu li:nth-child(2) .btn {
	background-image: url(../img/tab2.png);
}
#main_menu li:nth-child(3) .btn {
	background-image: url(../img/tab3.png);
}
#main_menu li:first-child .btn:hover {
	background-image: url(../img/tab1-on.png);
}
#main_menu li:nth-child(2) .btn:hover {
	background-image: url(../img/tab2-on.png);
}
#main_menu li:nth-child(3) .btn:hover {
	background-image: url(../img/tab3-on.png);
}
