/*-----------------------------------
	title_block
-----------------------------------*/
#title_block::before {
    content: "";
    clip-path: polygon(0 0, 100% 0, 34% 100%, 0% 100%);
    background: #0a0a0a;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 550px;
    height: 710px;
    z-index: -1;
}
#title_block .contents_inner{
    width: 100%;
}
#title_block .title_box {
    display: flex;
    justify-content: center;
    padding-top: 140px;
    padding-bottom: 100px;
}
#title_block .title_box h1 {
    font-size: 40px;
    font-weight: 700;
	text-align: center;
	line-height: 1.5;
}

@media screen and (max-width:640px){
	#title_block .title_box {
		padding: 100px 0 30px;
	}
	#title_block .title_box h1 {
        font-size: 30px;
    }
}

/*-----------------------------------
	breadcrumbs
-----------------------------------*/
#breadcrumbs {
	padding: 11px 0;
    margin-bottom: 50px;
}
#breadcrumbs ul {
	display: flex;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	color: #ffffff;
	overflow-x: auto;
    overflow-y: hidden;
}
#breadcrumbs ul li {
	white-space: nowrap;
	position: relative;
	line-height: 1.5;
}
#breadcrumbs ul li a {
	display: block;
    /* color: #ffffff; */
	color: #989898;
	padding-right: 22px;
}
#breadcrumbs ul li a::after {
	content: ">";
	font-size: 12px;
	position: absolute;
	top: 0;
	bottom: 0;
	right:7px;
	margin: auto;
}
#breadcrumbs ul li a:hover {
	color: #ffffff;
	opacity: 0.5;
}

@media screen and (max-width:640px){
	#breadcrumbs{
		margin-bottom: 10px;
	}
}

