@charset "utf-8";
/* 標準可変メディア
   メモ : 可変メディアでは、HTML からメディアの高さおよび幅の属性を削除する必要がある
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 では最大幅がサポートされていないため、デフォルトで幅 100% に設定される */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver 可変グリッドプロパティ
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	10;
	dw-gutter-percentage:	25;
	
	以下からヒントを入手 : Ethan Marcotte 氏の「レスポンシブ Web デザイン」 
	http://www.alistapart.com/articles/responsive-web-design
	
	および Joni Korpi 氏の「Golden Grid System」
	http://goldengridsystem.com/ 
*/

/* モバイルレイアウト : 480 px およびそれ以下. */
.blogList{
    text-align: left;
}
.blogList .item{
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin: 0 0 30px 0;
}
.blogList .item .photoBox{
    margin-bottom: 10px; 
    position: relative;
}
.blogList .item .photoBox img{
    width: 100% !important;
    height: auto !important;
}
.blogList .item .photoBox iframe{
    width: 100% !important;
}
.blogList .item .kindLabel{
/*    position: absolute;
    top: 15%;
    background-color: #979B9A;
    width: 7em;
    color: #fff;
*/
    display: none;
}
.blogList .item .kindLabel p{
    text-align: center;
    font-size: 16px;
    margin: 5px 0;
}
.blogList .item .kindLabel1{
    position: absolute;
    top: 15%;
    background-color: #6B9AD1;
    width: 9em;
    color: #fff;
}
.blogList .item .kindLabel1 p{
    text-align: center;
    font-size: 16px;
    margin: 5px 0;
}
.blogList .item .textBox{
    font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: 16px;
    letter-spacing: 0.1em;
	line-height: 160%;
    text-align: left;
}
.blogList .item a{
    color: #000;
    text-decoration: none;
    font-size: 16px;
}
.blogList .item a:hover{
    text-decoration: underline;
    color: #000;
}
.blogList .item a:visited{
    text-decoration: none;
    color: #000;
}
.blogList .item a img:hover{
    opacity: 0.7;
}
.listContorlBlock{
	text-align:right;
}
.listContorlBlock a{
	display:inline-block;
	border-style:solid;
	border-width: 1px;
	text-decoration:none;
	color:#7f7f7f;
	border-color:#7f7f7f;
	padding:4px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: 16px;
    letter-spacing: 0.1em;
	line-height: 160%;
}
.listContorlBlock a:visited{
}
.listContorlBlock strong{
	display:inline-block;
	border-style:solid;
	border-width: 1px;
	color:#fff;
	padding:4px;
	background-color:#7f7f7f;
	border-color:#7f7f7f;
    font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: 16px;
    letter-spacing: 0.1em;
	line-height: 160%;
}
.pageContolBlock{
	margin-top: 50px;
}
.pageButton{
	display: inline-block;
	width: 31px;
	height: 31px;
	background-color:#B8E0E0;
	border-radius: 15px;
	text-align:center;
}
.pageButton:hover{
    opacity: 0.7;
}
.pageContoll{
	width:100%;
}
.pageContoll > div{
    font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: 16px;
    letter-spacing: 0.1em;
	line-height: 160%;
    display: inline-block;
    vertical-align: middle;
}
.beforeIconBox{
    width: 3em;
    text-align: left;
}
.beforeBox{
	text-align:left;
    width: calc(100% - 4em) ;
}
.nextIconBox{
    width: 3em;
    text-align: right;
}
.nextBox{
	text-align: right;
    width: calc(100% - 4em) ;
}
.toListBox{
    width: 100%;
    text-align: center;
}
.articleBlock img{
	width:auto !important;
	height:auto !important;
}
.wcdIntro .imageBox{
    float: none;
    margin-right: 0;
    display: inline-block;
    vertical-align: top;
}
.wcdIntro .textBox{
    width: auto;
    display: inline-block;
    vertical-align: top;
}
.wcdIntro .textBox p{
    margin: 0;
}
.contentItem h2{
    text-align: left;
}
/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

@media only screen and (min-width: 481px) {
.blogList .item{
    width: 47%;
    margin: 1%;
}
.beforeBox{
    width: calc((100% - 11em - 7em) / 2) ;
}
.toListBox{
    width: 10em;
}
.nextBox{
    width: calc((100% - 11em - 7em) / 2) ;
}
}

/* デスクトップレイアウト : 769 px ～最大 1232 px。モバイルレイアウトとタブレットレイアウトからスタイルを継承。 */

@media only screen and (min-width: 769px) {
.blogList .item{
    width: 30%;
    margin: 1%;
}
.wcdIntro .imageBox{
    float: left;
    margin-right: 15px;
}
.wcdIntro .textBox{
    width: calc(100% - 370px) ;
}
}