@charset "utf-8";
/* CSS Document */

@keyframes fade_in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fade_out {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

#about_ceo_name {
	margin-top: 60px;
	text-align: right;
}

#toggle_wrapper {
	border-bottom: solid 1px #333333;
}

#toggle_wrapper ul {
	margin: 0 auto;
	padding: 0 20px;
	max-width: 1040px;
	display: flex;
	justify-content: flex-end;
}

#toggle_wrapper li {
	margin-left: 15px;
	width: 160px;
	border-top: solid 3px #F2F2F2;
	text-align: center;
	transform: translateY(1px);
	cursor: pointer;
}

#toggle_wrapper li span {
	display: block;
	background-color: #F2F2F2;
	border-bottom: solid 1px #333333;
	line-height: 36px;
}

#toggle_wrapper li.on {
	border: solid 1px #333333;
	border-top: solid 3px #075729;
	border-bottom-style: none;
}

#toggle_wrapper li.on span {
	background-color: #ffffff;
	border-bottom-color: #ffffff;
}

#japanese,
#english {
	display: none;
	animation: fade_out 300ms;
}

#japanese.on,
#english.on {
	display: block;
	animation: fade_in 300ms;
}

.about_table {
	margin: 0 auto;
	width: 520px;
}

.about_table th {
	padding: 15px;
	padding-left: 0;
	text-align: right;
	white-space: nowrap;
}

.about_table td {
	padding: 15px;
	padding-right: 0;
}

.about_table tr:first-child th,
.about_table tr:first-child td {
	padding-top: 0;
}

.about_table tr:last-child th,
.about_table tr:last-child td {
	padding-bottom: 0;
}

#sec_access {
	border-top: solid 1px #B3B3B3;
}

#sec_access iframe {
	margin-top: 40px;
	width: 100%;
	height: 373px;
}

@media screen and (max-width:768px) {

	.about_table {
		width: 100%;
	}

}