@charset "UTF-8";

body{
	font-family: 'M PLUS 1p', sans-serif;
	font-size:1.0rem;
	line-height:1.75em;
	
	background-color:#f0f0f0;
	color:#000;
}

a{
	color:#ce151b;
	text-decoration: none;
}

a:hover{
	color:#df262c;
	text-decoration: underline;
}

img{
	max-width: 100%;
	max-height: 100%;
}

address{
	font-size:0.6rem;
	line-height:40px;
	
	text-align: center;
	
	background-color:#ce151b;
	color:#fff;
}

#contents{
	box-sizing: border-box;
	padding-top:100px;
}

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

#header{
	width:100%;
	
	position: fixed;
	top:0;
	left:0;
	
	z-index: 10;
}

#header div.wrap{
	width:100%;
	margin:0 auto;
	max-width: 960px;
	
	position: relative;
}

#header h1{
	position: absolute;
	top:0;
	left:0;
	
	width:80px;
	height:80px;
	
	background-color:#fff;
	color:#000;
	
	border-bottom-right-radius: 5px;
}

@media only screen and (min-width: 960px){
	
	#header h1{
		border-bottom-left-radius: 5px;
	}
	
}

#header h1 a{
	display:block;
	height:100%;
}

#header h1 a:hover{
	opacity: 0.5;
}

#header h1 img{
	display:block;
	
	width:80%;
	vertical-align: bottom;
	
	position: absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	
	margin:auto;
}

#header nav.navigation{
	display:none;
	
	position: absolute;
	top:20px;
	right:80px;
	
	width:calc(100% - 200px);
	
	box-sizing: border-box;
	padding:0 10px;
}

#header nav.navigation ul{
	display:flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: flex-end;
	
	width:100%;
}

#header nav.navigation ul li{
	width:160px;
	
	box-sizing: border-box;
	padding:10px;
	
	text-align: center;
	
	font-size:0.8rem;
	line-height:25px;
	font-weight:bold;
	
	background-color:#ce151b;
	color:#fff;
}

#header nav.navigation ul li:first-child{
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

#header nav.navigation ul li:last-child{
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

#header nav.navigation ul li a{
	display:block;
	color:#fff;
}

#header nav.navigation ul li a:hover{
	background-color:#fff;
	color:#ce151b;
	
	text-decoration: none;
	border-radius:2.5px;
}

#header p.contact{
	display:none;
	
	position: absolute;
	top:0;
	right:0;
	
	width:80px;
	height:80px;
	
	font-size:0.6rem;
	line-height:20px;
	font-weight:bold;
	
	text-align: center;
}

#header p.contact a{
	display:block;
	color:#fff;
	
	background-color:#ce151b;
	border-bottom-left-radius: 5px;
	
	box-sizing: border-box;
	padding:50px 0 10px;
	
	background-image: url("../images/icon-mail-white.png");
	background-repeat: no-repeat;
	background-size: 30px;
	background-position: center top 15px;
}

@media only screen and (min-width: 960px){
	
	#header p.contact a{
		border-bottom-right-radius: 5px;
	}
	
}

#header p.contact a:hover{
	background-color:#fff;
	color:#ce151b;
	
	text-decoration: none;
	
	background-image: url("../images/icon-mail-color.png");
}

@media only screen and (min-width: 860px){
	
	#header nav.navigation{
		display:block;
	}
	
	#header p.contact{
		display:block;
	}
	
}

/*//////////----- PAGETOP -----//////////*/

#pagetop{
	width:100%;
}

#pagetop div.wrap{
	width:100%;
	margin:0 auto;
	max-width: 960px;
	
	text-align: right;
}

#pagetop p.btn{
	display:inline-block;
	width:120px;
	
	margin-top:20px;
	
	font-size:0.6rem;
	line-height:40px;
	font-weight:bold;
	
	text-align: center;
}

#pagetop p.btn a{
	display:block;
	
	background-color:#fff;
	color:#ce151b;
	
	border-top-left-radius: 5px;
	
	background-image: url("../images/icon-arrow-up-color.png");
	background-repeat: no-repeat;
	background-size: 15px;
	background-position: center left 10px;
}

