@charset "UTF-8";

.page .main-area h1 {
	position: static;
}

#contents-5g {
	/* height: 100%; */
	letter-spacing: 1px;
	position: relative;
	overflow: visible;
}

#contents-5g a {
	transition: all 0.3s;
}

.inner-l {
	max-width: 1500px;
	margin: 0 auto;
}

.wrapper-layout {
	padding-bottom: 3em;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.wrapper-layout .side-area {
	width: 25%;
	min-width: 250px;
	position: relative;
}

.wrapper-layout .contents-area {
	width: 73%;
	padding: 2em;
	margin-left: 1em;
	background-color: rgba(58, 58, 58, 0.9);
	position: relative;
	/* flex: 1; */
}

@media (max-width: 768px) {
	.wrapper-layout {
		display: block;
	}
	.wrapper-layout .side-area {
		width: 92%;
		min-width: 0;
		margin: 0 auto;
	}
	.wrapper-layout .contents-area {
		width: 92%;
		padding: 1.5em 1em;
		margin: 0 auto;
	}
}

/* --------------------------------------------------

ぱんくず

-------------------------------------------------- */

.breadCrumbs {
	width: 100%;
	padding: 0.3em 1em;
	margin-bottom: 1em;
	text-align: right;
	overflow-x: auto;
	/* white-space: nowrap; */
	position: relative;
}

.breadCrumbs ul {
	display: flex;
	flex-wrap: wrap;
}

.breadCrumbs li:first-child {
	margin: 0;
}
.breadCrumbs li {
	color: #fff;
	text-align: left;
	font-size: 1rem;
	display: inline-block;
	margin: 0 0.5em 0 0;
}
.breadCrumbs li:after {
	content: "";
	width: 0.5em;
	height: 0.5em;
	margin-right: 0.8em;
	margin-left: 0.5em;
	border-bottom: 2px solid #fff;
	border-left: 2px solid #fff;
	display: inline-block;
	vertical-align: middle;
	transform: translateY(-13%) rotateZ(225deg);
}
.breadCrumbs li:last-child:after {
	display: none;
}
#contents-5g .breadCrumbs li a {
	color: #fff;
}
