@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 およびそれ以下. */
.blogContent {
	background: #036EB7;
	padding: 50px 0;
}
.blogContent h2{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 40px;
    color: #000;
}
.blogContent > div{
    max-width: 1167px;
    width: 91%;
    margin: 0 auto;
}
.blogList .item{
	display: inline-block;
    position: relative;
    box-sizing: border-box;
    margin: 0;
	width:100%;
    vertical-align: top;
}
.blogList .photoBox{
    position: relative;
}
.blogList .photoBox img {
	width: 100% !important;
	height: auto !important;
}
.blogList .photoBox iframe{
	width: 100%!important;
    height: 100% !important;
	aspect-ratio: 346 / 218!important;
}
.blogList .kindLabel{
    position: absolute;
    top: 5%;
    left: 0%;
}
.blogList .kindLabel p{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    color:#fff;
    margin: 0.25em 0.5em;
}
.blogList .labelColor1{
    background: #036EB7;
}
.blogList .labelColor2{
    background: #036EB7;
}
.blogList .labelColor3{
    background: #036EB7;
}
.blogList .textBox {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 14px;
	color: #fff;
	padding: 0 1em;
	line-height: 180%;
}
.blogList .item a{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}
.blogList .item a:hover, .blogList .item a:active{
    background: rgba(255,255,255,0.3);
}
.listContorlBlock{
	text-align:right;
}
.listContorlBlock a{
	display:inline-block;
	border-style:solid;
	border-width: 1px;
	text-decoration:none;
	color:#fff;
	border-color:#fff;
	padding:4px;
    font-family: 'Noto Sans JP', 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:#036EB7;
	padding:4px;
	background-color:#fff;
	border-color:#fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    letter-spacing: 0.1em;
	line-height: 160%;
}
.pageContolBlock .pageButton{
	display: inline-block;
	width: 31px;
	height: 31px;
	border-radius: 50%;
	text-align:center;
    box-sizing: border-box;
    background: #036EB7;
}
.pageContolBlock .pageButton:hover{
    opacity: 0.7;
}
.pageContolBlock .pageContoll{
    width: 100%;
    text-align: center;
}
.pageContolBlock .pageContoll > div{
    font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
    letter-spacing: 0.1em;
	line-height: 160%;
    display: inline-block;
    vertical-align: middle;
}
.pageContolBlock .beforeBox{
	text-align:left;
    width: 100%;
}
.pageContolBlock .nextBox{
	text-align: right;
    width: 100%;
}
.pageContolBlock .beforeBox > div{
    display: inline-block;
    vertical-align: middle;
}
.pageContolBlock .nextBox > div{
    display: inline-block;
    vertical-align: middle;
}
.pageContolBlock .toListBox{
    width: 100%;
    text-align: center;
}
.pageContolBlock .toListBox .linkButton{
    font-size: 14px;
    background: #036EB7;
}
.articleBlock img{
    width: auto!important;
    height: auto!important;
}
/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

@media only print {
.blogList .item{
    margin: 1% 1%;
    width: calc(94% / 3);
}
.pageContolBlock .beforeBox{
    width: calc((100% - 12em) / 2) ;
}
.pageContolBlock .nextBox{
    width: calc((100% - 12em) / 2) ;
}
.pageContolBlock .toListBox{
    width: 12em;
}
.pageContolBlock .toListBox .linkButton{
    font-size: 18px;
}
}

/* デスクトップレイアウト : 769 px ～最大 1232 px。モバイルレイアウトとタブレットレイアウトからスタイルを継承。 */

@media only print {
}