@charset "UTF-8";
/* CSS Document */

/*----- BREADCRUMB -----*/

#breadcrumb{
	width:100%;
	
	background-color:#fff;
	color:#222;
}

#breadcrumb ul{
	width:100%;
	margin:0 auto;
	max-width: 1080px;
	
	display:flex;
	flex-flow: row wrap;
	align-items: stretch;
	justify-content: flex-start;
}

#breadcrumb ul li{
	display:block;
	
	font-size:0.6rem;
	line-height:30px;
	
	box-sizing: border-box;
	padding:10px;
	
	position: relative;
}

#breadcrumb ul li:first-child{
	font-size:0;
	line-height:0;
	
	width:50px;
	height:50px;
	
	padding:0;
	margin-right:10px;
}

#breadcrumb ul li::before{
	display:block;
	content:"";
	
	width:5px;
	height:1px;
	
	background-color:#222;
	
	position: absolute;
	top:0;
	bottom:0;
	left:-2.5px;
	
	margin:auto 0;
}

#breadcrumb ul li:first-child::before{
	display:none;
}

#breadcrumb ul li a{
	display:block;
	
	color:#222;
	transition: 0.25s;
}

#breadcrumb ul li a:hover{
	color:#fd5e53;
	
	text-decoration: none;
}

#breadcrumb ul li:first-child a{
	width:100%;
	height:100%;
	
	background-color:#fd5e53;
	
	background-image: url("../../../images/_assets-page/_assets-common/icon-home-white.webp");
	background-repeat: no-repeat;
	background-size:20px;
	background-position: center;
}

#breadcrumb ul li:first-child a:hover{	
	background-color:#fff;
	background-image: url("../../../images/_assets-page/_assets-common/icon-home-color.webp");
}

/*----- PAGE -----*/

.page{
	width:100%;
	
	background-color: inherit;
	color:#222;
}

.page section.page-child{
	margin-bottom:50px;
}

/*----- PAGE-HEADER -----*/

.page-header{
	width:100%;
	height:240px;
	
	position: relative;
	
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	
	background-color: rgba(0,0,0,0.5);
	background-blend-mode: darken;
}

.page-header::after{
	display:block;
	content:"";
	
	width:100%;
	height:100%;
	
	background-image: url("../../../images/_assets-page/_assets-common/filt-cover.webp");
	background-repeat: repeat;
	background-size:30px;
	background-position: center;
	
	position: absolute;
	top:0;
	left:0;
}

.page-header div.inner{
	width:100%;
	height:100%;
	
	position: absolute;
	top:0;
	left:0;
	
	z-index: 10;
	
	display:flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: center;
}

.page-header div.inner-block{
	width:100%;
	
	text-align: center;
	
	box-sizing: border-box;
	padding-bottom:50px;
	
	background-image: url("../../../images/_assets-page/_assets-common/design-page-header-bottom.webp");
	background-repeat: no-repeat;
	background-size:160px;
	background-position: center bottom;
}

.page-header h2{
	font-size:2.0rem;
	line-height:50px;
	
	color:#fff;
}

.page-header p.eng{
	font-size:1.25rem;
	line-height:30px;
	
	color:#fff;
}

.page-header p.eng span.note{
	display:inline-block;
	
	box-sizing: border-box;
	padding:0 50px;
	
	position: relative;
}

.page-header p.eng span.note::before{
	display:block;
	content:"";
	
	width:40px;
	height:1px;
	
	background-color:#fff;
	
	position: absolute;
	top:0;
	bottom:0;
	left:0;
	
	margin:auto 0;
}

.page-header p.eng span.note::after{
	display:block;
	content:"";
	
	width:40px;
	height:1px;
	
	background-color:#fff;
	
	position: absolute;
	top:0;
	bottom:0;
	right:0;
	
	margin:auto 0;
}

@media screen and (min-width: 768px) {
	
	.page-header{
		height:360px;
	}
	
	.page-header p.eng span.note{
		padding:0 90px;
	}
	
	.page-header p.eng span.note::before{
		width:80px;
	}
	
	.page-header p.eng span.note::after{
		width:80px;
	}
	
}

