@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 およびそれ以下. */
.outlineTable{
}
.outlineTable th{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    letter-spacing: 0.1em;
	line-height: 180%;
    font-weight: normal;
    text-align: left;
    width: 6em;
    vertical-align: top;
}
.outlineTable td{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    letter-spacing: 0.1em;
	line-height: 180%;
    font-weight: normal;
    text-align: left;
    
}
.enkakuTable{
}
.enkakuTable th{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    letter-spacing: 0.1em;
	line-height: 180%;
    font-weight: normal;
    text-align: left;
    width: 8em;
    vertical-align: top;
}
.enkakuTable td{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    letter-spacing: 0.1em;
	line-height: 180%;
    font-weight: normal;
    text-align: left;
    
}
.greetingContent{
    background-color: #fff;
    margin: 30px 0 0 0;
    padding: 20px;
}
.greetingBlock{
    overflow: hidden;
}
.greetingBlock > div{
    display: inline-block;
    vertical-align: top;
}
.greetingBlock .imageBox{
    width: 100%;
    float: none;
    text-align: center;
}
.greetingBlock .textBox{
    width: 100% ;
    margin-right: 0;
}
.greetingBlock .textBox p{
    font-size: 14px;
    line-height: 150%;
}
.signature{
    text-align: right;
}
.signature > div{
    display: inline-block;
}
.signature p{
    font-size: 24px!important;
    line-height: 120%!important;
    margin: 0;
}
.signature p span{
    font-size: 14px;
}
/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

@media only screen and (min-width: 481px) {
.greetingBlock .imageBox{
    width: 250px;
    float: right;
}
.greetingBlock .textBox{
    width: calc(98% - 250px) ;
    margin-right: 2%;
}
}

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

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