/*対象：yanase,yanase1*/
body { 
 background: navajowhite;
 color :black;
 margin-left:1em;
 margin-right:1em;
 font-size: 16px;
 -webkit-text-size-adjust: 100%;
 }

/* 解像度800px以上では幅固定*/
#all{
	width:800px;
	margin-left:auto;
	margin-right:auto;
}

p{
 line-height:1.3em;
}

p.riyu{
 margin-left: 2em;
 margin-right: 1em;
}


table{
 width: 100%;

 border-top: 1px solid;
 border-left: 1px solid;
 border-bottom: 1px solid;
 border-right: 1px solid;

 line-height:1.3em;
}

table th {
 border-top: 1px solid;
 border-left: 1px solid;
 border-bottom: 1px solid;
 border-right: 1px solid;

 padding: 4px;
}

table tr td {
 border-top: 1px solid;
 border-left: 1px solid;
 border-bottom: 1px solid;
 border-right: 1px solid;

 padding: 4px;
}

caption {
 font-weight: bold;
 }


h1  {
 color :orangered;
 font-size: 1.8em;

 }

h2  {
 color :black;
 font-size: 1.2em;

 }

strong {
 font-weight: bold;
 font-size: 1.1em;

 }

/* 解像度幅800px以下の設定*/
@media screen and (max-width: 800px){
	/*画面幅に合わせる*/
	#all{
		width:100%;
		margin-left:auto;
		margin-right:auto;
	}
	/*写真を画面幅に合わせる*/
	img{
	max-width: 100%;
	height: auto;
	width /***/:auto;　
	}
}

