@charset "utf-8";
/* CSS Document */


/*画面遷移ーーーーーーーーーーーーーーーーーーー*/




/*==================================================
ギャラリーのためのcss
===================================*/

/*＝＝＝並び替えボタンのCSS*/
.sort-btn{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding:50px 20px;
}

.sort-btn li{
	background:#eee;
	border-radius:10px;
	cursor: url("../image/cursor2.png"), pointer;
	padding: 10px;
	margin:0 10px;
    font-weight: bold
}

.sort-btn li.active{/*ボタンに現在地＝activeというクラス名がついたら背景色を変更*/
	background:#ccc;	
}

.item-img {
    border-radius: 15px;
    padding: 5px;
}

.pro-text {
    text-align: center
}

/*横幅が480px以下になった際の指定*/
@media only screen and (max-width: 480px) {
.sort-btn{
	justify-content: space-between;
}
	
.sort-btn li{
	width:48%;
	margin:0 0 10px 0;
	text-align:center;
	}
    
    
.pro-text {
    display: none
    
    }
}

/*＝＝＝Muuriのレイアウトのための調整 */
.grid {
  position: relative;/*並び替えの基準点を指定*/
}

/*各画像の横幅などの設定*/
.item {
  display: block;
  position: absolute;
  width: 33%;/*横並びで3つ表示*/
  z-index: 1;
}


.allitem-button {
    margin: auto;
    font-family:'Zen Kaku Gothic New', serif;
    font-weight: 700;
    text-align: center;
    padding: 1em;
    width: 20%;
    border-bottom: solid;



