@charset "UTF-8";
/* CSS Document */

body{
	font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
	font-size:1.0rem;
	line-height:1.75em;
	
	background-color:#fff;
	color:#000;
}

a{
	color:#f00;
	text-decoration: none;
}

a:hover{
	color:#f44;
	text-decoration: underline;
}

img{
	max-width: 100%;
	max-height: 100%;
}

/*//////////----- HEADER -----//////////*/

#header{
	width:100%;
	
	background-color:#fff;
	color:#000;
}

#header h1{
	background-color:#000;
	color:#fff;
	
	font-size:0.6rem;
	line-height:30px;
}

#header h1 span.wrap{
	display:block;
	
	width:100%;
	margin:0 auto;
	max-width: 1080px;
	
	box-sizing: border-box;
	padding:0 10px;
}

.header-content{
	width:100%;
	
	background-color:#fff;
	color:#000;
}

.header-content div.wrap{
	width:100%;
	margin:0 auto;
	max-width: 1080px;
	
	box-sizing: border-box;
	padding:10px;
	
	display:flex;
	flex-flow: row wrap;
	align-items: stretch;
	justify-content: flex-start;
}

.header-content p.logo{
	width:100%;
	max-width: 240px;
	
	font-size:1.0rem;
	line-height:80px;
	
	text-align: left;
}

.header-content p.logo a{
	display:block;
	
	color:#000;
}

.header-content p.logo a:hover{
	opacity: 0.5;
	
	text-decoration: none;
}

.header-content p.logo img{
	width:100%;
	vertical-align: bottom;
}

.header-content nav.navigation{
	display:none;
	
	width:100%;
}

.header-content nav.navigation ul{
	display:flex;
	flex-flow: row wrap;
	align-items: stretch;
	justify-content: flex-end;
	
	width:100%;
	
	box-sizing: border-box;
	padding-right:50px;
}

.header-content nav.navigation ul li{
	width:calc(100%/6);
	max-width: 80px;
	
	font-size:0.8rem;
	line-height: 20px;
	
	text-align: center;
}

.header-content nav.navigation ul li a{
	display:block;
	
	box-sizing: border-box;
	/* padding:20px 0; */
	
	color:#000;
}

.header-content nav.navigation ul li a:hover{
	opacity: 0.5;
	
	text-decoration: none;
}

.header-content nav.navigation ul li span.note{
	display:block;
	
	font-size:0.6rem;
	line-height:20px;
}

.header-content nav.navigation ul li img{
	width:100%;
	vertical-align: bottom;
}

@media only screen and (min-width: 790px){
	
	.header-content p.logo{
		width:240px;
	}
	
	.header-content nav.navigation{
		display:block;
		
		width:calc(100% - 240px);
	}
}

/*//////////----- BREAD CRUMB -----//////////*/

#breadcrumb{
	width:100%;
	
	background-color:#000;
	color:#fff;
}

#breadcrumb ul{
	width:100%;
	margin:0 auto;
	max-width: 1080px;
	
	box-sizing: border-box;
	padding:0 10px;
	
	/*display:flex;
	flex-flow: row wrap;
	align-items: stretch;
	justify-content: flex-start;*/
}

#breadcrumb ul{
	width:100%;
	margin:0 auto;
	max-width: 1080px;
	
	box-sizing: border-box;
	padding:0 10px;
	
	/*display:flex;
	flex-flow: row wrap;
	align-items: stretch;
	justify-content: flex-start;*/
}

#breadcrumb ul{
	font-size:0;
	line-height:1.0em;
}

#breadcrumb ul li{
	display:inline-block;
	font-size:0.6rem;
	line-height:30px;
}

#breadcrumb ul li a{
	display:inline-block;
	color:#fff;
}

#breadcrumb ul li a:hover{
	/*opacity: 0.5;*/
}

#breadcrumb ul li:after{
	display:inline;
	content:"-";
	
	box-sizing: border-box;
	padding:0 5px;
}

#breadcrumb ul li:last-child:after{
	display:none;
}

/*//////////----- PAGETOP -----//////////*/

#pagetop{
	width:100%;
	
	background-color:#000;
	color:#fff;
}

#pagetop div.wrap{
	width:100%;
	margin:0 auto;
	max-width: 1080px;
	
	box-sizing: border-box;
	padding:0 10px;
	
	text-align: right;
}

#pagetop p.btn{
	display:inline-block;
	width:160px;
	
	font-size:0.8rem;
	line-height:40px;
	
	text-align: center;
}