#pagetop p.btn a:hover{
	background-color:#ce151b;
	color:#fff;
	
	text-decoration: none;
	
	background-image: url("../images/icon-arrow-up-white.png");
}

@media only screen and (min-width: 1080px){
	
	#pagetop p.btn a{
		border-top-right-radius: 5px;
	}
	
}

/*//////////----- SITEMAP -----//////////*/

#sitemap{
	background-color:#fff;
	color:#000;
	
	margin-bottom:20px;
}

#sitemap div.wrap{
	width:100%;
	margin:0 auto;
	max-width: 960px;
	
	box-sizing: border-box;
	padding:20px;
}

#sitemap ul{
	font-size:0.8rem;
	line-height:40px;
}

#sitemap ul li{
	position: relative;
	
	box-sizing: border-box;
	border-bottom:solid 1px #f0f0f0;
}

#sitemap ul li a{
	display:block;
	
	color:#000;
	
	box-sizing: border-box;
	padding-left:30px;
	
	background-image: url("../images/icon-arrow-right-color.png");
	background-repeat: no-repeat;
	background-size: 10px;
	background-position: center left 10px;
}

#sitemap ul li a:hover{
	opacity: 0.5;
	
	text-decoration: none;
}

@media only screen and (min-width: 720px){
	
	#sitemap ul{
		font-size:0;
		line-height:1.0em;
		
		text-align: center;
	}
	
	#sitemap ul li{
		display:inline-block;
		
		font-size:0.6rem;
		line-height:2.0em;
		
		border-bottom:none;
	}
	
	#sitemap ul li:after{
		display:inline-block;
		content:"-";
		
		box-sizing: border-box;
		padding:0 5px;
	}
	
	#sitemap ul li:last-child:after{
		display:none;
	}
	
	#sitemap ul li a{
		display:inline-block;
		padding-left:0;
		
		background:none;
	}
	
	#sitemap ul li a:hover{
		opacity: 1;
		text-decoration: underline;
	}
	
}

/*//////////----- SITEINFO -----//////////*/

#siteinfo{
	width:100%;
	
	background-color:#fff;
	color:#000;
}

#siteinfo div.wrap{
	width:100%;
	margin:0 auto;
	max-width: 960px;
	
	box-sizing: border-box;
	padding:10px;
}

#siteinfo h6{
	font-weight:bold;
	
	margin-bottom:10px;
}

#siteinfo div.branch{
	display:flex;
	flex-flow: row wrap;
	align-items: stretch;
	justify-content: flex-start;
	
	width:100%;
}

#siteinfo div.branch div.row{
	font-size:0.8rem;
	line-height:1.75em;
	
	width:100%;
	
	margin-bottom:20px;
}

#siteinfo div.branch div.row:last-child{
	margin-bottom:0;
}

#siteinfo div.branch div.row h5{
	font-weight:bold;
}

#siteinfo div.branch div.row h5:before{
	content:"（";
}

#siteinfo div.branch div.row h5:after{
	content:"）";
}

#siteinfo div.branch div.row span.zipcode{
	display:inline-block;
	
	margin-right:5px;
}

/*//////////----- DRAWER -----//////////*/

#drawer label{
	position: fixed;
	top:15px;
	right:0;
	
	width:60px;
	height:60px;
	
	z-index: 50;
}

#drawer label:hover{
	cursor: pointer;
}

#drawer input{
	display:none;
}

#drawer span.hamburger{
	display:block;
	
	position: fixed;
	top:34.5px;
	right:15px;
	
	width:30px;
	height:1px;
	
	background-color:#ce151b;
	
	transition: 0.25s;
	
	z-index: 40;
}

#drawer span.hamburger:before{
	display:block;
	content:"";
	
	position: absolute;
	top:-10px;
	
	width:100%;
	height:1px;
	
	background-color:#ce151b;
	
	transition: 0.25s;
}

#drawer span.hamburger:after{
	display:block;
	content:"";
	
	position: absolute;
	top:10px;
	
	width:100%;
	height:1px;
	
	background-color:#ce151b;
	
	transition: 0.25s;
}

#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{
	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{
	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;
}

#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-color.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;
}

@media only screen and (min-width: 860px){
	
	#drawer label{
		display:none;
	}
	
	#drawer span.hamburger{
		display:none;
	}
	
}
