@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 およびそれ以下. */
.topHeader{
    position: relative;
}
.topHeader .catch{
    position: absolute;
    top: 35%;
    left: 0;
    width: 100%;
}
.topHeader .catch p{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 22px;
    font-weight: normal;
    text-align: center;
    color:#fff;
    line-height: 176%;
}
.topHeader img{
    width: 100%;
}
.newsContainer{
    background: #f2f2f2;
}
.itemList{
    
}
.itemList .item{
    position: relative;
    display: inline-block;
    width: 100% ;
    margin: 10px 0;
    box-sizing: border-box;
    border-radius: 12px;
    box-shadow: 1px 7px 5px 0 rgba(0, 0, 0, 0.75);
}
.itemList .item > a{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}
.itemList .item > a:hover{
    background: rgba(255,255,255,0.3) ;
}
.itemList .textBox p{
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin: 0.1em 0;
}
.itemList img{
    width: 100%;
}
/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

@media only screen and (min-width: 481px) {
.itemList .item{
    width: calc(98% / 2) ;
    margin: 10px 0.5%;
    border-radius: 12px;
    box-shadow: 1px 7px 5px 0 rgba(0, 0, 0, 0.75);
}
}

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

@media only screen and (min-width: 768px) {
.topHeader .catch p{
    font-size: 33px;
}
.itemList .item{
    width: calc(97% / 3) ;
    margin: 10px 0.5%;
    border-radius: 12px;
    box-shadow: 1px 7px 5px 0 rgba(0, 0, 0, 0.75);
}
.itemList .textBox p{
    font-size: 24px;
    margin: 0.1em 0;
}
}
