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

.breadArea .inner,
.breadArea02 .inner {
	display: flex;
	justify-content: flex-end;
	padding: 10px 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: 13px;
}
.breadArea02 .inner li:nth-of-type(2) {
	padding: 0 13px;
}
.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: 400;
}
.breadArea .inner li a:hover,
.breadArea02 .inner li a:hover {
	color: #009ee5;
}

.subArea::after {
	content: "";
	position: absolute;
	display: block;
	width: 88vw;
	top: 0;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background-image: url("../img/sub/sub_bg_r.svg"), url("../img/sub/sub_bg_l.svg");
	background-repeat: no-repeat, no-repeat;
	background-position: right top 60%, left top 56%;
	background-size: 14%, 14%;
	z-index: -1;
}

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

	.breadArea .inner,
	.breadArea02 .inner {
		display: none;
	}
	.subArea{
		margin-top: 80px;
	}
	.subArea::after {
		background-position: right top 38%, left top 36%;
	}
}

@media screen and (max-width: 767px) {
	.subArea::after {
		background-image:none;
	}
