/*****************************
/*weBlogの設定*/
/*****************************/

.weBlogR{
	float:right;
	width:70%;
}
.weBlogL{
	float:left;
	width:26%;
	margin-right:4%;
	padding:20px;
	border:2px solid #ddd;
	border-radius: 5px;        /* CSS3草案 */  
	-webkit-border-radius: 5px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 5px;   /* Firefox用 */
}
.weBlogLttl{
	padding:10px;
	line-height:1em;
	text-align:center;
	color:#fff;
	font-weight:bold;
	font-size:0.9em;
	background:#002063;
}
.weBlogLttl span{ display:none;}

ul.weBlogList{
	padding:10px;
}
ul.weBlogList li{
    padding-left: 1em; 
    text-indent: -.7em;
		width: 100%; /* widthは必須（IE対応pxで指定）*/
		overflow: hidden;
		white-space: nowrap;/*改行しない*/
		text-overflow: ellipsis; /* 「…」と省略 */
		-moz-text-overflow: ellipsis;
		-webkit-text-overflow: ellipsis;
		-o-text-overflow: ellipsis;
		-ms-text-overflow: ellipsis;
}
ul.weBlogList li:before {
	display:inline-block;
    content: "";
		width:5px;
		height:5px;
		margin-right:5px;
		margin-bottom:2px;
		background:#436eb5;
	        border-radius:50%;
	   -moz-border-radius:50%;
	-webkit-border-radius:50%;
	behavior: url("../weblog/css/border-radius.htc");
}


.blogTitle{
	border-bottom:#333333 solid 2px;
	padding:10px;
	font-weight:bold;
	margin-bottom:10px;
	font-size:1.4em;
}
.blogCategory{
	text-align:right;
}
.blogKiji{
	padding:10px;
	overflow-wrap: break-word;/*強制折返*/
}
.blogDate{
	text-align:right;
}
.blogKiji a{
 	border-bottom: 1px dashed #7c95a8;
}

.weBlogL table{max-width:100%;}
.accordionDetail {
	font-size:0.8em;
	background:#fff;
	padding:10px;
}

@media only screen and (max-width: 768px){
	.weBlogR{
		float:none;
		width:100%;
	}
	.weBlogL{
		float:none;
		width:100%;
		margin-right:0;
	}
	.weBlogLttl span{ display:block;}
.weBlogLttl{
	margin-bottom:0;
}
}

