@charset "utf-8";

/*----------clear----------*/
.cf::after {
	content:"";
	display:block;
	clear:both;
}
.clea{
	clear:both;
}

/*----------共通要素----------*/
*{
	font-family:"ヒラギノ明朝",serif;
}
body{
	width: 960px;
	margin: 0 auto;
	background: url("../images/template/bg.jpg") no-repeat fixed;
	background-size: cover;
	position: relative;
}

.title{
	height: 100px;
	width: 300px;
	margin: 0 auto;
	padding: 30px 0 ;
	
}
h1{
	font-size: 50px;
	font-weight: bold;
	text-align: center;
	border-bottom: 10px dotted #FF6E00;
}
h2{
	font-size: 30px;
	font-weight: bold;
}

/*----------ヘッダー要素----------*/
header{
width: 960px;
	height: 50px;
background: #000;
	position: fixed;
    z-index: 999;
}
header img{
float: left;
	margin-left: 20px;
}
header nav{
float: right;
}
header ul li{
	list-style: none;
	float: left;
	width:120px; 
	height: 48px;
	font-size: 14px;
	border-left: 1px solid #fff;
	text-align: center;
	line-height: 48px;
}
header ul li:hover{
	font-weight: bold;
}
header ul li a,
header ul li p{
	display: block;
	text-decoration: none;
	color: #fff;
}
header ul li p{
	cursor : default;
}
header ul li li {
    height: 0;
    overflow: hidden;
    transition: .5s;
}

header ul li ul li:hover{
background-color: #FF6E00;
}

header li:hover > ul > li {
    height: 48px;
	border-top: 1px solid #fff;
    overflow: visible;
	color: #fff;
	background-color: #000;
}
footer{
	background-color: #222;
	color: #fff;
}
.footer_logo{
	width: 105px;
	margin: 0 auto;
}
footer img{
	margin: 15px 10px 20px;
}

.footer_copy{
width: 100%;
background-color: #000;
}
footer p{
	text-align: center;
	font-size: 12px;
}

/*----------メイン要素----------*/
main{
	background-color: #eee;
	padding:10px 15px 0;
}

/*----------パンくずリスト----------*/
.breadcrumb{
	margin-top: 50px;
	font-size: 12px;
}
.breadcrumb li{
	float: left;
}
/*----------/パンくずリスト----------*/


/*----------フェード----------*/
#fade{
	animation-name:fadeup;
	animation-duration:1s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes fadeup{

	from{
	opacity:0;
	transform: translateY(100px)
	}
	to{
	opacity:1;
	transform:translateY(0);
	}
}
/*----------/フェード----------*/