@charset "utf-8";
/* nav */
nav #menuList li:nth-child(3) a {
	color: #E50012;
	text-decoration: underline;
}
nav #menuList li:nth-child(3) a:hover {
	border-bottom: none;
}
@media screen and (max-width: 768px) {
	nav {
		min-height: 9rem;
	}
	nav #menuList li:nth-child(3) a {
		color: #000;
		text-decoration: none;
	}
}

/* pageTtl */
.pageTtl .breadcrumbs {
	background-color: #EEF1F5;
	padding: 0.8rem 0 0.5rem;
}
.pageTtl .breadcrumbs ul {
	max-width: 1350px;
	margin: 0 auto;
	padding: 0 2.5rem;
	display: flex;
	font-size: 1.4rem;
}
.pageTtl .breadcrumbs li + li {
	margin-left: 0.5rem;
	padding-left: 2rem;
	position: relative;
}
.pageTtl .breadcrumbs li + li::before {
	content: "＞";
	position: absolute;
	top: 0;
	left: 0;
}
@media screen and (max-width: 768px) {
	.pageTtl .breadcrumbs {
		padding: 1.3rem 0;
	}
	.pageTtl .breadcrumbs ul {
		max-width: 100%;
		padding: 0 2.5rem;
		font-size: 1.8rem;
	}
	.pageTtl .breadcrumbs li + li {
		margin-left: 0.8rem;
		padding-left: 2.5rem;
	}
}

/* pagetop */
#pagetop {
	position: fixed;
	right: 2rem;
	bottom: 2rem;
	width: 6rem;
	z-index: 99;
}
@media screen and (max-width: 768px) {
	#pagetop {
		right: 1rem;
		bottom: 1rem;
		width: 6.5rem;
	}
}