@charset "utf-8";

/* Arial Black for firefox */
@font-face {
	font-family: 'arial-black';
	src: local('Arial Black');
}
.font-arial-black{
	font-family: "Arial Black", arial-black, sans-serif;
}

/* Font */
.meiryo24{
	font-family: meiryo, sans-serif;
	font-size: 24px;
}
.meiryo24b{
	font-family: meiryo, sans-serif;
	font-size: 24px;
	font-weight: bold;
}
.meiryo18{
	font-family: meiryo, sans-serif;
	font-size: 18px;
}
.meiryo18b{
	font-family: meiryo, sans-serif;
	font-size: 18px;
	font-weight: bold;
}
.yu-mincho18{
	font-family: "Yu Mincho", sans-serif;
	font-size: 18px;
}
.yu-mincho18{
	font-family: "Yu Mincho", sans-serif;
	font-size: 18px;
}
.yu-mincho24{
	font-family: "Yu Mincho", sans-serif;
	font-size: 24px;
}
.yu-mincho35{
	font-family: "Yu Mincho", sans-serif;
	font-size: 35px;
}

/* Background Color */
.bg-deepcyan{
	background-color: #003241;
}
.bg-lightgray{
	background-color: #f0f0f0;
}

/* Foreground Color */
.color-deepcyan{
	color: #003241;
}


/* Button */
.btn-white01{
	width: 160px;
	height: 50px;
	border: solid 1px #000;
	text-align: center;
	margin-top: 20px;

	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.btn-white01 a{
	display: block;
	font-family: meiryo, sans-serif;
	font-size: 16px;
	line-height: 50px;
	width: 100%;
	height: 100%;
	color: #000;
	text-decoration: none;
	-webkit-transition: color 0.5s ease, background 0.5s ease;
	        transition: color 0.5s ease, background 0.5s ease;
	position: relative;
}
.btn-white01 a:hover{
	color: #fff;
	background: #000;
}
.btn-white01 a:after{
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	top: 18px;
	right: 9px;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	-webkit-transition: border-color 0.5s ease;
	        transition: border-color 0.5s ease;
}
.btn-white01 a:hover:after{
	border-color: #fff;
}


.btn-deepcyan01{
	width: 160px;
	height: 50px;
	border: solid 1px #003241;
	text-align: center;
	margin-top: 20px;

	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.btn-deepcyan01 a{
	display: block;
	font-family: meiryo, sans-serif;
	font-size: 16px;
	line-height: 50px;
	width: 100%;
	height: 100%;
	color: #003241;
	text-decoration: none;
	-webkit-transition: color 0.5s ease, background 0.5s ease;
	        transition: color 0.5s ease, background 0.5s ease;
	position: relative;
}
.btn-deepcyan01 a:hover{
	color: #fff;
	background: #003241;
}
.btn-deepcyan01 a:after{
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	border-top: 1px solid #003241;
	border-right: 1px solid #003241;
	top: 18px;
	right: 9px;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	-webkit-transition: border-color 0.5s ease;
	        transition: border-color 0.5s ease;
}
.btn-deepcyan01 a:hover:after{
	border-color: #fff;
}


/* --- .page-contents>header --- */
.page-contents>header{
	width: 100%;
	min-width: 1000px;
	height: 150px;
	background: #003241;
	text-align: left;
}
.page-contents>header>*{
	width: 1000px;
	margin: 0 auto;
}
.page-contents>header h1{
	font-family: meiryo, sans-serif;
	font-size: 30px;
	padding-top: 50px;
	color: #fff;
}
.page-contents>header h2{
	padding-top: 6px;
	color: #afafaf;
	font-family: Arial, sans-serif;
	font-size: 12px;
	font-weight: bold;
	font-style: italic;
	color: #afafaf;
}
.page-contents>header p{
	font-size: 60px;
	color: #fff;
	text-align: right;
	margin-top: -13px;
	opacity: 0.5;
}
/* page-contents */
.page-contents{
	margin-bottom: 50px;
}

/* else */
.area-w1000centering{
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
}
