

/* ------------------------------------------------------------------ 
	全体指定
   ------------------------------------------------------------------ */
body{
	background-color: skyblue;
	font-size: small;
	/*
	box-shadow: 0 250px 10px 0px lightskyblue inset;
	*/

}
*{
	font-family: 'メイリオ',Meiryo,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック','MS PGothic',sans-serif;
	font-weight: normal;
}

p{
	text-indent: 1rem;
}

#top-div{
background-image: url(../img/back_image_09.png), none;
	background-repeat: repeat-y ;
	background-position:100%;
	background-size: 100px, auto;
}

#body-div{
border: 1px solid steelblue;
background-color: white;

/*	border: 1px solid silver;	*/
/*	メイン記事部分に背景色を指定しない
background-color: white;	*/


}

/* ------------------------------------------------------------------ 
	ヘッダー
   ------------------------------------------------------------------ */
/* IEでの画像縮小対応 */
#header-div img { -ms-interpolation-mode: bicubic; }

#h1-div{
/*
	display:flex;
	flex-direction:row;
    align-items: center;     /*中央揃え*/
}


#header-div {
	text-align: center;
}

/* ヘッダの横リスト */
#header-div ul{
	list-style-type: none;
}

#header-div ul li{
	text-align: center;
	border-radius:4px;	/* 角を丸くする */
	
	background-color: lavenderblush;	/* 横リストの背景色 */


}
#header-div ul li a{
	text-decoration:none;
	color: black;
	font-size: medium;
	text-shadow: 1px 2px 3px white;
}
#header-div ul li a:hover{
	text-decoration: underline;
	background-color: lightyellow;
	color: darkorange;
}

.header-img {
	max-width: 100%;
	margin: 0px auto ;
}

#PC-image{
	display: block;
}
#sp-image{
	display: none;
}


/* ------------------------------------------------------------------ 
	本文
   ------------------------------------------------------------------ */
h1{
	color: white;
	color: blue;
	font-size: 2rem;
	font-family: "HG創英角ﾎﾟｯﾌﾟ体";
	font-weight: bold;
	text-shadow: white 2px 2px;
	text-align: left;
	
	margin: 0px;
	padding: 0px;
	
	text-indent: 0em;
}
#sub-h1{
	font-size: 1rem;
}
#main-h1{
	font-size: 2rem;
	text-indent: 1em;
	background-image: url(../img/himawari_logo.gif);

	background-repeat: no-repeat no-repeat;
	background-size: 40px, auto;

	font-family: "HG創英角ﾎﾟｯﾌﾟ体";
}
#main-h1 a{
	text-decoration:none;
	font: inherit;
	color: inherit;
}

h2{
	color: black;
	font-size: 1.5rem;
	font-family: "HG創英角ﾎﾟｯﾌﾟ体";
	text-align: center;
}
h3{
	font-weight: bold;
}


/* ------------------------------------------------------------------ */
/* スマホだけに適用するCSS */
@media screen and ( max-width:479px ){

	#header-div ul li{
		margin: 1px;
	}

	#top-div{
	background-size: 10%, auto;
	}

	/* ヘッダの横リスト */
	#header-div ul li{
	}
	#header-div ul li a{
		font-size: medium;
	}
	
	#PC-image{
		display: none;
	}
	#sp-image{
		display: block;
	}

}