/*----- PAGE-FOOTER -----*/

.page-footer{
	width:100%;
	margin-top:50px;
	
	background-color:#fff;
	color:#222;
	
	box-sizing: border-box;
	padding:25px 0;
}

.page-footer p.btn-detail{
	width:240px;
	margin:0 auto;
}

.page-footer p.btn-detail a{
	display:block;
	
	background-color:#5f161d;
	color:#fff;
	
	text-align: center;
	
	font-size:1.0rem;
	line-height:50px;
	
	box-sizing: border-box;
	border:solid 1px #5f161d;
	
	background-image: url("../../../images/_assets-page/_assets-common/icon_arrow-right-white.webp");
	background-repeat: no-repeat;
	background-size:15px;
	background-position: center left 10px;
	
	transition: 0.25s;
}

.page-footer p.btn-detail a:hover{
	background-color:#fff;
	color:#fd5e53;
	
	background-image: url("../../../images/_assets-page/_assets-common/icon_arrow-right-color.webp");
	text-decoration: none;
	
	border:solid 1px #fd5e53;
}

/*----- INNER-HEADER -----*/

.inner-header{
	width:100%;
	text-align: center;
	
	box-sizing: border-box;
	padding:60px 0 40px;
	
	background-image: url("../../../images/_assets-page/_assets-common/design-inner-header-top-color.webp");
	background-repeat: no-repeat;
	background-size:90px;
	background-position: center top 35px;
	
	background-color:#fff;
}

.inner-header h3{
	display:inline-block;
	
	font-size:1.25rem;
	line-height:30px;
	font-weight:700;
	
	color:#5f161d;
	
	box-sizing: border-box;
	padding:0 80px;
	
	position: relative;
}

.inner-header h3::before{
	display:block;
	content:"";
	
	width:80px;
	height:20px;
	
	position: absolute;
	top:0;
	bottom:0;
	left:0;
	
	margin:auto 0;
	
	background-image: url("../../../images/_assets-page/_assets-common/design-inner-header-side-color.webp");
	background-repeat: no-repeat;
	background-size:cover;
	background-position: center;
}

.inner-header h3::after{
	display:block;
	content:"";
	
	width:80px;
	height:20px;
	
	position: absolute;
	top:0;
	bottom:0;
	right:0;
	
	margin:auto 0;
	
	background-image: url("../../../images/_assets-page/_assets-common/design-inner-header-side-color.webp");
	background-repeat: no-repeat;
	background-size:cover;
	background-position: center;
}

.inner-header h3 span.note{
	display:block;
	
	font-size:0.8rem;
	line-height:20px;
	font-weight:400;
}

@media screen and (min-width: 768px) {
	
	.inner-header h3{
		font-size:1.5rem;
		line-height:30px;
		
		padding:0 130px;
	}
	
	.inner-header h3 span.note{
		font-size:1.0rem;
		line-height:30px;
	}
	
	.inner-header h3::before{
		width:120px;
	}
	
	.inner-header h3::after{
		width:120px;
	}
	
}

/*----- INNER-FOOTER -----*/

.inner-footer{
	width:100%;
	
	box-sizing: border-box;
	padding:30px 0;
	
	background-color:#fff;
	color:#222;
}

.inner-footer p.btn-detail{
	width:240px;
	margin:0 auto;
}

.inner-footer p.btn-detail a{
	display:block;
	
	background-color:#5f161d;
	color:#fff;
	
	text-align: center;
	
	font-size:1.0rem;
	line-height:50px;
	
	box-sizing: border-box;
	border:solid 1px #5f161d;
	
	background-image: url("../../../images/_assets-page/_assets-common/icon_arrow-right-white.webp");
	background-repeat: no-repeat;
	background-size:15px;
	background-position: center left 10px;
	
	transition: 0.25s;
}

.inner-footer p.btn-detail a:hover{
	background-color:#fff;
	color:#fd5e53;
	
	border:solid 1px #fd5e53;
	
	background-image: url("../../../images/_assets-page/_assets-common/icon_arrow-right-color.webp");
	text-decoration: none;
}