#pagetop p.btn a{
	display:block;
	
	/*background-color:#222;*/
	color:#fff;
	
	box-sizing: border-box;
	/*padding-left:45px;*/
	
	background-image: url("../images/icon-pagetop-white.png");
	background-repeat: no-repeat;
	background-size:15px;
	background-position: center left 15px;
	
	transition: 0.25s;
}

#pagetop p.btn a:hover{
	/*opacity: 0.5;*/
	background-color:#444;
	
	text-decoration: none;
}

@media only screen and (min-width: 480px){
	
	#pagetop div.wrap{
		padding-right:90px;
	}
	
}

/*//////////----- FOOTER -----//////////*/

#footer{
	width:100%;
	
	background-color:#fff;
	color:#000;
}

#footer div.wrap{
	width:100%;
	margin:0 auto;
	max-width: 1080px;
	
	box-sizing: border-box;
	padding:20px;
}

#footer p.logo{
	width:100%;
	margin: 0 auto 20px;
	max-width: 240px;
}

#footer p.logo a{
	display:block;
}

#footer p.logo a:hover{
	opacity: 0.5;
}

#footer p.logo img{
	width:100%;
	vertical-align: bottom;
}

#footer p.contact{
	width:80%;
	margin: 0 auto 20px;
	max-width: 320px;
}

#footer p.contact a{
	display:block;
}

#footer p.contact a:hover{
	opacity: 0.5;
}

#footer p.contact img{
	width:100%;
	vertical-align: bottom;
}

#footer p.caption{
	font-size:0.8rem;
	line-height:1.75em;
	
	width:100%;
	margin:0 auto 20px;
	max-width: 800px;
}

#footer address{
	font-size:0.6rem;
	line-height:60px;
	
	text-align: center;
}

#footer address a{
	color:#000;
}

/*//////////----- DRAWER -----//////////*/

#drawer label{
	position: fixed;
	top:45px;
	right:0;
	
	width:60px;
	height:60px;
	
	z-index: 50;
	
	transition:0.25s;
}

#drawer label:hover{
	cursor: pointer;
}

#drawer input{
	display:none;
}

#drawer span.hamburger{
	display:block;
	
	position: fixed;
	top:74.5px;
	right:15px;
	
	width:30px;
	height:1px;
	
	background-color:#444;
	
	transition: 0.25s;
	
	z-index: 40;
}

#drawer span.hamburger:before{
	display:block;
	content:"";
	
	position: absolute;
	top:-10px;
	
	width:100%;
	height:1px;
	
	background-color:#444;
	
	transition: 0.25s;
}

#drawer span.hamburger:after{
	display:block;
	content:"";
	
	position: absolute;
	top:10px;
	
	width:100%;
	height:1px;
	
	background-color:#444;
	
	transition: 0.25s;
}

#drawer input[type="checkbox"]:checked + label{
	top:0;
	
	width:100%;
	height:100%;
}

#drawer input[type="checkbox"]:checked ~ span.hamburger{
	background-color: transparent;
}

#drawer input[type="checkbox"]:checked ~ span.hamburger:before{
	top: 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	
	background-color:#fff;
}

#drawer input[type="checkbox"]:checked ~ span.hamburger:after{
	top: 0;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	
	background-color:#fff;
}

#drawer div.filter-cover{
	position: fixed;
	top:0;
	left:0;
	
	width:100%;
	height:100%;
	
	background-color: transparent;
	
	transition: 0.10s;
	
	z-index: -10;
}

#drawer input[type="checkbox"]:checked ~ div.filter-cover{
	background-color: rgba(0,0,0,0.80);
	
	z-index: 20;
}

#drawer nav.navigation{
	position: fixed;
	top:0;
	left:-240px;
	
	width:240px;
	height:100%;
	
	background-color:#fff;
	color:#000;
	
	overflow: hidden;
	transition: 0.25s;
	
	z-index: 30;
}

#drawer input[type="checkbox"]:checked ~ nav.navigation{
	left:0;
}

#drawer nav.navigation ul{
	box-sizing: border-box;
	padding:0 10px;
	
	overflow-y: scroll;
	height:100%;
}

#drawer nav.navigation ul li{
	font-size:0.8rem;
	line-height:40px;
	
	box-sizing: border-box;
	border-bottom:solid 1px #f0f0f0;
}

#drawer nav.navigation ul li a{
	display:block;
	
	color:#000;
	
	box-sizing: border-box;
	padding-left:30px;
	
	background-image: url("../images/icon-arrow-right-black.png");
	background-repeat: no-repeat;
	background-size: 10px;
	background-position: center left 10px;
}

