@charset "utf-8";
/* CSS Document */

/*-----------------------------------------------
  pc ここから
-----------------------------------------------*/
@media (min-width: 768px) {

.g-main {
    padding-top: 5px;
}
	
/*--テキスト表示切替--*/
.is_pc {
	display: block;
	font-size: 16px;
	text-align:center;
	margin:30px;
}
.is_sp {
	display: none;
	
}

	
}	
/*-----------------------------------------------
  sp ここから
-----------------------------------------------*/
@media screen and (max-width: 768px){

.g-main {
    padding-top: 5px;
}
	
/*--spのみ改行ー--*/ 
.br-sp::before {
    content:'\A';
    white-space:pre;
  }

/*--テキスト表示切替--*/
.is_pc {
	display: none
}
.is_sp {
	display: block;
	font-size: 13px;
	text-align:center;
	margin:30px;
}
	
}