/*----- SLIDER-CONTENT -----*/

.slider-content div.prev{
	position: absolute;
	top:0;
	left:0;
	
	width:50px;
	height:100%;
	
	box-sizing: border-box;
	padding-bottom:10px;
	
	z-index: 1;
	opacity: 0.8;
}

.slider-content div.prev:hover{
	cursor: pointer;
}

.slider-content div.prev span.ol{
	display:block;
	position: relative;
	width:100%;
	height:100%;
}

.slider-content div.prev img{
	width:100%;
	vertical-align: bottom;
	
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	
	background-color:#fd5e53;
	
	box-sizing: border-box;
	padding:20px 10px;
}

.slider-content div.next{
	position: absolute;
	top:0;
	right:0;
	
	width:50px;
	height:100%;
	
	box-sizing: border-box;
	padding-bottom:10px;
	
	z-index: 1;
	opacity: 0.8;
}

.slider-content div.next:hover{
	cursor: pointer;
}

.slider-content div.next span.ol{
	display:block;
	position: relative;
	width:100%;
	height:100%;
}

.slider-content div.next img{
	width:100%;
	vertical-align: bottom;
	
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	
	background-color:#fd5e53;
	
	box-sizing: border-box;
	padding:20px 10px;
}

/*----- PAGER-ARCHIVE -----*/

.pager{
	width:100%;
	
	background-color:#fff;
	color:#222;
	
	box-sizing: border-box;
	padding:20px 0;
}

.pager ul.archive{
	display:flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: center;
	
	width:100%;
	margin:0 auto;
	max-width: 960px;
}

.pager ul.archive li{
	width:50px;
	margin:5px;
}

.pager ul.archive li span.note{
	display:block;
	
	background-color:#f0f0f0;
	
	font-size:1.0rem;
	line-height:50px;
	
	text-align: center;
	border-radius:2.5px;
}

.pager ul.archive li a{
	display:block;
	
	background-color:#5f161d;
	color:#fff;
	
	box-sizing: border-box;
	border:solid 1px #5f161d;
	
	transition:0.25s;
	
	border-radius:2.5px;
}

.pager ul.archive li a:hover{
	background-color:#fff;
	color:#fd5e53;
	
	border:solid 1px #fd5e53;
	
	text-decoration: none;
}

/*----- PAGER-SINGLE -----*/

.pager ul.single{
	display:flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: center;
	
	width:100%;
	margin:0 auto;
	max-width: 960px;
}

.pager ul.single li{
	width:100px;
	margin:5px;
}

.pager ul.single li span.note{
	display:block;
	
	background-color:#f0f0f0;
	
	font-size:0.8rem;
	line-height:50px;
	
	text-align: center;
	border-radius:2.5px;
}

.pager ul.single li a{
	display:block;
	
	background-color:#5f161d;
	color:#fff;
	
	box-sizing: border-box;
	border:solid 1px #5f161d;
	
	transition:0.25s;
	
	border-radius:2.5px;
}

.pager ul.single li.prev a{
	background-image: url("../../../images/_assets-page/_assets-common/icon_arrow-left-white.webp");
	background-repeat: no-repeat;
	background-size:10px;
	background-position: center left 7.5px;
}

.pager ul.single li.next a{
	background-image: url("../../../images/_assets-page/_assets-common/icon_arrow-right-white.webp");
	background-repeat: no-repeat;
	background-size:10px;
	background-position: center right 7.5px;
}

.pager ul.single li a:hover{
	background-color:#fff;
	color:#fd5e53;
	
	border:solid 1px #fd5e53;
	
	text-decoration: none;
}

.pager ul.single li:first-child a:hover{
	background-image: url("../../../images/_assets-page/_assets-common/icon_arrow-left-color.webp");
}

.pager ul.single li:last-child a:hover{
	background-image: url("../../../images/_assets-page/_assets-common/icon_arrow-right-color.webp");
}
