@charset "UTF-8";

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

	h2_title

-----------------------------------*/
#h2_title{
	height: 330px;
	color: #fff;
	padding:40px 0 20px;
	text-align:center;
	background: url(../img/lower/bg_h2.jpg);
	background-size: 100%;
	background-repeat:no-repeat;
	background-attachment: fixed;
	padding-top: 120px;
	box-sizing: border-box;
	position: relative;
}
#h2_title h2 {
    font-size: 36px;
    line-height: 3.6rem;
}
#h2_title h2 span.small{
    font-size: 24px;
}
@media screen and (max-width: 1199px) {
	#h2_title{
		background: url(../img/lower/bg_h2.jpg) no-repeat;
		background-size: 160%;
		background-position: top;
	}
}
@media screen and (max-width: 980px) {
	#h2_title{
		height: 160px;
		padding-top: 60px;
	}
	#h2_title h2 {
		font-size: 30px;
		line-height: 3.0rem;
	}
}
@media screen and (max-width: 740px) {
	#h2_title{
		height: 160px;
		padding-top: 70px
	}
	#h2_title h2 {
		font-size: 21px;
		letter-spacing: 0.4rem;
		line-height: 2.4rem;
	}
	#h2_title h2 span.small{
		font-size: 14px;
	}
}
/*-----------------------------------

	breadcrumb

-----------------------------------*/
#breadcrumb {
	width:100%;
	position:relative;
	padding: 20px 0 0;
}
#breadcrumb ul{
	text-align:right;
}
#breadcrumb ul li {
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1.6rem;
	letter-spacing:0.2rem;
	display: inline-block;
}
#breadcrumb ul li a:hover{
    color: #aaa;
}
#breadcrumb ul li:after {
	content:">";
	display:inline-block;
	padding:0 0 0 0.5em;
}
#breadcrumb ul li:last-of-type:after {
	content:"";
	padding:0;
}
@media screen and (max-width: 640px) {
	#breadcrumb{
		height: auto;	
		padding: 5px 0;
	}
	#breadcrumb ul li {
		font-size: 13px;
		font-size: 1.3rem;
	}
	#breadcrumb:after {
		top: auto;
	}
}
