@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 およびそれ以下. */
.itemList .item > div{
    display: inline-block;
    vertical-align: top;
}
.itemList .item .imageBox{
    width: 100%;
}
.itemList .item .textBox{
    width: 100%;
}
.itemList .item .textBox table{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    line-height: 300%;
    margin-top: 3em;
}
.itemList .item .textBox th{
    font-weight: normal;
    text-align: left;
    background-color: rgba(128,128,128,0.4);
    padding: 0.75em ;
    vertical-align: top;
    border-bottom: solid 1px #808080;
    white-space: nowrap;
}
.itemList .item .textBox td{
    font-weight: normal;
    text-align: left;
    padding: 0.75em ;
    border-bottom: solid 1px #808080;
}
.itemList .item .textBox tr:last-child th{
    border-bottom: none;
}
.itemList .item .textBox tr:last-child td{
    border-bottom: none;
}
.bx-wrapper {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
}
.slideBlock{
    width: 100%;
    margin: 0 auto;
}
.slideBlock img{
    width: 100%;
}
/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

@media only print {
}

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

@media only print {
.itemList .item .textBox table{
    font-size: 16px;
}
.itemList .item .imageBox{
    width: 40%;
}
.itemList .item .textBox{
    width: 60%;
}
.slideBlock{
    width: 60%;
}
}