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



* {
	margin: 0px;
	padding: 0px;
}

body {
	font-family: "游ゴシック体","Yu Gothic",YuGothic,"Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","ヒラギノ角ゴ Pro","メイリオ","Meiryo",メイリオ,Meiryo,Osaka,"ＭＳ Ｐゴシック","Helvetica","Verdana",sans-serif;
}

li {
	list-style: none;
}


.head-contents {
	width: 100%;
}



/*---header----------------------------*/

.headArea {
	padding: 10px 0;
	background-color: #0e3962;
}

.headArea_contents {
	width: 100%;
	margin: 0 auto;
	padding: 0 10px;
	display: flex;
}



.headArea__title {
	width: 202px;
}

.headArea__title a {
	width: 202px;
	height: 32px;
	text-decoration: none;
}

.headArea__title span {
	display: block;
	width: 202px;
		height: 32px;
		background-size: 202px 32px;
		background: url(../images/logo_min.svg) no-repeat left top;
	overflow: hidden;
	font-size: 10px;
	color : rgba(0,0,0,0);
}


.headArea__nav {
	width: calc(100% - 222px);
	display: flex;
	justify-content: flex-end;
}

.headArea__nav ul {
	width: 150px;
	display: flex;
	justify-content: space-between;
}

.headArea__nav li {
	height: 32px;
	display: flex;
	align-items: center;
}

.headArea__nav li a {
	display: block;
	width: 50px;
	text-align: center;
	color: white;
	border-right: 1px solid #ffffff ;
	text-decoration: none;
}

.headArea__nav li:last-child a {
	border: none;
}

.headArea__nav li a:hover {
	text-decoration: underline;
}


/*---bread-list----------------------------*/

.breadList {
	width: 100%;
	margin: 10px auto;
	display: flex;
}

.breadList li:nth-child(2)::before {
	margin-right: 8px;
	content: "＞";
}

.breadList li a {
	margin: 0 10px;
}


@media (max-width: 380px) {
	.headArea_contents {
		display: block;
		padding: 0;
	}
	
	.headArea__title {
		margin: 0 auto 10px;
	}
	
	.headArea__nav {
		width: 100%;
		justify-content: center;
	}
}