@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 およびそれ以下. */
.slideBlock{
    background-image: linear-gradient(to right, #EEDCCF, rgba(255,255,255,0.2)), url("images/socia00.png");
}
.content h2{
    background-color: #EEDCCF;
}
/*.contentFrame > div > div{
    display: inline-block;
    vertical-align: bottom;
}*/
.contentFrame dl dt{
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 16px;
    color: #78AEFF;
    font-weight: bold;
}
.contentFrame dl dd{
    margin-left: 1em;
    margin-bottom: 30px;
}
.typeList .item{
    margin-bottom: 20px;
}
.typeList .item > div{
    display: inline-block;
    vertical-align: top;
}
.typeList .item .imageBox{
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
}
.typeList .item .imageBox img{
    width: 100%;
}
.typeList .item .textBox{
    width: 100% ;
}
.typeList .item .textBox h3{
    margin: 0;
}
.facilitiesList .item{
    display: inline-block;
    vertical-align: top;
    width: 48% ;
    margin: 0.5% ;
}
.facilitiesList .item p{
    text-align: center;
    margin: 0.5em 0;
}
.contentFrame ul{
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 16px;
    line-height: 160%;
    padding-left: 1.5em
}
.contentFrame ol{
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 16px;
    line-height: 160%;
    padding-left: 1.5em;
    text-indent: -1.5em;
}
.contentFrame ol li {
	list-style-type: none;
	counter-increment: cnt;
}
.contentFrame ol li::before {
	content: "(" counter(cnt) ") ";
}
.contentFrame table{
    border-collapse: separate;
    border-spacing: 0.5px ;
}
.contentFrame table th{
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 16px;
    height: 2.5em;
    vertical-align: top;
    text-align: left;
    width: auto;
    padding: 0 1em;
    font-weight: normal;
    line-height: 160%;
}
.contentFrame table td{
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 16px;
    text-align: left;
    vertical-align: middle;
    line-height: 160%;
    padding: 0 1em;
}
.contentFrame .bb{
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-bottom-color: #766E6C;
}
.contentFrame .br{
    border-right-style: solid;
    border-right-width: 2px;
    border-right-color: #766E6C;
    padding: 0 ;
}
.contentFrame .np{
    padding: 0 ;
}
.contentFrame .intro{
    margin-bottom: 20px;
}
.contentFrame .intro > div{
    display: inline-block;
    vertical-align: bottom;
}
.contentFrame .intro .textBox{
    width: 100% ;
}
.contentFrame .intro .imageBox{
    width: 210px;
}
.contentFrame .scroll{
    overflow: auto;
}
.explanation{
    overflow: hidden;
}
.explanation .imageBox{
    display: inline-block;
    vertical-align: top;
    width: 100%;
    float: none;
}
.explanation .textBox{
    display: inline-block;
    vertical-align: top;
    width: 100% ;
}
/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

@media only print {
.typeList .item .imageBox{
    width: 200px;
    margin-right: 1%;
}
.typeList .item .textBox{
    width: calc(98% - 210px) ;
}
.contentFrame table th{
    width: 9.5em;
}
.facilitiesList .item{
    width: 30% ;
    margin: 0.5% ;
}
.contentFrame .scroll{
    overflow:inherit;
}
}

/* デスクトップレイアウト : 769 px ～最大 1232 px。モバイルレイアウトとタブレットレイアウトからスタイルを継承。 */

@media only print {
.contentFrame .intro .textBox{
    width: calc(100% - 220px) ;
}
.facilitiesList .item{
    width: 22% ;
    margin: 0.5% ;
}
.explanation .imageBox{
    width: 215px;
    float: right;
}
.explanation .textBox{
    width: calc(100% - 220px) ;
}
}