@charset "Shift_JIS";

/* CSS Document */


/*SP用639px以下*/
@media screen and (max-width: 639px) {
	

#title{
    background-image:url(../images/bg.jpg);  /* 画像のURLを指定       */
    background-repeat:  no-repeat;                         /* 画像の繰り返しを指定  */              
    background-position:center center;                     /* 画像の表示位置を指定  */
	background-size: cover;
    height:142px;  
	position: relative;
	overflow:hidden;
}

#title img{
	width: auto;
	height:142px; 
    min-width: 100%;
    min-height: 100%;
    max-width: inherit;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}





}

/*PC用640px以上*/
@media screen and (min-width: 640px) {


#title{
	background:url(../images/bg.jpg) no-repeat 50% 0;
}


	
}