@charset "utf-8";

/*==================================================
スライダーのためのcss
===================================*/
#slider {
    width: 100%;
    height: 100vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
		position:relative;
}

/*========= レイアウトのためのCSS ===============*/
#logob{
	position:absolute;
	top:80px;
	left:10px;
	width:30%;
	height:auto;	
}


#logob img{
	width:100%;
}

#logob h2{
	color:#fff;
	padding-left:10px;
}

a{
	color: #fff;
}

a:hover,
a:active{
	text-decoration: none;
}

h1{
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	font-size:6vw;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #fff;
}

.wrapper p{
	color:#fff;		
	text-align:center;
	display: block;
	font-size:20px;
	font-weight: bold;
	position: absolute;
	bottom:20px;
	left:50%;
	transform:translateX(-50%);
	
}

.wrapper{
	position: relative;
}

.container{
	background:rgb(85, 85, 85);
}

.container p{
	padding: 300px 0;	
	text-align: center;
	color: #fff;
}

.voice h2{
	color:#000;
	position:absolute;
	left:30%;
	padding-top: 20px;		
	width: 60%;
	margin: 20px auto;
	padding-bottom:10px;	
	background-color: #fff;
	border-radius: 20px;
	opacity:.3;
	backdrop-filter: blur(10px);
	backdrop-filter: brightness(50%);
	z-index: 10;
	
}



/*==================================================
ギャラリーのためのcss
===================================*/

/*＝＝＝並び替えボタンのCSS*/
.sort-btn{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding:50px 20px;
}

.sort-btn li{
	background:#eee;
	border-radius:10px;
	cursor: pointer;
	font-size:25px;
	font-weight: bold;
	padding: 10px;
	margin:0 10px;
}

.sort-btn li.active{/*ボタンに現在地＝activeというクラス名がついたら背景色を変更*/
	background:#ccc;	
}
/*横幅が480px以下になった際の指定*/
@media only screen and (max-width: 480px) {
#logob h3{
	font-size:smaller;	
}

.sort-btn{
	justify-content: space-between;
}
	
.sort-btn li{
	width:48%;
	margin:0 0 10px 0;
	text-align:center;
	}	

}

/*＝＝＝Muuriのレイアウトのための調整 */
.grid {
  position: relative;/*並び替えの基準点を指定*/
}

/*各画像の横幅などの設定*/
.item {
  display: block;
  position: absolute;
  width: 33%;/*横並びで3つ表示*/
  z-index: 1;
}

/*内側のボックスの高さが崩れないように維持*/
.item-content {
  position: relative;
  width: 100%;
  height: 100%;
	padding:30px;
}

/*画像の横幅を100%にしてレスポンシブ化*/
.grid img{
	width:100%;
	height:auto;
	vertical-align: bottom;/*画像の下にできる余白を削除*/
}

/*横幅が768px以下になった際の指定*/
@media only screen and (max-width: 768px) {
.item {
  width: 49.5%;/*横並びで2つ表示*/
}

.item-content{
	padding:10px;
}
}

li{
	list-style: none;
}



/*---------------footer-----------------------------*/

#footer{
	position: relative;
	width:100vw;
	height:500px;
	background:rgb(15, 39, 72);

}

#page-top{
	display:block;
	width:100vw;
	height:100px;
	background:rgb(230, 55, 113);
	color:#fff;
	font-size:20px;
	text-align: center;
	padding:40px;
	transition:all 0.3s;
}

#page-top a:hover{
	background:blue;
}

 #logoy{
	width:150px;
	height:150px;
	margin:0 auto;	
	padding:50px;
}

#logoy img{
	display:block;
	width:150px;
	height:150px;
	object-fit: cover;
}

#sns{
	margin-left:20px;	
	padding-top:150px;
}

.link{
  display:flex;
  list-style: none;		
}

.link li a img{
	width:50px;
	height:50px;

	margin-left:20px;
	padding-right:12px;
}


.copyright{
  display:flex;
  list-style: none;
	padding-top:10px;
	object-fit: cover;

}

.copyright li{
  padding-right:15px;
	color:#fff;
}

@media screen and (max-width: 768px){
	#logob h2{
		font-size: 10px;
		top:30%;
	}

	.voice h2{
		font-size: 14px;
		padding-top:5px;
	}

	.wrapper p{
		bottom:5px;
	}

}