@charset   "Shift_JIS";
/*共用ＣＳＳ*/
/*コンテンツ*/
#content{
	background-color : #ffffff;
	width : 900px;
	margin-left : auto;
	margin-right : auto;
	margin-bottom : 50px;
	text-align : left;
	line-height : 120%;
}
/*スマートフォン等での表示*/
@media screen and (max-width: 840px) {
#content{
	width : 100%;
	float : both;
}
 } 
/*3列横並び*/
*, *:before, *:after {
	box-sizing: border-box;
}
.col_3{
	width: 100%;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
}
.col_3 > div{
	width: 30%;
	padding: 10px;
	margin : 10pt;
	border : 1px solid #446633;
}
@media screen and (max-width: 840px) {
	.col_3 > div{
		width: 100%;
	}
}
@media screen and (max-width: 480px) {
	.col_3 > div{
		width: 100%;
	}
}
/*2列横並び*/
*, *:before, *:after {
	box-sizing: border-box;
}
.col_2{
	width: 100%;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
}
.col_2 > div{
	width: 50%;
	padding: 10px;
}
@media screen and (max-width: 840px) {
	.col_2 > div{
		width: 100%;
	}
}

/* 更新日CSS */
dl.case1{
    padding:20px 0;
}
dl.case1 dt{
    padding:20px 0;
width:100px;
	text-align : left;
}
dl.case1 dd{
    padding:20px 0;
    border-bottom:1px solid #446633;
	text-align : left;
}


@media screen and (min-width: 768px) {
 .case1 dt {
 clear: left;
 float: left;
 width: 10%;
 }
 .case1 dd {
 margin-left: 11%;
 }
 }


h1 {
  color: #446633;/*文字色*/
  border: solid 3px #446633;/*線色*/
  padding: 0.3em;/*文字周りの余白*/
  border-radius: 0.5em;/*角丸*/
}
@media screen and (max-width: 840px) {
h1{
	font-size:130%;
	font-weight: 900;
	text-align : left;
}
 } 
h2{
	border : 1px solid #446633;
	margin-top : 5px;
	margin-bottom : 5px;
	padding : 2px;
	color : white;
	background-color : #446633;
	text-align : center;
}
h3{
	border : 1px dashed #446633;
	padding : 2px;
	margin-top : 5px;
	margin-bottom : 5px;
	text-align : center;
}
 h4{
	width : 250px;
	border : 1px solid;
	padding : 5px;
	margin : 5px;
	color : #446633;
 	text-align : center;
}
p{
	padding-left : 10px;
	padding-right : 10px;
	margin-top : 10px;
	margin-bottom : 10px;	
}
a:link{
	color : green;
	text-decoration : underline;
}

a:visited{
	color : #666666;
	text-decoration : underline;
}
a:hover{
	color : #ffffff;
	background-color : #446633;
	text-decoration : none;
}
/*コンテンツの紹介*/
.menu {
	width : 100px;
	margin-top : 2px;
	margin-bottom : 2px;
	line-height : 26px;
	color : #ffffff;
	font-size : 10pt;
       font-weight : bolder;
	background-color : #00cc00;
}

/*サイトマップ*/
.map ul {
   display:block;
   list-style-type: none;
   margin:0;
   padding:0;
}
.map li {
   display:block;
   list-style-type: none;
   margin:10px;
   padding:5px;
        border-width : 1px;
        border-style : solid;
}
/*画像サイズ自動変更*/
.resizeimage img {
 width: auto; 
height: auto;
}
/*スマートフォン等での表示*/
@media screen and (max-width: 300px) {
.resizeimage img{
	width : 100%;
	float : both;
}
 } 
/*左揃えテキスト*/
.text-box{
	width : 55%;
	margin-left : auto;
	margin-right : auto;
	margin-bottom : 50px;
	text-align : left;
	line-height : 120%;
}
/*スマートフォン等での表示*/
@media screen and (max-width: 840px) {
.text-box{
	width : 100%;
	float : both;
}
 } 