@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 およびそれ以下. */
.slider img{
    width: 100%;
}
.whatsNewList{
    
}
.whatsNewList .item{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    letter-spacing: 0.1em;
	line-height: 160%;
    width: 100%;
    margin: 5px 0;
    border-bottom: dashed 1px #999999;
}
.color1{
    background-color: #FC9AA4;
}
.color2{
    background-color: #FF0000;
}
.color3{
    background-color: #16D6E3;
}
.color9{
    background-color: #00A89C;
}
.whatsNewList .item{
    position: relative;
}
.whatsNewList .item .kindCol{
    display: inline-block;
    width: 5em;
    color: #fff;
}
.whatsNewList .item .kindCol > div{
    vertical-align: middle;
    text-align: center;
    width: 100%;
}
.whatsNewList .item .dateCol{
    display: inline-block;
    width: 7em;
    vertical-align: top;
}
.whatsNewList .item .titleCol{
    display: inline-block;
    width: 100% ;
    vertical-align: top;
}
.whatsNewList .item a{
    display: block;
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height:100%;
}
.whatsNewList .item a:hover{
    background: rgba(255,255,255,0.4);
}
.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: 'Noto Sans JP', sans-serif;
	font-size: 14px;
    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: 'Noto Sans JP', sans-serif;
	font-size: 14px;
    letter-spacing: 0.1em;
	line-height: 160%;

}
.pageContolBlock{
	margin-top: 50px;
}
.pageButton{
	display: inline-block;
	width: 31px;
	height: 31px;
	background-color:#797A7D;
	border-radius: 15px;
	text-align:center;
}
.pageButton:hover{
	background-color: #A5A6A7;
}
.pageContoll{
	display: table;
	width:100%;
}
.pageContoll > div{
	display: table-cell;
	vertical-align:middle;
	width:50%;
	border-color:#797A7D;
    font-family: 'Noto Sans JP', sans-serif;
	font-size: 14px;
    letter-spacing: 0.1em;
	line-height: 160%;
}
.beforeBox{
	text-align:left;
}
.nextBox{
	text-align: right;
}
.articleBlock img{
	width:auto !important;
	height:auto !important;
}
.contentItem h2{
    text-align: left;
}
.button6{
    background: #FC9AA4;
}
/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

@media only screen and (min-width: 481px) {
.whatsNewList .item .titleCol{
    width: calc(100% - 5.5em - 7.5em) ;
}
}

/* デスクトップレイアウト : 769 px ～最大 1232 px。モバイルレイアウトとタブレットレイアウトからスタイルを継承。 */

@media only screen and (min-width: 769px) {
}