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

/*共通で使えるフォントクラス*/
.a-otf{
font-family: a-otf-midashi-mi-ma31-pr6n, serif;
}

/* h1Area */
.h1Area {
	background-color: #ececec;
	margin-top: 80px;
}
.h1Area .inner {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	max-width: 1500px;
	min-height: 245px;
	margin: 0 auto;
	background-image: url("../img/sub/h1_bg.jpg");
	background-position: left center;
	background-repeat: no-repeat;
}
.h1Area .inner h1 {
	font-size: 30px;
	line-height: 1.2;
	font-weight: 700;
}

/* breadArea */
.breadArea .inner,
.breadArea02 .inner {
	display: flex;
	justify-content: flex-start;
	padding: 25px 20px;
}
.breadArea .inner li,
.breadArea02 .inner li {
	display: flex;
	justify-content: flex-start;
}
.breadArea .inner li:nth-of-type(1),
.breadArea02 .inner li:nth-of-type(1) {
	position: relative;
	padding-right: 20px;
}
.breadArea .inner li:nth-of-type(1):after,
.breadArea02 .inner li:nth-of-type(1):after {
	content: ">";
	position: absolute;
	top: 0;
	right: 0;
}
.breadArea .inner li:nth-of-type(2) {
	padding-left: 12px;
}
.breadArea02 .inner li:nth-of-type(2) {
	padding: 0 12px;
}
.breadArea02 .inner li:nth-of-type(3) {
	position: relative;
	padding-left: 20px;
}
.breadArea02 .inner li:nth-of-type(3):before {
	content: ">";
	position: absolute;
	top: 0;
	left: 0;
}
.breadArea .inner li, 
.breadArea .inner li a,
.breadArea02 .inner li, 
.breadArea02 .inner li a {
	font-size: 13px;
	color: #000;
	font-weight: 500;
}
.breadArea .inner li a:hover,
.breadArea02 .inner li a:hover {
	color: #76002f;
}

@media screen and (max-width: 1000px) {
	.h1Area {
		margin-top: 70px;
	}
	.h1Area .inner {
		margin-top: 70px;
		width: 100%;
		max-width: 100%;
		background-image: url("../img/sub/h1_bg_sp.jpg");
	}
}

@media screen and (max-width: 767px) {
	.inner {
		width: 100%;
	}
	.h1Area .inner {
		min-height: 150px;
		background-image: url("../img/sub/h1_bg_mini.jpg");
	}
	.h1Area .inner h1 {
		font-size: 25px;
	}
	.breadArea,
	.breadArea02 {
		display: none;
	}
}


@media screen and (max-width: 340px) {
	.h1Area .inner h1 {
		font-size: 22px;
	}
}


