@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 およびそれ以下. */
.greetingBlock .sign{
    text-align: right;
}
.greetingBlock .sign > p{
    display: inline-block;
    text-align: left;
    font-size: 15px;
}
.greetingBlock img{
    width: auto!important;
    height: auto!important;
}

.outlineBlock .outlineTable {
    font-family: 'Noto Sans JP', sans-serif;
    width: 100%;
    margin: 0 auto;
}
.outlineBlock .outlineTable th{
    font-size: 16px;
    padding: 0.5em 1em;
    text-align: left;
    white-space: nowrap;
}
.outlineBlock .outlineTable td{
    font-size: 14px;
    padding: 0.5em 1em;
}
.outlineBlock .outlineTable .linkButton{
    background: #FF0000;
    border-radius: 5px ;
}
.outlineBlock .officerList {
    font-family: 'Noto Sans JP', sans-serif;
    width: 100%;
    margin: 0 auto;
}
.outlineBlock .officerList th{
    font-size: 15px;
    background: #E6E6E6;
    border-bottom: dashed 1px #000;
    width: 11em;
    padding: 0.5em 0.5em;
    text-align: left;
    font-weight: normal;
}
.outlineBlock .officerList td{
    font-size: 15px;
    border-bottom: dashed 1px #000;
    padding: 0.5em 0.5em;
}
.outlineBlock .officerList tr:last-child th{
    border-bottom: none;
}
.outlineBlock .officerList tr:last-child td{
    border-bottom: none;
}

.committeeBlock .scrollBox{
    width: 100%;
    overflow-x: auto;
}
.committeeBlock .committeeList{
    font-family: 'Noto Sans JP', sans-serif;
    width: auto;
    margin: 0 auto;
}
.committeeBlock .committeeList th{
    font-size: 15px;
    background: #E6E6E6;
    border: solid 1px #000;
    width: 15em;
    padding: 1em 1em;
    text-align: center;
    font-weight: normal;
    white-space: nowrap;
}
.committeeBlock .committeeList td{
    font-size: 15px;
    border: solid 1px #000;
    padding: 1em 1em;
}

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

@media only screen and (min-width: 481px) {
.outlineBlock .outlineTable {
    width: 75%;
}
.outlineBlock .officerList {
    width: 75%;
}

.committeeBlock .committeeList{
    width: 90%;
}
}

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

@media only screen and (min-width: 769px) {
.outlineBlock .officerList th{
    width: 15em;
    padding: 1em 1em;
}
.outlineBlock .officerList td{
    padding: 1em 1em;
}
}