@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 dt{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
	line-height: 180%;
    font-weight:bold;
    color:#000;
    margin: 1em 0 0 0;
}
.content dd{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
	line-height: 180%;
    font-weight: normal;
    text-align: left;
    color:#000;
    margin: 1em 0 2em 0;
}
.content dd > div{
    display: inline-block;
}
.content:nth-child(1) .imageBox{
    float: none;
}
.textBox ul{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
	line-height: 180%;
    font-weight: normal;
    text-align: left;
    color:#000;
    list-style:none;
    padding: 0 0 0 0;
}
.linkButton{
    background: #00A99D;
    font-size: 17px;
    color: #fff!important;
}
.greeting > div{
    display: inline-block;
    vertical-align: top;
}
.greeting .imageBox{
    width: 100%;
    margin-right: 0;
    text-align: center;
}
.greeting .textBox{
    width: 100%;
}
.greeting h3{
    text-align: center;
    font-size: 13px;
    margin: 20px 0;
}
.greeting h3 span{
    font-size: 18px;
}
.greeting .small{
    font-size: 16px;
    font-weight: normal;
}
.memberList1 .item{
    border-bottom: solid 3px #E6E6E6 ;
    padding: 20px 0;
}
.memberList1 .item > div{
    display: inline-block;
    vertical-align: bottom;
}
.memberList1 p{
    margin: 0;
}
.memberList1 p span{
    font-size: 15px;
}
.memberList1 .imageBox{
    margin-right: 20px;
}
.memberList2 .imageBox{
    margin-right: 20px;
}
.memberList2 p{
    margin: 0;
}
.memberList2 p span{
    font-size: 15px;
}
.memberList2 .item{
    display: inline-block;
    vertical-align: top;
    width: 100%;
    padding: 10px 0;
}
.memberList2 .item > div{
    display: inline-block;
    vertical-align: bottom;
}
.members h3{
    margin: 30px 0 20px 0;
}
/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

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

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

@media only screen and (min-width: 768px) {
.content:nth-child(1) .imageBox{
    float: right;
}
.greeting .imageBox{
    width: 30%;
    margin-right: 5%;
}
.greeting .textBox{
    width: 65%;
}
.memberList2 .item{
    width: 50%;
}
}