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

/* header *//* header */
#top-head {
    position: fixed;
    width: 100%;
				min-width:320px;
    margin: 0 auto;
    padding: 0 0 0;
    line-height: 1;
				z-index:9999;
	background-color: rgba(255,255,255,1.0);

}
/* transition */
#top-head .logo img {
	width: 344px;
    transition: all 0.8s ease;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
}
/* Fixed */
#top-head.fixed .logo img {

}
#top-head.fixed {	
	background-color: rgba(255,255,255,1.0);
}
@media screen and (max-width: 480px) {	
#top-head.fixed .logo img {
	width: 261px;
}
}
