@charset "UTF-8";

/* -----------------------------------------------------------
	大枠
----------------------------------------------------------- */

#headercontainer{
	height: 450px;
}
#maincontainer{
	margin-top: 510px;
	margin-bottom: 100px;
}

@media screen and (max-width:991px) {
	#headercontainer{
		height: 240px;
	}
	#maincontainer{
		margin-top: 270px;
	}
}

/* -----------------------------------------------------------
	パンナビ
----------------------------------------------------------- */

.breadcrumb > ol{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}
.breadcrumb > ol > li{
	padding: 0 15px 0 15px;
	font-size: 0.875rem;
	position: relative;
}
.breadcrumb > ol > li:first-child{
	padding-left: 0;
}
.breadcrumb > ol > li > a{
	color: #333;
}
.breadcrumb > ol > li::before{ 
	content: '';
	display: block;
	width: 1px;
	height: 14px;
	background: var(--sub-color01);
	transform: rotate(30deg);
	position: absolute;
	top: 6px;
	left: 0;
}
.breadcrumb > ol > li:first-child::before{
	display: none;
}

@media (hover: hover) {
	.breadcrumb > ol > li > a:hover{
		color: var(--main-color);
	}
}

@media screen and (max-width:767px) {
	.breadcrumb > ol > li{
		padding: 0 10px 0 10px;
	}
}


/* -----------------------------------------------------------
	下層メインビジュアル
----------------------------------------------------------- */

.kasou-mv{
	width: 100%;
	height: 350px;
	position: absolute;
	top: 100px;
	left: 0;
	z-index: -1;
}
.kasou-mv img{
	width: 100%;
	height: 350px;
	object-fit: cover;
	object-position: center;
}

@media (hover: hover) {
}

@media screen and (max-width:991px) {
	.kasou-mv{
		height: 200px;
		top: 40px;
	}
	.kasou-mv img{
		height: 200px;
	}

}

/* -----------------------------------------------------------
	サイトマップ
----------------------------------------------------------- */

.sitemap-list > li > a{
	display: block;
	padding: 10px 0;
	font-size: 1.125rem;
	text-decoration: none;
	border-bottom: 2px solid var(--main-color);
	position: relative;
}
.sitemap-list > li > a::after{
	content: '';
	display: block;
	width: 8px;
    height: 8px;
    border-top: 1px solid var(--sub-color01);
    border-right: 1px solid var(--sub-color01);
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto 0;
	transition: all .3s ease;
}

@media (hover: hover) {
	.sitemap-list > li > a:hover::after{
		right: 15px;
	}
}

