@charset "UTF-8";
/* CSS Document */
/* sub共通 */
header {
	position: fixed;
	top: 0;
	left: 0;
	background-position: top center;
	background-color: rgba(255, 255, 255, 0.95);
	z-index: 500;
	width: 100%;
}
header .h_inner {
	max-width: 2000px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	height: 80px;
}
header.is-animation {
	transition: 1s;
	box-shadow: 0 2px 13px rgba(0, 0, 0, 0.2);
}
header.is-animation .h_inner {
	height: 80px;
	transition: .5s;
}

/* subArea */
.subArea {
	padding-top: 140px;
}

/* breadArea */
.breadArea .inner,
.breadArea02 .inner,
.breadArea03 .inner {
	display: flex;
	justify-content: flex-start;
	padding: 30px 40px 20px;
	margin-bottom: 0;
}
.breadArea .inner li,
.breadArea02 .inner li,
.breadArea03 .inner li {
	display: flex;
	justify-content: flex-start;
}
.breadArea .inner li:nth-of-type(1),
.breadArea02 .inner li:nth-of-type(1),
.breadArea03 .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,
.breadArea03 .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: 0 12px 0 20px;
}

.breadArea02 .inner li:nth-of-type(4) {
    position: relative;
    padding-left: 20px;
}
.breadArea02 .inner li:nth-of-type(3):before {
	content: ">";
	position: absolute;
	top: 0;
	left: 0;
}
.breadArea02 .inner li:nth-of-type(4):before {
	content: ">";
	position: absolute;
	top: 0;
	left: 0;
}
.breadArea03 .inner li:nth-of-type(2) {
	padding: 0 12px;
}
.breadArea03 .inner li:nth-of-type(3) {
	position: relative;
	padding-left: 20px;
}
.breadArea03 .inner li:nth-of-type(3):before {
	content: ">";
	position: absolute;
	top: 0;
	left: 0;
}
.breadArea03 .inner li:nth-of-type(3) {
	padding: 0 12px;
}
.breadArea03 .inner li:nth-of-type(4) {
	position: relative;
	padding-left: 20px;
}
.breadArea03 .inner li:nth-of-type(4):before {
	content: ">";
	position: absolute;
	top: 0;
	left: 0;
}
.breadArea .inner li,
.breadArea .inner li a,
.breadArea02 .inner li,
.breadArea02 .inner li a,
.breadArea03 .inner li,
.breadArea03 .inner li a {
	font-size: 14px;
	color: #000;
	text-transform: uppercase;
}
.breadArea .inner li a,
.breadArea02 .inner li a,
.breadArea03 .inner li a {
	text-decoration: none;
}

.breadArea .inner li a:hover,
.breadArea02 .inner li a:hover {
	color: #cc181c;
}

@media screen and (max-width: 1000px) {
	header {
		position: fixed;
	background-color: rgba(255, 255, 255, 0.98);
		box-shadow: 0 2px 13px rgb(0 0 0 / 20%);
	}
	header .h_inner {
		width: 100%;
		height: 70px;
		padding: 0 16px 0;
		align-items: center;
	}
	header .h_inner.is-animation {
		box-shadow: 0 0 0 rgb(0 0 0 / 0%);
		background-color: rgba(0, 0, 0, 0);
	}
	header.is-animation .h_inner {
		height: 70px;
	}

/* breadArea */
.breadArea .inner,
.breadArea02 .inner,
.breadArea03 .inner {
	padding: 30px 6vw 20px;
}
}

@media screen and (max-width: 767px) {
	.inner {
		width: 100%;
	}

/* h2Area */
	.breadArea,
	.breadArea02,
	.breadArea03 {
		display: none;
	}
}