@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;
}
.gradation{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 45%, rgba(255, 255, 255, 0) 100%);
}
.itemList > div{
    position: relative;
    display: inline-block;
    box-sizing: content-box;
    background: #0071BC;
    width: 100%;
    margin: 10px 0;
    height: 150px;
    vertical-align: top;
}
.itemList p{
    font-size: 21px;
    font-weight: bold;
    color: #fff;
    margin: 1em 1em;
    clear: both;
}
.itemList .boxLabel{
    position: absolute;
    top:20%;
    left: 0;
}
.itemList a{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
}
.itemList a:hover{
    background: rgba(255, 255, 255, 0.3) ;
}
.bx-wrapper {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	margin: 35px 0;
}
/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

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

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

@media only screen and (min-width: 768px) {
.itemList > div{
    width: calc(96% / 2);
    margin: 10px 1%;
    height: 150px;
}
}