@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 およびそれ以下. */
.content h3{
    margin-top: 40px;
}
.content dl{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
	line-height: 160%;
}
.content dt{
    color: #F6921D;
    font-weight: bold;
}
.content dd{
    margin-bottom: 50px;
}
.content table{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
	line-height: 160%;
}
.content th{
    text-align: left;
    background-color: rgba(203,203,203,0.53);
    border-style: solid;
    border-width: 2px;
    border-color: #000;
    padding: 10px;
    font-weight: normal;
}
.content td{
    border-style: solid;
    border-width: 2px;
    border-color: #000;
    padding: 10px;
}
.exampleBlock .item{
    margin: 20px 0 40px 0;
}
.exampleBlock .item > div{
    display: inline-block;
    vertical-align: top;
}
.exampleBlock .item .imageBox{
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
}
.exampleBlock .item .textBox{
    width: 100%;
}
.exampleBlock .item .textBox p{
    margin: 0;
}
/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

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

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

@media only screen and (min-width: 769px) {
.exampleBlock .item .imageBox{
    width: 30%;
    margin-right: 2%;
    margin-bottom: 0;
}
.exampleBlock .item .textBox{
    width: 67%;
}
}