@charset "utf-8";
/* CSS Document */

.musicbox {
	min-height: 600px;
}
h2 {
	position: relative;
}
h2:before {
	background: #70add0;/*線の色*/
}

.flexarea {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}
.flexarea dl dt img {
	width: 100%;
}
.flexarea dl dd {
	margin-top: 3%;
}

iflame {
	width: 30%;
}

.musicDetails {
	border-bottom: solid 1px #000;
	max-width: 50%;
	margin-top: 10%;
	font-size:0.825rem;
	font-weight: bold;
}
.title {
	font-size: 1rem;
	font-weight: bold;
	margin-bottom: 5%;
}
span {
	margin-left: 10%;
}
dt,
dd {
	font-size: 0.75rem;
}
/* フィルタリング */
button{
	display: block;
	color: #000;
	padding: 10px 20px;
	background: #fff;
	border: solid 1px #e6e6e6;
	display: inline-block;
	cursor: pointer;
	box-shadow: 2px 2px 2px #e7e7e7;
}
#buttons { 
	display: flex;
	margin: 0 0 5% 5%;
}
#buttons button:nth-child(2) {
	margin-left: 2%;
}
#buttons button:last-child{
	margin-right: 0;
}
button:focus{
	outline: none;
}
button:hover{
	background: #e7e7e7;
	box-shadow: none;
}
/* カレント設定 */
.active {
	background: #fa8072;
}

@media screen and (max-width: 767px){
	.flexarea {
		display: grid;
	}
	.flexarea img {
		margin-top: 15%;
	}

}