@charset "utf-8";
/* 最小幅 0px以上 */
/* CSS Document */
/* *{margin: 0; padding: 0}　リセット⇒　slick 左側余白無くなってしまう */


html{
    font-family: Raleway, "Hiragino Kaku Gothic ProN" , Meiryo, sans-serif;
    line-height: 1.5
}

img {width: 100%;} /* img要素に対しての指定 slickに対しては別に同記述あり */


h1 {
    font-size: 3em; /* 48px */
    line-height: 1; /* 48px */
	margin-bottom: 0.5em}
h2 {
    font-size: 2.25em; /* 36px */
    line-height: 1.3333; /* 48px */
    margin-bottom: 0.6667em} 
h3 {
    font-size: 1.5em; /* 24px */
    line-height: 1; /* 24px */
    margin-bottom: 1em} 
h4,h5,h6 {
    font-size: 1em; /* 16px */ 
    line-height: 1.5; /* 24px */
    margin-bottom: 1.5em}



/* スマートフォンで見たときは"sp"のclassがついた画像が表示される slickのみの調整*/
@media only screen and (max-width: 480px) {
    .pc { display: none !important; }
    .sp { display: block !important; }

	html{ font-size: 75%}        /* レシポンシブタイプセッティングの設定　12px(スマホ)/16px(ブラウザの文字) */


.newshtml p{
 
}	


} 



@media screen and (min-width: 480px) {
/* 最小幅480px以上の指定 */

	
/* パソコンで見たときは"pc"のclassがついた画像が表示される slickのみの調整*/
.pc { display: block !important; }
.sp { display: none !important; } 


}
@media screen and (min-width: 768px) {
/* 最小幅768px以上の指定 */


	

} 
@media screen and (min-width: 1024px) {
/* 最小幅1024px以上の指定 */ 


	



} 