#drawer nav.navigation ul li a:hover{
	opacity: 0.5;
	
	text-decoration: none;
}

/*//////////----- BT-MENU -----//////////*/

#bt-menu{
	position: fixed;
	bottom:0;
	left:0;
	
	width:100%;
	
	z-index: 10;
}

.bt-menu-nav{
	display:none;
}

.bt-menu-nav ~ label{
	background-color:#000;
	color:#fff;
	
	font-size:0.8rem;
	line-height:40px;
	
	display:block;
	width:80px;
	
	text-align: center;
	
	border-top-right-radius: 5px;
	
	position: absolute;
	bottom:80px;
	left:0;
	
	transition: 0.25s;
}

.bt-menu-nav ~ label:before{
	display:block;
	width:80px;
	height:40px;
	
	content:"";
	
	background-image: url("../images/icon-arrow-down-white.png");
	background-repeat: no-repeat;
	background-size: 20px;
	background-position: center;
}

.bt-menu-nav:checked ~ label{
	bottom:0;
}

.bt-menu-nav:checked ~ label:before{	
	display:block;
	
	content:"";
	
	background-image: url("../images/icon-arrow-up-white.png");
	background-repeat: no-repeat;
	background-size: 20px;
	background-position: center;
}

#bt-menu label:hover{
	cursor: pointer;
	
	opacity: 0.5;
}

.bt-menu-nav ~ div.content{
	width:100%;
	
	position: absolute;
	bottom:0;
	left:0;
	
	transition: 0.25s;
}

.bt-menu-nav:checked ~ div.content{
	bottom:-80px;
	
	overflow: hidden;
}

#bt-menu div.content ul{
	display:flex;
	flex-flow: row wrap;
	align-items: stretch;
	justify-content: flex-start;
	
	width:100%;
}

#bt-menu div.content ul li{
	width:20%;
	
	text-align: center;
	
	font-size:0.6rem;
	line-height:40px;
	
	font-weight:bold;
}

#bt-menu div.content ul li a{
	display:block;
	
	background-color: rgba(255,255,255,0.90);
	color:#000;
	
	box-sizing: border-box;
	padding-top:40px;
	
	background-image: url("../images/icon-sample-black.png");
	background-repeat: no-repeat;
	background-size: 20px;
	background-position: center top 20px;
	
	transition: 0.25s;
}

#bt-menu div.content ul li a:hover{
	/*opacity: 0.5;*/
	
	text-decoration: none;
	
	background-color:#000;
	color:#fff;
	
	background-image: url("../images/icon-sample-white.png");
}


@media only screen and (min-width: 480px){
	
	#bt-menu{
		position: fixed;
		top:0;
		right:0;
		
		left:auto;
		bottom:auto;
		
		width:80px;
		height:100%;
	}
	
	.bt-menu-nav ~ label{
		bottom:10px;
		right:0;
		left:auto;
		
		z-index: 20;
		
		width:40px;
		height:60px;
		
		border-top-right-radius: 0;
		border-top-left-radius: 5px;
		border-bottom-left-radius: 5px;
	}
	
	.bt-menu-nav:checked ~ label{
		bottom:10px;
		right:-10px;
		
		overflow: hidden;
	}
	
	.bt-menu-nav ~ label:before{
		width:40px;
		height:60px;
		
		background-image: url("../images/icon-arrow-right-white.png");
	}
	
	.bt-menu-nav:checked ~ label:before{
		background-position: center left 10px;
	}
	
	.bt-menu-nav:checked ~ label:before{
		background-image: url("../images/icon-arrow-left-white.png");
	}
	
	.bt-menu-nav ~ div.content{
		top:0;
		right:0;
		
		left:auto;
		bottom:auto;
		
		display:flex;
		flex-flow: row wrap;
		align-items:flex-end;
		justify-content: flex-start;
		
		height:100%;
	}
	
	.bt-menu-nav:checked ~ div.content{
		right:-80px;
		
		overflow: hidden;
	}
	
	#bt-menu div.content ul{
		display:block;
		width:100%;
		
		box-sizing: border-box;
		padding-bottom:80px;
	}
	
	#bt-menu div.content ul li{
		width:100%;
		
		margin:5px 0;
	}
	
	#bt-menu div.content ul li a{		
		border-bottom-left-radius: 2.5px;
		border-top-left-radius: 2.5px;
	}
	
}
