/*==============================================
  共通CSS 画面の横幅を問わず適用
===============================================*/
footer {
	border-top: solid 1px #000000;
	margin-top: 20px;
	margin-right: 5px;
	text-align: center;
	font-size: small;
	padding-top: 4px;
}

footer p{
	margin: 0;
}

.background-bottom{
	height: 50px;
	background-image: url(/st/club/summer/images/france_drapeau.png);
	background-repeat: repeat-x;
	background-size: contain;
}
/*=============== 共通CSS ここまで ===============*/


/*==============================================
  携帯端末用CSS 画面の横幅がmax480px 共通CSSを上書き
===============================================*/
@media screen and (max-width: 480px) {

	.background-bottom{
		height: 15px;
	}
}
/*============ 携帯端末用CSS ここまで ============*/


/*==============================================
  PC用CSS 画面の横幅がmin481px
===============================================*/
/* @media print, screen and (min-width: 481px) {

} */
/*=============== PC用CSS ここまで ===============*/