@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{
    margin: 0 0 30px 0;
}
.itemList .item > div{
    display: inline-block;
}
.itemList .imageBox{
    float: none;
    width:  100%;
    margin-left: 0;
}
.itemList .imageBox img{
    margin: 0 0 20px 0;
}
.itemList .textBox{
    width: 100%;
}
h3 span{
    background-color: #CFC694;
}
ul{
    list-style-type: none;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
	line-height: 180%;
    font-weight: normal;
    color: #808080;
    margin: 0;
    padding: 0;
}
ol{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
	line-height: 180%;
    font-weight: normal;
    color: #808080;
    margin: 0;
    padding: 0 0 0 1.5em;
}
ol ul{
    list-style-type:disc;
    margin: 0;
    padding: 0 0 0 1em;
}
.itemList table{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
	line-height: 180%;
    font-weight: normal;
    color: #808080;
    width: 100%;
}
.itemList thead th{
    text-align: left;
    font-weight: normal;
}
.itemList tbody th{
    border-bottom: 1px solid #B3B3B3;
    font-weight: normal;
    text-align: left;
}
.itemList tbody td{
    border-bottom: 1px solid #B3B3B3;
}

/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

@media only screen and (min-width: 481px) {
.itemList table{
    width: 80%;
}
}

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

@media only screen and (min-width: 768px) {
.itemList .imageBox{
    float: right;
    width:  35%;
    margin-left: 2%;
}
.itemList .textBox{
    width: 63%;
}
}