@charset "UTF-8";


.page-header > .inner {
　　max-width:100%;
    padding: 8px 10px;
    margin: auto;
}

/* Page main */
.page-main {
    margin: auto;
   max-width:100%;
}


/*!
 * Gallery
 */
#gallery{
	  margin: 0 auto;
}

.gallery {
    margin: 0;
    padding: 0;
}

.gallery-item {
    list-style: none;
    margin-bottom: 10px;
}
.gallery-item.is-loading {
    opacity: 0;
}
.gallery-item a {
    display: block;
    /* 外側に配置された子孫要素を隠す */
    overflow: hidden;
    position: relative;
}
.gallery-item .caption {
    box-shadow: inset 0 0 50px rgba(255, 20, 147, 0.8),
                inset 0 0 100px rgba(0, 0, 0, 0.5);

    background: rgb(0, 0, 0);
    background: rgba(255,153,0, 0.5);
    color: rgb(255, 255, 255);
    padding: 10px;
    text-align: center;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    /* 親要素と同じサイズに */
    width: 100%;
    height: 100%;
    /* 親要素の領域外に絶対配置 */
    position: absolute;
    left: 100%;
    top: 100%;
}
.gallery-item .caption:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
.gallery-item .caption > .inner {
    display: inline-block;
    vertical-align: middle;

}
.gallery-item .title {
    display: block;
    font-saptionize: 18px;
    line-height: 1.17;

}
.gallery-item .date {
    display: block;
    font-family: "Georgia", serif;
    font-size: 12px;
    font-style: italic;
    line-height: 1.75;
}


/* フィルター */
.filter-form {
    color:#000;
    float:center;
}

/* 追加読み込みボタン */
.load-more {
  font-size: 1em; /* 文字サイズを1.4emに指定 */  
    font-weight: bold;  /* 文字の太さをboldに指定 */
    padding: 10px 20px; /* 縦方向に10px、  * 横方向に30pxの余白を指定 */ 
    background-color: #0cc;/* 背景色を濃い青色に指定 */  
	background-image: -webkit-gradient(linear, left top, left bottom, from(#0cc), to(#09c));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#0cc, #09c);	/*同上*/
	background-image: linear-gradient(#0cc, #09c);			/*同上*/
    color: #fff;  /* 文字色を白色に指定 */
  border: solid 1px #186f8f;
	border-radius: 10px;        /* CSS3草案 */  
	-webkit-border-radius: 10px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 10px;   /* Firefox用 */  
    width: 100%;
    margin-top: 10px;

}


/*フィルターボタン*/

.filter-form button{
    font-size: 1em; /* 文字サイズを1.4emに指定 */  
    font-weight: bold;  /* 文字の太さをboldに指定 */
    padding: 5px 10px; /* 縦方向に10px、  * 横方向に30pxの余白を指定 */ 
    margin:2px;
    background-color: #0cc;/* 背景色を濃い青色に指定 */  
	background-image: -webkit-gradient(linear, left top, left bottom, from(#0cc), to(#09c));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#0cc, #09c);	/*同上*/
	background-image: linear-gradient(#0cc, #09c);			/*同上*/
    color: #fff;  /* 文字色を白色に指定 */
  border: solid 1px #186f8f;
	border-radius: 7px;        /* CSS3草案 */  
	-webkit-border-radius: 7px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 7px;   /* Firefox用 */  
}

button:hover {
  background: #2391ff;
  background-image: -webkit-linear-gradient(top,#005ebc 0%, #2391ff 100%);
  background-image: linear-gradient(top,#005ebc 0%, #2391ff 100%);

    color: #fff;/* 文字色を白色に指定 */
}
